@font-face {
  font-family: "Chakra Petch";
  src: url("assets/fonts/chakra-petch-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chakra Petch";
  src: url("assets/fonts/chakra-petch-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chakra Petch";
  src: url("assets/fonts/chakra-petch-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("assets/fonts/jetbrains-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #030708;
  --bg-raised: #071114;
  --panel: rgba(7, 17, 20, 0.86);
  --text: #d9ece8;
  --secondary: #9ab0ad;
  --muted: #708a88;
  --faint: #435b59;
  --line: rgba(128, 205, 195, 0.19);
  --cyan: #6fffe0;
  --lime: #d7ff4a;
  --orange: #ff8a3d;
  --display: "Chakra Petch", "Arial Narrow", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--cyan);
  color: var(--bg);
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--lime);
  color: #06100f;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.52;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: screen;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 92px;
  padding: 0 clamp(24px, 5vw, 78px);
  border-bottom: 1px solid rgba(128, 205, 195, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .14em;
}

.brand-mark {
  width: 29px;
  height: 29px;
  overflow: visible;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.3;
}

.brand-mark circle:first-child {
  fill: var(--cyan);
  stroke: none;
  filter: drop-shadow(0 0 4px rgba(111,255,224,.7));
}

.brand-mark .brand-satellite {
  fill: var(--lime);
  stroke: none;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .15em;
}

.status-pulse,
.console-live i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(215,255,74,.78);
  animation: pulse 2.4s ease-in-out infinite;
}

.nav-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-cta svg,
.waitlist-form button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--lime);
}

.nav-cta:hover svg,
.waitlist-form button:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

#starfield,
.hero-grid,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#starfield {
  z-index: -4;
}

.hero-grid {
  z-index: -3;
  opacity: .6;
  background-image: linear-gradient(rgba(111,255,224,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(111,255,224,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to right, transparent 2%, #000 34%, #000 70%, transparent 100%);
}

.hero-vignette {
  z-index: -2;
  background:
    radial-gradient(circle at 70% 44%, rgba(22,65,64,.2), transparent 27%),
    linear-gradient(90deg, rgba(3,7,8,.97) 0%, rgba(3,7,8,.78) 33%, rgba(3,7,8,.12) 68%, rgba(3,7,8,.5) 100%),
    linear-gradient(0deg, rgba(3,7,8,.95), transparent 32%);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  width: min(720px, 49vw);
  margin: 82px 0 110px clamp(24px, 7vw, 112px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--faint);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--text);
  font-size: clamp(94px, 12.3vw, 198px);
  font-weight: 700;
  letter-spacing: -.09em;
  line-height: .67;
  text-transform: uppercase;
}

.hero h1 span:last-child {
  margin-left: .48em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(217,236,232,.68);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) 1fr;
  gap: clamp(20px, 4vw, 58px);
  align-items: start;
  max-width: 670px;
  margin-top: 55px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.hero-intro > p:first-child {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-body,
.universe-copy > p,
.doctrine-card > p:last-child {
  margin: 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 34px;
}

.primary-button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 330px;
  height: 61px;
  padding: 0 20px 0 24px;
  overflow: hidden;
  background: var(--lime);
  color: #06100f;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: translateX(-102%);
  transition: transform 220ms ease;
}

.primary-button:hover::before,
.primary-button:focus-visible::before {
  transform: translateX(0);
}

.primary-button span {
  position: relative;
}

.button-code {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--faint);
  color: var(--secondary);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.orbital-display {
  --orbit-size: min(48vw, 720px);
  position: absolute;
  top: 50%;
  right: max(-7vw, -110px);
  z-index: -1;
  width: var(--orbit-size);
  aspect-ratio: 1;
  transform: translateY(-50%) rotateX(63deg) rotateZ(-17deg);
  transform-style: preserve-3d;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(111,255,224,.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin var(--duration) linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-top: 1px solid rgba(215,255,74,.44);
  border-radius: inherit;
  opacity: .52;
}

.orbit-one { width: 28%; height: 28%; --duration: 13s; }
.orbit-two { width: 48%; height: 48%; --duration: 22s; animation-direction: reverse; }
.orbit-three { width: 71%; height: 71%; --duration: 34s; }
.orbit-four { width: 95%; height: 95%; --duration: 49s; animation-direction: reverse; }

.planet {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: #0b1c1e;
  box-shadow: 0 0 13px rgba(111,255,224,.46);
  transform: translateY(-50%) rotateZ(17deg) rotateX(-63deg);
}

.planet-two {
  right: auto;
  left: -8px;
  width: 16px;
  height: 16px;
  background: var(--lime);
  border: 3px solid #0b1c1e;
  box-shadow: 0 0 0 1px var(--lime), 0 0 18px rgba(215,255,74,.5);
}

.planet-two i {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(215,255,74,.52);
  border-radius: 50%;
  animation: planet-pulse 2s ease-out infinite;
}

.planet-three { top: 18%; right: 11%; width: 7px; height: 7px; }
.planet-four { top: 81%; right: 7%; width: 13px; height: 13px; border-color: var(--orange); box-shadow: 0 0 14px rgba(255,138,61,.35); }

.system-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateZ(17deg) rotateX(-63deg);
  box-shadow: 0 0 18px rgba(215,255,74,.5), 0 0 65px rgba(215,255,74,.28);
}

.system-sun span {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #f1ffb3;
  box-shadow: 0 0 17px var(--lime);
}

.system-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(111,255,224,.12);
}

.crosshair-x { width: 115%; height: 1px; transform: translate(-50%, -50%); }
.crosshair-y { width: 1px; height: 115%; transform: translate(-50%, -50%); }

.scan-arc {
  position: absolute;
  inset: 2.5%;
  border: 1px dashed rgba(111,255,224,.09);
  border-radius: 50%;
}

.system-label,
.system-coordinates {
  position: absolute;
  z-index: 3;
  font-family: var(--mono);
  transform: rotateZ(17deg) rotateX(-63deg);
}

.system-label::before {
  content: "";
  position: absolute;
  top: 4px;
  right: calc(100% + 9px);
  width: 54px;
  height: 1px;
  background: rgba(111,255,224,.5);
}

.system-label span,
.system-label strong {
  display: block;
  white-space: nowrap;
}

.system-label span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .12em;
}

