/* ═══════════════════════════════════════════════════════════
   VOIXLY — Mission Control
   praxis-next · aglet-mono · OKLCH brand system
   ═══════════════════════════════════════════════════════════ */

:root {
  --step-0: clamp(1rem, 1rem + 0vw, 1rem);
  --step-1: clamp(1.25rem, 1.2152rem + 0.1519vw, 1.333rem);
  --step-2: clamp(1.5625rem, 1.4727rem + 0.3925vw, 1.7769rem);
  --step-3: clamp(1.9531rem, 1.7791rem + 0.7606vw, 2.3686rem);
  --step-4: clamp(2.4414rem, 2.1416rem + 1.3106vw, 3.1573rem);
  --step-5: clamp(3.0518rem, 2.5673rem + 2.118vw, 4.2087rem);
  --step-6: clamp(3.815rem, 2.95rem + 3.2vw, 5.5rem);

  --space-2xs: clamp(0.5625rem, 0.5363rem + 0.1144vw, 0.625rem);
  --space-xs: clamp(0.875rem, 0.8488rem + 0.1144vw, 0.9375rem);
  --space-s: clamp(1.125rem, 1.0727rem + 0.2288vw, 1.25rem);
  --space-m: clamp(1.6875rem, 1.609rem + 0.3432vw, 1.875rem);
  --space-l: clamp(2.25rem, 2.1453rem + 0.4577vw, 2.5rem);
  --space-xl: clamp(3.375rem, 3.218rem + 0.6865vw, 3.75rem);
  --space-2xl: clamp(4.5rem, 4.2906rem + 0.9153vw, 5rem);
  --space-3xl: clamp(6.75rem, 6.4359rem + 1.373vw, 7.5rem);
  --space-l-xl: clamp(2.25rem, 1.6219rem + 2.746vw, 3.75rem);
  --space-xl-2xl: clamp(3.375rem, 2.6945rem + 2.9748vw, 5rem);
  --space-2xl-3xl: clamp(4.5rem, 3.2437rem + 5.492vw, 7.5rem);

  --space-c: oklch(22.2% 0.002705 234.7);
  --shark: oklch(30.1% 0.022775 235.5);
  --teal: oklch(60.3% 0.068453 212.3);
  --mist: oklch(80.7% 0.043427 200);
  --sun: oklch(81.2% 0.159238 72.9);
  --orange: oklch(69.1% 0.201356 35.1);
  --cloud: oklch(96.8% 0.010568 106.6);
  --linen: oklch(93.8% 0.021244 109.7);
  --tuscan: oklch(41.3% 0.08637 22.5);
  --cocoa: oklch(26.6% 0.028 25.1);
  --sun-tint: oklch(calc(81.2% + 5%) 0.159238 72.9);
  --orange-shade: oklch(calc(69.1% - 5%) 0.201356 35.1);
  --teal-d: #4d6d75;
  --footer-logo: #EFEFEA;

  --head: "praxis-next", sans-serif;
  --body: "aglet-mono", monospace;
  --display: "obvia-condensed", sans-serif;
  --wrap: min(76rem, 92vw);
  --nav-h: 4.5rem;
  --stack-top: calc(var(--nav-h) + 1rem);
  --stack-runway: calc(100svh - var(--stack-top) - 1rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --leading-prose: 1.55;
  --leading-prose-sm: 1.45;
  --noise-opacity: 0.07;
  --noise-size: 220px;
  --voixly-btn-clip: url(#voixly-btn-clip);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

html { background: var(--space-c); }
body {
  font-family: var(--body), monospace;
  font-size: var(--step-0);
  line-height: var(--leading-prose);
  color: var(--cloud);
  background: var(--space-c);
  overflow-x: hidden;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

p {
  line-height: var(--leading-prose);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3 {
  font-family: var(--head), sans-serif;
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.08;
}

h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--noise-opacity);
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: var(--noise-size) var(--noise-size);
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.is-solid {
  background: oklch(from var(--space-c) l c h / 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--cloud) l c h / 0.06);
}
.nav__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-m);
}
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-left: auto;
}
.nav__links a:not(.btn) {
  font-size: 0.9375rem;
  color: var(--orange);
  padding: var(--space-2xs) var(--space-s);
  border-radius: 999px;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav__links a:not(.btn):hover {
  background: var(--linen);
  color: var(--orange);
  box-shadow: 0 0 4px var(--sun-tint);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  transition: transform 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-8px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--space-c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-l);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer a {
  font-family: var(--head);
  font-size: var(--step-3);
  font-weight: 700;
  color: var(--orange);
}

/* ── Layout ── */
#main {
  position: relative;
  z-index: 1;
  background: var(--space-c);
}
.panel { padding-block: var(--space-2xl-3xl); }
.panel__inner { width: var(--wrap); margin-inline: auto; }
.panel__inner--narrow { max-width: 40rem; }
.panel--linen { background: var(--linen); color: var(--cocoa); }
.panel--dark {
  background: var(--space-c);
  position: relative;
  overflow: hidden;
}
.panel--dark .panel__inner { position: relative; z-index: 3; }
.panel--cloud { background: var(--cloud); color: var(--cocoa); }
.panel--tuscan { background: var(--tuscan); color: var(--cloud); }

#proof {
  margin-top: calc(-1 * var(--stack-runway));
  position: relative;
  z-index: 0;
}
.panel--launch {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--space-2xl-3xl);
  text-align: center;
  background: var(--space-c);
  margin-bottom: 0;
}

.launch__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.launch__backdrop img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.38;
  will-change: transform;
}

.launch__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      102deg,
      oklch(from var(--space-c) l c h / 0.97) 0%,
      oklch(from var(--space-c) l c h / 0.88) 34%,
      oklch(from var(--space-c) l c h / 0.62) 58%,
      oklch(from var(--space-c) l c h / 0.78) 100%
    ),
    radial-gradient(
      ellipse 85% 75% at 50% 48%,
      oklch(from var(--space-c) l c h / 0.72) 0%,
      transparent 68%
    );
}

.panel--about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, oklch(from var(--cloud) l c h / 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, oklch(from var(--sun) l c h / 0.1) 0%, transparent 50%),
    var(--teal);
  color: var(--cloud);
}

.mono-label {
  display: block;
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-s);
}
.mono-label--sun { color: var(--sun); }
.text-fire { color: var(--orange); }

/* ── Buttons ── */
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-s);
  margin-top: var(--space-m);
}
.actions--center { justify-content: center; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.72em 1.5em;
  font-family: var(--body);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-wrap: nowrap;
  clip-path: var(--voixly-btn-clip);
  z-index: 0;
  transition:
    translate 0.28s var(--ease),
    filter 0.28s var(--ease),
    background 0.28s,
    color 0.28s;
  -webkit-tap-highlight-color: transparent;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn--fire::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: var(--voixly-btn-clip);
  box-shadow: inset 0 0 0 1px oklch(from var(--space-c) l c h / 0.12);
  pointer-events: none;
}

.btn--fire {
  color: var(--space-c);
  background: linear-gradient(165deg, var(--orange-shade) 0%, var(--orange) 100%);
  filter: drop-shadow(0 4px 14px oklch(from var(--orange) l c h / 0.24));
}

.btn--fire:hover {
  translate: 0 -2px;
  filter: drop-shadow(0 8px 22px oklch(from var(--orange) l c h / 0.34));
}

.btn--fire:active {
  translate: 0 1px;
  filter: drop-shadow(0 2px 8px oklch(from var(--orange) l c h / 0.2));
}

.btn--teal::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: var(--voixly-btn-clip);
  box-shadow: inset 0 0 0 1px oklch(from var(--space-c) l c h / 0.12);
  pointer-events: none;
}

.btn--teal {
  color: var(--cloud);
  background: linear-gradient(165deg, var(--teal-d) 0%, var(--teal) 100%);
  filter: drop-shadow(0 4px 14px oklch(from var(--teal) l c h / 0.28));
}

