/* === reset.css === */
/* === reset === */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

button, input, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; }

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

ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--bg-deepest); }

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


/* === variables.css === */
/* === Continuum design tokens === */
:root {
  /* Backgrounds — per brand spec */
  --bg-deepest: #09090E;    /* spec: deepest */
  --bg-primary: #111118;    /* spec: near black */
  --bg-elevated: #1A1A24;   /* spec: darker grey */
  --bg-card: #1A1A28;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-strong: rgba(255, 255, 255, 0.06);

  /* Text */
  --text-primary: #F4EFE6;
  --text-secondary: #B0AAA2;
  --text-muted: #7B7670;
  --text-faded: #45413D;

  /* Brand signature — per Continuum brand spec */
  --gold: #C8A96E;          /* primary gold */
  --gold-bright: #F4D58E;   /* highlight gold */
  --gold-deep: #7A5F38;     /* shadow gold */
  --teal: #4A9B8E;          /* primary teal */
  --teal-bright: #6FB8AC;
  --teal-deep: #2A5A52;
  --ember: #E8724A;
  --rose: #D17B7B;
  --cream: #F2EDE4;

  /* Functional */
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(201, 168, 110, 0.3);
  --border-gold-strong: rgba(201, 168, 110, 0.6);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(201, 168, 110, 0.08);
  --shadow-glow-strong: 0 0 120px rgba(201, 168, 110, 0.16);
  --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.6);

  /* Life OS signature colors */
  --os-health: #6FB8AC;
  --os-fitness: #E8724A;
  --os-nutrition: #B8C77B;
  --os-financial: #C9A86E;
  --os-credit: #D9B57F;
  --os-career: #6E8FCF;
  --os-family: #D17B7B;
  --os-relationships: #E89BAA;
  --os-recovery: #8FB8C9;
  --os-reentry: #A88EB8;
  --os-veteran: #6E8C7E;
  --os-education: #8E7AB8;
  --os-housing: #B89A6E;
  --os-transportation: #5DA89C;
  --os-business: #C9A86E;
  --os-investment: #B8B86E;
  --os-shopping: #D9A07A;
  --os-travel: #6EB8B8;
  --os-wellness: #B8A0CF;
  --os-legal: #8C8C9C;
  --os-creative: #E8A0D1;
  --os-spiritual: #CFC09A;
  --os-hobby: #9ACFB8;
  --os-social: #D1B07A;

  /* Typography — per Continuum brand spec:
     Cormorant Garamond for editorial headlines (Vogue-style),
     Plus Jakarta Sans for UI/body (humanist sans),
     JetBrains Mono for code/data. */
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  --text-hero: clamp(48px, 9vw, 128px);
  --text-h1: clamp(40px, 6.5vw, 88px);
  --text-h2: clamp(32px, 5vw, 64px);
  --text-h3: clamp(24px, 3.5vw, 44px);
  --text-h4: clamp(20px, 2.5vw, 28px);
  --text-eyebrow: 12px;
  --text-body-lg: 19px;
  --text-body: 16px;
  --text-sm: 14px;
  --text-xs: 12px;

  /* Tracking (letter-spacing) — heavy negative on display, slight negative on body, positive on eyebrows */
  --track-display: -0.04em;
  --track-h1: -0.035em;
  --track-h2: -0.03em;
  --track-h3: -0.025em;
  --track-body: -0.011em;
  --track-eyebrow: 0.16em;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 160px;
  --space-12: 200px;

  /* Layout */
  --container-max: 1440px;
  --container-narrow: 880px;
  --container-prose: 720px;

  /* Radii */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}


/* === typography.css === */
/* === Typography (Inter — Apple Health / Stripe / Linear aesthetic) === */
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: var(--track-body);
  color: var(--text-primary);
  /* Inter stylistic sets:
     cv11 = single-storey 'a', ss03 = alternate G, cv05 = curved 'l', tnum = tabular numerals,
     ss01 = open digits */
  font-feature-settings: 'cv11', 'ss03', 'cv05', 'tnum', 'ss01';
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: var(--track-display);
  color: var(--text-primary);
}

h1 { font-size: var(--text-h1); font-weight: 800; }
h2 { font-size: var(--text-h2); font-weight: 700; }
h3 { font-size: var(--text-h3); font-weight: 600; letter-spacing: var(--track-h3); }
h4 { font-size: var(--text-h4); font-weight: 600; letter-spacing: var(--track-h3); }

em {
  /* No serif italic — emphasis via weight + color shift */
  font-style: normal;
  font-weight: 600;
  color: var(--gold-bright);
}

strong { font-weight: 600; color: var(--text-primary); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-headline {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: var(--track-h2);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.section-headline-xl {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: var(--track-h1);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.section-subhead {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: 1.5;
  letter-spacing: var(--track-body);
  color: var(--text-secondary);
  max-width: 60ch;
  font-weight: 400;
}

.emphasis {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: var(--track-h3);
  color: var(--gold-bright);
  line-height: 1.35;
}

.mono { font-family: var(--font-mono); font-feature-settings: 'ss01', 'ss02'; }

.gold-text { color: var(--gold); }
.gold-bright-text { color: var(--gold-bright); }

.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }


/* === animations.css === */
/* === Motion language === */

/* Grain overlay used on hero + section breaks */
.grain-overlay { position: relative; }
.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  z-index: 1;
}
.grain-overlay > * { position: relative; z-index: 2; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }

/* Shared keyframes */
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes filenameBreathe {
  0%, 100% { text-shadow: 0 0 60px rgba(201, 168, 110, 0.3); transform: scale(1); }
  50% { text-shadow: 0 0 120px rgba(201, 168, 110, 0.5); transform: scale(1.02); }
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.25; }
  50% { transform: translate(20px, -30px); opacity: 0.6; }
}

@keyframes markPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(201, 168, 110, 0.2)); }
  50% { filter: drop-shadow(0 0 30px rgba(224, 188, 126, 0.4)); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes qrPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 110, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 110, 0); }
}

/* Custom cursor — clean dot+ring, no mix-blend-mode (avoids gold-on-gold inversion) */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 280ms var(--ease-out-expo), height 280ms var(--ease-out-expo),
              background 280ms ease, opacity 200ms ease, box-shadow 280ms ease;
  opacity: 0;
  box-shadow: 0 0 12px rgba(240, 203, 126, 0.4);
  will-change: transform;
}
.custom-cursor.is-active { opacity: 1; }
.custom-cursor.is-hover {
  width: 32px; height: 32px;
  background: transparent;
  border: 1.5px solid var(--gold-bright);
  box-shadow: 0 0 0 1px rgba(7, 7, 12, 0.4), 0 0 24px rgba(240, 203, 126, 0.5);
  /* nudge to keep visual center under pointer */
  margin-left: -12px;
  margin-top: -12px;
}
@media (hover: none), (pointer: coarse) { .custom-cursor { display: none; } body, * { cursor: auto !important; } }
@media (pointer: fine) { body { cursor: none; } a, button, [role="button"], input, textarea { cursor: none; } }

/* SCROLL PROGRESS BAR — sticky thin gold line at top of viewport */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  transform-origin: 0 0;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(240, 203, 126, 0.6);
}


/* === components.css === */
/* === Components === */

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }
.container--prose { max-width: var(--container-prose); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: all 300ms var(--ease-out-expo);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--large { padding: 18px 36px; font-size: 16px; }
.btn--centered { display: flex; margin: 32px auto 0; width: max-content; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--gold);
  color: var(--bg-deepest);
}
.btn--primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: var(--bg-glass);
}

.btn--gold {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--border-gold-strong);
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--bg-deepest);
  border-color: var(--gold);
}

/* Continuum mark — legacy thin-line variant (kept for the hero spine usage) */
.continuum-mark {
  width: 80px;
  height: 12px;
  display: block;
  transition: filter 0.3s ease;
}
.continuum-mark:hover { animation: markPulse 2s ease-in-out infinite; }

.continuum-mark-large {
  width: 240px;
  height: 24px;
  display: block;
}

/* Continuum mark — primary brand variant (split two-tone infinity) */
.continuum-mark--brand {
  width: 38px;
  height: auto;
  aspect-ratio: 58 / 36;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(240, 203, 126, 0.18));
  transition: filter 0.3s ease;
}
.continuum-mark--brand:hover {
  filter: drop-shadow(0 4px 14px rgba(240, 203, 126, 0.4));
}
.continuum-mark--hero  { width: 64px; }
.continuum-mark--footer{ width: 120px; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 300ms ease, padding 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 7, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 14px 0;
}
.nav__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}
.nav__brand .continuum-mark--brand { width: 32px; }
.nav__wordmark {
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
}
.nav__menu {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}
.nav__menu a { transition: color 200ms ease; position: relative; }
.nav__menu a:hover { color: var(--text-primary); }
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 300ms var(--ease-out-expo);
}
.nav__menu a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__mobile-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 880px) {
  .nav__menu, .nav__actions { display: none; }
  .nav__mobile-toggle {
    display: flex;
    position: relative;
    z-index: 105;
  }
  .nav.is-mobile-open {
    background: var(--bg-deepest);
    border-bottom-color: transparent;
  }
  .nav.is-mobile-open .nav__brand {
    position: relative;
    z-index: 105;
  }
  .nav.is-mobile-open .nav__menu {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-deepest);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 22px;
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.02em;
    z-index: 99;
    padding: 80px 24px;
  }
  .nav.is-mobile-open .nav__menu a { color: var(--text-primary); }
  .nav.is-mobile-open .nav__menu a::after { background: var(--gold-bright); }
  .nav.is-mobile-open .nav__actions {
    display: flex;
    position: fixed;
    bottom: 48px;
    left: 24px; right: 24px;
    justify-content: center;
    z-index: 100;
  }
  .nav.is-mobile-open .nav__actions .btn { width: 100%; max-width: 360px; padding: 16px 24px; }
}

/* Tag pills */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tag-color, var(--border));
  color: var(--tag-color, var(--text-secondary));
}

/* Status pills */
.os-card__status {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.status--live {
  background: rgba(95, 168, 156, 0.15);
  color: var(--teal);
  border: 1px solid var(--teal-deep);
}
.status--in-build {
  background: rgba(201, 168, 110, 0.12);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.status--phase-2 {
  background: rgba(168, 162, 154, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Hidden */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* === sections.css === */
/* === Section-specific styles === */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  background: var(--bg-deepest);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 110, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(94, 168, 156, 0.04), transparent 70%);
  z-index: 0;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.25;
  animation: drift 12s ease-in-out infinite;
}
.hero__container {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.1s forwards;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.2vw, 104px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out-expo) 0.18s forwards;
}
.hero__headline-gold {
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(180deg, #F4D58E 0%, #C8A96E 55%, #7A5F38 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Fallback for browsers without background-clip:text */
@supports not (-webkit-background-clip: text) {
  .hero__headline-gold {
    color: var(--gold-bright);
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

.continuum-mark--hero {
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) forwards;
}
.hero__subheadline {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.011em;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.32s forwards;
}
.hero__pause-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--gold-bright);
  margin: 24px 0 12px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.48s forwards;
}
.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 56px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.72s forwards;
}

/* HERO STATS STRIP — Commure pattern: instant scale + credibility */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 920px;
  margin: 80px auto 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.9s forwards;
}
.hero-stat { text-align: center; }
.hero-stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.hero-stat__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  line-height: 1.3;
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; max-width: 480px; }
  .hero-stat__label { font-size: 11px; }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 1.4s forwards;
  z-index: 4;
}
.hero__scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-muted), transparent);
  animation: scrollLineDrop 2s ease-in-out infinite;
}
@keyframes scrollLineDrop {
  0% { transform: translateY(-8px); opacity: 0.2; }
  50% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0.2; }
}

/* AUDIO HERO — centered cinematic CTA (the ultimate hero action) */
.audio-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  margin: 72px auto 32px;
  padding: 48px 40px 40px;
  max-width: 760px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out-expo) 0.6s forwards;
}
.audio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 50% 0%, rgba(240, 203, 126, 0.10), transparent 60%),
    radial-gradient(ellipse 500px 300px at 50% 100%, rgba(240, 203, 126, 0.06), transparent 65%);
  pointer-events: none;
  opacity: 1;
}
.audio-hero > * { position: relative; z-index: 2; }
.audio-hero__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.audio-hero__separator { margin: 0 4px; opacity: 0.4; }
.audio-hero__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.012em;
  max-width: 580px;
}
.audio-hero__play-button {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin: 4px 0 4px;
  cursor: pointer;
}
.audio-hero__play-button:hover {
  background: var(--gold);
  color: var(--bg-deepest);
  transform: scale(1.04);
  box-shadow: var(--shadow-glow-strong);
}
.audio-hero__play-button svg {
  width: 48px;
  height: 48px;
}
.audio-hero__play-button .play-icon { margin-left: 5px; }
.audio-hero__play-button .pause-icon { margin-left: 0; }
.pulse-ring {
  position: absolute;
  inset: -2px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 3s ease-out infinite;
  pointer-events: none;
}
.pulse-ring--delayed { animation-delay: 1.5s; }
.audio-hero__play-button--playing .pulse-ring { animation-duration: 1.8s; }
.audio-hero__description {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}
.audio-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 32px;
  background: rgba(7, 7, 12, 0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}
.audio-hero__progress-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.audio-hero__progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.audio-hero__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
}
.audio-hero__controls button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}
.audio-hero__controls button:hover { color: var(--gold-bright); background: var(--bg-glass); }
.audio-hero__controls svg { width: 14px; height: 14px; }
.audio-hero__time { display: inline-flex; gap: 4px; font-variant-numeric: tabular-nums; }
.audio-hero__time-separator { opacity: 0.4; }
.audio-hero__more-reveal {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  
  font-size: 18px;
  color: var(--gold-bright);
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) forwards;
}
@media (max-width: 768px) {
  .audio-hero { padding: 36px 22px 32px; gap: 20px; margin: 48px auto 24px; border-radius: 22px; }
  .audio-hero__play-button { width: 100px; height: 100px; }
  .audio-hero__play-button svg { width: 38px; height: 38px; }
  .audio-hero__title { font-size: 22px; }
  .audio-hero__progress { padding: 12px 16px; flex-wrap: wrap; }
  .audio-hero__controls { font-size: 10px; gap: 10px; }
}