.system-label strong {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
}

.system-label-main { top: 43%; left: 54%; }
.system-label-planet { bottom: 19%; left: 15%; }
.system-label-planet strong { color: var(--lime); }
.system-label-planet::before { background: rgba(215,255,74,.6); }

.system-coordinates {
  top: 6%;
  right: 22%;
  color: var(--faint);
  font-size: 7px;
  letter-spacing: .1em;
  line-height: 1.7;
}

.hero-footer {
  position: absolute;
  right: clamp(24px, 5vw, 78px);
  bottom: 30px;
  display: flex;
  gap: 1px;
  z-index: 3;
}

.hero-footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 145px;
  padding: 12px 18px;
  border-left: 1px solid var(--line);
  background: rgba(3,7,8,.35);
}

.hero-footer span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 14px;
}

.hero-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 32px;
  bottom: 27px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-cue span {
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue span::after {
  content: "";
  display: block;
  width: 19px;
  height: 1px;
  background: var(--cyan);
  animation: scroll-line 2s ease-in-out infinite;
}

.scroll-cue p {
  margin: 0;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.signal-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid rgba(215,255,74,.2);
  background: var(--lime);
  color: #06100f;
}

.signal-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .19em;
  animation: marquee 32s linear infinite;
}

.signal-track i {
  font-style: normal;
  font-size: 10px;
}

.section-shell {
  padding: 150px clamp(24px, 7vw, 112px);
}

.universe {
  position: relative;
  background:
    radial-gradient(circle at 20% 40%, rgba(30,92,88,.12), transparent 31%),
    linear-gradient(rgba(128,205,195,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128,205,195,.025) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
}

.universe::before {
  content: "02 // CARTOGRAPHY";
  position: absolute;
  top: 56px;
  right: clamp(24px, 7vw, 112px);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .15em;
}

.section-heading,
.doctrine-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 76px;
}

.section-heading .eyebrow,
.doctrine-heading .eyebrow {
  margin-top: 13px;
}

.section-heading h2,
.doctrine-heading h2 {
  width: 58%;
  margin: 0;
  font-size: clamp(52px, 6vw, 98px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .93;
  text-transform: uppercase;
}

.universe-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(290px, .72fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}

.galaxy-console {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(5,11,13,.8);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 28px 90px rgba(0,0,0,.45), 0 0 80px rgba(31,109,103,.09);
}

.console-header,
.console-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 5px 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .12em;
}

.console-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.console-live i {
  width: 5px;
  height: 5px;
}

.galaxy-map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(111,255,224,.15);
  background: #020506;
}

.galaxy-map::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(3,7,8,.8);
  pointer-events: none;
}

.galaxy-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  filter: saturate(.75) contrast(1.15) brightness(.76) hue-rotate(8deg);
  transform: scale(1.02);
  transition: transform 1.8s cubic-bezier(.2,.8,.2,1), filter 1.8s ease;
}

.galaxy-console:hover .galaxy-map img {
  filter: saturate(.95) contrast(1.08) brightness(.92);
  transform: scale(1.07);
}

.map-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(111,255,224,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(111,255,224,.05) 1px, transparent 1px);
  background-size: 12.5% 16.666%;
  mask-image: radial-gradient(ellipse at center, black, transparent 95%);
}