.btn--teal:hover {
  translate: 0 -2px;
  filter: drop-shadow(0 8px 22px oklch(from var(--teal) l c h / 0.38));
}

.btn--teal:active {
  translate: 0 1px;
  filter: drop-shadow(0 2px 8px oklch(from var(--teal) l c h / 0.22));
}

.btn--ghost,
.btn--ghost-dark {
  color: var(--cloud);
  background: oklch(from var(--cloud) l c h / 0.04);
}

.btn--ghost-dark {
  color: var(--cocoa);
  background: oklch(from var(--cocoa) l c h / 0.04);
}

.btn--ghost::before,
.btn--ghost-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: var(--voixly-btn-clip);
  box-shadow: inset 0 0 0 1px oklch(from var(--cloud) l c h / 0.28);
  pointer-events: none;
}

.btn--ghost-dark::before {
  box-shadow: inset 0 0 0 1px oklch(from var(--cocoa) l c h / 0.22);
}

.btn--ghost:hover,
.btn--ghost-dark:hover {
  translate: 0 -1px;
  background: oklch(from var(--teal) l c h / 0.08);
  color: var(--sun);
}

.btn--ghost-dark:hover {
  background: oklch(from var(--orange) l c h / 0.06);
  color: var(--orange);
}

.btn:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}

.btn--sm {
  min-height: 2.25rem;
  padding: 0.55em 1.1em;
  font-size: 0.8125rem;
}

.btn--lg {
  min-height: 3.15rem;
  padding: 0.85em 1.75em;
  font-size: 1rem;
}

.btn--nav {
  min-height: 2.25rem;
  padding: 0.5em 1rem;
  font-size: 0.8125rem;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--nav-h) + var(--space-xl)) 0 var(--space-2xl);
  border-bottom: 1px solid oklch(from var(--cloud) l c h / 0.06);
  background: var(--space-c);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__backdrop img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  object-fit: cover;
  object-position: 62% 42%;
  opacity: 0.38;
  will-change: transform;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      102deg,
      oklch(from var(--space-c) l c h / 0.97) 0%,
      oklch(from var(--space-c) l c h / 0.88) 34%,
      oklch(from var(--space-c) l c h / 0.62) 58%,
      oklch(from var(--space-c) l c h / 0.78) 100%
    ),
    radial-gradient(
      ellipse 85% 75% at 18% 48%,
      oklch(from var(--space-c) l c h / 0.72) 0%,
      transparent 68%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-l-xl);
  align-items: center;
}

.hero__content {
  max-width: 38rem;
}

.hero__eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: var(--space-m);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, var(--step-5));
  line-height: 1.08;
  margin-bottom: var(--space-m);
  text-wrap: balance;
}

.hero__accent {
  color: var(--orange);
  display: block;
  margin-top: 0.15em;
  line-height: 1.2;
}

.hero__lead {
  font-size: var(--step-1);
  color: var(--mist);
  line-height: var(--leading-prose);
  margin-bottom: var(--space-l);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
}

.hero__trust {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(from var(--teal) l c h / 0.85);
}

.hero__logo {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: min(300px, 40vw);
  aspect-ratio: 1;
}

.hero__orbit {
  position: absolute;
  inset: -8%;
  color: var(--teal);
  opacity: 0.35;
  pointer-events: none;
}

.hero__orbit-svg {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
}

.hero__orbit-ring--2 { color: var(--orange); opacity: 0.55; }
.hero__orbit-ring--3 { opacity: 0.25; }

.hero__logo img {
  position: relative;
  z-index: 1;
  width: min(260px, 36vw);
  height: auto;
  opacity: 0.95;
  transform-origin: center center;
  will-change: transform;
}

/* ── Problem ── */
.panel__head h2 { max-width: 22ch; margin-bottom: var(--space-l); }

.panel__head--sequence .panel__head__row,
.panel__head--proof .panel__head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}

.panel__head--sequence .panel__head__row h2,
.panel__head--proof .panel__head__row h2 {
  margin-bottom: 0;
}

.panel__head--proof .panel__head__row h2 {
  max-width: none;
}

.sequence-teaser-link,
.proof-teaser-link {
  flex-shrink: 0;
}

.pain-deck {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: var(--space-s);
  margin-bottom: var(--space-xl);
}
.pain-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-m);
  background: var(--cloud);
  border-radius: 12px;
  border: 1px solid oklch(from var(--cocoa) l c h / 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px oklch(from var(--cocoa) l c h / 0.1);
}
.pain-card__n {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: oklch(from var(--teal) l c h / 0.5);
  display: block;
  margin-bottom: var(--space-xs);
}
.pain-card p { font-size: 0.9375rem; line-height: 1.4; color: var(--shark); }

.manifesto {
  padding: var(--space-l-xl);
  background: var(--cocoa);
  color: var(--cloud);
  border-radius: 16px;
  border-left: 4px solid var(--orange);
}
.manifesto__lead {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--sun);
  margin-bottom: var(--space-xs);
}
.manifesto__hit {
  font-family: var(--head);
  font-size: var(--step-3);
  font-weight: 700;
  line-height: 1.15;
}

/* ── Split-word reveals ── */
[data-split-words] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
[data-split-words] .word-inner {
  display: inline-block;
  will-change: transform;
}

/* ── Mission control decor ── */
.mission__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mission__backdrop img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.38;
  will-change: transform;
}

.mission__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      102deg,
      oklch(from var(--space-c) l c h / 0.97) 0%,
      oklch(from var(--space-c) l c h / 0.88) 34%,
      oklch(from var(--space-c) l c h / 0.62) 58%,
      oklch(from var(--space-c) l c h / 0.78) 100%
    ),
    radial-gradient(
      ellipse 85% 75% at 18% 48%,
      oklch(from var(--space-c) l c h / 0.72) 0%,
      transparent 68%
    );
}

.mission-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.mission-deco__grid {
  position: absolute;
  inset: -1px;
  opacity: 0.04;
  background-position: 0 0;
  background-image:
    linear-gradient(oklch(from var(--teal) l c h / 0.8) 1px, transparent 1px),
    linear-gradient(90deg, oklch(from var(--teal) l c h / 0.8) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 75% 50%, black 20%, transparent 75%);
}
.mission-deco__orbit {
  position: absolute;
  width: min(90vw, 52rem);
  aspect-ratio: 1;
  top: 50%;
  right: -18%;
  translate: 0 -50%;
  color: var(--teal);
  opacity: 0.12;
  transform-origin: 50% 50%;
}

.mission-mark {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: var(--space-xs);
}
.mission-mark img {
  position: relative;
  z-index: 1;
  opacity: 0.9;
  transform-origin: center center;
}
.mission-mark__ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid oklch(from var(--orange) l c h / 0.45);
  box-shadow: 0 0 24px oklch(from var(--orange) l c h / 0.15);
  transform-origin: center center;
}
.mission-mark__ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed oklch(from var(--teal) l c h / 0.35);
}

/* ── Solution split ── */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-l-xl);
  align-items: stretch;
}
.split__a p { color: var(--mist); margin-top: var(--space-s); max-width: 36rem; }
.split__a h2 { margin-bottom: var(--space-m); max-width: 16ch; }
.mission-card {
  padding: var(--space-l-xl);
  background: oklch(from var(--shark) l c h / 0.55);
  border: 1px solid oklch(from var(--teal) l c h / 0.25);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-s);
  position: relative;
  z-index: 1;
}
.mission-card img { opacity: 0.9; margin-bottom: 0; }
.mission-card p { color: var(--mist); }
.mission-card__outcome {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--sun) !important;
}