/* PROOF OF WORK */
.proof-of-work {
  position: relative;
  padding: 140px 0 100px;
  background: var(--bg-primary);
}
.proof-of-work__body {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 48px;
}
.proof-of-work__body p { margin-bottom: 28px; max-width: 64ch; }
.proof-of-work__body p.emphasis {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

/* Platform ticker */
.platform-ticker {
  margin: 80px 0;
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platform-ticker::before, .platform-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.platform-ticker::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.platform-ticker::after { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.platform-ticker__track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 80s linear infinite;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
  width: max-content;
}
.platform-ticker__item { flex-shrink: 0; letter-spacing: 0.05em; }
.platform-ticker__dot { color: var(--gold); flex-shrink: 0; }
.platform-ticker:hover .platform-ticker__track { animation-play-state: paused; }

.proof-of-work__caption {
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 32px;
  line-height: 1.7;
}
.proof-of-work__caption a {
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  transition: border-color 0.2s;
}
.proof-of-work__caption a:hover { border-color: var(--gold-bright); }

/* WHAT CONTINUUM IS */
.what-continuum-is {
  padding: 140px 0;
  background: var(--bg-primary);
}
.what-continuum-is__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.what-continuum-is__sticky { position: sticky; top: 120px; }
.what-continuum-is__scroll { display: flex; flex-direction: column; gap: 32px; }
.benefit-block {
  padding: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.benefit-block:hover {
  border-color: var(--border-gold);
  background: var(--bg-glass-strong);
  transform: translateY(-2px);
}
.benefit-block__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--gold);
}
.benefit-block h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.benefit-block p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* Constellation */
.constellation {
  margin-top: 48px;
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}
.constellation svg { width: 100%; height: 100%; }
.constellation__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(201, 168, 110, 0.5);
}

@media (max-width: 880px) {
  .what-continuum-is__grid { grid-template-columns: 1fr; gap: 40px; }
  .what-continuum-is__sticky { position: static; }
  .constellation { margin: 32px auto 0; }
}

/* PROTOCOL REVEAL */
.protocol-reveal {
  padding: 160px 0 140px;
  background: var(--bg-deepest);
  text-align: center;
  position: relative;
}
.protocol-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201, 168, 110, 0.08), transparent 70%);
  pointer-events: none;
}
.protocol-reveal__file-symbol {
  margin: 48px 0 16px;
  position: relative;
}
.protocol-reveal__filename {
  font-family: var(--font-mono);
  font-size: clamp(48px, 11vw, 128px);
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px rgba(201, 168, 110, 0.3);
  line-height: 1;
  display: inline-block;
  min-height: 1.2em;
}
.cursor-blink {
  animation: cursorBlink 1s infinite;
  color: var(--gold-bright);
  font-weight: 300;
  margin-left: 4px;
}
.filename-pulse-glow { animation: filenameBreathe 4s ease-in-out infinite; }

.protocol-reveal__subhead {
  font-family: var(--font-display);
  
  font-size: clamp(20px, 2.6vw, 32px);
  color: var(--text-secondary);
  margin: 32px 0 64px;
}
.protocol-reveal__body {
  text-align: left;
  max-width: 640px;
  margin: 0 auto 80px;
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: 1.7;
  color: var(--text-secondary);
}
.protocol-reveal__body p { margin-bottom: 24px; }
.protocol-reveal__body p.emphasis {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-bright);
  text-align: center;
  margin: 40px 0;
}
.protocol-reveal__body strong { color: var(--text-primary); }

.protocol-reveal__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 80px 0;
  text-align: left;
}
.pillar {
  padding: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s;
}
.pillar:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.pillar__icon { width: 32px; height: 32px; color: var(--gold); margin-bottom: 16px; }
.pillar h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pillar p { font-size: 15px; line-height: 1.65; color: var(--text-secondary); margin: 0; }

@media (max-width: 880px) { .protocol-reveal__pillars { grid-template-columns: 1fr; gap: 16px; } }

/* QR mockup */
.protocol-reveal__mockup {
  display: flex;
  justify-content: center;
  margin: 80px 0;
}
.phone-frame {
  width: 280px;
  height: 580px;
  background: linear-gradient(140deg, #1A1A28, #07070C);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(201, 168, 110, 0.1);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-deepest);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-status-bar {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-family: -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.continuum-app-mockup {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.app-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
}
.qr-code-container {
  width: 180px;
  height: 180px;
  background: var(--text-primary);
  border-radius: 12px;
  padding: 12px;
  position: relative;
  margin: 16px 0;
  animation: qrPulse 2.4s ease-in-out infinite;
}
.qr-code-container svg { width: 100%; height: 100%; }
.share-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 24px;
}
.share-details {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* LIVING EXPERIENCE */
.living-experience {
  padding: 140px 0;
  background: var(--bg-primary);
}
.living-experience .container { margin-bottom: 64px; }
.scenario-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 0 24px 32px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.scenario-track::-webkit-scrollbar { height: 6px; }
.scenario-track::-webkit-scrollbar-track { background: var(--border); }
.scenario-track::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }
.scenario {
  flex: 0 0 460px;
  scroll-snap-align: start;
  padding: 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
}
.scenario:hover {
  border-color: var(--border-gold);
  background: var(--bg-glass-strong);
  transform: translateY(-4px);
}
.scenario__number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.scenario__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.scenario__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.scenario__tags { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 768px) {
  .scenario { flex: 0 0 88%; padding: 28px; }
  .scenario__title { font-size: 26px; }
}

/* LIFE OS GRID */
.life-os-grid { padding: 140px 0; background: var(--bg-deepest); }
.life-os-grid .container > .eyebrow,
.life-os-grid .container > .section-headline,
.life-os-grid .container > .section-subhead { text-align: center; margin-left: auto; margin-right: auto; }
.life-os-grid .section-subhead { margin: 0 auto 48px; }
.os-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 64px;
}
.os-card {
  position: relative;
  padding: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  overflow: hidden;
}
.os-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--os-color);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.os-card:hover {
  border-color: var(--os-color);
  background: var(--bg-glass-strong);
  transform: translateY(-2px);
}
.os-card:hover::before { opacity: 1; }
.os-card__icon {
  width: 28px;
  height: 28px;
  color: var(--os-color);
  margin-bottom: 16px;
}
.os-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.os-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.life-os-grid__cta { text-align: center; margin-top: 56px; }

/* INTEGRATIONS */
.integrations { padding: 140px 0; background: var(--bg-primary); }
.integrations .container > .eyebrow,
.integrations .container > .section-headline,
.integrations .container > .section-subhead { text-align: center; margin-left: auto; margin-right: auto; }
.integrations .section-subhead { margin: 0 auto 48px; }
.integration-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}
.integration-category {
  padding: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.integration-category h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.integration-logos {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
}
.integrations__note {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* PRICING */
.pricing { padding: 140px 0; background: var(--bg-deepest); }
.pricing .container > .eyebrow,
.pricing .container > .section-headline,
.pricing .container > .section-subhead { text-align: center; margin-left: auto; margin-right: auto; }
.pricing .section-subhead { margin: 0 auto 64px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.pricing-card {
  padding: 40px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.pricing-card--featured {
  background: var(--bg-glass-strong);
  border-color: var(--border-gold);
  transform: scale(1.02);
}
.pricing-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card__featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--bg-deepest);
  background: var(--gold);
  border-radius: var(--radius-pill);
}
.pricing-card__tier {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.pricing-card__price .price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card__price .period {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-card__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.pricing__footnote {
  margin-top: 56px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.pricing__footnote strong { color: var(--text-primary); }

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}

/* FOUNDER */
.founder {
  padding: 140px 0;
  background: var(--bg-primary);
}
.founder__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.founder__monogram {
  width: 320px;
  height: 320px;
  position: relative;
}
.founder__monogram svg { width: 100%; height: 100%; }
.founder__name {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.founder__title {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.founder__quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-secondary);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 32px 0;
  
  font-weight: 300;
}
.founder__quote p { margin-bottom: 20px; }
.founder__quote .emphasis { color: var(--gold-bright); font-size: 24px; }

@media (max-width: 880px) {
  .founder__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .founder__monogram { margin: 0 auto; width: 240px; height: 240px; }
  .founder__quote { text-align: left; }
}

/* FOR INVESTORS */
.for-investors { padding: 140px 0; background: var(--bg-deepest); }
.for-investors .container > .eyebrow,
.for-investors .container > .section-headline,
.for-investors .container > .section-subhead { text-align: center; margin-left: auto; margin-right: auto; }
.for-investors .section-subhead { margin: 0 auto 64px; max-width: 720px; }
.investor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.investor-stat {
  padding: 40px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.investor-stat:hover { transform: translateY(-4px); border-color: var(--border-gold-strong); }
.investor-stat__number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(201, 168, 110, 0.2);
}
.investor-stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.investor-stat p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: left;
  margin: 0;
}
@media (max-width: 880px) {
  .investor-stats { grid-template-columns: 1fr; }
  .investor-stat__number { font-size: 64px; }
}

/* WAITLIST */
.waitlist {
  padding: 160px 0;
  background: var(--bg-deepest);
  text-align: center;
  position: relative;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 110, 0.10), transparent 70%);
  pointer-events: none;
}
.waitlist__headline {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.waitlist__subhead {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 56px;
  font-weight: 300;
}
.waitlist__form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 24px;
  background: var(--bg-glass);
  padding: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
}
.waitlist__input {
  flex: 1;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  background: transparent;
  border: none;
  color: var(--text-primary);
}
.waitlist__input::placeholder { color: var(--text-muted); }
.waitlist__form-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.waitlist__counter {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.counter-number {
  color: var(--gold-bright);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
}
.waitlist__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-gold);
  max-width: 520px;
  margin: 0 auto;
  animation: fadeInUp 0.6s var(--ease-out-expo);
}
.success-check {
  width: 48px;
  height: 48px;
  color: var(--gold-bright);
}
.waitlist__success p {
  font-family: var(--font-display);
  
  font-size: 20px;
  color: var(--text-primary);
  margin: 0;
}
@media (max-width: 600px) {
  .waitlist__form { flex-direction: column; border-radius: var(--radius-lg); }
  .waitlist__input { padding: 14px 20px; }
}

/* FOOTER */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-deepest);
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__column--brand { display: flex; flex-direction: column; gap: 16px; }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
}
.footer__tagline {
  font-family: var(--font-display);
  
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 240px;
  line-height: 1.5;
}
.footer__column h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__column ul { display: flex; flex-direction: column; gap: 12px; }
.footer__column a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer__column a:hover { color: var(--text-primary); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__promise {  font-family: var(--font-display); font-size: 14px; }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__column--brand { grid-column: 1 / -1; }
}

/* PROSE PAGES (manifesto, etc.) */
.prose {
  max-width: var(--container-prose);
  margin: 0 auto;
  padding: 160px 24px 120px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.65;
  color: var(--text-primary);
}
.prose h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.025em;
}
.prose h2 {
  font-size: 36px;
  margin-top: 64px;
  margin-bottom: 24px;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: -0.015em;
}
.prose p { margin-bottom: 28px; }
.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--gold);
}
.prose blockquote {
  margin: 56px 0;
  padding: 0 32px;
  
  color: var(--gold-bright);
  font-size: 28px;
  line-height: 1.45;
  text-align: center;
  border-left: none;
  position: relative;
}
.prose blockquote::before {
  content: '"';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.4;
}
.prose hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), transparent);
  margin: 64px 0;
}
.prose .meta {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

/* General section spacing for headlines centered */
.living-experience .container .eyebrow,
.living-experience .container .section-headline,
.proof-of-work .container .eyebrow,
.proof-of-work .container .section-headline { text-align: center; margin-left: auto; margin-right: auto; max-width: 800px; }
.proof-of-work .container { display: flex; flex-direction: column; align-items: center; }
.proof-of-work__body { text-align: left; max-width: 720px; }

/* TRI-DEVICE SHOWCASE — Commure-style multi-screen product imagery in dark/gold */
.device-showcase {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 80px auto 40px;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}
.device-showcase__glow {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(224, 188, 126, 0.18), transparent 60%),
    radial-gradient(ellipse 30% 40% at 20% 30%, rgba(95, 168, 156, 0.10), transparent 70%),
    radial-gradient(ellipse 30% 40% at 80% 70%, rgba(209, 123, 123, 0.08), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.device {
  position: absolute;
  filter: drop-shadow(0 32px 80px rgba(0, 0, 0, 0.65)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  transition: transform 500ms var(--ease-out-expo);
  --tx: 0deg; --ty: 0deg; --lift: 0px;
}
.device--watch {
  width: 200px;
  left: 4%;
  top: 24%;
  z-index: 2;
  transform: rotate(-8deg) translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
}
.device--phone {
  width: 320px;
  left: 50%;
  top: 4%;
  z-index: 3;
  transform: translateX(-50%) translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
}
.device--card {
  width: 360px;
  right: 4%;
  bottom: 8%;
  z-index: 1;
  transform: rotate(6deg) translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty));
}
.device-showcase:hover .device--watch { --lift: -8px; transform: rotate(-10deg) translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty)); }
.device-showcase:hover .device--phone { --lift: -12px; }
.device-showcase:hover .device--card  { --lift: -8px; transform: rotate(8deg) translateY(var(--lift)) rotateX(var(--tx)) rotateY(var(--ty)); }
.device svg { width: 100%; height: auto; display: block; }

