:root {
  --ink: #0d1514;
  --ink-soft: #253230;
  --paper: #edf4f2;
  --paper-strong: #fbfcf9;
  --panel: rgba(255, 255, 255, 0.72);
  --line: #ccd9d5;
  --muted: #5c6a66;
  --night: #081311;
  --night-2: #101e1b;
  --cyan: #00aeba;
  --green: #79d66c;
  --blue: #315dff;
  --copper: #d66d3f;
  --mono: "Space Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Instrument Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(251, 252, 249, 0.58);
  backdrop-filter: blur(24px) saturate(1.18);
  border: 1px solid rgba(13, 21, 20, 0.11);
  border-radius: 999px;
  box-shadow:
    0 18px 56px rgba(13, 34, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  display: flex;
  justify-content: space-between;
  left: 50%;
  min-height: 60px;
  padding: 8px 10px 8px 16px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: var(--header-width, min(calc(100% - 36px), 1360px));
  z-index: 20;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 12px;
}

.brand {
  font-size: 15px;
  min-width: 0;
}

.brand-logo,
.footer-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
}

.brand-logo {
  height: 38px;
  width: 154px;
}

.footer-logo {
  height: 30px;
  width: 122px;
}

.nav-links {
  align-items: center;
  display: flex;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  gap: 7px;
}

.nav-links a {
  color: rgba(13, 21, 20, 0.68);
  display: inline-flex;
  line-height: 1;
  padding: 11px 14px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  background: rgba(13, 21, 20, 0.08);
  border-radius: 999px;
  color: var(--ink);
}

.nav-cta {
  background: rgba(13, 21, 20, 0.92);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper-strong) !important;
  padding: 11px 16px !important;
}

.nav-cta[aria-current="page"] {
  background: var(--ink) !important;
  border-color: var(--ink);
  color: var(--paper-strong) !important;
}

.hero {
  align-items: center;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #f3f9f7 0%, #e8f2ef 58%, #eef5f2 100%);
  color: var(--ink);
  display: grid;
  gap: clamp(34px, 5vw, 84px);
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  min-height: 100dvh;
  overflow: hidden;
  padding: 128px clamp(18px, 4vw, 56px) 54px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  background-image:
    linear-gradient(rgba(13, 21, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 21, 20, 0.045) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 88%, transparent 100%);
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.ascii-field,
.hero-noise {
  inset: 0;
  position: absolute;
}

.ascii-field {
  height: 100%;
  opacity: 0.98;
  pointer-events: none;
  width: 100%;
  z-index: 0;
}

.hero-noise {
  background:
    linear-gradient(90deg, rgba(237, 244, 242, 0.94) 0%, rgba(237, 244, 242, 0.62) 34%, rgba(237, 244, 242, 0.14) 64%, rgba(237, 244, 242, 0.78) 100%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  max-width: 860px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--blue);
  font-family: var(--mono);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 700;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(54px, 7.4vw, 108px);
  font-weight: 800;
  line-height: 0.88;
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.46;
  margin: 28px 0 0;
  max-width: min(660px, 100%);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button-primary {
  background: var(--ink);
  color: var(--paper-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero-terminal {
  align-self: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--night);
  border: 1px solid rgba(13, 21, 20, 0.16);
  border-radius: 8px;
  box-shadow:
    0 30px 88px rgba(15, 40, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(167, 229, 205, 0.8);
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  height: clamp(460px, 62vh, 640px);
  min-height: 460px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-terminal::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 19px;
  content: "";
  inset: 44px 0 0;
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
}

.terminal-topline {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(239, 252, 247, 0.62);
  display: flex;
  flex: 0 0 auto;
  font-size: 11px;
  justify-content: space-between;
  padding: 15px 16px 13px;
}

.terminal-live {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.live-dot {
  animation: live-pulse 1.8s ease-in-out infinite;
  background: rgba(226, 82, 70, 0.68);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(226, 82, 70, 0.18);
  height: 6px;
  width: 6px;
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.88);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(226, 82, 70, 0.08);
    opacity: 0.92;
    transform: scale(1);
  }
}

#systemReadout {
  color: rgba(167, 229, 205, 0.76);
  flex: 1;
  font-size: clamp(10px, 0.78vw, 12px);
  line-height: 1.36;
  margin: 0;
  overflow: hidden;
  padding: 18px 18px 20px;
  position: relative;
  white-space: pre;
  z-index: 1;
}

.screen-deck {
  background: var(--night);
  height: 400dvh;
  position: relative;
}

.anchor-alias {
  left: 0;
  position: absolute;
  top: 0;
}

.deck-viewport {
  background: var(--night);
  color: var(--paper-strong);
  height: 100dvh;
  overflow: hidden;
  padding: 104px clamp(18px, 4vw, 56px) 32px;
  position: sticky;
  top: 0;
}

.deck-copy {
  display: grid;
  gap: 28px;
  grid-template-areas:
    "eyebrow"
    "screen";
  max-width: min(640px, 52vw);
  min-width: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.deck-copy > .eyebrow {
  color: rgba(125, 213, 204, 0.88);
  grid-area: eyebrow;
  margin: 0;
}

.deck-eyebrow {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62em;
}

.iteration-word {
  color: var(--green);
  display: inline-block;
  min-width: 8.6ch;
  position: relative;
  text-shadow: 0 0 18px rgba(121, 214, 108, 0.22);
  will-change: filter, opacity, transform;
}

.iteration-word::after {
  background: linear-gradient(90deg, transparent, rgba(0, 174, 186, 0.36), rgba(121, 214, 108, 0.28), transparent);
  content: "";
  height: 1.25em;
  left: -0.8ch;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-120%, -50%) skewX(-18deg);
  width: 5.4ch;
}

.iteration-word.is-switching {
  animation: iterationWordSwap 420ms cubic-bezier(0.2, 0.74, 0.28, 1);
}

.iteration-word.is-switching::after {
  animation: iterationWordScan 420ms cubic-bezier(0.2, 0.74, 0.28, 1);
}

@keyframes iterationWordSwap {
  0% {
    filter: blur(5px);
    opacity: 0.2;
    transform: translateY(8px) skewX(-6deg);
  }

  38% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) skewX(0);
  }

  58% {
    text-shadow:
      0 0 18px rgba(121, 214, 108, 0.34),
      10px 0 0 rgba(0, 174, 186, 0.16),
      -8px 0 0 rgba(214, 109, 63, 0.12);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    text-shadow: 0 0 18px rgba(121, 214, 108, 0.22);
    transform: translateY(0) skewX(0);
  }
}