/* ── Countdown steps ── */
.sequence-rail {
  position: relative;
  margin-bottom: var(--space-l);
  padding-top: var(--space-xs);
}
.sequence-rail__line {
  height: 2px;
  background: oklch(from var(--cocoa) l c h / 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.sequence-rail__fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: inherit;
}
.sequence-rail__marks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-xs);
  font-family: var(--head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: oklch(from var(--cocoa) l c h / 0.35);
}
.sequence-rail__marks-go { color: oklch(from var(--orange) l c h / 0.5); }
.sequence-rail__marks li.is-lit { color: var(--orange); }

.countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
  margin-bottom: var(--space-xl);
}
.countdown__step {
  padding: var(--space-l);
  background: var(--linen);
  border-radius: 16px;
  border: 1px solid oklch(from var(--cocoa) l c h / 0.08);
  transition: transform 0.35s var(--ease), border-color 0.4s, box-shadow 0.4s;
  text-align: center;
}

.countdown__badge {
  display: block;
  width: min(6.75rem, 34vw);
  height: auto;
  margin: 0 auto var(--space-s);
  filter: drop-shadow(0 8px 16px oklch(from var(--cocoa) l c h / 0.08));
  transition: transform 0.35s var(--ease);
}

.countdown__step:hover .countdown__badge {
  transform: translateY(-4px);
}
.countdown__step.is-live {
  border-color: oklch(from var(--orange) l c h / 0.35);
  box-shadow: 0 12px 40px oklch(from var(--cocoa) l c h / 0.08);
}
.countdown__step.is-live .countdown__t { color: var(--orange); }
.countdown__step:hover { transform: translateY(-6px); }
.countdown__step header { margin-bottom: var(--space-s); }
.countdown__t {
  font-family: var(--head);
  font-size: var(--step-3);
  font-weight: 700;
  color: oklch(from var(--orange) l c h / 0.45);
  display: block;
  margin-bottom: var(--space-2xs);
}
.countdown__t--go { color: var(--orange); }
.countdown__step h3 { font-size: var(--step-2); color: var(--cocoa); margin-bottom: var(--space-2xs); }
.countdown__step p { font-size: 0.9375rem; color: var(--shark); line-height: var(--leading-prose-sm); }
.countdown__step--go {
  background: var(--cocoa);
  color: var(--cloud);
  border-color: oklch(from var(--orange) l c h / 0.3);
  box-shadow: 0 0 40px oklch(from var(--orange) l c h / 0.15);
}
.countdown__step--go h3 { color: var(--cloud); }
.countdown__step--go p { color: var(--mist); }

/* ═══ SERVICES — sticky stack ═══ */
.services { background: var(--space-c); padding-bottom: 0; }

.services__header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.services__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.services__backdrop img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  object-fit: cover;
  object-position: 58% 42%;
  opacity: 0.38;
  will-change: transform;
}

.services__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      102deg,
      oklch(from var(--space-c) l c h / 0.97) 0%,
      oklch(from var(--space-c) l c h / 0.88) 34%,
      oklch(from var(--space-c) l c h / 0.62) 58%,
      oklch(from var(--space-c) l c h / 0.78) 100%
    ),
    radial-gradient(
      ellipse 85% 75% at 18% 48%,
      oklch(from var(--space-c) l c h / 0.72) 0%,
      transparent 68%
    );
}

.services__intro {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl-3xl) var(--space-xl);
}
.services__intro h2 { font-size: var(--step-5); max-width: 14ch; margin-top: var(--space-s); }
.services__intro-link { margin-top: var(--space-m); }

.stack {
  position: relative;
  z-index: 2;
  padding-bottom: var(--stack-runway);
}
.stack__card {
  position: sticky;
  top: var(--stack-top);
  min-height: var(--stack-runway);
  margin-bottom: var(--stack-runway);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 -20px 60px oklch(from var(--space-c) l c h / 0.5);
  --stack-dim: 0;
}
.stack__card:last-of-type {
  margin-bottom: 0;
  min-height: var(--stack-runway);
  border-radius: 20px 20px 0 0;
  box-shadow: none;
}
.stack__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--space-c);
  opacity: var(--stack-dim);
  pointer-events: none;
  z-index: 2;
}
.stack__card--1 { background: var(--linen); color: var(--cocoa); z-index: 1; }
.stack__card--2 { background: var(--teal); color: var(--cloud); z-index: 2; }
.stack__card--3 { background: var(--tuscan); color: var(--cloud); z-index: 3; }
.stack__card--4 { background: var(--cocoa); color: var(--cloud); z-index: 4; }
.stack__card--5 { background: var(--shark); color: var(--cloud); z-index: 5; }
.stack__card--6 {
  background: linear-gradient(145deg, var(--orange) 0%, oklch(from var(--sun) l c h / 1) 100%);
  color: var(--space-c);
  z-index: 6;
}

.stack__inner {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin-inline: auto;
  padding: var(--space-xl-2xl) var(--space-m);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-l-xl);
  align-items: start;
  min-height: inherit;
}
.stack__meta,
.stack__body {
  min-width: 0;
}
.stack__idx {
  font-family: var(--head);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.08;
  display: block;
  margin-bottom: var(--space-s);
  will-change: transform;
}
.stack__card--6 .stack__idx { opacity: 0.15; }
.stack__arena {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: var(--space-xs);
}
.stack__card--3 .stack__arena,
.stack__card--4 .stack__arena,
.stack__card--5 .stack__arena { color: var(--sun); }
.stack__card--2 .stack__arena { color: var(--sun); }
.stack__card--6 .stack__arena { color: oklch(from var(--space-c) l c h / 0.65); }
.stack__meta h3 { font-size: var(--step-4); line-height: 1.05; }
.stack__body p { margin-bottom: var(--space-m); opacity: 0.85; }
.stack__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  margin-bottom: var(--space-m);
  font-size: 0.9375rem;
}
.stack__list li {
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
  text-wrap: pretty;
}
.stack__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.stack__card--6 .stack__list li::before { background: var(--space-c); }
.stack__body blockquote {
  font-family: var(--head);
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.35;
  padding: var(--space-m);
  margin-bottom: var(--space-m);
  border-radius: 12px;
  background: oklch(from var(--orange) l c h / 0.08);
  border-left: 3px solid var(--orange);
}
.stack__card--2 blockquote,
.stack__card--3 blockquote,
.stack__card--4 blockquote,
.stack__card--5 blockquote {
  background: oklch(from var(--sun) l c h / 0.1);
  border-color: var(--sun);
  color: var(--sun);
}
.stack__card--6 blockquote {
  background: oklch(from var(--space-c) l c h / 0.12);
  border-color: var(--space-c);
}

.stack__card--1 .btn--ghost {
  color: var(--cocoa);
  background: oklch(from var(--cocoa) l c h / 0.04);
}

.stack__card--1 .btn--ghost::before {
  box-shadow: inset 0 0 0 1px oklch(from var(--cocoa) l c h / 0.2);
}

.stack__card--1 .btn--ghost:hover { color: var(--orange); }

/* ═══ FAQ ═══ */
.faq { background: var(--space-c); padding-bottom: var(--space-l); }
.faq__intro { padding-block: var(--space-2xl-3xl) var(--space-m); }
.faq__intro .panel__head h2 { margin-bottom: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.faq-item {
  margin: 0;
  padding: var(--space-s) var(--space-m);
  border-radius: 12px;
  border: 1px solid oklch(from var(--teal) l c h / 0.18);
  background: oklch(from var(--shark) l c h / 0.35);
}

.faq-item dt {
  font-family: var(--head);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--sun);
  margin-bottom: var(--space-2xs);
  line-height: 1.3;
}

.faq-item dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: var(--leading-prose-sm);
  color: var(--mist);
}

.faq-item dd a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq-item dd a:hover {
  color: var(--sun);
}

/* ── FAQ page ── */
.faq-page .faq-intro__lead {
  font-size: var(--step-1);
  line-height: var(--leading-prose);
  color: var(--mist);
  margin-bottom: var(--space-m);
  max-width: 42rem;
}

.faq-page .proof-jump {
  margin-bottom: 0;
}