/* Mobile: stack devices vertically */
@media (max-width: 880px) {
  .device-showcase {
    height: auto;
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px;
  }
  .device { position: static; transform: none !important; }
  .device--watch { width: 160px; align-self: flex-start; margin-left: 8%; }
  .device--phone { width: min(280px, 80%); align-self: center; }
  .device--card { width: min(320px, 90%); align-self: flex-end; margin-right: 4%; }
  .device-showcase__glow { inset: -20px; }
}

/* TRUST STRIP — between Pricing and Founder */
.trust-strip {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}
.trust-strip .section-headline { max-width: 720px; margin: 0 auto 64px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.trust-cell {
  padding: 28px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.trust-cell:hover { border-color: var(--border-gold); background: var(--bg-glass-strong); transform: translateY(-2px); }
.trust-cell__icon { width: 28px; height: 28px; color: var(--gold-bright); margin-bottom: 18px; }
.trust-cell h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.trust-cell p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
@media (max-width: 880px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* FOCUS RING — branded, accessible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

/* OS COLOR ACCENT STRIPES — each major section gets a thin top-edge accent
   tied to the dominant Life OS theme of that section. 2px gradient line. */
.what-continuum-is { box-shadow: inset 0 2px 0 0 rgba(111,184,172,0.35); }
.protocol-reveal { box-shadow: inset 0 2px 0 0 rgba(212,175,122,0.45); }
.living-experience { box-shadow: inset 0 2px 0 0 rgba(209,123,123,0.30); }
.life-os-grid { box-shadow: inset 0 2px 0 0 rgba(110,143,207,0.30); }
.integrations { box-shadow: inset 0 2px 0 0 rgba(95,168,156,0.30); }
.pricing { box-shadow: inset 0 2px 0 0 rgba(212,175,122,0.45); }
.trust-strip { box-shadow: inset 0 2px 0 0 rgba(141,184,201,0.30); }
.founder { box-shadow: inset 0 2px 0 0 rgba(184,154,110,0.40); }
.for-investors { box-shadow: inset 0 2px 0 0 rgba(212,175,122,0.55); }
.waitlist { box-shadow: inset 0 2px 0 0 rgba(240,203,126,0.55); }

/* Hero — the only section with a slightly different signature: the warm gradient already lives in ::before. */

/* Strengthen hover state cohesion — every interactive surface */
.os-card,
.scenario,
.pricing-card,
.trust-cell,
.benefit-block,
.investor-stat,
.integration-category {
  cursor: none;
  -webkit-tap-highlight-color: transparent;
}

/* Stronger button hover: subtle outer glow + lift */
.btn--primary:hover {
  box-shadow: 0 0 0 1px var(--gold-bright), 0 8px 32px rgba(240, 203, 126, 0.25), 0 0 80px rgba(240, 203, 126, 0.15);
}

/* Audio-hero: bring the play button forward visually */
.audio-hero__play-button { box-shadow: 0 0 60px rgba(240, 203, 126, 0.18); }

/* Smooth scroll-snap for scenario track + better mobile feel */
.scenario-track { scroll-snap-type: x mandatory; scroll-padding: 24px; }

/* Strengthen the protocol filename glow on idle */
.protocol-reveal__filename {
  filter: drop-shadow(0 0 30px rgba(240, 203, 126, 0.18));
}

/* Trust-strip icon glow */
.trust-cell__icon { filter: drop-shadow(0 0 12px rgba(240, 203, 126, 0.4)); }

/* COMPARISON SECTION — "How is this different?" */
.comparison {
  padding: 140px 0;
  background: var(--bg-deepest);
  position: relative;
}
.comparison .section-headline { max-width: 720px; margin: 0 auto 64px; }
.comparison-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 64px auto 56px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.compare-row:hover {
  border-color: var(--border-gold);
  background: var(--bg-glass-strong);
  transform: translateY(-2px);
}
.compare-row__them,
.compare-row__us {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compare-row__them { text-align: right; opacity: 0.7; }
.compare-row__us { text-align: left; }
.compare-row__brand {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.compare-row__us .compare-row__brand { color: var(--gold); }
.compare-row__claim {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
  line-height: 1.25;
}
.compare-row__us .compare-row__claim { color: var(--text-primary); font-weight: 600; }
.compare-row__claim em { color: var(--gold-bright); font-weight: 700; }
.compare-row__divider {
  color: var(--gold);
  display: flex;
  align-items: center;
}
.comparison__close {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.comparison__close em { color: var(--gold-bright); font-weight: 600; }
.comparison__close .mono { color: var(--gold); font-weight: 600; }
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 24px; text-align: center; }
  .compare-row__them, .compare-row__us { text-align: center; }
  .compare-row__divider { transform: rotate(90deg); margin: 4px auto; opacity: 0.4; }
}

/* WAITLIST SUCCESS — next steps after signup */
.waitlist__success { padding: 40px 32px; }
.waitlist__success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.waitlist__success-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-bright);
  border: 1px solid var(--border-gold);
  background: rgba(240, 203, 126, 0.04);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.waitlist__success-action:hover {
  background: rgba(240, 203, 126, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* HERO DUAL CTA group: second link styling refinement */
.hero__cta-group .btn--ghost {
  background: rgba(255,255,255,0.02);
}

/* FOUNDER CREDIBILITY STRIP */
.founder__credibility {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 24px 0 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder__cred { display: flex; flex-direction: column; gap: 4px; }
.founder__cred-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold-bright);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.founder__cred-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.founder__cred-sep {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}
.founder__monogram { filter: drop-shadow(0 12px 60px rgba(240, 203, 126, 0.15)); }
@media (max-width: 880px) {
  .founder__credibility { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .founder__cred-sep { display: none; }
}

/* TRUSTED BY ROW — placeholder for press / partners / advisors when they exist */
.trusted-by {
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 80px;
  text-align: center;
}
.trusted-by__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.trusted-by__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 56px;
  max-width: 920px;
  margin: 0 auto;
}
.trusted-by__item {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.trusted-by__item:hover { opacity: 1; color: var(--gold-bright); }

/* WAITLIST DETAILS toggle styling refinement */
.waitlist__details summary { color: var(--text-muted); display: inline-block; }
.waitlist__details summary:hover { color: var(--gold-bright); }
.waitlist__details[open] summary { color: var(--gold-bright); margin-bottom: 4px; }
.waitlist__details textarea:focus { border-color: var(--gold); outline: none; }

/* REDUCED MOTION respect */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress, .pulse-ring, .filename-pulse-glow,
  .platform-ticker__track, .hero__particles span,
  .qr-code-container { animation: none !important; }
}

/* ROADMAP TIMELINE */
.roadmap { padding: 140px 0; background: var(--bg-primary); position: relative; }
.roadmap .section-headline { max-width: 720px; margin: 0 auto 80px; }
.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  position: relative;
}
.roadmap-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 16px;
  bottom: 16px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-deep) 50%, var(--border) 100%);
  opacity: 0.45;
}
.roadmap-step {
  display: flex;
  gap: 28px;
  padding: 0 0 40px;
  position: relative;
}
.roadmap-step:last-child { padding-bottom: 0; }
.roadmap-step__marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-deepest);
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--ease-out-expo);
}
.roadmap-step--current .roadmap-step__marker {
  background: var(--gold);
  color: var(--bg-deepest);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 203, 126, 0.18), 0 0 32px rgba(240, 203, 126, 0.4);
}
.roadmap-step__body { flex: 1; padding-top: 8px; }
.roadmap-step__when {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.roadmap-step--current .roadmap-step__when { color: var(--gold-bright); }
.roadmap-step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.roadmap-step p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.roadmap__signature {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}
.roadmap__signature a { color: var(--gold-bright); border-bottom: 1px solid var(--border-gold); }
.roadmap__signature a:hover { color: var(--gold); border-color: var(--gold); }

/* STICKY FLOATING AUDIO BAR */
.sticky-audio {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 80px);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 12px;
  background: rgba(11, 11, 18, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(240, 203, 126, 0.12);
  opacity: 0;
  transition: transform 500ms var(--ease-out-expo), opacity 400ms ease;
  max-width: calc(100vw - 32px);
}
.sticky-audio.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.sticky-audio__play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-deepest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.sticky-audio__play:hover { background: var(--gold-bright); transform: scale(1.05); }
.sticky-audio__play svg { width: 14px; height: 14px; margin-left: 2px; }
.sticky-audio__play.is-playing svg { margin-left: 0; }
.sticky-audio__progress {
  flex: 1;
  min-width: 80px;
  max-width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.sticky-audio__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 100ms linear;
}
.sticky-audio__time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sticky-audio__label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  display: none;
}
@media (min-width: 720px) { .sticky-audio__label { display: inline; } }

/* HERO AMBIENT ORBS — drifting cinematic lights behind */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.35;
}
.hero__orb--gold {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -120px;
  left: -100px;
  animation: orbDrift 20s ease-in-out infinite;
}
.hero__orb--teal {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  bottom: -120px;
  right: -80px;
  animation: orbDrift 24s ease-in-out infinite reverse;
  opacity: 0.25;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
}

/* PRICING — featured card next-level visual punch */
.pricing-card--featured {
  background: linear-gradient(180deg, rgba(240, 203, 126, 0.08) 0%, var(--bg-glass-strong) 100%);
  border-color: var(--border-gold-strong);
  position: relative;
}
.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--gold-bright), transparent 60%, var(--gold-bright));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

/* INVESTOR STATS — trend visual + bigger impact */
.investor-stat__num-wrap {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}
.investor-stat__trend {
  display: inline-block;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid var(--gold-bright);
  transform: translateY(-6px);
  filter: drop-shadow(0 0 8px rgba(240, 203, 126, 0.4));
}

/* SECTION DIVIDERS — elegant hairline transitions */
.section-divider {
  height: 1px;
  margin: 0 auto;
  max-width: 200px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* FOOTER — large mark moment + built in public signature */
.footer__final-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}
.footer__final-mark .continuum-mark { width: 280px; height: 36px; }
.footer__final-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.footer__final-tagline em { color: var(--gold-bright); }
.footer__built-in-public {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.footer__built-in-public a { color: var(--gold); border-bottom: 1px solid var(--border-gold); }

/* SKIP LINK — accessibility */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg-deepest);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 8px;
  z-index: 9999;
  transition: top 200ms;
}
.skip-to-content:focus {
  top: 16px;
}

/* MOBILE DEEP POLISH — 375px / 414px / 768px */
@media (max-width: 480px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero__container { padding: 0 20px; }
  .hero__headline { font-size: clamp(36px, 11vw, 56px); }
  .hero__subheadline { font-size: 15px; padding: 0 8px; }
  .hero__pause-line { font-size: 18px; }
  .hero__cta-group { gap: 12px; flex-direction: column; width: 100%; }
  .hero__cta-group .btn { width: 100%; }
  .hero-stats { padding-top: 24px; margin-top: 56px; }
  .hero__orb { display: none; }
  .audio-hero { margin: 40px auto 16px; padding: 24px 20px; gap: 16px; }
  .audio-hero__title { font-size: 18px; line-height: 1.25; }
  .audio-hero__description { font-size: 13px; }
  .device-showcase { height: auto; padding: 24px 12px; gap: 24px; margin: 56px auto 24px; }
  .device--watch { width: 132px; align-self: center; margin-left: 0; }
  .device--phone { width: 220px; align-self: center; }
  .device--card { width: 280px; align-self: center; margin-right: 0; }
  .roadmap-step { gap: 16px; padding-bottom: 32px; }
  .roadmap-step__marker { width: 38px; height: 38px; font-size: 15px; }
  .roadmap-list::before { left: 18px; }
  .roadmap-step h3 { font-size: 19px; }
  .roadmap-step p { font-size: 14px; }
  .compare-row { padding: 16px 18px; gap: 6px; }
  .compare-row__claim { font-size: 16px; }
  .pricing-grid { gap: 16px; }
  .pricing-card { padding: 28px 20px; }
  .investor-stat { padding: 28px 22px; }
  .footer__final-mark .continuum-mark { width: 200px; }
  .footer__final-tagline { font-size: 17px; padding: 0 16px; text-align: center; }
  .sticky-audio { padding: 8px 12px; gap: 10px; bottom: 12px; }
  .sticky-audio__progress { max-width: 120px; min-width: 60px; }
  .trust-grid { gap: 12px; }
  .trust-cell { padding: 22px 18px; }
}

/* Touch targets — ensure ≥44px on all interactive elements on mobile */
@media (hover: none), (pointer: coarse) {
  .btn { min-height: 48px; }
  .nav__menu a { min-height: 44px; display: flex; align-items: center; }
  .audio-hero__controls button { min-height: 36px; padding: 6px 10px; }
  .sticky-audio__play { width: 44px; height: 44px; }
}

/* iPhone notch / Dynamic Island safe-area */
@supports (padding: max(0px)) {
  .nav { padding-top: max(20px, env(safe-area-inset-top)); }
  .sticky-audio { bottom: max(24px, env(safe-area-inset-bottom)); }
}

/* Prevent horizontal scroll on small screens — guard rails */
html, body { overflow-x: hidden; max-width: 100vw; }


/* === v4-cinematic.css === */
/* ===========================================================
   Continuum v4 — Cinematic layer
   Every effect reinforces a Continuum-specific metaphor:
   the line, the loop, the 24 nodes, the .continue file.
   ============================================================ */

/* ───────────────────────────────────────────────────────────
   1. PRELOAD CURTAIN
   The page opens with a single horizontal gold line that
   draws across the viewport. The continuum loop then forms
   at center. The line lifts and dissolves into the page's
   nav. (~1.1s total. Skipped on reduced motion.)
   ─────────────────────────────────────────────────────────── */
