/* ============================================================
   Say2Go — scroll site
   Design system: warm-dark, amber signature, violet secondary,
   EKG/heartbeat waveform motif. Space Grotesk + IBM Plex.
   ============================================================ */

:root{
  --bg:        #0a0810;
  --bg-2:      #0e0b16;
  --panel:     #14111e;
  --panel-2:   #1a1626;
  --ink:       #f6f2ec;
  --text:      #a8a2b4;
  --muted:     #726c80;
  --line:      rgba(246,242,236,0.09);
  --line-2:    rgba(246,242,236,0.045);

  --violet:    #8b5cf6;
  --violet-lt: #c4b1ff;
  --violet-dk: #6d28d9;
  --cyan:      #22d3ee;
  --green:     #4ade80;
  --amber:     #f5a524;
  --live:      #ef5350;

  --grad:      linear-gradient(96deg, var(--violet) 4%, var(--cyan) 42%, var(--green) 70%, var(--amber) 98%);
  --grad-2:    linear-gradient(180deg, #ffc25a, var(--amber));

  --mono:    'IBM Plex Mono', ui-monospace, monospace;
  --sans:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 18px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  background:var(--bg); color:var(--text);
  font-family:var(--sans); font-size:16px; line-height:1.6;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
::selection{ background:rgba(245,165,36,0.3); color:#fff; }

::-webkit-scrollbar{ width:9px; }
::-webkit-scrollbar-track{ background:var(--bg); }
::-webkit-scrollbar-thumb{ background:#241f30; border-radius:5px; border:2px solid var(--bg); }

.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }

/* ---------- typography helpers ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--mono); font-size:12px; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase; color:var(--muted);
  padding:7px 14px 7px 12px; border-radius:100px;
  border:1px solid var(--line); background:rgba(255,255,255,0.025);
}
.eyebrow .amber{ color:var(--amber); }
.eyebrow .sep{ color:var(--line); }

.kicker{
  font-family:var(--mono); font-size:12.5px; font-weight:500;
  letter-spacing:.18em; text-transform:uppercase; color:var(--amber);
  display:inline-block; margin-bottom:18px;
}
h1,h2,h3,h4{ font-family:var(--display); color:var(--ink); letter-spacing:-0.03em; line-height:1.05; font-weight:700; }
.h2{ font-size:clamp(30px,4.6vw,54px); }
.section-sub{ font-size:clamp(16px,1.5vw,19px); color:var(--text); line-height:1.65; max-width:560px; }
.grad-text{ background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--sans); font-weight:600; font-size:15px;
  padding:13px 24px; border-radius:12px; border:1px solid transparent;
  cursor:pointer; white-space:nowrap;
  transition:transform .18s ease, box-shadow .25s ease, background .2s, border-color .2s;
}
.btn-sm{ padding:10px 18px; font-size:14px; }
.btn-lg{ padding:16px 32px; font-size:17px; }
.btn-primary{
  color:#241406; background:var(--grad-2);
  box-shadow:0 6px 22px rgba(245,165,36,0.32), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 32px rgba(245,165,36,0.48), inset 0 1px 0 rgba(255,255,255,0.45); }
.btn-ghost{ color:var(--ink); background:rgba(255,255,255,0.04); border-color:var(--line); }
.btn-ghost:hover{ background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.2); }

/* ---------- section frame ---------- */
.section{ position:relative; padding:clamp(90px,12vh,150px) 0; }
.section-head{ max-width:680px; }
.section-head.center{ margin:0 auto; text-align:center; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:200; height:70px;
  display:flex; align-items:center;
  border-bottom:1px solid transparent;
  transition:background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled{
  background:rgba(10,8,16,0.8); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.nav .wrap{ display:flex; align-items:center; gap:26px; }
.nav .logo{ height:34px; width:auto; filter:drop-shadow(0 0 10px rgba(139,92,246,0.25)); flex-shrink:0; }
.nav-links{ display:flex; gap:4px; margin-left:6px; }
.nav-links a{ font-size:14px; font-weight:500; color:var(--text); padding:8px 13px; border-radius:9px; transition:.2s; }
.nav-links a:hover{ color:var(--ink); background:rgba(255,255,255,0.05); }
.nav-spacer{ flex:1; }
.hamburger{ display:none; flex-direction:column; gap:5px; padding:9px; border-radius:9px; background:rgba(255,255,255,0.05); border:1px solid var(--line); margin-left:auto; }
.hamburger span{ width:20px; height:2px; background:var(--ink); border-radius:2px; transition:.2s; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; min-height:100svh; display:flex; align-items:center; overflow:hidden; padding:120px 0 70px; }
.hero-bg{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.hero-bg .glow{
  position:absolute; inset:0;
  background:
    radial-gradient(54% 50% at 20% 38%, rgba(139,92,246,0.20), transparent 62%),
    radial-gradient(48% 52% at 86% 66%, rgba(245,165,36,0.12), transparent 60%),
    radial-gradient(40% 45% at 62% 30%, rgba(34,211,238,0.10), transparent 62%);
}
.hero-bg .grid{
  position:absolute; inset:0; opacity:.5;
  background-image:linear-gradient(var(--line-2) 1px,transparent 1px),linear-gradient(90deg,var(--line-2) 1px,transparent 1px);
  background-size:62px 62px;
  -webkit-mask-image:radial-gradient(72% 62% at 50% 42%,#000 28%,transparent 82%);
          mask-image:radial-gradient(72% 62% at 50% 42%,#000 28%,transparent 82%);
}
/* EKG line across hero */
.hero-ekg{ position:absolute; left:0; right:0; top:50%; transform:translateY(-50%); width:100%; height:240px; z-index:0; opacity:.7; pointer-events:none; }
.hero-ekg path{ fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }

.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,1.04fr) minmax(0,1fr); gap:clamp(36px,5vw,72px); align-items:center; }

.headline{ font-size:clamp(40px,6.6vw,84px); line-height:.98; margin-bottom:22px; }
.headline .it{ background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.hero .sub{ font-size:clamp(16px,1.5vw,19px); line-height:1.6; color:var(--text); max-width:486px; margin-bottom:30px; }
.hero .sub b{ color:var(--ink); font-weight:600; }
.cta-row{ display:flex; gap:13px; flex-wrap:wrap; margin-bottom:30px; }

.stats{ display:inline-flex; align-self:flex-start; border:1px solid var(--line); border-radius:14px; background:linear-gradient(180deg,rgba(255,255,255,0.035),rgba(255,255,255,0.01)); overflow:hidden; }
.stat{ padding:15px 26px; }
.stat + .stat{ border-left:1px solid var(--line); }
.stat .num{ font-family:var(--display); font-weight:700; font-size:26px; letter-spacing:-0.03em; color:var(--ink); line-height:1; }
.stat .num .u{ color:var(--amber); }
.stat .lab{ font-family:var(--mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-top:7px; }

.trust{ display:flex; flex-wrap:wrap; gap:8px 18px; margin-top:26px; font-family:var(--mono); font-size:11.5px; color:var(--muted); }
.trust span{ display:inline-flex; align-items:center; gap:7px; }
.trust .tick{ color:var(--amber); }

/* product window (shared) */
.demo{ position:relative; width:100%; max-width:480px; margin:0 auto; }
.pill{
  position:absolute; top:-23px; left:50%; transform:translateX(-50%); z-index:10;
  display:inline-flex; align-items:center; gap:10px; padding:9px 18px; border-radius:100px; white-space:nowrap;
  border:1px solid rgba(139,92,246,0.32); background:rgba(20,17,30,0.96);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  box-shadow:0 8px 28px rgba(0,0,0,0.5),0 0 22px rgba(139,92,246,0.18);
  transition:border-color .35s,background .35s,box-shadow .35s;
}
.pill.rec{ border-color:rgba(239,83,80,0.42); background:rgba(42,16,16,0.94); box-shadow:0 8px 28px rgba(0,0,0,0.5),0 0 28px rgba(239,83,80,0.26); animation:pillFloat 1.8s ease-in-out infinite; }
@keyframes pillFloat{ 0%,100%{ transform:translateX(-50%) translateY(0);} 50%{ transform:translateX(-50%) translateY(-2px);} }
.pill .mic{ color:var(--violet-lt); display:flex; }
.pill .label{ font-size:12.5px; font-weight:600; color:var(--text); }
.pill .reclabel{ font-size:12.5px; font-weight:700; color:#fca5a5; letter-spacing:.04em; }
.rec-dot{ width:8px; height:8px; border-radius:50%; background:var(--live); box-shadow:0 0 7px var(--live); animation:blink .95s infinite; }
@keyframes blink{ 50%{ opacity:.35; } }
.eq{ display:none; align-items:center; gap:2.5px; height:16px; }
.pill.rec .eq{ display:flex; }
.pill.rec .label,.pill.rec .mic{ display:none; }
.eq span{ display:block; width:2.5px; background:var(--live); border-radius:2px; transform-origin:center; animation:eq .6s ease-in-out infinite; }
@keyframes eq{ 0%,100%{ transform:scaleY(.3);} 50%{ transform:scaleY(1);} }

.window{ border-radius:var(--radius); overflow:hidden; margin-top:14px; border:1px solid var(--line); background:var(--panel); box-shadow:0 36px 90px rgba(0,0,0,0.62),0 0 0 1px rgba(255,255,255,0.03); }
.chrome{ height:42px; display:flex; align-items:center; gap:7px; padding:0 16px; background:rgba(8,7,12,0.96); border-bottom:1px solid var(--line-2); }
.dot{ width:11px; height:11px; border-radius:50%; opacity:.85; }
.chrome .title{ font-family:var(--mono); font-size:11px; color:rgba(246,242,236,0.34); margin-left:10px; transition:color .3s; }
.chrome .app-ic{ margin-left:auto; opacity:.5; }

.doc{ padding:24px 28px 18px; min-height:188px; }
.doc h3{ font-size:20px; font-weight:600; letter-spacing:-0.02em; margin-bottom:4px; }
.doc .meta{ font-size:12px; color:rgba(246,242,236,0.3); margin-bottom:18px; }
.doc .ovl{ font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:rgba(246,242,236,0.32); margin-bottom:11px; }
.doc .body{ font-size:14px; line-height:1.85; color:rgba(246,242,236,0.72); }
.doc .body p{ margin-bottom:5px; }
.doc .dim{ color:rgba(246,242,236,0.4); }
.caret{ display:inline-block; width:2px; height:1em; background:var(--violet); margin-left:1px; vertical-align:text-bottom; animation:blink 1s step-end infinite; }
.new{ color:#fff; }
.tabs{ height:34px; border-top:1px solid var(--line-2); display:flex; align-items:center; gap:20px; padding:0 16px; }
.tabs span{ font-size:11px; color:rgba(246,242,236,0.22); }
.tabs span.active{ color:rgba(246,242,236,0.6); border-bottom:1.5px solid var(--amber); padding-bottom:1px; }
.demo-cap{ font-family:var(--mono); font-size:11px; color:var(--muted); text-align:center; margin-top:14px; letter-spacing:.04em; }

/* ============================================================
   SIGNATURE SCROLL DEMO — "types into anything"
   ============================================================ */
.scroller{ position:relative; }
.scroller .stage{ position:sticky; top:0; height:100svh; display:flex; align-items:center; overflow:hidden; }
.anything .stage .glow{ position:absolute; inset:0; background:radial-gradient(50% 50% at 50% 45%, rgba(139,92,246,0.14), transparent 65%); pointer-events:none; }
.anything-grid{ position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.1fr); gap:clamp(30px,5vw,70px); align-items:center; width:100%; }
.anything .caption .num{ font-family:var(--mono); font-size:13px; color:var(--amber); letter-spacing:.12em; }
.anything .caption h2{ font-size:clamp(30px,4.4vw,52px); margin:14px 0 16px; }
.anything .caption .desc{ font-size:17px; color:var(--text); max-width:420px; line-height:1.6; }
.app-progress{ display:flex; gap:8px; margin-top:30px; }
.app-progress .ap{ display:flex; align-items:center; gap:8px; font-family:var(--mono); font-size:12px; color:var(--muted); padding:6px 12px; border-radius:100px; border:1px solid var(--line-2); transition:.3s; }
.app-progress .ap.on{ color:var(--ink); border-color:rgba(245,165,36,0.4); background:rgba(245,165,36,0.08); }
.app-progress .ap .pdot{ width:7px; height:7px; border-radius:50%; background:#3a3447; transition:.3s; }
.app-progress .ap.on .pdot{ background:var(--amber); box-shadow:0 0 8px var(--amber); }

.app-window{ width:100%; max-width:560px; margin:0 auto; border-radius:20px; overflow:hidden; border:1px solid var(--line); background:var(--panel); box-shadow:0 50px 120px rgba(0,0,0,0.7); position:relative; }
.app-window .chrome .title{ font-size:11.5px; }
.app-scene{ padding:30px 32px; min-height:300px; position:relative; }
.app-scene .field{ font-size:16px; line-height:1.8; color:rgba(246,242,236,0.85); }
.app-scene .label-row{ display:flex; gap:10px; align-items:center; margin-bottom:18px; }
.app-scene .avatar{ width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:700; font-size:14px; color:#fff; flex-shrink:0; }
.app-scene .meta-sm{ font-size:12px; color:var(--muted); }
.app-scene .meta-nm{ font-size:14px; font-weight:600; color:var(--ink); }
.typed{ color:#fff; }
.app-mic{ position:absolute; bottom:22px; right:26px; display:flex; align-items:center; gap:10px; padding:10px 16px; border-radius:100px; background:rgba(239,83,80,0.12); border:1px solid rgba(239,83,80,0.4); box-shadow:0 0 24px rgba(239,83,80,0.2); }
.app-mic .rec-dot2{ width:9px; height:9px; border-radius:50%; background:var(--live); box-shadow:0 0 8px var(--live); animation:blink .95s infinite; }
.app-mic .t{ font-family:var(--mono); font-size:12px; color:#fca5a5; font-weight:600; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:60px; position:relative; }
.step{ position:relative; padding:34px 30px; border-radius:var(--radius); border:1px solid var(--line); background:rgba(255,255,255,0.022); }
.step .n{ font-family:var(--display); font-weight:700; font-size:clamp(48px,5vw,68px); line-height:1; background:linear-gradient(135deg,rgba(139,92,246,0.4),rgba(245,165,36,0.25)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:18px; }
.step .ic{ position:absolute; top:34px; right:30px; color:var(--violet-lt); opacity:.8; }
.step h3{ font-size:20px; margin-bottom:10px; }
.step p{ font-size:15px; color:var(--text); line-height:1.7; }
.kbd{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; padding:5px 11px; border-radius:9px; background:rgba(139,92,246,0.12); border:1px solid rgba(139,92,246,0.28); font-family:var(--mono); font-size:13px; font-weight:600; color:var(--violet-lt); }
.kbd kbd{ background:rgba(255,255,255,0.1); padding:1px 6px; border-radius:4px; }

/* ============================================================
   MEETING MODE (scroll demo)
   ============================================================ */
.meeting .stage{ flex-direction:column; justify-content:center; gap:28px; }
.meeting .stage .head{ text-align:center; max-width:640px; margin:0 auto; }
.meet-badge{ display:inline-flex; align-items:center; gap:8px; padding:6px 14px; border-radius:100px; background:rgba(74,222,128,0.1); border:1px solid rgba(74,222,128,0.3); font-family:var(--mono); font-size:12px; font-weight:600; color:var(--green); margin-bottom:18px; }
.meet-card{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-radius:20px; border:1px solid rgba(139,92,246,0.22); background:rgba(10,8,18,0.92); overflow:hidden; max-width:920px; margin:0 auto; width:100%; box-shadow:0 40px 100px rgba(0,0,0,0.6); }
.meet-left{ padding:24px 26px; border-right:1px solid var(--line-2); display:flex; flex-direction:column; min-height:380px; }
.meet-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.meet-mode{ display:flex; gap:6px; }
.meet-mode .m{ font-family:var(--mono); font-size:10.5px; padding:4px 9px; border-radius:7px; border:1px solid var(--line); color:var(--muted); }
.meet-mode .m.on{ color:var(--green); border-color:rgba(74,222,128,0.4); background:rgba(74,222,128,0.08); }
.recpill{ display:flex; align-items:center; gap:7px; font-family:var(--mono); font-size:11px; font-weight:600; color:var(--live); }
.recpill .d{ width:8px; height:8px; border-radius:50%; background:var(--live); }
.recpill.off{ color:var(--muted); } .recpill.off .d{ background:#4b4555; }
.wavebar{ display:flex; align-items:center; gap:2.5px; height:30px; margin-bottom:18px; }
.wavebar span{ width:3px; border-radius:2px; background:rgba(139,92,246,0.55); }
.tline{ display:flex; gap:11px; align-items:flex-start; margin-bottom:14px; opacity:0; transform:translateX(-8px); }
.tline.show{ opacity:1; transform:none; }
.tline .av{ width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; flex-shrink:0; }
.tline .nm{ font-size:12px; font-weight:700; } .tline .tm{ font-size:11px; color:var(--muted); margin-left:7px; }
.tline .tx{ font-size:13px; color:var(--text); line-height:1.5; margin-top:3px; }
.meet-right{ padding:24px 26px; display:flex; flex-direction:column; gap:14px; }
.meet-wait{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:var(--muted); text-align:center; }
.meet-result{ display:flex; flex-direction:column; gap:14px; opacity:0; }
.meet-result.show{ opacity:1; }
.res-box{ border-radius:12px; padding:13px 15px; }
.res-box .rl{ font-family:var(--mono); font-size:10.5px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; margin-bottom:8px; }
.res-sum{ background:rgba(139,92,246,0.07); border:1px solid rgba(139,92,246,0.22); }
.res-sum .rl{ color:var(--violet-lt); }
.res-act{ background:rgba(74,222,128,0.05); border:1px solid rgba(74,222,128,0.2); }
.res-act .rl{ color:var(--green); }
.res-box p{ font-size:13px; color:var(--text); line-height:1.55; }
.act{ display:flex; gap:9px; align-items:flex-start; margin-bottom:8px; }
.act .cb{ width:15px; height:15px; border-radius:4px; border:1.5px solid rgba(74,222,128,0.45); background:rgba(74,222,128,0.08); flex-shrink:0; margin-top:1px; }
.act .at{ font-size:12.5px; color:var(--text); } .act .ao{ font-size:11px; color:var(--muted); margin-left:5px; }

/* ============================================================
   USE CASES
   ============================================================ */
.cases{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:54px; }
.case{ padding:26px 24px; border-radius:16px; border:1px solid var(--line); background:rgba(255,255,255,0.02); transition:border-color .25s, background .25s, transform .25s; }
.case:hover{ transform:translateY(-3px); border-color:rgba(245,165,36,0.3); background:rgba(255,255,255,0.035); }
.case .ci{ width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.case h4{ font-size:16px; margin-bottom:7px; }
.case p{ font-size:14px; color:var(--text); line-height:1.6; }

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy-card{ border-radius:24px; border:1px solid rgba(139,92,246,0.22); background:rgba(139,92,246,0.04); padding:clamp(40px,6vw,64px); position:relative; overflow:hidden; }
.privacy-card .pg{ position:absolute; top:-60px; right:-60px; width:320px; height:320px; border-radius:50%; background:radial-gradient(circle,rgba(34,211,238,0.1),transparent 70%); pointer-events:none; }
.priv-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:36px; }
.priv{ display:flex; gap:15px; }
.priv .pic{ width:40px; height:40px; border-radius:11px; background:rgba(34,211,238,0.1); border:1px solid rgba(34,211,238,0.22); display:flex; align-items:center; justify-content:center; color:var(--cyan); flex-shrink:0; margin-top:2px; }
.priv h4{ font-size:15px; margin-bottom:6px; }
.priv p{ font-size:14px; color:var(--text); line-height:1.6; }

/* ============================================================
   PLATFORMS / DOWNLOAD
   ============================================================ */
.plats{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:54px; }
.plat{ padding:34px 30px; border-radius:20px; border:1px solid var(--line); background:linear-gradient(180deg,rgba(255,255,255,0.035),rgba(255,255,255,0.01)); text-align:center; display:flex; flex-direction:column; align-items:center; transition:transform .25s, border-color .25s; }
.plat:hover{ transform:translateY(-4px); border-color:rgba(139,92,246,0.4); }
.plat .pico{ width:60px; height:60px; display:flex; align-items:center; justify-content:center; color:var(--ink); margin-bottom:18px; }
.plat h3{ font-size:22px; margin-bottom:4px; }
.plat .ver{ font-family:var(--mono); font-size:12px; color:var(--amber); margin-bottom:18px; }
.plat .pmeta{ font-size:13px; color:var(--muted); margin-bottom:22px; line-height:1.5; }
.plat .btn{ width:100%; }

/* ============================================================
   PRICING
   ============================================================ */
.tiers{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:start; margin-top:54px; }
.tier{ padding:36px 28px; border-radius:20px; border:1px solid var(--line); background:rgba(255,255,255,0.02); position:relative; text-align:left; }
.tier.feat{ border-color:transparent; background:linear-gradient(var(--panel),var(--panel)) padding-box, var(--grad) border-box; border:1.5px solid transparent; transform:scale(1.035); box-shadow:0 0 60px rgba(139,92,246,0.18); }
.tier .badge{ position:absolute; top:-12px; left:50%; transform:translateX(-50%); padding:4px 14px; border-radius:100px; font-family:var(--mono); font-size:10.5px; font-weight:600; letter-spacing:.1em; white-space:nowrap; color:#241406; background:var(--grad-2); }
.tier .badge.alt{ color:var(--cyan); background:rgba(34,211,238,0.12); border:1px solid rgba(34,211,238,0.3); }
.tier .tn{ font-family:var(--mono); font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:12px; }
.tier .price{ display:flex; align-items:baseline; gap:4px; }
.tier .price .p{ font-family:var(--display); font-size:46px; font-weight:700; letter-spacing:-0.04em; color:var(--ink); }
.tier .price .per{ font-size:15px; color:var(--muted); }
.tier .td{ font-size:14px; color:var(--text); margin:8px 0 22px; line-height:1.5; }
.tier .btn{ width:100%; margin-bottom:26px; }
.tier ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.tier li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--text); }
.tier li svg{ flex-shrink:0; margin-top:2px; color:var(--green); }

/* ============================================================
   FAQ
   ============================================================ */
.faqs{ display:flex; flex-direction:column; gap:12px; max-width:760px; margin:50px auto 0; }
.faq{ border-radius:14px; border:1px solid var(--line); background:rgba(255,255,255,0.02); overflow:hidden; transition:background .25s; }
.faq.open{ background:rgba(139,92,246,0.045); }
.faq button{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 24px; background:transparent; border:none; cursor:pointer; text-align:left; font-family:inherit; }
.faq .q{ font-size:16px; font-weight:600; color:var(--text); line-height:1.4; transition:color .2s; }
.faq.open .q{ color:var(--ink); }
.faq .plus{ flex-shrink:0; width:28px; height:28px; border-radius:50%; background:rgba(255,255,255,0.06); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--muted); font-size:18px; transition:.25s; }
.faq.open .plus{ background:var(--grad-2); color:#241406; transform:rotate(45deg); border-color:transparent; }
.faq .a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq .a p{ padding:0 24px 20px; font-size:15px; color:var(--text); line-height:1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta{ position:relative; }
.cta-box{ border-radius:28px; padding:clamp(54px,8vw,88px) clamp(24px,6vw,80px); background:linear-gradient(135deg,rgba(139,92,246,0.16),rgba(245,165,36,0.08)); border:1px solid rgba(139,92,246,0.24); position:relative; overflow:hidden; text-align:center; }
.cta-box .ekgline{ position:absolute; left:0; right:0; bottom:0; width:100%; height:120px; opacity:.5; }
.cta-box h2{ font-size:clamp(30px,5.4vw,58px); margin-bottom:16px; }
.cta-box p{ font-size:18px; color:var(--text); margin-bottom:34px; }
.cta-box .cta-row{ justify-content:center; }
.cta-box .fineprint{ margin-top:24px; font-family:var(--mono); font-size:12px; color:var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ border-top:1px solid var(--line); padding:44px 0; }
.footer .wrap{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:22px; }
.footer .logo{ height:30px; width:auto; filter:drop-shadow(0 0 10px rgba(139,92,246,0.22)); }
.footer nav{ display:flex; gap:24px; flex-wrap:wrap; }
.footer nav a{ font-size:14px; color:var(--muted); transition:.2s; }
.footer nav a:hover{ color:var(--text); }
.footer .cr{ font-size:13px; color:var(--muted); }
.footer .cr a{ color:var(--text); }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
/* visibility is driven by inline styles set in app.js (bulletproof against cascade quirks).
   Default = visible, so the page never renders blank even with no JS. */
.reveal{ opacity:1; }
.reveal[data-d="1"]{ transition-delay:.08s; }
.reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; }
.reveal[data-d="4"]{ transition-delay:.32s; }
.reveal[data-d="5"]{ transition-delay:.4s; }

/* hero entrance */
.hero .reveal{ transform:translateY(16px); }

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

/* ============================================================
   REAL APP SHOWCASE
   ============================================================ */
.showcase-lead{ display:grid; grid-template-columns:1.35fr 1fr; gap:40px; align-items:center; margin-top:54px; }
.win-frame{ border-radius:14px; overflow:hidden; border:1px solid var(--line); box-shadow:0 44px 110px rgba(0,0,0,0.62), 0 0 0 1px rgba(255,255,255,0.03); background:#0d0d14; }
.win-frame img{ display:block; width:100%; height:auto; }
.showcase-lead .copy h3{ font-size:clamp(24px,2.6vw,34px); margin-bottom:14px; }
.showcase-lead .copy p{ font-size:16px; color:var(--text); line-height:1.7; margin-bottom:14px; }
.showcase-lead .copy .feat-list{ list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:18px; }
.showcase-lead .copy .feat-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--text); }
.showcase-lead .copy .feat-list svg{ flex-shrink:0; margin-top:3px; color:var(--amber); }
.phone-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:46px; max-width:840px; margin-left:auto; margin-right:auto; }
.phone{ border-radius:34px; padding:8px; background:linear-gradient(160deg,#26212f,#15121d); border:1px solid rgba(255,255,255,0.1); box-shadow:0 40px 90px rgba(0,0,0,0.6); position:relative; }
.phone::before{ content:""; position:absolute; top:14px; left:50%; transform:translateX(-50%); width:46px; height:5px; border-radius:3px; background:rgba(255,255,255,0.16); z-index:2; }
.phone img{ border-radius:27px; display:block; width:100%; height:auto; }
.phone-cap{ text-align:center; font-family:var(--mono); font-size:12px; color:var(--muted); margin-top:14px; letter-spacing:.03em; }

/* ---------- EKG divider (threads the heartbeat between sections) ---------- */
.ekg-divider{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.ekg-divider svg{ width:100%; height:46px; display:block; overflow:visible; }
.ekg-divider path{ fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; filter:drop-shadow(0 0 7px rgba(139,92,246,0.45)); }

/* ============================================================
   CINEMATIC SCROLL STORY (background photography + horizontal EKG)
   ============================================================ */
.story{ position:relative; height:480vh; background:#060509; }
.story .stage{ position:sticky; top:0; height:100svh; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.story .bg{ position:absolute; inset:0; z-index:0; }
.story .shot{ position:absolute; inset:0; opacity:0; background-size:cover; background-position:center; will-change:opacity, transform; }
.story .shot.ph{
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 22px),
    radial-gradient(120% 100% at 30% 30%, rgba(139,92,246,0.18), transparent 60%),
    radial-gradient(120% 100% at 80% 80%, rgba(245,165,36,0.12), transparent 60%),
    linear-gradient(160deg, #14111f, #0a0810);
}
.story .ph-label{ position:absolute; left:50%; top:62%; transform:translate(-50%,-50%); font-family:var(--mono); font-size:12.5px; letter-spacing:.05em; color:rgba(246,242,236,0.4); text-align:center; max-width:320px; line-height:1.7; border:1px dashed rgba(246,242,236,0.18); border-radius:14px; padding:16px 22px; background:rgba(0,0,0,0.3); }
.story .ph-label b{ display:block; color:rgba(246,242,236,0.62); font-family:var(--sans); font-weight:600; font-size:13px; margin-bottom:6px; letter-spacing:0; }
.story .scrim{ position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(6,5,9,0.5) 0%, rgba(6,5,9,0.2) 38%, rgba(6,5,9,0.42) 62%, rgba(6,5,9,0.92) 100%); }
.story .vignette{ position:absolute; inset:0; z-index:1; background:radial-gradient(120% 90% at 50% 45%, transparent 45%, rgba(0,0,0,0.55) 100%); pointer-events:none; }
.story .cap{ position:relative; z-index:3; width:min(920px,90vw); height:1px; }
.story .cap .beat{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:min(920px,90vw); opacity:0; text-align:center; }
.story .cap .beat .kk{ font-family:var(--mono); font-size:13px; letter-spacing:.22em; text-transform:uppercase; color:var(--amber); display:block; margin-bottom:18px; }
.story .cap .beat .big{ font-family:var(--display); font-weight:700; font-size:clamp(34px,6.6vw,82px); line-height:1.02; letter-spacing:-0.035em; color:#fff; }
.story .cap .beat .big .g{ background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.story .cap .beat .sm{ margin-top:18px; font-size:clamp(15px,1.6vw,18px); color:rgba(246,242,236,0.82); line-height:1.6; max-width:520px; margin-left:auto; margin-right:auto; }
.story-ekg{ position:absolute; left:0; right:0; bottom:14%; z-index:2; width:100%; height:130px; pointer-events:none; }
.story-ekg path{ fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; filter:drop-shadow(0 0 10px rgba(139,92,246,0.5)); }
.story-ekg .pulse{ fill:#fff; filter:drop-shadow(0 0 8px var(--amber)); }
.story .progress-dots{ position:absolute; left:50%; bottom:5%; transform:translateX(-50%); z-index:3; display:flex; gap:9px; }
.story .progress-dots i{ width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.25); transition:.3s; }
.story .progress-dots i.on{ background:var(--amber); box-shadow:0 0 10px var(--amber); width:22px; border-radius:4px; }

/* ============================================================
   BRAND LOCKUP (crisp vector wordmark + mic emblem)
   ============================================================ */
.brand{ display:inline-flex; align-items:center; gap:11px; flex-shrink:0; line-height:1; }
.brand-mic{ height:32px; width:32px; flex-shrink:0; filter:drop-shadow(0 0 10px rgba(139,92,246,0.45)); }
.brand-word{
  font-family:'Fredoka', var(--display); font-weight:600;
  font-size:25px; letter-spacing:.6px; line-height:1;
  background:var(--grad); -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  position:relative; top:1px;
}
.footer .brand-mic{ height:28px; width:28px; }
.footer .brand-word{ font-size:22px; }

/* ============================================================
   EKG HEARTBEAT DIVIDER (threads between sections)
   ============================================================ */
.ekg-divider{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.ekg-divider svg{ display:block; width:100%; height:46px; overflow:visible; }
.ekg-divider path{ fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; filter:drop-shadow(0 0 6px rgba(139,92,246,0.45)); }
.ekg-divider .trace{ stroke-dasharray:var(--len); stroke-dashoffset:var(--len); }
.ekg-divider.in .trace{ transition:stroke-dashoffset 1.8s cubic-bezier(.4,0,.2,1); stroke-dashoffset:0; }
.ekg-divider .blip{ fill:#fff; filter:drop-shadow(0 0 6px var(--amber)); opacity:0; }
.ekg-divider.in .blip{ animation:blipRun 1.8s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes blipRun{ 0%{ opacity:0; } 8%{ opacity:1; } 92%{ opacity:1; } 100%{ opacity:0; } }
@media (prefers-reduced-motion: reduce){ .ekg-divider .trace{ stroke-dashoffset:0; } .ekg-divider .blip{ display:none; } }

/* tweak: animations off */
html.no-anim .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
html.no-anim .ekg-divider .trace{ stroke-dashoffset:0 !important; }
html.no-anim .ekg-divider .blip{ display:none; }


@media (max-width:920px){
  .steps,.cases,.plats,.tiers,.priv-grid{ grid-template-columns:1fr 1fr; }
  .tier.feat{ transform:none; }
}
@media (max-width:860px){
  .nav-links{ display:none; }
  .hamburger{ display:flex; }
  .hero-grid{ grid-template-columns:1fr; gap:50px; }
  .anything-grid{ grid-template-columns:1fr; gap:36px; }
  .anything .caption{ text-align:center; }
  .app-progress{ justify-content:center; flex-wrap:wrap; }
  .meet-card{ grid-template-columns:1fr; }
  .meet-left{ border-right:none; border-bottom:1px solid var(--line-2); min-height:auto; }
  .showcase-lead{ grid-template-columns:1fr; gap:30px; }
  .phone-row{ grid-template-columns:1fr; max-width:300px; }
}
@media (max-width:640px){
  .wrap{ padding:0 20px; }
  .steps,.cases,.plats,.tiers,.priv-grid{ grid-template-columns:1fr; }
  .stats{ width:100%; } .stat{ flex:1; padding:13px 10px; }
  .cta-row .btn{ flex:1; }
  .scroller .stage{ height:auto; min-height:100svh; padding:90px 0; }
}