.faq-page .faq-category {
  scroll-margin-top: calc(var(--nav-h) + var(--space-m));
}

.faq-page .faq-category .faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.faq-page .faq-category .faq-item {
  scroll-margin-top: calc(var(--nav-h) + var(--space-s));
}

.faq-page .sub-page__inner--wide {
  max-width: min(52rem, var(--wrap));
}

/* ── Marketing News ── */
.news-page .sub-page__inner--wide {
  max-width: min(56rem, var(--wrap));
}

.news-grid {
  display: grid;
  gap: var(--space-m);
}

.news-card {
  border-radius: 16px;
  border: 1px solid oklch(from var(--cloud) l c h / 0.1);
  background: oklch(from var(--space-c) l c h / 0.28);
  transition: border-color 0.25s, transform 0.25s;
}

.news-card:hover {
  border-color: oklch(from var(--sun) l c h / 0.35);
  transform: translateY(-2px);
}

.news-card__link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  gap: var(--space-2xs) var(--space-s);
  padding: var(--space-m);
  text-decoration: none;
  color: inherit;
}

.news-card__index {
  grid-row: 1 / span 4;
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: oklch(from var(--mist) l c h / 0.35);
  line-height: 1;
  padding-top: 0.15em;
}

.news-card__category {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun);
}

.news-card__title {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cloud);
  margin: 0;
}

.news-card__excerpt {
  font-size: 0.9375rem;
  color: var(--mist);
  margin: 0;
  line-height: var(--leading-prose-sm);
}

.news-card__meta {
  font-size: 0.8125rem;
  color: oklch(from var(--mist) l c h / 0.65);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em;
}

.news-load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid oklch(from var(--cloud) l c h / 0.1);
}

.news-load-more__status {
  font-size: 0.875rem;
  color: oklch(from var(--mist) l c h / 0.75);
  margin: 0;
}

.news-load-more__btn {
  min-width: 12rem;
}

.news-card[hidden] {
  display: none;
}

/* ── Blog article ── */
.article-page .sub-page__header--article {
  padding-bottom: var(--space-m);
}

.article-page .sub-page__header-main--article {
  grid-template-columns: 1fr;
}

.article-page .sub-page__inner--article {
  max-width: min(44rem, var(--wrap));
}

.article__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  font-size: 0.875rem;
  color: oklch(from var(--mist) l c h / 0.75);
  margin-top: var(--space-s);
}

.article__author {
  font-weight: 600;
  color: var(--sun);
}

.article__body h2 {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cloud);
  margin: var(--space-l) 0 var(--space-s);
  scroll-margin-top: calc(var(--nav-h) + var(--space-s));
}

.article__body h2:first-child {
  margin-top: 0;
}

.article__body ul,
.article__body ol {
  margin: var(--space-s) 0 var(--space-m);
  padding-left: 1.25rem;
  color: var(--mist);
}

.article__body li {
  padding: var(--space-3xs) 0;
  line-height: var(--leading-prose-sm);
}

.article__body li::marker {
  color: var(--orange);
}

.article__related {
  margin-top: var(--space-l-xl);
  padding: var(--space-m);
  border-radius: 16px;
  border: 1px solid oklch(from var(--cloud) l c h / 0.1);
  background: oklch(from var(--space-c) l c h / 0.22);
}

.article__related-list {
  margin-top: var(--space-s);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.article__related-list a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.article__related-list a:hover {
  color: var(--orange);
}

.footer__news {
  font-family: var(--head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sun);
}

.footer__news:hover,
.footer__news[aria-current="page"] {
  color: var(--orange);
}

.footer__comms a.footer__news:hover {
  color: var(--orange);
}

/* ── Proof ── */
.proof-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-l-xl);
  margin-bottom: var(--space-xl);
}
.proof-stats h3 { font-size: var(--step-2); margin-bottom: var(--space-m); }
.proof-stats li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-s);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid oklch(from var(--cloud) l c h / 0.1);
  font-size: 0.9375rem;
  color: var(--mist);
}
.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 0.45em;
  transform-origin: center center;
}
.proof-quote {
  display: flex;
  align-items: center;
  padding: var(--space-l);
  background: oklch(from var(--space-c) l c h / 0.35);
  border-radius: 16px;
  border: 1px solid oklch(from var(--cloud) l c h / 0.1);
}
.proof-quote blockquote {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.3;
}
.orbit-success {
  padding: var(--space-l-xl);
  background: oklch(from var(--space-c) l c h / 0.28);
  border-radius: 16px;
  border: 1px solid oklch(from var(--sun) l c h / 0.2);
}
.orbit-success h3 { margin: var(--space-s) 0 var(--space-m); font-size: var(--step-3); }
.orbit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-bottom: var(--space-m);
}
.orbit-tags span {
  font-size: 0.8125rem;
  padding: var(--space-2xs) var(--space-s);
  background: oklch(from var(--cloud) l c h / 0.08);
  border-radius: 999px;
  color: var(--mist);
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.orbit-tags span.is-lit {
  border-color: oklch(from var(--sun) l c h / 0.35);
  color: var(--cloud);
}
.orbit-success__close {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--sun);
}

/* ── Cost ── */
.panel__inner--narrow h2 { margin-bottom: var(--space-m); }
.sub { margin-top: var(--space-m); font-weight: 600; }
.cost-list { margin: var(--space-m) 0; }
.cost-list li {
  padding: var(--space-xs) 0 var(--space-xs) 1.25rem;
  position: relative;
  color: var(--shark);
}
.cost-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.cost-kicker {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--orange);
  margin: var(--space-l) 0;
}

/* ── Cost ── */
.about-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-deco__grid {
  position: absolute;
  inset: -1px;
  opacity: 0.05;
  background-image:
    linear-gradient(oklch(from var(--cloud) l c h / 0.35) 1px, transparent 1px),
    linear-gradient(90deg, oklch(from var(--cloud) l c h / 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 10%, transparent 75%);
}

.about-deco__orbit {
  position: absolute;
  width: min(92vw, 52rem);
  aspect-ratio: 1;
  top: 8%;
  right: -22%;
  color: var(--cloud);
  opacity: 0.12;
  transform-origin: 50% 50%;
}

.about-block {
  position: relative;
  z-index: 1;
}

.about-teaser {
  text-align: center;
}

.about-teaser__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
}

.about-teaser h2 {
  margin-bottom: var(--space-m);
  text-wrap: balance;
  color: var(--cloud);
}

.about-teaser .mono-label--sun {
  color: var(--sun);
}

.about-teaser__lead {
  font-size: var(--step-1);
  line-height: var(--leading-prose);
  color: var(--mist);
  margin-bottom: var(--space-l);
}

.about-teaser__lead strong {
  color: var(--sun);
  font-weight: 600;
}

/* ── Sub-page (About, etc.) ── */
.sub-page {
  background: var(--space-c);
}

.sub-page__header {
  width: var(--wrap);
  margin-inline: auto;
  padding: calc(var(--nav-h) + var(--space-l)) 0 var(--space-l-xl);
}

.sub-page__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45em;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: oklch(from var(--teal) l c h / 0.85);
  margin-bottom: var(--space-m);
}

.sub-page__crumb a {
  color: var(--orange);
  transition: color 0.2s;
}

.sub-page__crumb a:hover {
  color: var(--sun);
}

.sub-page__crumb span[aria-current="page"] {
  color: var(--mist);
}

.sub-page__header-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-l-xl);
  align-items: center;
}

.sub-page__header-copy {
  max-width: 38rem;
}

.sub-page__title {
  font-size: clamp(2rem, 4.5vw, var(--step-4));
  line-height: 1.08;
  margin-bottom: var(--space-s);
  text-wrap: balance;
}

.sub-page__lead {
  font-size: var(--step-1);
  line-height: var(--leading-prose);
  color: var(--mist);
  margin-bottom: var(--space-m);
  max-width: 36rem;
}