.preload-curtain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg-deepest);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 600ms var(--ease-out-expo) 700ms,
              visibility 0s linear 1300ms;
}
.preload-curtain.is-done {
  opacity: 0;
  visibility: hidden;
}
.preload-curtain__mark {
  width: 320px;
  max-width: 60vw;
}
.preload-curtain__line {
  stroke: url(#preload-mark-grad);
  stroke-width: 1.6;
  fill: none;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: preloadLineDraw 900ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.preload-curtain__loop {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.4;
  opacity: 0;
  transform-origin: 120px 12px;
  animation: preloadLoopForm 600ms cubic-bezier(0.65, 0, 0.35, 1) 600ms forwards;
}
@keyframes preloadLineDraw {
  0%   { stroke-dashoffset: 320; }
  100% { stroke-dashoffset: 0; }
}
@keyframes preloadLoopForm {
  0%   { opacity: 0; transform: scale(0.4); filter: drop-shadow(0 0 0 transparent); }
  60%  { opacity: 1; transform: scale(1.06); filter: drop-shadow(0 0 16px rgba(240,203,126,0.6)); }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 6px rgba(240,203,126,0.3)); }
}
@media (prefers-reduced-motion: reduce) {
  .preload-curtain { display: none; }
}

/* ───────────────────────────────────────────────────────────
   2. VERCEL-STYLE GRID BACKDROP — hero
   A thin gold infrastructure grid that fades at the edges.
   Reinforces "Continuum is the substrate, not a brand."
   ─────────────────────────────────────────────────────────── */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 122, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 122, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 45%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 45%, #000 30%, transparent 85%);
  animation: gridBreathe 16s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes gridBreathe {
  0%, 100% { background-size: 80px 80px; opacity: 0.7; }
  50%      { background-size: 82px 82px; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__grid { animation: none; }
}

/* ───────────────────────────────────────────────────────────
   3. CURSOR SPOTLIGHT — hero only
   Soft gold radial follows the pointer. Embodies the thesis
   that Continuum is aware of where you are.
   ─────────────────────────────────────────────────────────── */
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms var(--ease-out-expo);
  background:
    radial-gradient(
      520px circle at var(--mx, 50%) var(--my, 50%),
      rgba(240, 203, 126, 0.10) 0%,
      rgba(240, 203, 126, 0.045) 24%,
      transparent 60%
    );
  mix-blend-mode: screen;
}
.hero:hover .hero__spotlight,
.hero.is-spotlight-active .hero__spotlight {
  opacity: 1;
}
@media (hover: none), (pointer: coarse) {
  .hero__spotlight { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__spotlight { display: none; }
}

/* ───────────────────────────────────────────────────────────
   4. HERO LIVING SPINE — full-width continuum mark behind hero
   The gold line + infinity loop, drawn across the viewport
   and breathing. This IS the visual through-line.
   ─────────────────────────────────────────────────────────── */
.hero__spine {
  position: absolute;
  left: 0; right: 0;
  bottom: 12%;
  height: 24px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: spineFadeIn 1.4s var(--ease-out-expo) 1.4s forwards;
}
@media (max-width: 768px) {
  .hero__spine { bottom: 8%; }
}
.hero__spine svg { width: 100%; height: 100%; }
.hero__spine-line {
  stroke: url(#hero-spine-grad);
  stroke-width: 1.2;
  fill: none;
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: spineDraw 1.8s cubic-bezier(0.65, 0, 0.35, 1) 1.6s forwards;
}
.hero__spine-loop {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.4;
  opacity: 0;
  animation: spineLoopForm 700ms cubic-bezier(0.65, 0, 0.35, 1) 3.2s forwards,
             spineLoopBreathe 6s ease-in-out 4s infinite;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(240, 203, 126, 0.35));
}
@keyframes spineFadeIn { to { opacity: 1; } }
@keyframes spineDraw { to { stroke-dashoffset: 0; } }
@keyframes spineLoopForm {
  0%   { opacity: 0; transform: scale(0.5); }
  60%  { opacity: 0.9; transform: scale(1.08); }
  100% { opacity: 0.85; transform: scale(1); }
}
@keyframes spineLoopBreathe {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(240, 203, 126, 0.30)); }
  50%      { filter: drop-shadow(0 0 22px rgba(240, 203, 126, 0.65)); }
}

/* ───────────────────────────────────────────────────────────
   5. CROSSHAIR CORNER ACCENTS — hero
   Four tiny corner ticks. Architectural framing detail.
   ─────────────────────────────────────────────────────────── */
.hero__corners {
  position: absolute;
  inset: 24px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: cornersFadeIn 1.2s var(--ease-out-expo) 2.4s forwards;
}
.hero__corner {
  position: absolute;
  width: 18px;
  height: 18px;
}
.hero__corner::before,
.hero__corner::after {
  content: '';
  position: absolute;
  background: rgba(212, 175, 122, 0.4);
}
.hero__corner::before { width: 18px; height: 1px; top: 0; }
.hero__corner::after  { width: 1px; height: 18px; left: 0; }
.hero__corner--tl { top: 0; left: 0; }
.hero__corner--tr { top: 0; right: 0; transform: scaleX(-1); }
.hero__corner--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.hero__corner--br { bottom: 0; right: 0; transform: scale(-1,-1); }
@keyframes cornersFadeIn { to { opacity: 1; } }

/* ───────────────────────────────────────────────────────────
   6. SCROLL CHOREOGRAPHY — hero compression
   Hero content scales/fades as scroll progresses. JS sets
   --hero-scroll [0..1].
   ─────────────────────────────────────────────────────────── */
.hero__container {
  transform: scale(calc(1 - var(--hero-scroll, 0) * 0.06));
  opacity: calc(1 - var(--hero-scroll, 0) * 0.4);
  transition: transform 100ms linear, opacity 100ms linear;
  will-change: transform, opacity;
}
.hero__scroll-indicator {
  opacity: calc(1 - var(--hero-scroll, 0) * 1.8);
  transition: opacity 100ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .hero__container { transform: none; opacity: 1; }
  .hero__scroll-indicator { opacity: 1; }
}

/* ───────────────────────────────────────────────────────────
   7. MAGNETIC CTAs
   JS sets --tugX/--tugY in px on hover proximity. CTA leans
   subtly toward cursor. Gold halo intensifies.
   ─────────────────────────────────────────────────────────── */
.btn--primary,
.btn--gold {
  --tugX: 0px; --tugY: 0px;
  transform: translate3d(var(--tugX), var(--tugY), 0);
  transition: transform 220ms var(--ease-out-expo),
              box-shadow 220ms var(--ease-out-expo),
              background-position 600ms var(--ease-out-expo);
}
.btn--primary.is-magnet-active,
.btn--gold.is-magnet-active {
  box-shadow:
    0 0 0 1px rgba(240, 203, 126, 0.55),
    0 12px 40px rgba(240, 203, 126, 0.22),
    0 0 60px rgba(240, 203, 126, 0.18);
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .btn--primary, .btn--gold { --tugX: 0px; --tugY: 0px; }
}

/* ───────────────────────────────────────────────────────────
   8. 3D TILT — Life OS cards
   On cursor proximity: -8°..+8° tilt, per-OS-color halo.
   ─────────────────────────────────────────────────────────── */
.os-card {
  transform-style: preserve-3d;
  transition: transform 240ms var(--ease-out-expo),
              box-shadow 240ms var(--ease-out-expo),
              border-color 240ms var(--ease-out-expo);
  will-change: transform;
  position: relative;
}
.os-card.is-tilt-active {
  box-shadow:
    0 0 0 1px var(--os-color, var(--gold)),
    0 18px 60px rgba(0, 0, 0, 0.5),
    0 0 90px color-mix(in srgb, var(--os-color, var(--gold)) 22%, transparent);
}
.os-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 35%,
    color-mix(in srgb, var(--os-color, var(--gold)) 14%, transparent) 50%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 240ms var(--ease-out-expo);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.os-card.is-tilt-active::after { opacity: 1; }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .os-card { transform: none !important; }
  .os-card::after { display: none; }
}

/* ───────────────────────────────────────────────────────────
   9. 3D TILT — device showcase
   Lean to cursor. CSS variables (--tx, --ty, --lift) are set
   by JS; sections.css owns the transform composition so each
   device keeps its base rotation/centering.
   Gold reflection sweep on hover.
   ─────────────────────────────────────────────────────────── */
.device-showcase {
  perspective: 1600px;
  transform-style: preserve-3d;
}
.device {
  will-change: transform;
}
.device::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(240, 203, 126, 0.16) 50%,
    transparent 62%
  );
  pointer-events: none;
  border-radius: 28px;
  opacity: 0;
  transition: opacity 320ms var(--ease-out-expo);
  mix-blend-mode: screen;
}
.device-showcase.is-tilt-active .device::after { opacity: 1; }

/* ───────────────────────────────────────────────────────────
   10. ANCHOR RAIL — right-edge section locator
   ─────────────────────────────────────────────────────────── */
.anchor-rail {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity 600ms var(--ease-out-expo);
  pointer-events: none;
}
.anchor-rail.is-revealed { opacity: 1; pointer-events: auto; }
.anchor-rail__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 122, 0.18);
  border: 1px solid rgba(212, 175, 122, 0.25);
  cursor: none;
  transition: background 220ms var(--ease-out-expo),
              transform 220ms var(--ease-out-expo),
              box-shadow 220ms var(--ease-out-expo);
}
.anchor-rail__dot:hover,
.anchor-rail__dot.is-active {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(240, 203, 126, 0.6);
}
.anchor-rail__dot::before {
  content: attr(data-label);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  background: rgba(7, 7, 12, 0.88);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease-out-expo),
              transform 180ms var(--ease-out-expo);
}
.anchor-rail__dot:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 1100px) { .anchor-rail { display: none; } }

/* ───────────────────────────────────────────────────────────
   11. AUDIO-REACTIVE WAVEFORM
   When the narrative plays, the progress bar is overlaid
   with a real AnalyserNode-driven bar visualizer.
   ─────────────────────────────────────────────────────────── */
.audio-hero__visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 32px;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 320ms var(--ease-out-expo);
}
.audio-hero__visualizer.is-active { opacity: 1; }
.audio-hero__visualizer-bar {
  width: 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border-radius: 2px;
  transform-origin: bottom;
  transform: scaleY(0.08);
  transition: transform 80ms linear;
  box-shadow: 0 0 6px rgba(240, 203, 126, 0.3);
}

/* Sticky audio mini-waveform */
.sticky-audio__bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  margin-left: 6px;
  opacity: 0;
  transition: opacity 220ms ease;
}
.sticky-audio.is-playing .sticky-audio__bars { opacity: 1; }
.sticky-audio__bars span {
  width: 2px;
  background: var(--gold-bright);
  border-radius: 1px;
  transform: scaleY(0.2);
  transform-origin: bottom;
  transition: transform 100ms linear;
}

/* Continuum mark in nav pulses when audio playing */
.nav.is-audio-playing .continuum-mark path {
  animation: navMarkPulse 1.6s ease-in-out infinite;
}
@keyframes navMarkPulse {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50%      { filter: drop-shadow(0 0 10px rgba(240, 203, 126, 0.7)); }
}

/* ───────────────────────────────────────────────────────────
   12. SPARKLE BURSTS
   Branded gold-particle bloom for celebrations.
   ─────────────────────────────────────────────────────────── */
.sparkle-burst {
  position: fixed;
  z-index: 95;
  pointer-events: none;
  width: 0; height: 0;
}
.sparkle-burst__particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(240, 203, 126, 0.85);
  opacity: 0;
  animation: sparkleFly 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes sparkleFly {
  0%   { opacity: 1; transform: translate(0, 0) scale(0.6); }
  20%  { opacity: 1; transform: translate(calc(var(--dx) * 0.4), calc(var(--dy) * 0.4)) scale(1.1); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.2); }
}
@media (prefers-reduced-motion: reduce) {
  .sparkle-burst { display: none; }
}

/* ───────────────────────────────────────────────────────────
   13. SCROLL-ACTIVATED CONSTELLATION
   24 OS nodes light up sequentially as user scrolls toward
   the Life OS grid. JS sets --constellation-progress [0..1].
   ─────────────────────────────────────────────────────────── */
.constellation svg #cstr-nodes circle:nth-of-type(2n+1) {
  /* odd children are the bright dots */
  transition: opacity 600ms var(--ease-out-expo),
              filter 600ms var(--ease-out-expo);
}

/* ───────────────────────────────────────────────────────────
   14. CONNECTION LINES — comparison rows
   When the comparison section enters viewport, gold threads
   draw between "them" and "us" to embody unification.
   ─────────────────────────────────────────────────────────── */
.compare-row {
  position: relative;
}
.compare-row__thread {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240, 203, 126, 0.7) 18%,
    rgba(240, 203, 126, 0.9) 50%,
    rgba(240, 203, 126, 0.7) 82%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(240, 203, 126, 0.4);
  z-index: 0;
}
.compare-row__thread::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 360ms var(--ease-out-expo) 900ms;
  box-shadow: 0 0 12px rgba(240, 203, 126, 0.9);
}
.compare-row.is-thread-drawn .compare-row__thread {
  transform: scaleX(1);
  opacity: 0.85;
  transition: transform 1100ms var(--ease-out-expo),
              opacity 600ms var(--ease-out-expo);
}
.compare-row.is-thread-drawn .compare-row__thread::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ───────────────────────────────────────────────────────────
   15. INVESTOR TREND MARKS — stroke-dashoffset draw
   ─────────────────────────────────────────────────────────── */