@keyframes iterationWordScan {
  0% {
    opacity: 0;
    transform: translate(-120%, -50%) skewX(-18deg);
  }

  24%,
  68% {
    opacity: 0.88;
  }

  100% {
    opacity: 0;
    transform: translate(140%, -50%) skewX(-18deg);
  }
}

.deck-screen {
  grid-area: screen;
  max-width: 720px;
  min-width: 0;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  visibility: hidden;
}

.deck-screen.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.deck-screen h2 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.92;
  margin: 0;
  max-width: 820px;
  text-wrap: balance;
}

.deck-screen p {
  color: rgba(241, 250, 246, 0.74);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.48;
  margin: 22px 0 0;
  max-width: 560px;
}

.deck-scroll-hint {
  align-items: center;
  animation: deckScrollFloat 2.35s cubic-bezier(0.45, 0, 0.25, 1) infinite;
  background: rgba(237, 244, 242, 0.035);
  border: 1px solid rgba(125, 213, 204, 0.24);
  border-radius: 50%;
  bottom: 34px;
  color: rgba(125, 213, 204, 0.86);
  cursor: pointer;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  left: 50%;
  padding: 0;
  position: absolute;
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
  width: 46px;
  z-index: 4;
}

.deck-scroll-hint::before {
  border: 1px solid rgba(125, 213, 204, 0.14);
  border-radius: inherit;
  content: "";
  inset: -7px;
  opacity: 0.7;
  position: absolute;
}

.deck-scroll-hint:hover {
  background: rgba(125, 213, 204, 0.08);
  border-color: rgba(125, 213, 204, 0.42);
  box-shadow: 0 0 28px rgba(0, 174, 186, 0.1);
  color: rgba(241, 250, 246, 0.94);
}

.deck-scroll-hint svg {
  display: block;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 21px;
}

@keyframes deckScrollFloat {
  0%,
  100% {
    opacity: 0.58;
    transform: translate(-50%, 0);
  }

  45% {
    opacity: 0.94;
    transform: translate(-50%, 8px);
  }
}