.sub-page__telemetry {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  padding-top: var(--space-s);
  border-top: 1px solid oklch(from var(--cloud) l c h / 0.08);
}

.sub-page__telemetry dt {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.2em;
}

.sub-page__telemetry dd {
  font-size: 0.875rem;
  color: var(--cloud);
  line-height: 1.35;
}

.sub-page__mark {
  position: relative;
  width: 9rem;
  height: 9rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sub-page__mark-orbit {
  position: absolute;
  inset: 0;
  color: var(--teal);
  opacity: 0.35;
}

.sub-page__mark img {
  position: relative;
  z-index: 1;
  width: 5.5rem;
  height: auto;
  opacity: 0.92;
}

.sub-page__body {
  position: relative;
  padding: var(--space-xl) 0 var(--space-2xl-3xl);
  border-top: 1px solid oklch(from var(--cloud) l c h / 0.06);
}

.sub-page__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sub-page__grid {
  position: absolute;
  inset: -1px;
  opacity: 0.03;
  background-image:
    linear-gradient(oklch(from var(--teal) l c h / 0.9) 1px, transparent 1px),
    linear-gradient(90deg, oklch(from var(--teal) l c h / 0.9) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 0 0;
  mask-image: linear-gradient(180deg, black 0%, transparent 80%);
  will-change: background-position;
}

.sub-page__orbit {
  position: absolute;
  width: min(70vw, 36rem);
  aspect-ratio: 1;
  top: -8%;
  right: -18%;
  color: var(--teal);
  opacity: 0.07;
  transform-origin: 50% 50%;
  will-change: transform;
}

.sub-page__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}

.sub-page__section {
  padding-top: var(--space-l-xl);
  border-top: 1px solid oklch(from var(--cloud) l c h / 0.07);
}

.sub-page__section:first-child {
  padding-top: var(--space-l-xl);
  border-top: none;
}

.sub-page__section-head {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-bottom: var(--space-m);
}

.sub-page__index {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: oklch(from var(--teal) l c h / 0.35);
  line-height: 1;
}

.sub-page__split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-l-xl);
  align-items: start;
}

.sub-page__prose p {
  color: var(--mist);
  line-height: var(--leading-prose);
  margin-bottom: var(--space-s);
}

.sub-page__prose p:last-child {
  margin-bottom: 0;
}

.sub-page__h2 {
  font-size: var(--step-3);
  margin-bottom: var(--space-m);
  max-width: 22ch;
}

.sub-page__h2--wide {
  max-width: none;
  margin-top: calc(var(--space-s) * -1);
}

.sub-page__h2--sm {
  font-size: var(--step-2);
  max-width: none;
  margin-top: var(--space-2xs);
}

.sub-page__aside {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-m));
}

.sub-page__aside .mono-label {
  margin-bottom: var(--space-2xs);
}

.sub-page__aside .mission-card__outcome {
  font-size: var(--step-1);
  line-height: 1.3;
}

.sub-page__emphasis {
  font-family: var(--head);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--sun) !important;
  line-height: 1.35;
  margin-top: var(--space-m);
}

.sub-page__crew {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-l-xl);
  align-items: start;
}

.sub-page__tag-panel {
  padding: var(--space-l);
  border-radius: 16px;
  border: 1px solid oklch(from var(--teal) l c h / 0.2);
  background: oklch(from var(--shark) l c h / 0.45);
}

.sub-page__tag-panel .mono-label {
  display: block;
  margin-bottom: var(--space-s);
}

.sub-page__tag-panel .crew-tags {
  margin-top: 0;
}

.sub-page__base {
  box-shadow: none;
}

.sub-page__base .base-station__header {
  margin-bottom: var(--space-m);
}

.sub-page__base .base-station__header h2 {
  margin-bottom: 0;
}

.sub-page__cta-panel {
  padding: var(--space-l-xl);
  border-radius: 16px;
  border: 1px solid oklch(from var(--teal) l c h / 0.22);
  background:
    linear-gradient(165deg, oklch(from var(--shark) l c h / 0.55) 0%, oklch(from var(--space-c) l c h / 0.95) 100%);
}

.sub-page__cta-status {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-m);
}

.sub-page__cta-title {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--cloud);
  margin-bottom: var(--space-s);
  max-width: 24ch;
}

.sub-page__cta-lead {
  font-size: 0.9375rem;
  line-height: var(--leading-prose-sm);
  color: var(--mist);
  margin-bottom: var(--space-m);
  max-width: 42ch;
}

.sub-page__back {
  display: inline-block;
  margin-top: var(--space-l);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--teal);
  transition: color 0.2s;
}

.sub-page__back:hover {
  color: var(--sun);
}

.sub-page__inner--wide {
  max-width: 56rem;
}

/* ── Services page ── */
.services-jump {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  padding-bottom: var(--space-l);
  border-bottom: 1px solid oklch(from var(--cloud) l c h / 0.07);
}

.services-jump a {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  padding: var(--space-2xs) var(--space-s);
  border-radius: 999px;
  border: 1px solid oklch(from var(--teal) l c h / 0.25);
  color: var(--mist);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.services-jump a:hover {
  color: var(--cloud);
  border-color: oklch(from var(--orange) l c h / 0.4);
  background: oklch(from var(--shark) l c h / 0.45);
}

.service-block {
  border-radius: 16px;
  padding: var(--space-l-xl);
  scroll-margin-top: calc(var(--nav-h) + var(--space-s));
}

.service-block__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-m);
  align-items: end;
  margin-bottom: var(--space-l);
}

.service-block__idx {
  font-family: var(--head);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.1;
  will-change: transform;
}

.service-block__arena {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-2xs);
}

.service-block__title {
  font-size: var(--step-3);
  line-height: 1.08;
}

.service-block__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-l-xl);
  align-items: start;
}

.service-block__main p {
  line-height: var(--leading-prose);
  margin-bottom: var(--space-m);
  opacity: 0.9;
}

.service-block__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  margin-bottom: var(--space-m);
  font-size: 0.9375rem;
}

.service-block__list li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.4;
  text-wrap: pretty;
}

.service-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.service-block__quote {
  font-family: var(--head);
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.35;
  padding: var(--space-m);
  margin: 0;
  border-radius: 12px;
  background: oklch(from var(--orange) l c h / 0.08);
  border-left: 3px solid var(--orange);
}

.service-block--1 {
  background: var(--linen);
  color: var(--cocoa);
}

.service-block--1 .service-block__arena { color: var(--teal); }
.service-block--1 .service-block__quote { color: var(--cocoa); }
.service-block--1 .btn--ghost {
  color: var(--cocoa);
  background: oklch(from var(--cocoa) l c h / 0.04);
}

.service-block--2 {
  background: var(--teal);
  color: var(--cloud);
}

.service-block--2 .service-block__arena { color: var(--sun); }
.service-block--2 .service-block__quote {
  background: oklch(from var(--sun) l c h / 0.1);
  border-color: var(--sun);
  color: var(--sun);
}

.service-block--3 {
  background: var(--tuscan);
  color: var(--cloud);
}

.service-block--3 .service-block__arena { color: var(--sun); }
.service-block--3 .service-block__quote {
  background: oklch(from var(--sun) l c h / 0.1);
  border-color: var(--sun);
  color: var(--sun);
}

.service-block--4 {
  background: var(--cocoa);
  color: var(--cloud);
}

.service-block--4 .service-block__arena { color: var(--sun); }
.service-block--4 .service-block__quote {
  background: oklch(from var(--sun) l c h / 0.1);
  border-color: var(--sun);
  color: var(--sun);
}

.service-block--5 {
  background: var(--shark);
  color: var(--cloud);
}

.service-block--5 .service-block__arena { color: var(--sun); }
.service-block--5 .service-block__quote {
  background: oklch(from var(--sun) l c h / 0.1);
  border-color: var(--sun);
  color: var(--sun);
}