.investor-stat__trend {
  display: inline-block;
  width: 18px;
  height: 16px;
  margin-left: 12px;
  vertical-align: middle;
  position: relative;
}
.investor-stat__trend::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 14 L9 4 L16 14 Z' fill='none' stroke='%23F0CB7E' stroke-width='1.4' stroke-linejoin='round' stroke-dasharray='40' stroke-dashoffset='40'%3E%3Canimate attributeName='stroke-dashoffset' from='40' to='0' dur='900ms' fill='freeze' begin='trendDraw.begin'/%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 4px rgba(240,203,126,0.5));
}
.investor-stat.is-trend-drawn .investor-stat__trend::before {
  animation: trendStroke 900ms var(--ease-out-expo) forwards;
}
@keyframes trendStroke {
  /* Use a CSS-driven mask sweep so dashoffset works without SMIL */
  0%   { clip-path: inset(100% 0 0 0); opacity: 0; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

/* ───────────────────────────────────────────────────────────
   16. SECTION NUMBER INDICATORS
   Small "01 · The Vision" floating eyebrow per section.
   Already partly via .eyebrow; we add a numerical prefix
   when JS attaches data-section-num.
   ─────────────────────────────────────────────────────────── */
/* Override base .eyebrow::before (24×1px gold bar) when a section
   number is attached — we want the number to render as text. */
.eyebrow[data-section-num]::before {
  content: attr(data-section-num);
  width: auto;
  height: auto;
  background: none;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--track-eyebrow);
  margin-right: 0;
  padding-right: 12px;
  border-right: 1px solid var(--border-gold);
  line-height: 1;
}

/* ───────────────────────────────────────────────────────────
   17. FOOTER MARK DRAW-IN
   Final mark line draws across, loop assembles when footer
   enters viewport.
   ─────────────────────────────────────────────────────────── */
/* Footer brand mark draw-in: left C draws, right C draws, bar bridges */
.footer__final-mark .continuum-mark path:nth-of-type(1) {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}
.footer__final-mark .continuum-mark path:nth-of-type(2) {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}
.footer__final-mark .continuum-mark line {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}
.footer__final-mark.is-visible .continuum-mark path:nth-of-type(1) {
  animation: ffmarkDraw 900ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.footer__final-mark.is-visible .continuum-mark path:nth-of-type(2) {
  animation: ffmarkDraw 900ms cubic-bezier(0.65, 0, 0.35, 1) 300ms forwards;
}
.footer__final-mark.is-visible .continuum-mark line {
  animation: ffmarkDraw 600ms cubic-bezier(0.65, 0, 0.35, 1) 900ms forwards;
}
@keyframes ffmarkDraw { to { stroke-dashoffset: 0; } }

/* ───────────────────────────────────────────────────────────
   18. SECTION DIVIDER WAVES
   Thin gold line that gently waves into view between sections.
   ─────────────────────────────────────────────────────────── */
.section-divider {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.section-divider svg { width: min(720px, 88%); height: 14px; }
.section-divider path {
  fill: none;
  stroke: url(#section-divider-grad);
  stroke-width: 1;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.section-divider.is-visible path {
  animation: dividerDraw 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes dividerDraw { to { stroke-dashoffset: 0; } }

/* ───────────────────────────────────────────────────────────
   19. SCRAMBLE TEXT — utility class
   Used on the .continue filename reveal and select eyebrows.
   No special styling needed; JS swaps characters.
   ─────────────────────────────────────────────────────────── */
.scramble-text { font-variant-numeric: tabular-nums; }

/* ───────────────────────────────────────────────────────────
   20. NOW-PLAYING CONTEXT NUDGE
   When audio plays, a subtle indicator slides into view in
   the corner showing live playback context.
   ─────────────────────────────────────────────────────────── */
.now-playing-context {
  position: fixed;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(11, 11, 18, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(240, 203, 126, 0.2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  z-index: 70;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 480ms var(--ease-out-expo),
              opacity 320ms var(--ease-out-expo);
  pointer-events: none;
}
.now-playing-context.is-shown {
  transform: translateY(0);
  opacity: 1;
}
.now-playing-context__pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(240, 203, 126, 0.5);
  animation: nowPlayPulse 1.6s ease-in-out infinite;
}
@keyframes nowPlayPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 203, 126, 0.5); }
  50%      { transform: scale(1.3); box-shadow: 0 0 0 6px rgba(240, 203, 126, 0); }
}

/* ───────────────────────────────────────────────────────────
   21. AURORA GRADIENT — ambient backdrop for waitlist
   A slow conic gradient that drifts behind the final CTA.
   ─────────────────────────────────────────────────────────── */
.waitlist {
  position: relative;
  overflow: hidden;
}
.waitlist__aurora {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    conic-gradient(
      from 90deg at 50% 50%,
      rgba(240, 203, 126, 0.10) 0deg,
      rgba(93, 168, 156, 0.07) 90deg,
      rgba(209, 123, 123, 0.06) 180deg,
      rgba(240, 203, 126, 0.10) 270deg,
      rgba(240, 203, 126, 0.10) 360deg
    );
  filter: blur(80px) saturate(140%);
  opacity: 0.6;
  animation: auroraDrift 28s ease-in-out infinite;
}
.waitlist .container { position: relative; z-index: 1; }
@keyframes auroraDrift {
  0%, 100% { transform: rotate(0deg) translate3d(0,0,0); }
  50%      { transform: rotate(180deg) translate3d(40px, -20px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .waitlist__aurora { animation: none; }
}

/* ───────────────────────────────────────────────────────────
   22. PRICING FEATURED CARD — animated gradient border
   ─────────────────────────────────────────────────────────── */
.pricing-card--featured {
  position: relative;
  isolation: isolate;
}
.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--rotate, 0deg),
    rgba(240, 203, 126, 0.8),
    rgba(93, 168, 156, 0.6),
    rgba(209, 123, 123, 0.5),
    rgba(240, 203, 126, 0.8)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
  animation: rotateBorder 12s linear infinite;
}
@property --rotate {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  to { --rotate: 360deg; }
}
@supports not (background: paint(something)) {
  .pricing-card--featured::before { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card--featured::before { animation: none; }
}

/* ───────────────────────────────────────────────────────────
   23. GRAIN DRIFT — animated noise that subtly moves
   ─────────────────────────────────────────────────────────── */
.grain-overlay::after {
  animation: grainDrift 36s linear infinite;
}
@keyframes grainDrift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -3%); }
  60%  { transform: translate(-2%, 1%); }
  80%  { transform: translate(3%, 3%); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .grain-overlay::after { animation: none; }
}

/* ───────────────────────────────────────────────────────────
   24. SECTION REVEAL VARIANTS — alternate enters for variety
   ─────────────────────────────────────────────────────────── */
.reveal-fade {
  opacity: 0;
  transition: opacity 1000ms var(--ease-out-expo);
}
.reveal-fade.is-visible { opacity: 1; }

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 900ms var(--ease-out-expo),
              transform 900ms var(--ease-out-expo);
}
.reveal-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ───────────────────────────────────────────────────────────
   BRAND TYPOGRAPHY REFINEMENT
   With Cormorant Garamond as --font-display, data/stat numbers
   would render in italic serif — too "editorial" for hard data.
   Override stat callouts to Plus Jakarta Sans so the numbers
   read as confident, modern data. Pricing prices keep the
   editorial serif vibe — money feels luxury, stats feel proof.
   ─────────────────────────────────────────────────────────── */
.hero-stat__num,
.investor-stat__number,
.founder__cred-num {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  font-variant-numeric: tabular-nums;
}

/* Pricing tier names — keep clean uppercase mono for confidence */
.pricing-card__tier {
  font-family: var(--font-mono);
}

/* Eyebrows — explicitly mono to avoid serif italic */
.eyebrow {
  font-family: var(--font-mono) !important;
  font-style: normal !important;
}

/* Nav wordmark — Plus Jakarta Sans, never italic */
.nav__wordmark,
.footer__wordmark {
  font-family: var(--font-body) !important;
  font-style: normal !important;
}

/* All section headlines — Cormorant Garamond regular (not italic)
   except hero which is intentionally italic for editorial impact. */
.section-headline,
.section-headline-xl,
.waitlist__headline,
.founder__name,
.audio-hero__title,
.scenario__title,
.benefit-block h3,
.pillar h3,
.os-card h3,
.trust-cell h3,
.pricing-card__tier,
.roadmap-step__body h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* Body text override — make sure all body uses Plus Jakarta Sans */
body, p, li, input, textarea, button {
  font-family: var(--font-body);
}

/* Buttons — modern sans, never serif */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Mobile-specific overrides */
@media (max-width: 720px) {
  /* Hero brand mark — more prominent */
  .continuum-mark--hero { width: 88px; }

  /* Scroll indicator — hide on mobile to avoid overlap with hero stats */
  .hero__scroll-indicator { display: none; }

  /* Hero stats grid spacing */
  .hero-stats { margin: 48px auto 0 !important; padding-top: 28px !important; }
  .hero-stat__num { font-size: 36px !important; }

  /* Anchor rail already hidden via existing media query */

  /* Custom cursor hidden via touch detection */

  /* Tighten hero padding on mobile */
  .hero { padding: 120px 0 60px !important; }

  /* Hero corners — too tight on mobile, hide */
  .hero__corners { display: none; }

  /* Section number indicators — smaller on mobile */
  .eyebrow[data-section-num]::before {
    font-size: 10px;
    padding-right: 8px;
  }

  /* Section dividers - tighter on mobile */
  .section-divider { height: 48px !important; }
}

/* ───────────────────────────────────────────────────────────
   26. WORD-STAGGER REVEAL — hero subhead, section subheads
   ─────────────────────────────────────────────────────────── */
.word-reveal > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease-out-expo),
              transform 700ms var(--ease-out-expo);
}
.word-reveal.is-visible > span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 60ms);
}


/* === v5-mobile.css === */
/* ===========================================================
   Continuum v5 — Mobile Next-Level
   Sticky bottom CTA, scroll-direction nav, hero choreography,
   swipe carousel, touch ripples, safe-area awareness.
   Scope: max-width 880px unless noted.
   ============================================================ */

/* ───────────────────────────────────────────────────────────
   1. SAFE-AREA AWARENESS — global
   Honor iPhone notch + home indicator everywhere.
   ─────────────────────────────────────────────────────────── */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

@supports (padding: env(safe-area-inset-top)) {
  .nav { padding-top: calc(20px + var(--safe-top)); }
}

/* ───────────────────────────────────────────────────────────
   2. SCROLL-DIRECTION NAV
   Hide on scroll-down, reveal on scroll-up (Apple/Linear).
   ─────────────────────────────────────────────────────────── */
.nav {
  transition: transform 380ms var(--ease-out-expo),
              background 300ms ease,
              padding 300ms ease,
              border-color 300ms ease;
  will-change: transform;
}
.nav.is-hidden {
  transform: translateY(-110%);
}
.nav.is-mobile-open.is-hidden {
  /* When menu is open, never hide the nav */
  transform: translateY(0);
}

/* ───────────────────────────────────────────────────────────
   3. STICKY BOTTOM CTA — mobile only
   Appears after first hero scroll, sticks to bottom,
   hides when waitlist section is in view.
   ─────────────────────────────────────────────────────────── */
.bottom-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px calc(12px + var(--safe-bottom, 0px));
  background: linear-gradient(180deg, rgba(9, 9, 14, 0) 0%, rgba(9, 9, 14, 0.95) 50%, rgba(9, 9, 14, 1) 100%);
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 420ms var(--ease-out-expo),
              transform 420ms var(--ease-out-expo);
}
.bottom-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.bottom-cta.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.bottom-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: linear-gradient(180deg, #F4D58E 0%, #C8A96E 60%, #A88B58 100%);
  color: #09090E;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 8px 28px rgba(240, 203, 126, 0.32),
    0 0 0 1px rgba(240, 203, 126, 0.45);
  position: relative;
  overflow: hidden;
}
.bottom-cta__mark {
  width: 26px;
  height: 13px;
  flex-shrink: 0;
}
.bottom-cta__count {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #09090E;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
@media (min-width: 881px) {
  .bottom-cta { display: none; }
}

/* ───────────────────────────────────────────────────────────
   4. TOUCH RIPPLE FEEDBACK
   On press, a gold ripple expands from tap point.
   Combined with scale-down feedback.
   ─────────────────────────────────────────────────────────── */
.btn,
.os-card,
.pricing-card,
.scenario,
.anchor-rail__dot,
.audio-hero__play-button,
.bottom-cta__btn {
  position: relative;
  overflow: hidden;
  transition: transform 160ms var(--ease-out-expo),
              box-shadow 220ms var(--ease-out-expo);
  -webkit-tap-highlight-color: transparent;
}
.btn:active,
.bottom-cta__btn:active,
.audio-hero__play-button:active {
  transform: scale(0.96);
}
.os-card:active,
.pricing-card:active,
.scenario:active {
  transform: scale(0.985);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 203, 126, 0.55) 0%, rgba(240, 203, 126, 0) 70%);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleExpand 600ms var(--ease-out-expo) forwards;
  mix-blend-mode: screen;
}
.btn--primary .ripple,
.bottom-cta__btn .ripple {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: normal;
}
@keyframes rippleExpand {
  to { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* Hide ripples on devices with reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ripple { display: none; }
}

/* ───────────────────────────────────────────────────────────
   5. HERO CHOREOGRAPHY (mobile)
   Brand mark C-arcs draw on load, then bar bridges.
   Eyebrow letters cascade. Headline word reveal.
   Skip on reduced-motion.
   ─────────────────────────────────────────────────────────── */
.continuum-mark--hero path,
.continuum-mark--hero line {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}
.continuum-mark--hero path:nth-of-type(1) {
  animation: cmDraw 800ms cubic-bezier(0.65, 0, 0.35, 1) 300ms forwards;
}
.continuum-mark--hero path:nth-of-type(2) {
  animation: cmDraw 800ms cubic-bezier(0.65, 0, 0.35, 1) 700ms forwards;
}
.continuum-mark--hero line {
  animation: cmDraw 500ms cubic-bezier(0.65, 0, 0.35, 1) 1300ms forwards;
}
@keyframes cmDraw { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .continuum-mark--hero path,
  .continuum-mark--hero line {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: none;
  }
}

/* Mobile-specific hero timing tighter */
@media (max-width: 720px) {
  .continuum-mark--hero { width: 88px !important; }
  /* Hero eyebrow — letter-spacing breathes wider on mobile for editorial feel */
  .hero__eyebrow { letter-spacing: 0.36em !important; font-size: 11px !important; }
  /* Hero headline */
  .hero__headline { font-size: clamp(36px, 11vw, 52px) !important; line-height: 1.05 !important; margin-bottom: 22px !important; }
  /* Hero subhead */
  .hero__subheadline { font-size: 16px !important; line-height: 1.55 !important; max-width: 340px !important; }
  /* "There is a better way." */
  .hero__pause-line { font-size: 19px !important; margin: 14px 0 8px !important; }
  /* Audio block padding tighter */
  .audio-hero { padding: 24px 18px !important; }
  /* CTA group stacks */
  .hero__cta-group { flex-direction: column; gap: 12px !important; margin-top: 36px !important; }
  .hero__cta-group .btn { width: 100%; max-width: 320px; }
}

/* ───────────────────────────────────────────────────────────
   6. LIVING EXPERIENCE — horizontal swipe carousel (mobile)
   Five scenarios become a snap-scrolling horizontal strip.
   Each card is ~85vw wide. Dot indicators below.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .scenario-track {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 24px 20px 12px;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .scenario-track::-webkit-scrollbar { display: none; }
  .scenario {
    flex: 0 0 86vw !important;
    max-width: 380px;
    scroll-snap-align: center;
    margin: 0 !important;
    min-height: 360px;
  }
  /* Dot indicators */
  .scenario-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    padding-bottom: 8px;
  }
  .scenario-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.25);
    transition: width 260ms var(--ease-out-expo),
                background 260ms var(--ease-out-expo);
  }
  .scenario-dot.is-active {
    width: 22px;
    border-radius: 4px;
    background: var(--gold-bright);
  }
  /* Add a swipe hint on first paint */
  .scenario-track::after {
    content: '';
    flex: 0 0 16px;
  }
}
@media (min-width: 881px) {
  .scenario-dots { display: none; }
}