.map-axis {
  position: absolute;
  z-index: 2;
  background: rgba(111,255,224,.18);
}

.map-axis-x { left: 0; top: 50%; width: 100%; height: 1px; }
.map-axis-y { left: 50%; top: 0; width: 1px; height: 100%; }

.home-marker {
  position: absolute;
  top: 59%;
  left: 63%;
  z-index: 4;
}

.home-marker i {
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #06100f;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--lime), 0 0 16px rgba(215,255,74,.85);
}

.home-marker::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(215,255,74,.58);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: target-pulse 2.4s ease-out infinite;
}

.home-marker span {
  position: absolute;
  top: 14px;
  left: 13px;
  width: max-content;
  padding: 5px 7px;
  border-left: 2px solid var(--lime);
  background: rgba(3,10,11,.8);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .12em;
}

.map-corner {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
}

.corner-a { top: 10px; left: 10px; border-top: 1px solid var(--cyan); border-left: 1px solid var(--cyan); }
.corner-b { right: 10px; bottom: 10px; border-right: 1px solid var(--cyan); border-bottom: 1px solid var(--cyan); }

.map-coordinate {
  position: absolute;
  z-index: 3;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 6px;
}

.coordinate-a { left: 9px; bottom: 4px; }
.coordinate-b { right: 9px; bottom: 4px; }
.coordinate-c { top: 7px; left: calc(50% + 5px); }

.console-footer {
  padding: 12px 5px 2px;
}

.universe-copy {
  max-width: 470px;
}