.service-block--6 {
  background: linear-gradient(145deg, var(--orange) 0%, var(--sun) 100%);
  color: var(--space-c);
}

.service-block--6 .service-block__idx { opacity: 0.15; }
.service-block--6 .service-block__arena { color: oklch(from var(--space-c) l c h / 0.65); }
.service-block--6 .service-block__list li::before { background: var(--space-c); }
.service-block--6 .service-block__quote {
  background: oklch(from var(--space-c) l c h / 0.12);
  border-color: var(--space-c);
  color: var(--space-c);
}

/* ── Proof page ── */
.proof-intro__lead {
  font-size: var(--step-1);
  line-height: var(--leading-prose);
  color: var(--mist);
  max-width: 42rem;
}

.proof-jump {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid oklch(from var(--cloud) l c h / 0.07);
}

.proof-jump a {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  padding: var(--space-2xs) var(--space-s);
  border-radius: 999px;
  border: 1px solid oklch(from var(--teal) l c h / 0.25);
  color: var(--mist);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.proof-jump a:hover {
  color: var(--cloud);
  border-color: oklch(from var(--orange) l c h / 0.4);
  background: oklch(from var(--shark) l c h / 0.45);
}

.proof-cases {
  display: grid;
  gap: var(--space-m);
}

.case-card {
  padding: var(--space-l-xl);
  border-radius: 16px;
  border: 1px solid oklch(from var(--teal) l c h / 0.2);
  background: oklch(from var(--shark) l c h / 0.45);
  scroll-margin-top: calc(var(--nav-h) + var(--space-s));
  transition: border-color 0.3s;
}

.case-card:hover {
  border-color: oklch(from var(--orange) l c h / 0.35);
}

.case-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  margin-bottom: var(--space-m);
}

.case-card__idx {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  color: oklch(from var(--teal) l c h / 0.35);
  line-height: 1;
  will-change: transform;
}

.case-card__client {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.case-card__title {
  font-size: var(--step-2);
  line-height: 1.2;
  margin-bottom: var(--space-s);
  max-width: 32ch;
}

.case-card p {
  font-size: 0.9375rem;
  line-height: var(--leading-prose);
  color: var(--mist);
  max-width: 52ch;
}

.proof-layout--sub {
  margin-bottom: 0;
}

.proof-layout--sub .proof-stats h3 {
  font-size: var(--step-2);
  margin-bottom: var(--space-m);
  max-width: none;
}

.proof-success {
  margin-top: 0;
}

/* ── Sequence page ── */
.sequence-intro__lead {
  font-size: var(--step-1);
  line-height: var(--leading-prose);
  color: var(--mist);
  max-width: 42rem;
}

.sequence-jump {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid oklch(from var(--cloud) l c h / 0.07);
}

.sequence-jump a {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  padding: var(--space-2xs) var(--space-s);
  border-radius: 999px;
  border: 1px solid oklch(from var(--teal) l c h / 0.25);
  color: var(--mist);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.sequence-jump a:hover {
  color: var(--cloud);
  border-color: oklch(from var(--orange) l c h / 0.4);
  background: oklch(from var(--shark) l c h / 0.45);
}

.sequence-rail--sub {
  margin-bottom: var(--space-l-xl);
}

.sequence-rail--sub .sequence-rail__line {
  background: oklch(from var(--cloud) l c h / 0.08);
}

.sequence-rail--sub .sequence-rail__marks {
  color: oklch(from var(--teal) l c h / 0.45);
}

.sequence-steps {
  display: grid;
  gap: var(--space-m);
}

.seq-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-l);
  align-items: start;
  padding: var(--space-l-xl);
  border-radius: 16px;
  border: 1px solid oklch(from var(--teal) l c h / 0.2);
  background: oklch(from var(--shark) l c h / 0.45);
  scroll-margin-top: calc(var(--nav-h) + var(--space-s));
  transition: border-color 0.3s;
}

.seq-step:hover {
  border-color: oklch(from var(--orange) l c h / 0.35);
}

.seq-step.is-live {
  border-color: oklch(from var(--orange) l c h / 0.45);
  box-shadow: 0 0 0 1px oklch(from var(--orange) l c h / 0.12);
}

.seq-step__badge-wrap {
  flex-shrink: 0;
}

.seq-step__badge {
  width: clamp(4.5rem, 12vw, 6.75rem);
  height: auto;
  display: block;
  will-change: transform;
  transition: transform 0.35s var(--ease);
}

.seq-step:hover .seq-step__badge,
.seq-step.is-live .seq-step__badge {
  transform: translateY(-4px) scale(1.03);
}

.seq-step__head {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-bottom: var(--space-s);
}

.seq-step__t {
  font-family: var(--head);
  font-size: var(--step-2);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: oklch(from var(--teal) l c h / 0.65);
  line-height: 1;
}

.seq-step__t--go {
  color: var(--orange);
}

.seq-step__label {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.seq-step__title {
  font-size: var(--step-2);
  line-height: 1.15;
  margin-bottom: var(--space-s);
  max-width: 24ch;
}

.seq-step__content p {
  font-size: 0.9375rem;
  line-height: var(--leading-prose);
  color: var(--mist);
  max-width: 46ch;
}

.seq-step--go {
  border-color: oklch(from var(--orange) l c h / 0.28);
  background:
    linear-gradient(165deg, oklch(from var(--shark) l c h / 0.65) 0%, oklch(from var(--tuscan) l c h / 0.35) 100%);
}

.seq-step--go .seq-step__title {
  color: var(--sun);
}

.about-page .about-principles {
  padding: 0;
  border: none;
  background: none;
}

.about-page .about-principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-s);
  margin-top: var(--space-m);
}

.about-page .about-principles__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-s);
  align-items: start;
  padding: var(--space-m);
  border-radius: 12px;
  border: 1px solid oklch(from var(--teal) l c h / 0.15);
  background: oklch(from var(--shark) l c h / 0.35);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.about-page .about-principles__item:hover {
  border-color: oklch(from var(--orange) l c h / 0.3);
  transform: translateY(-2px);
}

.about-page .about-principles__n {
  font-family: var(--head);
  font-size: var(--step-1);
  font-weight: 700;
  color: oklch(from var(--teal) l c h / 0.45);
  line-height: 1;
}

.about-page .about-principles__item h3 {
  font-size: 0.9375rem;
  color: var(--cloud);
  margin-bottom: 0.25em;
  line-height: 1.2;
}

.about-page .about-principles__item p {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--mist);
}

.crew-tags {
  margin-top: var(--space-s);
}

.crew-tags span {
  color: var(--cloud);
  background: oklch(from var(--cloud) l c h / 0.1);
  border-color: oklch(from var(--sun) l c h / 0.15);
}

.base-station {
  padding: var(--space-l-xl);
  border-radius: 20px;
  border: 1px solid oklch(from var(--teal) l c h / 0.22);
  background:
    linear-gradient(165deg, oklch(from var(--shark) l c h / 0.55) 0%, oklch(from var(--space-c) l c h / 0.95) 100%);
  box-shadow: 0 32px 80px oklch(from var(--space-c) l c h / 0.4);
  position: relative;
}

.base-station::before,
.base-station::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-color: oklch(from var(--sun) l c h / 0.4);
  border-style: solid;
  pointer-events: none;
}

.base-station::before {
  top: var(--space-s);
  left: var(--space-s);
  border-width: 1px 0 0 1px;
}

.base-station::after {
  right: var(--space-s);
  bottom: var(--space-s);
  border-width: 0 1px 1px 0;
}

.base-station__header {
  margin-bottom: var(--space-l);
}

.base-station__header h2 {
  margin-top: var(--space-2xs);
  max-width: 20ch;
}

.base-station__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

.base-station__label {
  display: block;
  font-family: var(--body);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-2xs);
}

.base-station__address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: var(--leading-prose-sm);
  color: var(--mist);
}