.deck-art {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 46%),
    var(--night-2);
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.deck-art::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.deck-art-dim {
  background:
    linear-gradient(90deg, rgba(8, 19, 17, 0.97) 0%, rgba(8, 19, 17, 0.88) 37%, rgba(8, 19, 17, 0.45) 70%, rgba(8, 19, 17, 0.68) 100%),
    linear-gradient(180deg, rgba(8, 19, 17, 0.82) 0%, transparent 30%, transparent 68%, rgba(8, 19, 17, 0.9) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.lab-topline,
.feed-caption {
  align-items: center;
  display: flex;
  font-family: var(--mono);
  font-size: 11px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: absolute;
  right: 0;
  text-transform: uppercase;
  z-index: 2;
}

.lab-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  top: 0;
}

.feed-caption {
  background: rgba(8, 19, 17, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  bottom: 0;
  color: rgba(125, 213, 204, 0.62);
  gap: 16px;
  overflow: hidden;
}

.feed-caption span {
  white-space: nowrap;
}

.deck-ascii-canvas {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.signin-page {
  background:
    linear-gradient(105deg, rgba(251, 252, 249, 0.96), rgba(237, 244, 242, 0.86) 52%, rgba(232, 242, 239, 0.92)),
    linear-gradient(rgba(13, 21, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 21, 20, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 84px 84px, 84px 84px, auto;
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
  padding: 148px clamp(18px, 4vw, 56px) 72px;
  position: relative;
}

.signin-page::before {
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(0, 174, 186, 0.12) 18.1% 18.25%, transparent 18.35% 100%),
    linear-gradient(42deg, transparent 0 56%, rgba(49, 93, 255, 0.1) 56.1% 56.24%, transparent 56.35% 100%),
    linear-gradient(158deg, transparent 0 70%, rgba(121, 214, 108, 0.14) 70.1% 70.24%, transparent 70.35% 100%);
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 92%, transparent 100%);
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.signin-shell {
  align-items: end;
  display: grid;
  gap: 22px clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  margin: 0 auto;
  max-width: 1180px;
  min-height: min(640px, calc(100dvh - 220px));
  min-width: 0;
}

.signin-copy {
  align-self: center;
  max-width: 680px;
  min-width: 0;
}

.signin-copy h1 {
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  max-width: 780px;
  text-wrap: balance;
}

.signin-copy p {
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.48;
  margin: 28px 0 0;
  max-width: 620px;
}

.signin-card {
  align-self: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.52)),
    rgba(251, 252, 249, 0.66);
  backdrop-filter: blur(26px) saturate(1.12);
  border: 1px solid rgba(13, 21, 20, 0.13);
  border-radius: 8px;
  box-shadow:
    0 32px 86px rgba(13, 34, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  width: min(100%, 430px);
}

.signin-card-header,
.signin-status-pill,
.signin-card label,
.signin-status {
  font-family: var(--mono);
}

.signin-card-header {
  align-items: center;
  color: rgba(13, 21, 20, 0.55);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signin-status-pill {
  background: rgba(121, 214, 108, 0.14);
  border: 1px solid rgba(13, 21, 20, 0.12);
  border-radius: 999px;
  color: var(--ink);
  padding: 6px 10px;
}

.signin-card label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: uppercase;
}

.code-input-wrap {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(13, 21, 20, 0.16);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  min-width: 0;
}

.code-input-wrap:focus-within {
  border-color: rgba(0, 174, 186, 0.7);
  box-shadow:
    0 0 0 4px rgba(0, 174, 186, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.code-input-wrap input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
  min-width: 0;
  outline: 0;
  padding: 18px 16px;
  text-transform: uppercase;
  width: 100%;
}

.code-input-wrap input::placeholder {
  color: rgba(13, 21, 20, 0.25);
}

.signin-submit {
  width: 100%;
}

.signin-status {
  color: rgba(13, 21, 20, 0.58);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  min-height: 36px;
  overflow-wrap: anywhere;
}

.signin-status:empty {
  display: none;
}

.signin-status.is-ready {
  color: var(--ink);
}

.signin-status.is-error {
  color: var(--copper);
}

.careers-page {
  background:
    linear-gradient(90deg, rgba(237, 244, 242, 0.96), rgba(237, 244, 242, 0.78)),
    linear-gradient(rgba(13, 21, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 21, 20, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 84px 84px, 84px 84px, auto;
  align-items: center;
  display: flex;
  min-height: 100dvh;
  padding: 152px clamp(18px, 4vw, 56px) 72px;
}

.careers-hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 82px);
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 0.98fr);
  margin: 0 auto;
  max-width: 1360px;
  min-width: 0;
  padding-bottom: clamp(32px, 5vw, 64px);
  width: 100%;
}

.careers-copy {
  min-width: 0;
}

.careers-hero h1,
.careers-section h2 {
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
}

.careers-hero h1 {
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.9;
  max-width: 920px;
  text-wrap: balance;
}

.careers-hero p,
.careers-section p {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
}

.careers-hero p {
  max-width: 820px;
}

.careers-contact {
  margin-top: 18px;
}

.careers-hero a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.careers-visual {
  aspect-ratio: 4 / 3;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  min-height: 420px;
  min-width: 0;
  overflow: visible;
  position: relative;
}

.careers-visual::before {
  display: none;
}

.careers-matrix {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.careers-ascii-image {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.careers-visual-topline,
.careers-visual-footer {
  display: none;
}

.careers-visual-topline {
  background: rgba(8, 19, 17, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  top: 0;
}

.careers-visual-footer {
  background: rgba(8, 19, 17, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  bottom: 0;
  gap: 14px;
}

.careers-section {
  border-top: 1px solid rgba(13, 21, 20, 0.14);
  display: grid;
  gap: 22px;
  max-width: 1120px;
  min-width: 0;
  padding: clamp(34px, 5vw, 58px) 0;
}

.careers-section h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.98;
  max-width: 760px;
  text-wrap: balance;
}

.careers-section p {
  margin: 0;
  max-width: 820px;
}

.careers-section p + p {
  margin-top: 14px;
}

.careers-section a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.careers-split {
  align-items: start;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
}

.applicant-notice {
  border-bottom: 1px solid rgba(13, 21, 20, 0.14);
}

.site-footer {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.72)),
    var(--paper);
  border-top: 1px solid rgba(13, 21, 20, 0.1);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 56px);
}

.site-footer address,
.site-footer p {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
  margin: 0;
}

.site-footer > * {
  flex: 0 1 auto;
  min-width: 0;
}

.site-footer > p:last-child {
  flex-shrink: 0;
  text-align: right;
}

.site-footer address,
.site-footer p {
  white-space: nowrap;
}

.site-footer a {
  color: var(--ink);
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 118px;
  }

  .hero-terminal {
    height: 420px;
    min-height: 420px;
    width: min(100%, 620px);
  }

  .site-footer {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .careers-hero {
    grid-template-columns: 1fr;
  }

  .careers-visual {
    aspect-ratio: 4 / 3;
    max-width: 680px;
    min-height: 340px;
    width: min(100%, 680px);
  }

  .site-footer > p:last-child {
    flex-shrink: 1;
    justify-self: start;
    text-align: left;
  }

  .site-footer address,
  .site-footer p {
    white-space: normal;
  }

  .signin-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .signin-card {
    grid-column: auto;
  }

  .careers-split {
    grid-template-columns: 1fr;
  }

  .deck-copy {
    max-width: min(620px, 78vw);
  }

  .deck-screen h2 {
    font-size: clamp(40px, 8vw, 68px);
  }

  .deck-art-dim {
    background:
      linear-gradient(90deg, rgba(8, 19, 17, 0.98) 0%, rgba(8, 19, 17, 0.88) 56%, rgba(8, 19, 17, 0.58) 100%),
      linear-gradient(180deg, rgba(8, 19, 17, 0.9) 0%, transparent 30%, transparent 66%, rgba(8, 19, 17, 0.92) 100%);
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    left: 10px;
    min-height: 56px;
    padding: 7px 8px 7px 10px;
    right: 10px;
    top: 12px;
    transform: none;
    width: auto;
  }

  .brand-logo {
    height: 32px;
    width: 112px;
  }

  .nav-links {
    flex: 0 0 auto;
    font-size: 11.5px;
    gap: 6px;
    margin-left: 0;
    overflow: visible;
    padding-bottom: 0;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
  }

  .nav-links a {
    padding: 8px 8px;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 8px 10px !important;
  }

  .hero {
    padding: 142px 18px 38px;
  }

  .careers-page {
    padding: 142px 18px 48px;
  }

  .careers-visual {
    aspect-ratio: 4 / 3;
    min-height: 260px;
    width: min(100%, 354px);
  }

  .careers-visual-topline,
  .careers-visual-footer {
    font-size: 9px;
    padding: 12px;
  }

  .signin-page {
    padding: 142px 18px 48px;
  }

  .signin-copy h1 {
    font-size: 46px;
    line-height: 0.96;
    max-width: 354px;
  }

  .signin-copy p {
    font-size: 17px;
    max-width: 354px;
  }

  .signin-card {
    max-width: 354px;
    padding: 22px;
    width: 100%;
  }

  .code-input-wrap input {
    font-size: 18px;
    padding: 16px 14px;
  }

  .careers-hero h1 {
    font-size: 42px;
    line-height: 0.96;
    max-width: 354px;
  }

  .careers-hero p,
  .careers-section p {
    font-size: 16px;
    max-width: 354px;
  }

  .careers-section h2 {
    font-size: 36px;
    line-height: 1;
    max-width: 354px;
  }

  .hero-inner,
  .hero-terminal {
    max-width: 354px;
    width: min(100%, 354px);
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy {
    font-size: 17px;
    max-width: 354px;
  }

  .hero-terminal {
    height: 340px;
    min-height: 340px;
  }

  #systemReadout {
    font-size: 10px;
  }

  .deck-viewport {
    padding: 138px 18px 22px;
  }

  .deck-copy {
    max-width: 100%;
    top: 48%;
  }

  .deck-screen h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .deck-screen p {
    font-size: 16px;
    margin-top: 16px;
  }

  .feed-caption {
    flex-wrap: wrap;
    font-size: 10px;
    gap: 8px 14px;
    justify-content: flex-start;
    padding-block: 10px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