.universe-copy .lead-copy {
  margin-bottom: 30px;
  color: var(--text);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.data-readout {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.data-readout div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
}

.data-readout span {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .12em;
}

.data-readout strong {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
}

.doctrine {
  position: relative;
  border-top: 1px solid var(--line);
  background: #040a0c;
}

.doctrine-heading h2 {
  width: 62%;
}

.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.doctrine-card {
  position: relative;
  min-height: 510px;
  padding: 37px clamp(25px, 3vw, 48px) 44px;
  border-right: 1px solid var(--line);
  transition: background 300ms ease;
}

.doctrine-card:last-child {
  border-right: 0;
}

.doctrine-card:hover {
  background: rgba(111,255,224,.025);
}

.card-number {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.doctrine-card svg {
  display: block;
  width: 80px;
  height: 80px;
  margin: 62px 0 45px;
  fill: none;
  stroke: rgba(111,255,224,.62);
  stroke-width: 1;
}

.doctrine-card svg .svg-signal {
  fill: var(--lime);
  stroke: none;
  filter: drop-shadow(0 0 4px var(--lime));
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.doctrine-card h3 {
  margin: 0 0 25px;
  font-size: clamp(27px, 2.4vw, 39px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.06;
  text-transform: uppercase;
}

.waitlist {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 150px clamp(24px, 7vw, 112px) 0;
  background:
    radial-gradient(circle at 50% 54%, rgba(25,88,83,.2), transparent 33%),
    var(--bg);
}

.waitlist::before,
.waitlist::after {
  content: "";
  position: absolute;
  background: rgba(111,255,224,.08);
}

.waitlist::before { left: 50%; top: 0; width: 1px; height: 100%; }
.waitlist::after { left: 0; top: 52%; width: 100%; height: 1px; }

.waitlist-rings {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(74vw, 980px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: .45;
}

.waitlist-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(111,255,224,.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.waitlist-rings i:nth-child(1) { width: 34%; height: 34%; border-style: dashed; animation: orbit-flat 40s linear infinite; }
.waitlist-rings i:nth-child(2) { width: 68%; height: 68%; }
.waitlist-rings i:nth-child(3) { width: 100%; height: 100%; border-style: dashed; animation: orbit-flat 70s linear infinite reverse; }

.waitlist-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: auto;
  text-align: center;
}

.waitlist-content .eyebrow {
  margin-bottom: 32px;
}

.waitlist h2 {
  margin: 0;
  font-size: clamp(68px, 9vw, 146px);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .78;
}

.waitlist-copy {
  max-width: 580px;
  margin: 50px auto 37px;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.55;
}

.waitlist-form {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: left;
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 8px;
}

.input-shell {
  display: flex;
  align-items: center;
  height: 66px;
  border: 1px solid rgba(111,255,224,.34);
  background: rgba(5,14,16,.9);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-shell:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 32px rgba(111,255,224,.09);
}

.input-shell > span {
  padding-left: 20px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 15px;
}

.input-shell input {
  width: 100%;
  height: 100%;
  padding: 0 20px 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
}

.input-shell input::placeholder {
  color: #536c69;
}

.waitlist-form button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 66px;
  padding: 0 18px 0 23px;
  border: 0;
  background: var(--lime);
  color: #06100f;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  background: var(--cyan);
}

.form-note {
  margin: 13px 0 0;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-note span {
  margin-right: 7px;
  color: var(--cyan);
}

footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 120px;
  min-height: 90px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .12em;
}

.footer-brand {
  font-family: var(--display);
  font-size: 13px;
  color: var(--secondary);
}

.footer-brand .brand-mark {
  width: 23px;
  height: 23px;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.25,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 260ms; }

@keyframes pulse {
  0%, 100% { opacity: .45; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-flat {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes target-pulse {
  0% { opacity: .8; transform: translate(-50%, -50%) scale(.3); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

@keyframes planet-pulse {
  0% { opacity: .8; transform: scale(.3); }
  100% { opacity: 0; transform: scale(1.3); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(220%); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
  .hero-copy { width: 62vw; }
  .orbital-display { --orbit-size: 58vw; right: -19vw; opacity: .72; }
  .hero-vignette { background: linear-gradient(90deg, rgba(3,7,8,.98) 0%, rgba(3,7,8,.8) 50%, rgba(3,7,8,.2) 100%), linear-gradient(0deg, rgba(3,7,8,.95), transparent 40%); }
  .hero-footer > div { min-width: 122px; padding-inline: 13px; }
  .universe-layout { grid-template-columns: 1.2fr .8fr; gap: 50px; }
  .doctrine-card { padding-inline: 28px; }
}

@media (max-width: 780px) {
  .site-header { grid-template-columns: 1fr auto; height: 72px; padding-inline: 20px; }
  .header-status { display: none; }
  .nav-cta span { display: none; }
  .nav-cta svg { width: 25px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 25px; height: 25px; }

  .hero { min-height: 850px; }
  .hero-copy { align-self: start; width: auto; margin: 142px 20px 200px; }
  .hero h1 { font-size: clamp(76px, 25vw, 134px); line-height: .72; }
  .hero h1 span:last-child { margin-left: .2em; }
  .hero-intro { grid-template-columns: 1fr; gap: 17px; max-width: 470px; margin-top: 43px; }
  .hero-intro > p:first-child { max-width: 270px; font-size: 18px; }
  .hero-body { max-width: 450px; font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 27px; }
  .primary-button { width: min(100%, 420px); min-width: 0; }
  .text-link { align-self: flex-start; }
  .orbital-display { --orbit-size: 560px; top: 73%; right: -260px; opacity: .54; }
  .hero-footer { left: 20px; right: 20px; bottom: 23px; justify-content: space-between; border-top: 1px solid var(--line); }
  .hero-footer > div { min-width: 0; padding: 13px 5px; border-left: 0; }
  .hero-footer > div:nth-child(2) { display: none; }
  .scroll-cue { display: none; }

  .signal-strip { padding: 16px 0; }
  .signal-track { gap: 29px; font-size: 13px; }
  .section-shell { padding: 100px 20px; }
  .section-heading, .doctrine-heading { display: block; margin-bottom: 50px; }
  .section-heading h2, .doctrine-heading h2 { width: 100%; font-size: clamp(47px, 15vw, 82px); }
  .universe::before { top: 34px; right: 20px; }
  .universe-layout { grid-template-columns: 1fr; gap: 52px; }
  .universe-copy { max-width: 600px; }
  .universe-copy .lead-copy { font-size: 31px; }
  .doctrine-grid { grid-template-columns: 1fr; }
  .doctrine-card { min-height: 0; padding: 29px 20px 38px; border-right: 0; border-bottom: 1px solid var(--line); }
  .doctrine-card:last-child { border-bottom: 0; }
  .doctrine-card svg { margin: 36px 0 31px; }
  .doctrine-card h3 { font-size: 32px; }
  .waitlist { padding: 100px 20px 0; }
  .waitlist h2 { font-size: clamp(57px, 17vw, 100px); }
  .waitlist-copy { margin-top: 38px; font-size: 15px; }
  .form-row { grid-template-columns: 1fr; gap: 9px; }
  .waitlist-form button { justify-content: center; gap: 20px; }
  footer { grid-template-columns: 1fr auto; margin-top: 95px; }
  footer p { display: none; }
}

@media (max-width: 440px) {
  .hero { min-height: 820px; }
  .hero-copy { margin-top: 126px; }
  .hero h1 { font-size: 24vw; }
  .hero h1 span:last-child { -webkit-text-stroke-width: 1px; }
  .hero-intro { margin-top: 36px; }
  .hero-footer span { font-size: 12px; }
  .hero-footer p { font-size: 6px; }
  .console-header span:first-child { max-width: 180px; }
  .section-heading h2, .doctrine-heading h2 { font-size: 13vw; }
  .waitlist h2 { font-size: 16vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