.base-station__comms ul {
  display: grid;
  gap: var(--space-2xs);
}

.base-station__comms a {
  font-size: 0.9375rem;
  color: var(--cloud);
  transition: color 0.2s;
}

.base-station__comms a:hover {
  color: var(--orange);
}

.base-station__live {
  font-size: 0.9375rem;
  color: var(--mist);
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  line-height: var(--leading-prose-sm);
}

.base-station__led {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px oklch(from var(--orange) l c h / 0.75);
  flex-shrink: 0;
  animation: launch-led 2.4s ease-in-out infinite;
}

.nav__links a[aria-current="page"] {
  color: var(--sun);
  background: oklch(from var(--linen) l c h / 0.08);
  box-shadow: 0 0 4px oklch(from var(--sun-tint) l c h / 0.35);
}

/* ── Launch (legacy console — removed from page) ── */
.launch-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}

.launch-deco__grid {
  position: absolute;
  inset: -1px;
  opacity: 0.035;
  background-image:
    linear-gradient(oklch(from var(--teal) l c h / 0.9) 1px, transparent 1px),
    linear-gradient(90deg, oklch(from var(--teal) l c h / 0.9) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, black 15%, transparent 72%);
}

.launch-deco__mark {
  position: absolute;
  width: min(42vw, 22rem);
  opacity: 0.05;
  transform-origin: center center;
}

.launch-deco__rings {
  width: min(92vw, 38rem);
  color: var(--teal);
  opacity: 0.16;
  transform-origin: 50% 50%;
}

.launch-block {
  position: relative;
  z-index: 3;
  max-width: 44rem;
}

.launch-console {
  position: relative;
  padding: var(--space-l-xl);
  border: 1px solid oklch(from var(--teal) l c h / 0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, oklch(from var(--shark) l c h / 0.55) 0%, oklch(from var(--space-c) l c h / 0.92) 100%);
  box-shadow:
    0 0 0 1px oklch(from var(--cloud) l c h / 0.04) inset,
    0 32px 80px oklch(from var(--space-c) l c h / 0.45);
}

.launch-console::before,
.launch-console::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-color: oklch(from var(--sun) l c h / 0.45);
  border-style: solid;
  pointer-events: none;
}

.launch-console::before {
  top: var(--space-s);
  left: var(--space-s);
  border-width: 1px 0 0 1px;
}

.launch-console::after {
  right: var(--space-s);
  bottom: var(--space-s);
  border-width: 0 1px 1px 0;
}

.launch-console__status {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
  font-family: var(--body);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
}

.launch-console__led {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px oklch(from var(--orange) l c h / 0.8);
  animation: launch-led 2.4s ease-in-out infinite;
}

.launch-console__window {
  padding: 0.35em 0.75em;
  border-radius: 999px;
  border: 1px solid oklch(from var(--teal) l c h / 0.35);
  color: var(--mist);
  letter-spacing: 0.12em;
}

.launch-console__display {
  position: relative;
  margin-bottom: var(--space-l);
}

.launch-console__tminus {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -58%;
  font-family: var(--display);
  font-size: clamp(7rem, 28vw, 11rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: oklch(from var(--teal) l c h / 0.1);
  pointer-events: none;
  user-select: none;
}

.launch-console__headline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-xs);
}

.launch-console__tminus-text {
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sun);
  line-height: 1;
}

.launch-console__phrase {
  display: grid;
  gap: 0.15em;
}

.launch-console__line {
  font-family: var(--head);
  font-size: clamp(1.75rem, 6vw, var(--step-4));
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.launch-console__line--fire {
  color: var(--orange);
  text-shadow: 0 0 40px oklch(from var(--orange) l c h / 0.25);
}

.launch-console__telemetry {
  margin-bottom: var(--space-m);
}

.launch-console__bar {
  height: 3px;
  margin-bottom: var(--space-s);
  border-radius: 999px;
  background: oklch(from var(--cloud) l c h / 0.08);
  overflow: hidden;
}

.launch-console__bar-fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--orange), var(--sun));
}

.launch-console__checklist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(from var(--mist) l c h / 0.55);
}

.launch-console__checklist li {
  padding: 0.45em 0.95em;
  border-radius: 999px;
  border: 1px solid oklch(from var(--cloud) l c h / 0.08);
  white-space: nowrap;
  transition: color 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.launch-console__checklist li.is-lit {
  color: var(--cloud);
  border-color: oklch(from var(--teal) l c h / 0.35);
  box-shadow: 0 0 16px oklch(from var(--teal) l c h / 0.12);
}

.launch-console__checklist-go.is-lit {
  color: var(--space-c);
  border-color: oklch(from var(--orange) l c h / 0.45);
  background: linear-gradient(165deg, var(--orange-shade), var(--orange));
  box-shadow: 0 0 24px oklch(from var(--orange) l c h / 0.28);
}

.launch-console .actions {
  margin-top: var(--space-l);
}

@keyframes launch-led {
  0%, 100% { opacity: 1; scale: 1; }
  50% { opacity: 0.45; scale: 0.88; }
}

/* ── Footer ── */
.footer {
  position: relative;
  isolation: isolate;
  background: var(--cocoa);
  color: var(--mist);
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
}

.footer__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer__backdrop img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  object-fit: cover;
  object-position: center 72%;
  opacity: 0.38;
  will-change: transform;
}

.footer__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      102deg,
      oklch(from var(--cocoa) l c h / 0.97) 0%,
      oklch(from var(--cocoa) l c h / 0.88) 34%,
      oklch(from var(--cocoa) l c h / 0.62) 58%,
      oklch(from var(--cocoa) l c h / 0.78) 100%
    ),
    radial-gradient(
      ellipse 85% 75% at 50% 62%,
      oklch(from var(--cocoa) l c h / 0.72) 0%,
      transparent 68%
    );
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 3;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    oklch(from var(--teal) l c h / 0.45) 20%,
    oklch(from var(--orange) l c h / 0.55) 50%,
    oklch(from var(--sun) l c h / 0.45) 80%,
    transparent
  );
}

.footer__inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand nav"
    "comms nav"
    "copy copy";
  gap: var(--space-m) var(--space-xl);
  align-items: start;
}

.footer__brand {
  grid-area: brand;
  display: grid;
  gap: var(--space-s);
}

.footer__logo {
  display: inline-block;
  position: relative;
  width: fit-content;
  transition: opacity 0.25s;
}

.footer__logo:hover {
  opacity: 0.85;
}

.footer__logo img {
  height: clamp(4.5rem, 14vw, 6rem);
  width: auto;
  display: block;
  opacity: 0;
}

.footer__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--footer-logo);
  -webkit-mask-image: url("../assets/voixly-logo-horizontal-b17c06c7-b754-4e3f-88e4-1802860d6085.png");
  mask-image: url("../assets/voixly-logo-horizontal-b17c06c7-b754-4e3f-88e4-1802860d6085.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  pointer-events: none;
}

.footer__base {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: var(--leading-prose-sm);
  color: oklch(from var(--mist) l c h / 0.65);
  max-width: 22rem;
}

.footer__nav {
  grid-area: nav;
  justify-self: end;
}

.footer__nav-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-s);
}

.footer__nav-label::before {
  content: "◆ ";
  color: var(--sun);
  font-size: 0.55rem;
  vertical-align: middle;
}

.footer__orbit {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-2xs);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    oklch(from var(--teal) l c h / 0.35) 15%,
    oklch(from var(--teal) l c h / 0.35) 85%,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}

.footer__orbit a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 0.95em;
  border-radius: 999px;
  border: 1px solid oklch(from var(--teal) l c h / 0.28);
  background: oklch(from var(--space-c) l c h / 0.35);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--cloud);
  text-decoration: none;
  white-space: nowrap;
  transition:
    translate 0.28s var(--ease),
    border-color 0.28s,
    box-shadow 0.28s,
    background 0.28s,
    color 0.28s;
}