/* ───────────────────────────────────────────────────────────
   7. ENHANCED AUDIO PLAYER (mobile)
   Bigger play button, prominent scrub bar, haptic feel.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .audio-hero__play-button {
    width: 104px !important;
    height: 104px !important;
  }
  .audio-hero__play-button svg {
    width: 40px !important;
    height: 40px !important;
  }
  .audio-hero__progress-bar {
    height: 6px !important;
  }
  .audio-hero__progress-fill {
    box-shadow: 0 0 8px rgba(240, 203, 126, 0.6);
  }
}

/* ───────────────────────────────────────────────────────────
   8. CONSTELLATION ELEVATED ON MOBILE
   Make the 24-node ring more prominent on mobile.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .what-continuum-is__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .what-continuum-is__sticky {
    position: static !important;
    text-align: center !important;
  }
  .constellation {
    margin: 24px auto !important;
    max-width: 360px;
  }
}

/* ───────────────────────────────────────────────────────────
   9. FOOTER — better mobile rhythm
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .footer__column--brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 12px;
  }
  .footer__column--brand .continuum-mark--brand {
    margin: 0 auto;
  }
}

/* ───────────────────────────────────────────────────────────
   10. SECTION HEADLINES — mobile spacing
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .section-headline,
  .section-headline-xl,
  .waitlist__headline {
    font-size: clamp(32px, 9vw, 44px) !important;
    line-height: 1.05 !important;
  }
  /* Section padding tighter */
  section { padding: 64px 0 !important; }
  .hero { padding: 100px 0 60px !important; }
  .waitlist { padding: 56px 0 96px !important; }
}

/* ───────────────────────────────────────────────────────────
   11. STICKY AUDIO BAR — extra polish on mobile
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .sticky-audio {
    /* Account for bottom CTA bar (88px+safe-area) */
    bottom: calc(88px + var(--safe-bottom, 0px)) !important;
  }
}

/* ───────────────────────────────────────────────────────────
   12. PRICING CARDS — mobile tighter
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .pricing-grid { gap: 20px !important; }
  .pricing-card { padding: 28px 24px !important; }
  .pricing-card__price .price { font-size: 56px !important; }
}

/* ───────────────────────────────────────────────────────────
   13. LIFE OS CARDS — mobile snap-friendly grid
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .os-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .os-card {
    padding: 18px 14px !important;
    min-height: auto !important;
  }
  .os-card h3 {
    font-size: 15px !important;
  }
  .os-card p {
    font-size: 12px !important;
    line-height: 1.4 !important;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .os-card__status {
    font-size: 9px !important;
    padding: 3px 6px !important;
  }
}

/* ───────────────────────────────────────────────────────────
   14. INVESTOR STATS — slot-machine count-up support
   Numbers slide up into place when entering viewport.
   ─────────────────────────────────────────────────────────── */
.investor-stat__number {
  display: inline-block;
}

/* ───────────────────────────────────────────────────────────
   15. ANCHOR RAIL HIDDEN ON MOBILE — already done via existing rule
   ─────────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────────
   16. SCENARIO CARDS — more readable mobile cards
   ─────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .scenario {
    padding: 24px 22px !important;
    border-radius: 20px !important;
    background: rgba(20, 20, 28, 0.65) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .scenario__number {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
  .scenario__title {
    font-size: 22px !important;
    margin-bottom: 14px !important;
  }
  .scenario__body {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }
}

/* ───────────────────────────────────────────────────────────
   17. WAITLIST FORM — full-width mobile inputs
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .waitlist__form {
    flex-direction: column !important;
    gap: 12px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }
  .waitlist__input {
    width: 100% !important;
    padding: 16px 18px !important;
    background: rgba(20, 20, 28, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    font-size: 16px !important; /* iOS won't auto-zoom at 16+ */
  }
  .waitlist__form .btn {
    width: 100%;
    padding: 16px 24px !important;
  }
}

/* ───────────────────────────────────────────────────────────
   18. iOS-style smooth momentum scroll
   ─────────────────────────────────────────────────────────── */
html { -webkit-overflow-scrolling: touch; }

/* ───────────────────────────────────────────────────────────
   19. TYPE RENDERING — crispness on retina
   ─────────────────────────────────────────────────────────── */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ───────────────────────────────────────────────────────────
   20. DISABLE TAP HIGHLIGHTS
   ─────────────────────────────────────────────────────────── */
a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}

/* ───────────────────────────────────────────────────────────
   21. SCROLL-DRIVEN HERO MARK STICKY MINI
   When the user scrolls past the hero brand mark, the nav
   mark animates in (already happens). Add a subtle scale-pop.
   ─────────────────────────────────────────────────────────── */
.nav.is-scrolled .continuum-mark--brand {
  animation: navMarkPop 600ms var(--ease-out-expo);
}
@keyframes navMarkPop {
  0%   { transform: scale(0.7); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}


/* === v6-signature.css === */
/* ===========================================================
   Continuum v6 — Signature
   The continuous thread, interactive .continue file demo,
   cinematic preload, section letterheads.
   ============================================================ */

/* ───────────────────────────────────────────────────────────
   1. THE CONTINUOUS THREAD
   A single gold line runs the full height of the page,
   with section dots and a .continue marker that traces
   along it as the user scrolls.
   ─────────────────────────────────────────────────────────── */
.continuum-thread {
  position: fixed;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(212, 175, 122, 0.0) 6%,
    rgba(212, 175, 122, 0.5) 12%,
    rgba(212, 175, 122, 0.5) 88%,
    rgba(212, 175, 122, 0.0) 94%,
    transparent 100%
  );
  transition: opacity 600ms ease;
}
/* Hide on mobile to keep page focus on content */
@media (max-width: 880px) {
  .continuum-thread { display: none; }
}
/* Hide when reduce-motion */
@media (prefers-reduced-motion: reduce) {
  .continuum-thread { display: none; }
}

/* Section dots along the thread */
.thread-dot {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-deepest);
  border: 1px solid rgba(212, 175, 122, 0.5);
  transform: translate(-50%, -50%);
  transition: background 320ms var(--ease-out-expo),
              border-color 320ms var(--ease-out-expo),
              box-shadow 320ms var(--ease-out-expo);
}
.thread-dot.is-passed {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 8px rgba(240, 203, 126, 0.5);
}
.thread-dot.is-current {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(240, 203, 126, 0.18),
              0 0 14px rgba(240, 203, 126, 0.6);
}

/* The traveling .continue marker — DISABLED. Was overlapping
   headlines mid-viewport. Thread + anchor rail handle navigation. */
.thread-marker {
  display: none !important;
}
.thread-marker.is-active { opacity: 0.85; }
.thread-marker__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(9, 9, 14, 0.92);
  border: 1px solid rgba(240, 203, 126, 0.45);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(240, 203, 126, 0.18);
  white-space: nowrap;
}
.thread-marker__pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 6px rgba(240, 203, 126, 0.7);
  animation: threadPulse 2s ease-in-out infinite;
}
@keyframes threadPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.5; }
}

/* ───────────────────────────────────────────────────────────
   2. THE .CONTINUE SHARE DEMO — 3-step real-world flow
   You tap → They scan → They see exactly what you allowed.
   Replaces the developer-facing JSON view with something
   any provider/lender/employer can understand instantly.
   ─────────────────────────────────────────────────────────── */
.continue-file-demo {
  padding: 120px 0 100px;
  position: relative;
  isolation: isolate;
}
.continue-file-demo .container {
  text-align: center;
}
.continue-file-demo__intro {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 16px auto 18px;
  max-width: 760px;
}
.continue-file-demo__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 64px;
}

/* The 3-step flow grid */
.share-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.share-flow::before,
.share-flow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6h22M16 1l6 5-6 5' fill='none' stroke='%23C8A96E' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}
.share-flow::before { left: calc(33.333% - 12px); }
.share-flow::after  { left: calc(66.666% - 12px); }

.share-step {
  position: relative;
  text-align: left;
  background: linear-gradient(180deg, rgba(20,20,28,0.65) 0%, rgba(11,11,18,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 480px;
  isolation: isolate;
  transition: border-color 320ms ease, transform 320ms var(--ease-out-expo);
}
.share-step:hover {
  border-color: rgba(240, 203, 126, 0.35);
  transform: translateY(-4px);
}
.share-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  font-weight: 600;
}
.share-step__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.3;
}
.share-step__device {
  margin-top: auto;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STEP 1 — Phone mock */
.share-phone {
  width: 240px;
  background: linear-gradient(180deg, #131320 0%, #0A0A12 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.5);
  position: relative;
}
.share-phone__notch {
  height: 22px;
  background: #06060B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.share-phone__notch::after {
  content: '';
  width: 60px;
  height: 8px;
  background: #000;
  border-radius: 4px;
}
.share-phone__screen { padding: 18px 16px 16px; }
.share-phone__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.share-phone__mark { width: 28px; height: 14px; }
.share-phone__field {
  margin-bottom: 14px;
}
.share-phone__field-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  margin-bottom: 4px;
  font-weight: 600;
}
.share-phone__field-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}
.share-phone__field-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}
.share-phone__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.share-phone__chip {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 240ms var(--ease-out-expo);
}
.share-phone__chip.is-active {
  background: rgba(111,184,172,0.16);
  border-color: rgba(111,184,172,0.55);
  color: #6FB8AC;
}
.share-phone__cta {
  margin-top: 8px;
  width: 100%;
  padding: 11px 0;
  background: linear-gradient(180deg, #F4D58E 0%, #C8A96E 60%, #A88B58 100%);
  color: #09090E;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(240,203,126,0.25);
  transition: transform 200ms var(--ease-out-expo);
}
.share-phone__cta:hover { transform: scale(1.02); }

/* STEP 2 — QR */
.share-qr {
  position: relative;
  width: 220px;
  background: #F5F5F7;
  border-radius: 18px;
  padding: 18px 14px 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5),
              0 0 0 1px rgba(212,175,122,0.12);
}
.share-qr__inner {
  background: #F5F5F7;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}
.share-qr__inner svg {
  width: 100%;
  height: auto;
  display: block;
}
.share-qr__caption {
  text-align: center;
  color: #09090E;
}
.share-qr__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.share-qr__meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(9,9,14,0.6);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.share-qr__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  border: 1px solid rgba(240,203,126,0.5);
  animation: qrPulseOut 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes qrPulseOut {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.18); opacity: 0; }
}
.share-qr__statusline {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.share-qr__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6FB8AC;
  box-shadow: 0 0 6px rgba(111,184,172,0.6);
  animation: qrDotPulse 1.6s ease-in-out infinite;
}
@keyframes qrDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

