/* ============================================================
   LUME — landing page styles
   Dark by default. Amber = light/action (rare). Indigo = night/identity.
   Amber→indigo gradient = "la lumière qui voyage" (premium moments only).
   ============================================================ */

:root {
  /* ground */
  --bg:            #100F14;
  --bg-1:          #16141C;   /* elevated surface */
  --bg-2:          #1C1926;   /* card */
  --line:          rgba(154,146,236,0.14);
  --line-strong:   rgba(154,146,236,0.26);

  /* ink */
  --ink:           #ECEAF6;
  --ink-soft:      #B8B2CC;
  --ink-mute:      #7C7691;
  --ink-faint:     #565070;

  /* identity — indigo (night) */
  --indigo:        #6E64C8;
  --indigo-deep:   #473FA2;
  --indigo-ink:    #2E2966;
  --indigo-lift:   #9A92EC;

  /* action — amber (light). use sparingly. */
  --amber:         #F4A12A;
  --amber-lift:    #FBD884;
  --amber-deep:    #E8731A;
  --amber-glow:    rgba(244,161,42,0.35);

  /* signal */
  --good:          #F4A12A;
  --bad:           #E0566B;

  /* the one premium gradient: light that travels */
  --travel: linear-gradient(115deg, #FBD884 0%, #F4A12A 22%, #E8731A 40%, #8E5BC0 64%, #473FA2 100%);
  --travel-soft: linear-gradient(135deg, rgba(244,161,42,0.16), rgba(71,63,162,0.20));

  /* type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  /* rhythm */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(244,161,42,0.28); color: #fff; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
p { margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.mono { font-family: var(--font-mono); }
.amber { color: var(--amber); }
.indigo { color: var(--indigo-lift); }

/* eyebrow / kicker */
.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber-glow);
  flex: none;
}

section { position: relative; }
.section-pad { padding-block: clamp(88px, 12vw, 168px); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 12px;
  padding: 15px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn-amber {
  background: linear-gradient(180deg, #FBB948, #F4A12A);
  color: #2A1604;
  box-shadow: 0 0 0 1px rgba(244,161,42,.35), 0 12px 34px -10px rgba(244,161,42,.55);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(244,161,42,.6), 0 18px 44px -10px rgba(244,161,42,.7); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  padding-inline: 6px;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost .arr { transition: transform .2s; }
.btn-ghost:hover .arr { transform: translateX(4px); }
.btn-outline {
  background: rgba(154,146,236,0.05);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn-outline:hover { background: rgba(154,146,236,0.1); transform: translateY(-2px); }

/* ---------- eclipse mark ---------- */
.eclipse {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(circle at 68% 68%, #FBD884, #F4A12A 55%, #E8731A);
  isolation: isolate;
}
.eclipse::after {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: linear-gradient(160deg, #9A92EC, #473FA2);
  /* offset down-left so warm crescent shows top-right */
  transform: translate(-6%, 6%);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gut);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(16,15,20,0.72);
  -webkit-backdrop-filter: saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}
.nav-logo { height: 30px; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.navlink {
  font-size: 15px; color: var(--ink-soft); font-weight: 500;
  transition: color .2s; white-space: nowrap;
}
.nav-links a.navlink:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-gh { display: inline-flex; color: var(--ink-mute); transition: color .2s; }
.nav-gh:hover { color: var(--ink); }

/* language toggle */
.lang-toggle {
  position: relative; display: inline-flex; align-items: center;
  background: rgba(154,146,236,0.08);
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: 999px; padding: 3px;
}
.lang-toggle .lang-thumb {
  position: absolute; top: 3px; bottom: 3px; width: calc(50% - 3px);
  border-radius: 999px; background: rgba(154,146,236,0.16);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: left .22s cubic-bezier(.3,.7,.4,1);
}
.lang-toggle button {
  position: relative; z-index: 1; appearance: none; border: 0; background: none;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--ink-mute); cursor: pointer; padding: 5px 11px; border-radius: 999px;
  transition: color .2s;
}
.lang-toggle button.on { color: var(--ink); }
.lang-toggle button:hover { color: var(--ink-soft); }

/* cursor light halo — "la lumière qui suit" */
.cursor-halo {
  position: fixed; top: 0; left: 0; z-index: 70; pointer-events: none;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--amber) 30%, transparent) 0%,
    color-mix(in srgb, var(--amber) 11%, transparent) 26%,
    transparent 60%);
  mix-blend-mode: screen;
  opacity: 0; transition: opacity .5s ease, width .25s ease, height .25s ease;
  will-change: transform; contain: layout style paint;
}
.cursor-halo.press { width: 380px; height: 380px; }
@media (pointer: coarse) { .cursor-halo { display: none; } }
@media (prefers-reduced-motion: reduce) { .cursor-halo { transition: opacity .5s ease; } }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 132px; padding-bottom: clamp(60px,9vw,120px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(142,91,192,0.20), transparent 52%),
    radial-gradient(90% 80% at 12% 0%, rgba(244,161,42,0.10), transparent 50%);
}
/* giant subtle eclipse watermark */
.watermark {
  position: absolute; z-index: 0; pointer-events: none;
  width: clamp(520px, 62vw, 920px); aspect-ratio: 1;
  right: -16%; top: -10%;
  opacity: .2;
  will-change: transform;
}
.no-watermark .watermark { display: none; }
.watermark .eclipse { width: 100%; opacity: .9; }
.watermark .eclipse::after { transform: translate(-9%, 9%); }
.watermark::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(circle, rgba(142,91,192,0.18), transparent 60%);
}

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px,5vw,76px); align-items: center; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero h1 .line2 { color: var(--ink); }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub { font-size: clamp(17px,1.4vw,20px); color: var(--ink-soft); max-width: 33ch; margin-bottom: 34px; }
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 26px; }
.microproof { display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-mute); }
.microproof span { display: inline-flex; align-items: center; gap: 8px; }
.microproof span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .watermark { right: -30%; top: -6%; opacity: .35; }
}