.footer__orbit a:hover {
  translate: 0 -2px;
  border-color: oklch(from var(--orange) l c h / 0.45);
  background: oklch(from var(--teal) l c h / 0.18);
  box-shadow: 0 8px 24px oklch(from var(--space-c) l c h / 0.35);
  color: var(--sun);
}

.footer__orbit a[aria-current="page"] {
  border-color: oklch(from var(--sun) l c h / 0.45);
  background: oklch(from var(--teal) l c h / 0.22);
  color: var(--sun);
  box-shadow: 0 0 20px oklch(from var(--teal) l c h / 0.2);
}

.footer__idx {
  font-family: var(--head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: oklch(from var(--teal) l c h / 0.9);
}

.footer__idx--go {
  color: var(--orange);
}

.footer__orbit a:hover .footer__idx,
.footer__orbit a[aria-current="page"] .footer__idx {
  color: var(--sun);
}

.footer__comms {
  grid-area: comms;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  font-size: 0.8125rem;
}

.footer__comms a {
  color: oklch(from var(--mist) l c h / 0.75);
  text-decoration: none;
  transition: color 0.2s;
  width: fit-content;
}

.footer__faq {
  font-family: var(--head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sun);
}

.footer__faq:hover,
.footer__faq[aria-current="page"] {
  color: var(--orange);
}

.footer__comms a:hover {
  color: var(--orange);
}

.footer__comms a.footer__faq:hover {
  color: var(--orange);
}

.footer__copy {
  grid-area: copy;
  font-size: 0.8125rem;
  color: oklch(from var(--mist) l c h / 0.45);
  padding-top: var(--space-s);
  border-top: 1px solid oklch(from var(--cloud) l c h / 0.06);
}

/* ── Animate hooks ── */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  :root {
    --hero-watermark: clamp(19rem, 98vw, 28rem);
  }

  .hero {
    padding-top: calc(var(--nav-h) + var(--space-l));
    padding-bottom: var(--space-l);
    overflow: hidden;
  }

  .hero__backdrop img {
    object-position: 50% 35%;
    opacity: 0.32;
  }

  .hero__scrim {
    background:
      linear-gradient(
        180deg,
        oklch(from var(--space-c) l c h / 0.94) 0%,
        oklch(from var(--space-c) l c h / 0.78) 42%,
        oklch(from var(--space-c) l c h / 0.88) 100%
      ),
      radial-gradient(
        ellipse 120% 80% at 50% 18%,
        oklch(from var(--space-c) l c h / 0.82) 0%,
        transparent 72%
      );
  }

  .mission__backdrop img {
    object-position: 50% 42%;
    opacity: 0.32;
  }

  .mission__scrim {
    background:
      linear-gradient(
        180deg,
        oklch(from var(--space-c) l c h / 0.94) 0%,
        oklch(from var(--space-c) l c h / 0.78) 42%,
        oklch(from var(--space-c) l c h / 0.88) 100%
      ),
      radial-gradient(
        ellipse 120% 80% at 50% 18%,
        oklch(from var(--space-c) l c h / 0.82) 0%,
        transparent 72%
      );
  }

  .services__backdrop img {
    object-position: 50% 40%;
    opacity: 0.32;
  }

  .services__scrim {
    background:
      linear-gradient(
        180deg,
        oklch(from var(--space-c) l c h / 0.94) 0%,
        oklch(from var(--space-c) l c h / 0.78) 42%,
        oklch(from var(--space-c) l c h / 0.88) 100%
      ),
      radial-gradient(
        ellipse 120% 80% at 50% 18%,
        oklch(from var(--space-c) l c h / 0.82) 0%,
        transparent 72%
      );
  }

  .launch__backdrop img {
    object-position: 50% 38%;
    opacity: 0.32;
  }

  .launch__scrim {
    background:
      linear-gradient(
        180deg,
        oklch(from var(--space-c) l c h / 0.94) 0%,
        oklch(from var(--space-c) l c h / 0.78) 42%,
        oklch(from var(--space-c) l c h / 0.88) 100%
      ),
      radial-gradient(
        ellipse 120% 80% at 50% 18%,
        oklch(from var(--space-c) l c h / 0.82) 0%,
        transparent 72%
      );
  }

  .footer__backdrop img {
    object-position: center 68%;
    opacity: 0.32;
  }

  .footer__scrim {
    background:
      linear-gradient(
        180deg,
        oklch(from var(--cocoa) l c h / 0.94) 0%,
        oklch(from var(--cocoa) l c h / 0.78) 42%,
        oklch(from var(--cocoa) l c h / 0.88) 100%
      ),
      radial-gradient(
        ellipse 120% 80% at 50% 55%,
        oklch(from var(--cocoa) l c h / 0.82) 0%,
        transparent 72%
      );
  }

  .hero__inner {
    position: relative;
    isolation: isolate;
    grid-template-columns: 1fr;
    gap: var(--space-m);
    text-align: center;
    padding-bottom: calc(var(--hero-watermark) * 0.21);
  }

  .hero__content {
    position: relative;
    z-index: 2;
    max-width: none;
  }

  .hero__lead { margin-inline: auto; margin-bottom: var(--space-m); }
  .hero__actions { justify-content: center; margin-bottom: var(--space-m); }
  .hero__trust { margin-bottom: 0; }

  .hero__logo {
    position: absolute;
    left: 50%;
    top: clamp(4.5rem, 28vw, 9rem);
    width: var(--hero-watermark);
    height: var(--hero-watermark);
    margin: 0;
    transform: translateX(-50%);
    transform-origin: 50% 50%;
    z-index: 0;
    opacity: 0.13;
    pointer-events: none;
    will-change: transform;
  }

  .hero__logo img {
    width: 100%;
    margin: 0;
    opacity: 1;
  }

  .hero__orbit {
    inset: -10%;
    opacity: 0.55;
  }

  .panel { padding-block: var(--space-xl-2xl); }
  .services__intro,
  .faq__intro { padding-block: var(--space-xl-2xl) var(--space-l); }

  .mission-deco__orbit { right: -40%; opacity: 0.08; }
  .split,
  .countdown,
  .stack__inner,
  .proof-layout,
  .pain-deck { grid-template-columns: 1fr; }
  .pain-deck { grid-template-columns: repeat(2, 1fr); }

  .panel__head--sequence .panel__head__row,
  .panel__head--proof .panel__head__row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-s);
  }

  .stack__card {
    min-height: auto;
    top: var(--nav-h);
    margin-bottom: var(--space-xl);
  }
  .stack__card:nth-last-of-type(2) { margin-bottom: var(--space-xl); }
  .stack__card:last-of-type { margin-bottom: 0; border-radius: 20px; }
  .stack { padding-bottom: 0; }
  #proof { margin-top: 0; }

  .base-station__grid {
    grid-template-columns: 1fr;
  }

  .sub-page__inner {
    gap: var(--space-l);
  }

  .sub-page__header-main {
    grid-template-columns: 1fr;
  }

  .sub-page__mark {
    display: none;
  }

  .sub-page__split,
  .sub-page__crew {
    grid-template-columns: 1fr;
  }

  .sub-page__aside {
    position: static;
  }

  .about-page .about-principles__grid {
    grid-template-columns: 1fr;
  }

  .service-block__body,
  .service-block__list {
    grid-template-columns: 1fr;
  }

  .seq-step {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }

  .launch-console {
    padding: var(--space-l);
  }

  .launch-console__status {
    flex-direction: column;
    gap: var(--space-2xs);
  }

  .launch-console__tminus {
    font-size: clamp(5.5rem, 34vw, 7rem);
    translate: -50% -52%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "comms"
      "copy";
    gap: var(--space-l);
  }

  .footer__nav {
    justify-self: stretch;
  }

  .footer__orbit {
    justify-content: flex-start;
  }

  .footer__orbit::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .pain-deck { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .btn:hover { translate: none; }
}