/* STEP 3 — Doctor's view */
.doctor-view {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(180deg, #F8F6F1 0%, #EEEAE0 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  color: #1A1A24;
  font-family: var(--font-body);
}
.doctor-view__chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: #E5E2DA;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.doctor-view__chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
}
.doctor-view__chrome-dot:nth-child(1) { background: #E27160; }
.doctor-view__chrome-dot:nth-child(2) { background: #E2C260; }
.doctor-view__chrome-dot:nth-child(3) { background: #6FB892; }
.doctor-view__chrome-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.04em;
}
.doctor-view__body { padding: 16px 14px 14px; }
.doctor-view__patient {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 12px;
}
.doctor-view__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #C8A96E 0%, #7A5F38 100%);
  color: #F5F5F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.doctor-view__name {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A24;
  letter-spacing: -0.01em;
}
.doctor-view__age {
  color: rgba(0,0,0,0.55);
  font-weight: 400;
}
.doctor-view__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.04em;
}
.doctor-view__verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #5A8A2E;
  font-weight: 600;
}
.doctor-view__verified svg { fill: #5A8A2E; }
.doctor-view__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.doctor-view__card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 8px 10px;
}
.doctor-view__card--vitals {
  grid-column: 1 / -1;
}
.doctor-view__card-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
}
.doctor-view__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.45;
  color: #1A1A24;
}
.doctor-view__list li {
  padding: 2px 0;
}
.doctor-view__vital {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.doctor-view__vital:last-child { border-bottom: none; }
.doctor-view__vital > span:first-child {
  color: rgba(0,0,0,0.55);
}
.doctor-view__vital-value {
  font-weight: 600;
  color: #1A1A24;
  letter-spacing: -0.01em;
}
.doctor-view__trend {
  font-family: var(--font-mono);
  font-size: 9px;
  margin-left: 4px;
  color: rgba(0,0,0,0.45);
  font-weight: 500;
}
.doctor-view__trend--down { color: #C24A30; }
.doctor-view__private {
  margin-top: 12px;
  padding: 8px 10px;
  background: rgba(212, 175, 122, 0.12);
  border: 1px dashed rgba(122, 95, 56, 0.32);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: #7A5F38;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.doctor-view__lock svg { fill: none; stroke: #7A5F38; }

/* View-type pills row below the flow */
.share-views {
  margin-top: 56px;
  text-align: center;
}
.share-views__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.share-views__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}
.share-views__pill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--c, var(--gold)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--gold)) 40%, transparent);
  color: var(--c, var(--text-primary));
}

/* Mobile: stack the 3 steps vertically */
@media (max-width: 880px) {
  .continue-file-demo { padding: 64px 0 56px; }
  .share-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .share-flow::before, .share-flow::after { display: none; }
  .share-step { min-height: auto; padding: 22px 18px; }
  .share-phone { width: 100%; max-width: 280px; }
  .share-qr    { width: 100%; max-width: 240px; }
  .doctor-view { width: 100%; max-width: 320px; }
  .share-views { margin-top: 36px; }
}

/* ───────────────────────────────────────────────────────────
   INTEGRATIONS — text list → chip grid
   ─────────────────────────────────────────────────────────── */
.integration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transition: background 240ms var(--ease-out-expo),
              border-color 240ms var(--ease-out-expo),
              transform 240ms var(--ease-out-expo);
  cursor: default;
}
.integration-chip:hover {
  background: color-mix(in srgb, var(--chip-color, var(--gold)) 12%, transparent);
  border-color: color-mix(in srgb, var(--chip-color, var(--gold)) 60%, transparent);
  transform: translateY(-1px);
}
.integration-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--chip-color, var(--gold));
  box-shadow: 0 0 6px color-mix(in srgb, var(--chip-color, var(--gold)) 60%, transparent);
  flex-shrink: 0;
}
.integration-chip__name {
  font-size: 13px;
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .integration-chip {
    padding: 5px 10px 5px 8px;
    font-size: 12px;
  }
  .integration-chip__dot {
    width: 6px;
    height: 6px;
  }
  .integration-chip__name {
    font-size: 12px;
  }
}

/* The artifact: a premium card that looks like a real file */
.continue-file {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(180deg, #131320 0%, #0A0A12 100%);
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 122, 0.24);
  box-shadow:
    0 0 0 1px rgba(212, 175, 122, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(240, 203, 126, 0.06);
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
  cursor: pointer;
  transition: transform 360ms var(--ease-out-expo),
              box-shadow 360ms var(--ease-out-expo);
}
.continue-file:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(240, 203, 126, 0.4),
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 140px rgba(240, 203, 126, 0.14);
}