/* ---- phone-in-hand mockup ---- */
.stage { position: relative; display: flex; justify-content: center; perspective: 1600px; }
.hand-rig { position: relative; width: min(360px, 78vw); }
.hand {
  position: absolute; z-index: 3; left: 50%; bottom: -8%;
  width: 128%; transform: translateX(-50%);
  pointer-events: none;
}
.phone {
  position: relative; z-index: 2;
  width: 100%; aspect-ratio: 297/620;
  border-radius: 46px;
  background: linear-gradient(150deg, #2a2733, #14131a);
  padding: 11px;
  box-shadow: 0 2px 0 rgba(255,255,255,.05) inset, 0 40px 80px -28px rgba(0,0,0,.9), 0 0 0 1.5px rgba(154,146,236,.12);
  transform: rotateY(-13deg) rotateX(4deg) rotate(2deg);
  transform-style: preserve-3d;
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden;
  background: #05060a;
}
/* iOS Safari chrome inside phone */
.safari-bar {
  position: absolute; z-index: 5; top: 0; left: 0; right: 0;
  height: 46px; padding-top: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(10,10,14,.92), rgba(10,10,14,0));
}
.safari-url {
  font-family: var(--font-mono); font-size: 10px; color: #b9b4c7;
  background: rgba(255,255,255,.08); border-radius: 8px;
  padding: 5px 14px; display: inline-flex; align-items: center; gap: 6px;
}
.safari-url .lock { width: 7px; height: 7px; border: 1.4px solid #8a8599; border-radius: 2px; }
.notch { position: absolute; z-index: 6; top: 6px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: #000; border-radius: 0 0 14px 14px; }

/* faux game canvas */
.game { position: absolute; inset: 0; overflow: hidden; }
.game-sky { position: absolute; inset: 0; background: linear-gradient(180deg, #142033 0%, #243b57 38%, #6b4b6e 66%, #c98a55 100%); }
.game-sun { position: absolute; width: 64%; aspect-ratio: 1; border-radius: 50%; left: 50%; top: 46%; transform: translate(-50%,-50%); background: radial-gradient(circle, #ffe7b0, #f7b15a 50%, rgba(247,177,90,0) 72%); }
.game-mtn { position: absolute; left: 0; right: 0; bottom: 0; height: 56%; }
.game-fog { position: absolute; inset: 0; background: radial-gradient(120% 60% at 50% 100%, rgba(20,30,50,.0), rgba(8,12,22,.7)); }
/* HUD */
.hud { position: absolute; z-index: 4; inset: 0; pointer-events: none; }
.hud-top { position: absolute; top: 56px; left: 14px; right: 14px; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9.5px; color: rgba(255,255,255,.82); }
.hud-pill { background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.14); border-radius: 6px; padding: 4px 8px; display: inline-flex; gap: 6px; align-items: center; }
.hud-hp { position: absolute; bottom: 56px; left: 14px; width: 96px; }
.hud-hp .bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,.16); overflow: hidden; }
.hud-hp .bar i { display: block; height: 100%; width: 72%; background: linear-gradient(90deg,#f4a12a,#e8731a); }
.hud-stick { position: absolute; bottom: 40px; right: 16px; width: 58px; height: 58px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.22); }
.hud-stick::after { content:""; position:absolute; width: 26px; height: 26px; border-radius: 50%; left: 8px; bottom: 8px; background: rgba(255,255,255,.28); }

/* the latency overlay — the proof */
.latency {
  position: absolute; z-index: 7; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(10,9,14,.66);
  border: 1px solid rgba(154,146,236,.28);
  border-radius: 999px;
  padding: 7px 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .02em;
  white-space: nowrap;
}
.latency b { color: #fff; font-weight: 700; }
.latency .seg { padding: 0 11px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 6px; }
.latency .seg + .seg { border-left: 1px solid rgba(154,146,236,.22); }
.latency .live { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }
.latency .ms b { color: var(--amber-lift); }

/* floating glow under phone */
.stage::after {
  content:""; position: absolute; z-index: 0; bottom: 2%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 60%; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,161,42,.16), transparent 60%);
  filter: none;
}

/* ============================================================
   PROOF (big numbers)
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,4vw,56px); margin-top: 56px; }
.stat { position: relative; }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(56px,8vw,108px); line-height: .9; letter-spacing: -0.04em; color: var(--ink); }
.stat .num small { font-size: .42em; color: var(--ink-mute); font-weight: 500; letter-spacing: 0; }
.stat .lab { margin-top: 14px; color: var(--ink-soft); font-size: 16px; max-width: 26ch; }
.stat:nth-child(1) .num { color: var(--amber); }
.stat .num .unit { color: var(--ink-mute); }
.techline {
  margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 14px; color: var(--ink-mute);
  display: flex; flex-wrap: wrap; gap: 10px 0; align-items: center;
}
.techline .t { padding: 0 18px; position: relative; }
.techline .t:not(:first-child)::before { content:""; position:absolute; left:0; top:50%; transform:translateY(-50%); width:4px;height:4px;border-radius:50%; background: var(--indigo-deep); }
.techline .t b { color: var(--ink-soft); font-weight: 400; }
@media (max-width: 760px){ .proof-grid{ grid-template-columns:1fr; gap:40px;} }

/* ============================================================
   HOW IT WORKS — eclipse sun→night
   ============================================================ */
.how { overflow: hidden; }
.how-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 64px; }
.how-stage { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,3vw,40px); }
/* the travelling light track */
.how-track { position: absolute; top: 64px; left: 8%; right: 8%; height: 2px; background: var(--line); z-index: 0; }
.how-track i { position: absolute; inset: 0; width: var(--p,0%); background: var(--travel); transition: width .2s linear; box-shadow: 0 0 16px rgba(244,161,42,.5); }
.step { position: relative; z-index: 1; }
.step-orb { width: 128px; height: 128px; margin-bottom: 28px; position: relative; }
.step-orb .eclipse { width: 100%; transition: filter .6s; }
.step h3 { font-size: clamp(22px,2vw,28px); margin-bottom: 12px; }
.step h3 .name { display:block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 16px; max-width: 30ch; }
/* phase per step: 1=sun, 2=partial, 3=night */
.step.s1 .eclipse::after { transform: translate(-72%, 72%); }
.step.s2 .eclipse::after { transform: translate(-34%, 34%); }
.step.s3 .eclipse::after { transform: translate(0%, 0%); }
.step.s3 .eclipse { background: radial-gradient(circle at 80% 20%, #2a2540, #16142a); }
.step.s3 .eclipse::after { background: linear-gradient(160deg,#6E64C8,#2E2966); inset: 8%; }
@media (max-width: 820px){
  .how-stage{ grid-template-columns:1fr; gap:48px;}
  .how-track{ display:none;}
  .step{ display:grid; grid-template-columns:auto 1fr; gap:24px; align-items:center;}
  .step-orb{ width:88px;height:88px;margin-bottom:0;}
}

/* ============================================================
   COMPARISON
   ============================================================ */
.honest { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.honest-claim { font-family: var(--font-display); font-size: clamp(26px,3vw,40px); line-height: 1.12; letter-spacing: -0.02em; }
.honest-claim .mute { color: var(--ink-mute); }
.honest-claim .amber { color: var(--amber); }
.honest-note { margin-top: 22px; color: var(--ink-soft); font-size: 16px; max-width: 40ch; }

.ctable { width: 100%; border-collapse: collapse; font-size: 15px; }
.ctable th, .ctable td { padding: 16px 14px; text-align: center; }
.ctable thead th { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 400; border-bottom: 1px solid var(--line); }
.ctable thead th.lume { color: var(--ink); }
.ctable tbody th { text-align: left; font-family: var(--font-body); font-weight: 500; color: var(--ink-soft); font-size: 15px; }
.ctable tbody tr { border-bottom: 1px solid var(--line); }
.ctable td.lume { background: linear-gradient(180deg, rgba(244,161,42,.05), rgba(71,63,162,.06)); position: relative; }
.ctable thead th.lume { background: linear-gradient(180deg, rgba(244,161,42,.08), transparent); border-top-left-radius: 12px; border-top-right-radius: 12px; }
.ctable .yes { color: var(--good); font-weight: 700; }
.ctable .no { color: var(--bad); opacity: .85; }
.ctable .meh { color: var(--ink-mute); }
.ctable td.lume .yes { color: var(--amber-lift); }
.tick { display:inline-flex; }
@media (max-width: 860px){
  .honest{ grid-template-columns:1fr; gap:36px;}
  .ctable-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .ctable{ min-width:560px; }
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 56px; max-width: 880px; }
.pcard { position: relative; background: var(--bg-1); border-radius: 22px; padding: 38px 34px; box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; }
.pcard .ph { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pcard .ptag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.pcard h3 { font-size: 26px; margin: 10px 0 4px; }
.pcard .poem { color: var(--ink-mute); font-style: italic; font-size: 15px; margin-bottom: 26px; }
.pcard .price { font-family: var(--font-display); font-size: 56px; font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.pcard .price small { font-size: 17px; color: var(--ink-mute); font-family: var(--font-body); font-weight: 500; letter-spacing: 0; }
.pcard ul { list-style: none; padding: 0; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; }
.pcard li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 15px; }
.pcard li .ck { color: var(--amber); flex: none; margin-top: 3px; }
.pcard .btn { width: 100%; justify-content: center; margin-top: auto; }
/* premium card: amber→indigo gradient BORDER */
.pcard.travel { background: var(--bg-1); }
.pcard.travel::before {
  content:""; position: absolute; inset: 0; border-radius: 22px; padding: 1.5px;
  background: var(--travel);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.pcard.travel .badge { position: absolute; top: 22px; right: 26px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--amber-lift); }
.pcard.travel .price { background: var(--travel); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-note { margin-top: 22px; color: var(--ink-mute); font-size: 14px; max-width: 60ch; }
@media (max-width: 760px){ .price-grid{ grid-template-columns:1fr; } }

/* ============================================================
   TRUST + FAQ
   ============================================================ */
.oss { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: space-between;
  background: var(--bg-1); border-radius: 18px; padding: 26px 30px; box-shadow: inset 0 0 0 1px var(--line); }
.oss .l { display: flex; align-items: center; gap: 18px; }
.oss .l .mk { width: 40px; flex: none; }
.oss .l p { color: var(--ink-soft); font-size: 15px; }
.oss .l b { color: var(--ink); font-weight: 600; }

.faq { margin-top: 64px; max-width: 820px; }
.qa { border-bottom: 1px solid var(--line); }
.qa button { width: 100%; background: none; border: 0; color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: clamp(18px,2vw,22px); letter-spacing: -.01em; text-align: left; padding: 24px 40px 24px 0; cursor: pointer; position: relative; }
.qa button .pm { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; }
.qa button .pm::before, .qa button .pm::after { content:""; position:absolute; background: var(--amber); border-radius:2px; }
.qa button .pm::before { left:0; right:0; top:8px; height:2px; }
.qa button .pm::after { top:0; bottom:0; left:8px; width:2px; transition: transform .25s; }
.qa.open button .pm::after { transform: scaleY(0); }
.qa .a { overflow: hidden; height: 0; transition: height .3s cubic-bezier(.4,0,.2,1); }
.qa .a-inner { padding: 0 30px 26px 0; color: var(--ink-soft); font-size: 16px; max-width: 64ch; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; overflow: hidden; text-align: center; padding-block: clamp(120px,16vw,220px); }
.final-bg { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(80% 90% at 50% 120%, rgba(244,161,42,.22), transparent 55%),
  radial-gradient(90% 80% at 50% -10%, rgba(142,91,192,.30), transparent 60%);
}
.final .ecl-big { position: absolute; z-index: 0; width: clamp(360px,46vw,640px); aspect-ratio:1; left: 50%; top: 50%; transform: translate(-50%,-54%); opacity: .9; }
.final .ecl-big .eclipse { width:100%; box-shadow: 0 0 120px -20px rgba(244,161,42,.5); }
.final-inner { position: relative; z-index: 2; }
.final-logo { width: clamp(220px,30vw,360px); margin-bottom: 30px; }
.final h2 { font-size: clamp(34px,5vw,68px); letter-spacing: -.035em; margin-bottom: 22px; }
.final p { color: var(--ink-soft); font-size: 18px; margin-bottom: 38px; max-width: 30ch; margin-inline: auto; }

/* logo / mark svg sizing */
.nav-logo { display: block; }
.nav-logo svg { height: 30px; width: auto; display: block; }
.final-logo { display: block; margin-inline: auto; }
.final-logo svg { width: 100%; height: auto; display: block; }
.oss .l .mk svg, .mk svg { width: 100%; height: auto; display: block; }
.foot .fl span:first-of-type {}

/* beta form */
.beta-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.beta-form input {
  flex: 1 1 220px; min-width: 200px;
  background: rgba(16,15,20,.6); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 15px 18px; font-family: var(--font-body); font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.beta-form input::placeholder { color: var(--ink-faint); }
.beta-form input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(244,161,42,.18); }

/* ---------- hero variants ---------- */
/* stage: centered headline, phone centered, full gradient */
.variant-stage .hero-stage-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; }
.variant-stage .hero-stage-copy { max-width: 760px; display: flex; flex-direction: column; align-items: center; }
.variant-stage .hero-sub { max-width: 50ch; }
.variant-stage .hero-cta { justify-content: center; }
.variant-stage .microproof { justify-content: center; }
.variant-stage .stage { margin-top: 54px; }
.variant-stage .hand-rig, .variant-stage .phone { transform: none; }
.variant-stage .phone { transform: rotateX(6deg); }
.variant-stage .watermark.wm-center { right: auto; left: 50%; top: 38%; transform: translateX(-50%); width: clamp(680px,80vw,1100px); opacity: .16; }

/* immersive: phone left & large, copy overlapping right */
.variant-immersive .hero-immersive { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; position: relative; z-index: 2; }
.variant-immersive .stage-big { transform: scale(1.16) translateX(-4%); }
.variant-immersive .hero-immersive-copy { margin-left: -8%; }
.variant-immersive .hero-bg-strong { background:
  radial-gradient(80% 90% at 30% 50%, rgba(142,91,192,.26), transparent 55%),
  radial-gradient(70% 80% at 70% 90%, rgba(244,161,42,.12), transparent 55%); }
@media (max-width: 920px) {
  .variant-immersive .hero-immersive { grid-template-columns: 1fr; gap: 40px; }
  .variant-immersive .stage-big { transform: none; }
  .variant-immersive .hero-immersive-copy { margin-left: 0; }
}

/* ---------- announcement bar ---------- */
.announce {
  position: fixed; top: 0; left: 0; right: 0; z-index: 65; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--travel);
  color: #1a1206; font-weight: 600; font-size: 14px;
  padding-inline: 48px 40px;
}
.announce a { display: inline-flex; align-items: center; gap: 10px; color: #1a1206; text-align: center; }
.announce-dot { width: 7px; height: 7px; border-radius: 50%; background: #1a1206; flex: none; }
.announce-arr { transition: transform .2s; }
.announce a:hover .announce-arr { transform: translateX(4px); }
.announce-x {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  appearance: none; border: 0; background: rgba(0,0,0,.12); color: #1a1206;
  width: 24px; height: 24px; border-radius: 7px; cursor: pointer; font-size: 12px;
}
.announce-x:hover { background: rgba(0,0,0,.22); }
.nav { top: var(--announce-h, 0); }
@media (max-width: 620px) { .announce { font-size: 12px; padding-inline: 40px 36px; } }

/* beta thanks */
.beta-thanks {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(244,161,42,.1); color: var(--amber-lift);
  border: 1px solid rgba(244,161,42,.3); border-radius: 12px;
  padding: 15px 22px; font-weight: 600; max-width: 460px; margin: 0 auto;
}

/* footer columns */
.foot-cols { display: flex; gap: 48px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 40px var(--gut); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; color: var(--ink-mute); font-size: 14px; }
.foot .fl { display:flex; align-items:center; gap: 14px; }
.foot a { color: var(--ink-mute); }
.foot a:hover { color: var(--ink-soft); }
.foot-links { display:flex; gap: 22px; }