/* Top bar of the file — like a window chrome */
.continue-file__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.continue-file__chrome-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.continue-file__chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.continue-file__chrome-dot--r { background: #E27160; }
.continue-file__chrome-dot--y { background: #E2C260; }
.continue-file__chrome-dot--g { background: #6FB892; }
.continue-file__name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.continue-file__name svg {
  width: 24px;
  height: 12px;
}

/* The file body — JSON-like layout */
.continue-file__body {
  padding: 32px 32px 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-primary);
  text-align: left;
  overflow-x: auto;
}
.continue-file__line {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.continue-file__line--indent { padding-left: 24px; }
.continue-file__line--indent-2 { padding-left: 48px; }
.continue-file__key {
  color: var(--gold-bright);
}
.continue-file__punct {
  color: var(--text-muted);
}
.continue-file__str {
  color: #B8D9CE;
}
.continue-file__num {
  color: #E2C260;
}
.continue-file__bool {
  color: #E89BAA;
}
.continue-file__null {
  color: var(--text-muted);
  font-style: italic;
}
.continue-file__redacted {
  display: inline-block;
  padding: 0 6px;
  background: rgba(212, 175, 122, 0.12);
  border: 1px solid rgba(212, 175, 122, 0.32);
  border-radius: 3px;
  color: rgba(212, 175, 122, 0.6);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.continue-file__comment {
  color: var(--text-muted);
  font-style: italic;
}

/* Per-OS section colored stripe */
.continue-file__os-marker {
  display: inline-block;
  width: 3px;
  height: 14px;
  margin-right: 8px;
  border-radius: 1px;
  vertical-align: middle;
}

/* Footer of the file — tap to copy / share */
.continue-file__footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.continue-file__footer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.continue-file__footer-action {
  color: var(--gold-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: color 220ms ease;
}
.continue-file__footer-action:hover { color: var(--text-primary); }

/* "Hover to see who can read what" overlay */
.continue-file__hover-hint {
  position: absolute;
  top: 14px;
  right: 80px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(212, 175, 122, 0.5);
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 720px) {
  .continue-file-demo { padding: 64px 0 56px; }
  .continue-file { max-width: calc(100% - 32px); }
  .continue-file__body { padding: 22px 18px; font-size: 11.5px; line-height: 1.7; }
  .continue-file__chrome { padding: 12px 16px; }
  .continue-file__name { font-size: 10px; }
  .continue-file__hover-hint { display: none; }
}

/* ───────────────────────────────────────────────────────────
   3. CINEMATIC PRELOAD (upgraded)
   Black → C-arcs draw → bar bridges → wordmark fades →
   tagline arrives → curtain dissolves. ~2.4s total.
   ─────────────────────────────────────────────────────────── */
.preload-curtain--v6 {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg-deepest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  transition: opacity 700ms cubic-bezier(0.65, 0, 0.35, 1) 1700ms,
              visibility 0s linear 2400ms;
}
.preload-curtain--v6.is-done {
  opacity: 0;
  visibility: hidden;
}
.preload-curtain--v6__mark {
  width: 140px;
  height: 70px;
  margin-bottom: 20px;
}
.preload-curtain--v6__mark path,
.preload-curtain--v6__mark line {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}
.preload-curtain--v6__mark path:nth-of-type(1) {
  animation: pcDraw 700ms cubic-bezier(0.65, 0, 0.35, 1) 200ms forwards;
}
.preload-curtain--v6__mark path:nth-of-type(2) {
  animation: pcDraw 700ms cubic-bezier(0.65, 0, 0.35, 1) 500ms forwards;
}
.preload-curtain--v6__mark line {
  animation: pcDraw 400ms cubic-bezier(0.65, 0, 0.35, 1) 1000ms forwards;
}
@keyframes pcDraw { to { stroke-dashoffset: 0; } }

.preload-curtain--v6__wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.36em;
  font-size: 14px;
  color: var(--text-primary);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  animation: pcUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 1200ms forwards;
}
.preload-curtain--v6__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 14px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: pcUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 1500ms forwards;
}
@keyframes pcUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .preload-curtain--v6 { display: none; }
}

/* ───────────────────────────────────────────────────────────
   4. SECTION LETTERHEADS
   Tiny brand mark above each section's eyebrow as a stamp.
   ─────────────────────────────────────────────────────────── */
.section-stamp {
  width: 36px;
  height: 18px;
  margin: 0 auto 18px;
  opacity: 0.85;
  display: block;
}
.section-stamp svg { width: 100%; height: 100%; }

/* ───────────────────────────────────────────────────────────
   5. PRELOAD CURTAIN — old v4 disabled
   Replaced by v6 version.
   ─────────────────────────────────────────────────────────── */
.preload-curtain:not(.preload-curtain--v6) {
  display: none;
}

/* content-visibility removed — caused scroll-jump on tall sections. */

/* Chapter indicator hidden — thread marker chip already serves this. */
.nav__current-chapter { display: none !important; }

/* ───────────────────────────────────────────────────────────
   8. PULL-QUOTE — editorial breath between dense sections
   ─────────────────────────────────────────────────────────── */
.pull-quote {
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.pull-quote__mark {
  font-family: var(--font-display);
  font-size: 64px;
  font-style: italic;
  color: var(--gold-bright);
  line-height: 0.6;
  opacity: 0.4;
  margin-bottom: 8px;
}
.pull-quote__body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 24px;
}
.pull-quote__attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .pull-quote { padding: 56px 0; }
  .pull-quote__body { font-size: 22px; padding: 0 16px; }
}

/* ───────────────────────────────────────────────────────────
   9. SECTION FADE-IN — content-visibility paired with reveal
   ─────────────────────────────────────────────────────────── */
.section-fade-in {
  opacity: 0;
  transition: opacity 1000ms var(--ease-out-expo);
}
.section-fade-in.is-visible { opacity: 1; }

/* ───────────────────────────────────────────────────────────
   10. HERO TECH TYPOGRAPHY OVERRIDE — Apple/Stripe scale
   Hero in Geist Sans, sized like apple.com/health and
   stripe.com hero text (not editorial-huge).
   Color: solid soft-white (#F5F5F7) — Apple's standard.
   No gradient, no gold. Pure white.
   ─────────────────────────────────────────────────────────── */
.hero__headline {
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.06 !important;
  color: #F5F5F7 !important;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  margin-bottom: 24px !important;
}
.hero__headline-gold {
  /* Solid white, no gradient — Apple/Stripe scale and confidence */
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #F5F5F7 !important;
  color: #F5F5F7 !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
}

/* Hero subhead — also Geist for cohesion, lighter weight */
.hero__subheadline {
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.012em !important;
  color: var(--text-secondary) !important;
}

/* Pause line — keep slight gold accent but use Geist */
.hero__pause-line {
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
}
.hero__pause-line em {
  font-style: normal !important;
}

/* Hero eyebrow stays mono uppercase — already correct */

@media (max-width: 720px) {
  .hero__headline { font-size: clamp(30px, 8vw, 40px) !important; }
}


/* === v7-logo.css === */
/* ===========================================================
   Continuum v7 — Final logo treatment (self-glowing PNG)
   The new continuum-knot-glow.png has internal lightning baked
   in. No rim filters needed — the logo POPS naturally.
   Hover = brightness bloom. Click = 2s electric surge.
   ============================================================ */

:root {
  --electric:        #3E78D8;
  --electric-bright: #6EA2FF;
  --electric-soft:   #8FB8FF;
  --electric-deep:   #1F3D78;
}

/* ───────────────────────────────────────────────────────────
   DEFAULT — pure PNG, no filters. Just the logo as designed.
   ─────────────────────────────────────────────────────────── */
img.continuum-mark--brand {
  display: block;
  aspect-ratio: 1 / 1;
  width: 36px !important;
  height: auto !important;
  object-fit: contain;
  transition: filter 380ms var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              transform 380ms var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
  will-change: filter, transform;
  cursor: pointer;
}

/* Per-position height auto so PNG aspect holds */
.nav__brand img.continuum-mark--brand,
img.continuum-mark--hero,
.footer__final-mark img.continuum-mark--brand,
.footer__column--brand img.continuum-mark--brand,
.section-stamp img.continuum-mark--brand,
.preload-curtain--v6 img.continuum-mark--brand,
.share-phone img.continuum-mark--brand {
  height: auto !important;
}

/* ───────────────────────────────────────────────────────────
   HOVER — bloom brighter. Logo's natural glow intensifies.
   ─────────────────────────────────────────────────────────── */
img.continuum-mark--brand:hover {
  transform: scale(1.1);
  filter:
    drop-shadow(0 0 24px rgba(110, 162, 255, 0.7))
    drop-shadow(0 0 60px rgba(80, 140, 230, 0.5))
    drop-shadow(0 0 120px rgba(62, 120, 216, 0.32))
    brightness(1.15)
    saturate(1.3);
}

/* ───────────────────────────────────────────────────────────
   CLICK — 2s ELECTRIC SURGE
   Electricity arcs across the logo, then resolves.
   ─────────────────────────────────────────────────────────── */
img.continuum-mark--brand.is-clicked,
img.continuum-mark--brand:active {
  animation: electricSurge 2000ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes electricSurge {
  /* Stage 1: SPARK (0-150ms) — bright initial flash */
  0% {
    transform: scale(1);
    filter: brightness(1) drop-shadow(0 0 0 transparent);
  }
  6% {
    transform: scale(1.16);
    filter:
      brightness(1.6)
      drop-shadow(0 0 60px rgba(140, 200, 255, 1))
      drop-shadow(0 0 140px rgba(110, 162, 255, 0.9))
      saturate(1.6);
  }

  /* Stage 2: ARCING (150-1100ms) — electricity jumps multi-direction */
  12% {
    transform: scale(1.10) rotate(-1.5deg);
    filter:
      brightness(1.3)
      drop-shadow(7px -5px 0 rgba(180, 220, 255, 0.85))
      drop-shadow(-6px 4px 0 rgba(140, 200, 255, 0.7))
      drop-shadow(0 0 80px rgba(110, 162, 255, 0.85))
      saturate(1.5);
  }
  20% {
    transform: scale(1.13) rotate(1.5deg);
    filter:
      brightness(1.35)
      drop-shadow(-7px -5px 0 rgba(180, 220, 255, 0.85))
      drop-shadow(6px 4px 0 rgba(140, 200, 255, 0.7))
      drop-shadow(0 0 100px rgba(110, 162, 255, 0.95))
      saturate(1.55);
  }
  28% {
    transform: scale(1.11) rotate(-1.5deg);
    filter:
      brightness(1.3)
      drop-shadow(5px 8px 0 rgba(180, 220, 255, 0.85))
      drop-shadow(-7px -3px 0 rgba(140, 200, 255, 0.7))
      drop-shadow(0 0 90px rgba(110, 162, 255, 0.85))
      saturate(1.5);
  }
  36% {
    transform: scale(1.13) rotate(1.5deg);
    filter:
      brightness(1.35)
      drop-shadow(-5px 8px 0 rgba(180, 220, 255, 0.85))
      drop-shadow(7px -3px 0 rgba(140, 200, 255, 0.7))
      drop-shadow(0 0 100px rgba(110, 162, 255, 0.95))
      saturate(1.55);
  }
  44% {
    transform: scale(1.10) rotate(-1deg);
    filter:
      brightness(1.32)
      drop-shadow(8px 0 0 rgba(180, 220, 255, 0.85))
      drop-shadow(-8px 0 0 rgba(140, 200, 255, 0.7))
      drop-shadow(0 0 95px rgba(110, 162, 255, 0.9))
      saturate(1.5);
  }
  52% {
    transform: scale(1.12) rotate(1deg);
    filter:
      brightness(1.35)
      drop-shadow(0 -8px 0 rgba(180, 220, 255, 0.85))
      drop-shadow(0 8px 0 rgba(140, 200, 255, 0.7))
      drop-shadow(0 0 100px rgba(110, 162, 255, 0.95))
      saturate(1.55);
  }

  /* Stage 3: SHOCKWAVE (1100-1500ms) — outward bloom */
  62% {
    transform: scale(1.22);
    filter:
      brightness(1.55)
      drop-shadow(0 0 160px rgba(140, 200, 255, 0.75))
      drop-shadow(0 0 240px rgba(80, 130, 220, 0.45))
      saturate(1.6);
  }

  /* Stage 4: SETTLE (1500-2000ms) */
  78% {
    transform: scale(1.06);
    filter:
      brightness(1.15)
      drop-shadow(0 0 80px rgba(110, 162, 255, 0.5))
      saturate(1.25);
  }
  100% {
    transform: scale(1);
    filter:
      brightness(1)
      drop-shadow(0 0 30px rgba(110, 162, 255, 0.3));
  }
}

/* ───────────────────────────────────────────────────────────
   PER-POSITION SIZES
   ─────────────────────────────────────────────────────────── */
.nav__brand img.continuum-mark--brand { width: 42px !important; }
img.continuum-mark--hero {
  width: 200px !important;
  opacity: 1 !important;
  margin: 0 auto 32px !important;
  animation: knotHeroEnter 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards,
             knotHeroFloat 6s ease-in-out infinite 1800ms;
}
@keyframes knotHeroEnter {
  0%   { opacity: 0; transform: translateY(24px) scale(0.85); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes knotHeroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
img.continuum-mark--hero:hover {
  animation: none;
  transform: scale(1.08) translateY(-4px);
  filter:
    drop-shadow(0 0 40px rgba(110, 162, 255, 0.75))
    drop-shadow(0 0 100px rgba(80, 140, 230, 0.55))
    brightness(1.18) saturate(1.35);
}
img.continuum-mark--hero.is-clicked {
  animation: electricSurge 2000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__final-mark img.continuum-mark--brand { width: 200px !important; }
.footer__column--brand img.continuum-mark--brand { width: 104px !important; }

/* SECTION STAMPS — 72px, intentional */
.section-stamp { width: 72px; height: 72px; margin: 0 auto 28px; }
.section-stamp img.continuum-mark--brand { width: 72px !important; }

/* Hide leftover section-divider waves */
.section-divider { display: none !important; }

/* Hide the top scroll-progress bar — the partial-fill gold line was
   reading as a "broken gold box / cut-off block" between sections.
   The anchor rail + continuum thread already give scroll position cues. */
.scroll-progress { display: none !important; }

/* Kill the per-section 2px colored top-edge "OS accent stripes"
   (sections.css lines 1423-1432). They were creating colored horizontal
   bars at every section boundary that looked like broken gold/teal
   lines floating between dark sections. Clean section transitions only. */
.what-continuum-is,
.protocol-reveal,
.living-experience,
.life-os-grid,
.integrations,
.pricing,
.trust-strip,
.founder,
.for-investors,
.waitlist,
.continue-file-demo,
.comparison,
.proof-of-work {
  box-shadow: none !important;
}

.preload-curtain--v6 img.continuum-mark--brand {
  width: 240px !important;
  opacity: 0;
  transform: scale(0.85);
  animation: preloadKnotEnter 1300ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}
@keyframes preloadKnotEnter {
  0%   { opacity: 0; transform: scale(0.85); }
  40%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

.share-phone img.continuum-mark--brand { width: 30px !important; }

/* ───────────────────────────────────────────────────────────
   NAV — Audio playing pulse
   ─────────────────────────────────────────────────────────── */
.nav.is-audio-playing img.continuum-mark--brand {
  animation: navAudioPulse 2.2s ease-in-out infinite;
}
@keyframes navAudioPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 8px rgba(110, 162, 255, 0.35))
      brightness(1);
  }
  50%      {
    filter:
      drop-shadow(0 0 22px rgba(110, 162, 255, 0.75))
      drop-shadow(0 0 50px rgba(62, 120, 216, 0.5))
      brightness(1.18) saturate(1.3);
  }
}

/* ───────────────────────────────────────────────────────────
   HERO BACKGROUND — white-haze top fading to black bottom
   ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 110px 0 50px !important;
  min-height: auto !important;
  background:
    radial-gradient(
      ellipse 38% 22% at 50% 16%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(225, 235, 255, 0.10) 35%,
      rgba(140, 170, 230, 0.04) 70%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 110% 55% at 50% 0%,
      rgba(220, 230, 250, 0.12) 0%,
      rgba(160, 180, 220, 0.06) 30%,
      rgba(80, 110, 180, 0.02) 55%,
      transparent 75%
    ),
    linear-gradient(
      180deg,
      rgba(60, 75, 110, 0.15) 0%,
      rgba(30, 40, 70, 0.06) 25%,
      transparent 50%,
      rgba(0, 0, 0, 0.5) 80%,
      var(--bg-deepest) 100%
    ),
    var(--bg-deepest) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
}
.hero::before { display: none !important; }
.hero__grid {
  mask-image: radial-gradient(ellipse 80% 70% at 50% 60%, #000 30%, transparent 95%) !important;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 60%, #000 30%, transparent 95%) !important;
  opacity: 0.55 !important;
}
.hero__spotlight {
  background:
    radial-gradient(
      560px circle at var(--mx, 50%) var(--my, 50%),
      rgba(110, 162, 255, 0.06) 0%,
      rgba(62, 120, 216, 0.02) 25%,
      transparent 60%
    ) !important;
}

/* Push hero content up tighter */
.hero__container { padding-top: 0 !important; }
.hero__eyebrow { margin-bottom: 22px !important; }
.hero__headline { margin-bottom: 22px !important; }
.hero__subheadline { margin: 0 auto 22px !important; }
.hero__pause-line { margin: 16px 0 24px !important; }
.audio-hero { margin-top: 36px !important; }
.hero-stats { margin-top: 56px !important; }
.hero__scroll-indicator { display: none !important; }

/* ───────────────────────────────────────────────────────────
   FOOTER — luminance pool around signature mark
   ─────────────────────────────────────────────────────────── */
.footer__final-mark {
  position: relative;
  isolation: isolate;
}
.footer__final-mark::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(
    ellipse,
    rgba(110, 162, 255, 0.08) 0%,
    rgba(80, 140, 230, 0.04) 35%,
    rgba(40, 80, 160, 0.015) 60%,
    transparent 85%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(8px);
}

/* ───────────────────────────────────────────────────────────
   NAV — luminance pool behind brand mark
   ─────────────────────────────────────────────────────────── */
.nav__brand {
  position: relative;
}
.nav__brand::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 88px;
  height: 88px;
  background: radial-gradient(
    circle,
    rgba(110, 162, 255, 0.10) 0%,
    rgba(62, 120, 216, 0.04) 45%,
    transparent 80%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(6px);
}

/* ───────────────────────────────────────────────────────────
   MOBILE
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .nav__brand img.continuum-mark--brand { width: 36px !important; }
  img.continuum-mark--hero { width: 140px !important; margin-bottom: 22px !important; }
  .footer__final-mark img.continuum-mark--brand { width: 150px !important; }
  .footer__column--brand img.continuum-mark--brand { width: 84px !important; }
  .section-stamp,
  .section-stamp img.continuum-mark--brand { width: 56px !important; height: auto !important; }
  .preload-curtain--v6 img.continuum-mark--brand { width: 168px !important; }
  .hero { padding: 96px 0 48px !important; }
  .footer__final-mark::before { width: 320px; height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  img.continuum-mark--brand,
  img.continuum-mark--hero,
  .preload-curtain--v6 img.continuum-mark--brand,
  .nav.is-audio-playing img.continuum-mark--brand {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ───────────────────────────────────────────────────────────
   CONSTELLATION — spin, glow, hover labels (carried from v6)
   ─────────────────────────────────────────────────────────── */
.constellation { position: relative; isolation: isolate; }
.constellation__svg { display: block; }
.constellation__ring {
  transform-origin: 240px 240px;
  animation: constellationSpin 90s linear infinite;
}
@keyframes constellationSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .constellation__ring { animation: none; }
}
.constellation__node { cursor: pointer; transition: transform 280ms var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)); transform-origin: center; }
.constellation__node:hover circle:nth-of-type(3) { r: 9 !important; opacity: 1 !important; }
.constellation__node:hover circle:nth-of-type(2) { opacity: 0.4 !important; }
.constellation__node:hover circle:nth-of-type(1) { opacity: 0.18 !important; }
.constellation__node:hover line { opacity: 0.5 !important; stroke-width: 1.2 !important; }
.constellation__label {
  position: absolute; top: 0; left: 0;
  padding: 6px 12px;
  background: rgba(9, 9, 14, 0.92);
  border: 1px solid var(--c, var(--gold-bright));
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c, var(--gold-bright));
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  opacity: 0;
  transition: opacity 180ms ease;
  box-shadow: 0 0 10px color-mix(in srgb, var(--c, #C9A86E) 30%, transparent), 0 4px 14px rgba(0, 0, 0, 0.5);
  z-index: 6;
  backdrop-filter: blur(6px);
}
.constellation__label.is-visible { opacity: 1; }

/* ───────────────────────────────────────────────────────────
   AUDIO PLAY — "Charging" state during the 1.2s pre-play pause
   Tightens the rings and brightens the play button so the user
   feels the breath of anticipation before the narrative begins.
   ─────────────────────────────────────────────────────────── */
.audio-hero__play-button--charging {
  animation: audioCharge 1200ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes audioCharge {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 203, 126, 0.5); }
  50%  { transform: scale(1.06); box-shadow: 0 0 28px 4px rgba(240, 203, 126, 0.55); }
  100% { transform: scale(1.04); box-shadow: 0 0 36px 8px rgba(240, 203, 126, 0.7); }
}
.audio-hero__play-button--charging .pulse-ring {
  animation-duration: 0.8s !important;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}
@media (prefers-reduced-motion: reduce) {
  .audio-hero__play-button--charging { animation: none; }
}

/* ───────────────────────────────────────────────────────────
   HERO AUDIO BLOCK — TAM emphasis
   ─────────────────────────────────────────────────────────── */
.audio-hero__tam {
  margin: 8px auto 0;
  width: 100%;
  max-width: 620px;
  padding: 14px 18px;
  background: rgba(110, 162, 255, 0.06);
  border: 1px solid rgba(110, 162, 255, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.audio-hero__tam-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: linear-gradient(180deg, #F4D58E 0%, #C8A96E 60%, #A88B58 100%);
  color: #09090E;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(240, 203, 126, 0.25);
}
.audio-hero__tam-text {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
}
.audio-hero__tam-text strong {
  color: var(--text-primary);
  font-weight: 600;
}
@media (max-width: 720px) {
  .audio-hero__tam {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }
  .audio-hero__tam-text {
    font-size: 12px;
  }
}

/* ───────────────────────────────────────────────────────────
   FOUNDER PORTRAIT — replaces the DH monogram with David's photo
   ─────────────────────────────────────────────────────────── */
.founder__portrait {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-elevated);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 122, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  isolation: isolate;
}
.founder__portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,0,0,0.45), transparent 70%),
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(9,9,14,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}
.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: contrast(1.02) saturate(0.95);
  transition: transform 1200ms var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.founder__portrait:hover img {
  transform: scale(1.04);
}
.founder__portrait-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.34em;
  color: rgba(244, 239, 230, 0.9);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .founder__portrait {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ───────────────────────────────────────────────────────────
   ELECTRIC ACCENT on primary CTAs
   ─────────────────────────────────────────────────────────── */
.btn--primary, .btn--gold, .share-phone__cta {
  position: relative;
  isolation: isolate;
}
.btn--primary::after, .btn--gold::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 50%, rgba(110, 162, 255, 0), transparent 70%);
  pointer-events: none;
  z-index: -1;
  transition: background 320ms ease;
}
.btn--primary:hover::after, .btn--gold:hover::after {
  background: radial-gradient(ellipse at 30% 50%, rgba(110, 162, 255, 0.22), transparent 70%);
}
