/* LUNIFAI call-prep page, v2.
   Tokens and base components lifted from outputs/lunifai-next-v3/app/globals.css
   (:root light scope, [data-surface="dark"] scope, .glass edge-light, .hero-badge,
   .kicker, .h1, blurFadeUp). Component ports, re-toned to the brand blues:
   - .beam   ← Magic UI BorderBeam (offset-path rect, masked ring)
   - .shine  ← Magic UI ShineBorder
   - .glow   ← Aceternity GlowingEffect (cursor-tracked conic mask)
   - .play   ← Magic UI HeroVideoDialog play button
   - .field  ← shadcn Field (label / description / message)
   - .btn-group ← shadcn Button Group; kbd ← shadcn Kbd
   - .stepper ← Origin UI vertical stepper with checkmarks (21st.dev) */

:root {
  --bg: #F4F4FB;
  --bg-soft: #ECEDF8;
  --brand: #14116F;
  --accent: #2F6BFF;
  --accent-2: #6BA1FF;
  --accent-3: #9DBBFF;
  --accent-ink: #2457D6;
  --fg: #14116F;
  --fg-rgb: 20, 17, 111;
  --muted: rgba(var(--fg-rgb), 0.7);
  --faint: rgba(var(--fg-rgb), 0.55);
  --line: rgba(20, 17, 111, 0.12);
  --grey: #c9c8dd;
  --grid: rgba(20, 17, 111, 0.045);
  --grid-size: 56px;
  --ease: cubic-bezier(.16,1,.3,1);
  --r-card: 24px;
  --maxw: 780px;
  --maxw-wide: 1180px;
  --font-space: "Space Grotesk";
  --font-montserrat: "Montserrat";
  --font-mono: "Red Hat Mono";
  --font-serif: "Instrument Serif";
  --glow-gradient:
    radial-gradient(circle, #2F6BFF 10%, #2F6BFF00 20%),
    radial-gradient(circle at 40% 40%, #6BA1FF 5%, #6BA1FF00 15%),
    radial-gradient(circle at 60% 60%, #9DBBFF 10%, #9DBBFF00 20%),
    radial-gradient(circle at 40% 60%, #4F4BD8 10%, #4F4BD800 20%),
    repeating-conic-gradient(from 236.84deg at 50% 50%, #2F6BFF 0%, #6BA1FF 5%, #9DBBFF 10%, #4F4BD8 15%, #2F6BFF 20%);
  color-scheme: light;
}

[data-surface="dark"] {
  --bg: #060616;
  --fg: #ffffff;
  --fg-rgb: 255, 255, 255;
  --accent-ink: var(--accent-2);
  --muted: rgba(255, 255, 255, 0.74);
  --faint: rgba(255, 255, 255, 0.54);
  --line: rgba(255, 255, 255, 0.14);
  color-scheme: dark;
  background: radial-gradient(125% 95% at 50% 0%, #101a3d 0%, #0a0f2a 38%, #060616 72%);
  color: var(--fg);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; background: #060616; color: var(--fg); font-family: var(--font-montserrat), ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: rgba(47,107,255,0.32); }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 8px; }
h1, h2, h3 { font-family: var(--font-space), var(--font-montserrat), sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-wide { width: 100%; max-width: var(--maxw-wide); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.surface { position: relative; isolation: isolate; }

body::after { /* V1 film grain */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.kicker { font-family: var(--font-mono), monospace; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12.5px; color: var(--accent-ink); }
.mono { font-family: var(--font-mono), monospace; }
.lead { color: var(--muted); font-size: 17px; line-height: 1.6; }
.serif { font-family: var(--font-serif), Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: 0; }
.faint { color: var(--faint); }
.small { font-size: 13px; }

/* ---------- entrances (V3 blurFadeUp) ---------- */
@keyframes blurFadeUp { from { opacity: 0; filter: blur(20px); transform: translateY(40px); } to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes ticketIn { from { opacity: 0; filter: blur(16px); transform: translateY(48px) scale(.96) rotateX(8deg); } to { opacity: 1; filter: blur(0); transform: none; } }
.rise { animation: blurFadeUp 1s var(--ease) both; animation-delay: var(--d, 0s); }
.rise-ticket { animation: ticketIn 1.2s var(--ease) .32s both; transform-origin: 50% 100%; }
.js .reveal { opacity: 0; transform: translateY(28px); filter: blur(12px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- hero ---------- */
.hero-s { overflow: hidden; }
.hero-s::before { /* drafting grid, faded to the light source */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  -webkit-mask-image: radial-gradient(70% 60% at 70% 30%, #000 0%, transparent 75%); mask-image: radial-gradient(70% 60% at 70% 30%, #000 0%, transparent 75%);
}
.ambient { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
.b1 { width: 520px; height: 520px; left: 52%; top: -140px; background: rgba(47,107,255,.26); animation: drift1 22s ease-in-out infinite alternate; }
.b2 { width: 460px; height: 460px; left: -120px; top: 180px; background: rgba(20,17,111,.7); animation: drift2 26s ease-in-out infinite alternate; }
.b3 { width: 300px; height: 300px; right: -60px; bottom: -80px; background: rgba(107,161,255,.16); animation: drift1 30s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(-80px, 60px) scale(1.08); } }
@keyframes drift2 { to { transform: translate(90px, -40px) scale(.94); } }

.topbar { display: flex; align-items: center; justify-content: space-between; padding: 26px 0 0; }
.nav-logo { display: inline-flex; align-items: center; gap: 9px; }
.nav-logo img { height: 36px; width: auto; }
.nav-wordmark { font-family: var(--font-space), sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .03em; }
.mini-prep { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 8px; border-radius: 999px; font-size: 13px; color: var(--muted);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: background .3s, border-color .3s; }
.mini-prep:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.mini-prep b { color: #fff; font-weight: 600; }
.mini-prep svg { width: 22px; height: 22px; transform: rotate(-90deg); }
.mp-track { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 2.5; }
.mp-fill { fill: none; stroke: var(--accent-2); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 56.55; stroke-dashoffset: 56.55; transition: stroke-dashoffset .8s var(--ease); }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 56px; align-items: center; padding: 72px 0 108px; perspective: 1200px; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px 8px 13px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  font-family: var(--font-mono), monospace; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9); }
.hero-badge-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 10px rgba(34,197,94,.7); flex-shrink: 0; } /* green = confirmed (Lukas 2026-09-10) */
.hero-badge-dot::before, .t-online::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; opacity: .7; animation: dot-ping 1.2s cubic-bezier(0,0,.2,1) infinite; }
@keyframes dot-ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }

.h1 { font-size: clamp(38px, 5.4vw, 70px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.025em; line-height: .98; margin-top: 26px; }
.hero-sub { font-family: var(--font-space), sans-serif; font-weight: 500; font-size: clamp(20px, 2.4vw, 27px); letter-spacing: -0.01em; margin-top: 20px; color: rgba(255,255,255,.92); }
.hero-sub .serif { font-size: 1.14em; color: var(--accent-2); }
.hero-lead { max-width: 480px; margin-top: 16px; font-size: 16px; }
.hero-cta { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.cta-note { font-size: 12.5px; letter-spacing: .04em; color: var(--faint); }

/* ---------- buttons (V3 .btn family) ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font: 600 14.5px/1 var(--font-montserrat), sans-serif;
  padding: 15px 24px; min-height: 48px; border-radius: 999px; cursor: pointer; border: none; touch-action: manipulation;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, opacity .3s; }
.btn .ico { width: 17px; height: 17px; flex-shrink: 0; }
.btn-white { background: #fff; color: var(--brand); box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 12px 40px -12px rgba(47,107,255,.65); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 20px 50px -14px rgba(47,107,255,.85); }
.btn-primary { background: linear-gradient(180deg, #1d1a86, var(--brand)); color: #fff; align-self: flex-start;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 30px -12px rgba(20,17,111,.7), 0 0 0 1px rgba(20,17,111,.9); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 18px 44px -14px rgba(47,107,255,.8), 0 0 0 1px rgba(20,17,111,.9); }
.btn-primary:disabled { opacity: .42; transform: none; box-shadow: none; cursor: default; }
.btn-quiet { color: rgba(20,17,111,.72); padding: 12px 6px; min-height: 44px; }
.btn-quiet:hover { color: var(--brand); }
.btn-quiet .ico { transition: transform .3s var(--ease); }
.btn-quiet:hover .ico { transform: translateX(3px); }
.btn:active { transform: scale(.97); }

/* ---------- booking ticket ---------- */
.ticket { position: relative; border-radius: 28px; padding: 24px 26px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.03) 55%, rgba(255,255,255,.045));
  backdrop-filter: blur(26px) saturate(1.2); -webkit-backdrop-filter: blur(26px) saturate(1.2);
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.85), 0 30px 80px -50px rgba(47,107,255,.6), inset 0 1px 0 rgba(255,255,255,.14);
  --perf-y: -100px;
  -webkit-mask: radial-gradient(circle 13px at 0 var(--perf-y), #0000 98%, #000 100%) left / 51% 100% no-repeat, radial-gradient(circle 13px at 100% var(--perf-y), #0000 98%, #000 100%) right / 51% 100% no-repeat;
  mask: radial-gradient(circle 13px at 0 var(--perf-y), #0000 98%, #000 100%) left / 51% 100% no-repeat, radial-gradient(circle 13px at 100% var(--perf-y), #0000 98%, #000 100%) right / 51% 100% no-repeat; }
.ticket::before { /* V3 glass edge-light */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.28) 0%, rgba(107,161,255,.22) 22%, rgba(255,255,255,0) 45%, rgba(255,255,255,0) 62%, rgba(47,107,255,.25) 84%, rgba(255,255,255,.34) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.t-head { display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
.t-avatar { position: relative; flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; padding: 2px; background: linear-gradient(140deg, #6BA1FF, #2F6BFF 45%, #14116F); }
.t-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: 50% 18%; border: 2px solid #0b1030; }
.t-online { position: absolute; right: 1px; bottom: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 2.5px #0b1030; }
.t-who { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.t-who .kicker { font-size: 11px; }
.t-who b { font-family: var(--font-space), sans-serif; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.t-role { font-size: 12.5px; color: var(--faint); }
.t-status { font-family: var(--font-mono), monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px;
  color: #cfe0ff; background: rgba(47,107,255,.16); box-shadow: inset 0 0 0 1px rgba(107,161,255,.35); white-space: nowrap; transition: background .4s, color .4s, box-shadow .4s; }
.all-done .t-status { color: #fff; background: var(--accent); box-shadow: 0 0 24px -2px rgba(47,107,255,.9); }

.t-when { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; margin-top: 26px; position: relative; z-index: 2; }
.t-cell { display: flex; flex-direction: column; gap: 6px; }
.t-cell + .t-cell { padding-left: 16px; border-left: 1px solid rgba(255,255,255,.1); }
.t-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.t-cell strong { font-family: var(--font-space), sans-serif; font-size: clamp(24px, 2.5vw, 30px); font-weight: 600; letter-spacing: -.02em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.t-cell em { font-style: normal; font-family: var(--font-mono), monospace; font-size: 12px; font-weight: 400; color: var(--faint); letter-spacing: .04em; vertical-align: middle; }

.t-perf { position: relative; height: 1px; margin: 22px -26px; background-image: linear-gradient(90deg, rgba(255,255,255,.22) 50%, transparent 0); background-size: 10px 1px; }

.t-count { display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; z-index: 2; }
.count { display: flex; gap: 12px; }
.unit { display: inline-flex; align-items: baseline; gap: 3px; overflow: hidden; }
.unit b { display: inline-block; font-family: var(--font-space), sans-serif; font-size: 30px; font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1.05; }
.unit i { font-style: normal; font-family: var(--font-mono), monospace; font-size: 12px; color: var(--faint); }
.t-count.is-now .count { display: none; }

.t-meta { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 2; }
.t-meta li { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.t-meta svg { width: 14px; height: 14px; fill: none; stroke: var(--accent-2); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.t-prep { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); position: relative; z-index: 2; }
.t-prep-n { font-size: 12.5px; color: var(--faint); }
.t-prep-n b { color: #fff; font-weight: 500; display: inline-block; }
.prep-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.prep-bar i { height: 5px; border-radius: 999px; background: rgba(255,255,255,.1); position: relative; overflow: hidden; }
.prep-bar i::after { content: ""; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left; border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 12px rgba(47,107,255,.8); transition: transform .8s var(--ease); }
.prep-bar i.on::after { transform: scaleX(1); }

/* ---------- border beam (Magic UI BorderBeam port) ---------- */
.beam { position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none; z-index: 3; overflow: hidden;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .6s var(--ease); }
.beam::after { content: ""; position: absolute; width: var(--beam-size, 140px); aspect-ratio: 1;
  background: linear-gradient(to left, var(--beam-from, #9DBBFF), var(--beam-to, #2F6BFF), transparent);
  offset-path: rect(0 auto auto 0 round var(--beam-size, 140px)); offset-distance: 0%;
  animation: beam var(--beam-dur, 7s) linear infinite; }
@keyframes beam { to { offset-distance: 100%; } }
.ticket .beam { opacity: 1; --beam-size: 180px; --beam-dur: 9s; }
.step[data-status="active"] .beam { opacity: 1; }

/* ---------- glowing edge (Aceternity GlowingEffect port) ---------- */
.glow { position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px; pointer-events: none; z-index: 3;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.glow::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--glow-gradient); background-attachment: fixed;
  opacity: var(--active, 0); transition: opacity .35s;
  --spread: 26;
  -webkit-mask-image: conic-gradient(from calc((var(--start, 0) - var(--spread)) * 1deg), #0000 0deg, #fff, #0000 calc(var(--spread) * 2deg));
  mask-image: conic-gradient(from calc((var(--start, 0) - var(--spread)) * 1deg), #0000 0deg, #fff, #0000 calc(var(--spread) * 2deg)); }

/* ---------- steps (light act) ---------- */
main[data-surface="light"] { background: var(--bg); }
main[data-surface="light"]::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent); mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent); }
main[data-surface="light"]::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 140px; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,6,22,.08), rgba(6,6,22,0)); }
.steps-wrap { padding-top: 84px; padding-bottom: 96px; scroll-margin-top: 24px; }
.steps-head { display: flex; flex-direction: column; gap: 10px; margin: 0 0 34px 70px; }
.steps-head h2 { font-size: clamp(28px, 3.6vw, 40px); color: var(--brand); }

.done-banner { display: flex; align-items: center; gap: 16px; margin: 0 0 22px 70px; padding: 18px 22px; border-radius: 20px; color: var(--brand);
  background: #fff; box-shadow: 0 0 0 1.5px rgba(47,107,255,.5), 0 22px 60px -26px rgba(47,107,255,.5); font-size: 15px; line-height: 1.45; }
.done-banner b { font-family: var(--font-space), sans-serif; font-size: 18px; }
.db-check { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); box-shadow: 0 10px 26px -8px rgba(47,107,255,.9); }
.db-check svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset .7s var(--ease) .15s; }
.done-banner.in-view svg { stroke-dashoffset: 0; }

.stepper { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 18px; }
.step + .step { margin-top: 18px; }
.js .step.reveal:nth-child(2) { transition-delay: .08s; }
.js .step.reveal:nth-child(3) { transition-delay: .16s; }

/* rail */
.rail { position: relative; display: flex; justify-content: center; padding-top: 22px; }
.ind { position: relative; z-index: 2; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--grey), 0 6px 16px -10px rgba(20,17,111,.4); transition: background .45s var(--ease), box-shadow .45s var(--ease); }
.ind .num { font-family: var(--font-mono), monospace; font-size: 13.5px; color: rgba(20,17,111,.5); transition: opacity .25s, transform .35s var(--ease); }
.ind .check { position: absolute; width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset .6s var(--ease) .12s; }
.step[data-status="active"] .ind { box-shadow: inset 0 0 0 1.5px var(--accent), 0 0 0 6px rgba(47,107,255,.12), 0 10px 24px -10px rgba(47,107,255,.7); }
.step[data-status="active"] .ind .num { color: var(--accent-ink); font-weight: 500; }
.step[data-status="active"] .ind::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 1.5px var(--accent); animation: ring-ping 2s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ring-ping { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(1.6); opacity: 0; } }
.step[data-status="done"] .ind { background: var(--accent); box-shadow: 0 10px 24px -10px rgba(47,107,255,.9); }
.step[data-status="done"] .ind .num { opacity: 0; transform: scale(.6); }
.step[data-status="done"] .ind .check { stroke-dashoffset: 0; }
.line { position: absolute; top: 66px; bottom: -40px; left: 50%; width: 2px; margin-left: -1px; border-radius: 2px; background: rgba(20,17,111,.1); overflow: hidden; }
.line i { position: absolute; inset: 0; background: linear-gradient(180deg, var(--accent), var(--accent-2)); transform: scaleY(0); transform-origin: top; transition: transform .9s var(--ease) .1s; }
.step[data-status="done"] .line i { transform: scaleY(1); }

/* card */
.card { position: relative; border-radius: var(--r-card); background: #fff;
  box-shadow: 0 1px 2px rgba(20,17,111,.05), 0 20px 50px -30px rgba(20,17,111,.4), inset 0 0 0 1px rgba(20,17,111,.07);
  transition: box-shadow .5s var(--ease), background .5s, transform .5s var(--ease); }
.step[data-status="active"] .card { box-shadow: 0 1px 2px rgba(20,17,111,.05), 0 30px 70px -30px rgba(47,107,255,.5), inset 0 0 0 1px rgba(47,107,255,.25); }
.step[data-status="locked"] .card { background: rgba(255,255,255,.55); box-shadow: inset 0 0 0 1px rgba(20,17,111,.07); }
.card-head { width: 100%; display: flex; align-items: center; gap: 14px; text-align: left; padding: 22px 26px; min-height: 84px; border-radius: var(--r-card); position: relative; z-index: 4; }
.step[data-status="locked"] .card-head { cursor: default; }
.head-text { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.eyebrow { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.step[data-status="active"] .eyebrow { color: var(--accent-ink); }
.card-head h3 { font-size: clamp(20px, 2.4vw, 23px); color: var(--brand); transition: color .3s; }
.step[data-status="locked"] .card-head h3 { color: rgba(20,17,111,.42); }
.summary { display: none; font-size: 13.5px; color: var(--accent-ink); }
.step[data-status="done"] .summary { display: block; }
.step[data-status="done"] .card-head h3 { font-size: 18px; color: rgba(20,17,111,.75); }
.state { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono), monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px; }
.state svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.step[data-status="active"] .state { color: #fff; background: var(--accent); box-shadow: 0 6px 18px -6px rgba(47,107,255,.8); }
.step[data-status="done"] .state { color: var(--accent-ink); background: #EEF2FF; }
.step[data-status="done"] .card-head:hover .state { background: #E2E9FF; }
.step[data-status="locked"] .state { color: rgba(20,17,111,.45); background: rgba(20,17,111,.05); }

.card-body { height: 0; overflow: hidden; position: relative; z-index: 4; }
.card-body .inner { padding: 0 26px 26px; display: flex; flex-direction: column; gap: 18px; color: rgba(20,17,111,.74); font-size: 15.5px; line-height: 1.6; opacity: 0; }
.card-body b { color: var(--brand); }
.no-js .card-body, .card-body.static-open { height: auto; }

/* step 1: button group (shadcn Button Group) */
.fallback-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.fallback { font-size: 13.5px; color: var(--faint); }
.btn-group { display: inline-flex; border-radius: 14px; background: #F6F6FC; box-shadow: inset 0 0 0 1px rgba(20,17,111,.1); padding: 3px; }
.btn-seg { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; min-height: 40px; border-radius: 11px; font-size: 13.5px; font-weight: 500; color: var(--brand); cursor: pointer;
  transition: background .25s, box-shadow .25s, transform .3s var(--ease); }
.btn-seg + .btn-seg { position: relative; }
.btn-seg + .btn-seg::before { content: ""; position: absolute; left: -1px; top: 10px; bottom: 10px; width: 1px; background: rgba(20,17,111,.1); }
.btn-seg:hover { background: #fff; box-shadow: 0 4px 14px -6px rgba(20,17,111,.25), inset 0 0 0 1px rgba(20,17,111,.06); }
.btn-seg:hover::before, .btn-seg:hover + .btn-seg::before { opacity: 0; }
.btn-seg svg { width: 15px; height: 15px; fill: none; stroke: var(--accent-ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* step 2: player */
.player { position: relative; border-radius: 18px; padding: 0; aspect-ratio: 16 / 9; background: #060616;
  box-shadow: 0 30px 70px -34px rgba(20,17,111,.75), 0 0 0 1px rgba(20,17,111,.12); }
.player mux-player { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 18px; overflow: hidden; --media-accent-color: #2F6BFF; }
.shine { position: absolute; inset: -1.5px; border-radius: 19.5px; padding: 1.5px; pointer-events: none; z-index: 3;
  background-image: radial-gradient(transparent, transparent, #2F6BFF, #9DBBFF, transparent, transparent); background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: shine 14s linear infinite; }
@keyframes shine { 0% { background-position: 0% 0%; } 50% { background-position: 100% 100%; } 100% { background-position: 0% 0%; } }
.poster { position: absolute; inset: 0; border-radius: 18px; overflow: hidden; display: block; text-align: left;
  background: radial-gradient(90% 120% at 85% 10%, #1b2a66 0%, #0a0f2a 50%, #060616 85%); }
.poster-img { position: absolute; right: 0; top: 0; height: 100%; width: 48%; object-fit: cover; object-position: 50% 15%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%); mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
  transition: filter .35s var(--ease), transform .8s var(--ease); }
.poster-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,6,22,.85) 0%, rgba(6,6,22,0) 45%); }
.poster-copy { position: absolute; left: 26px; top: 24px; right: 46%; display: flex; flex-direction: column; gap: 10px; color: #fff; }
.poster-copy .kicker { color: var(--accent-2); font-size: 11.5px; }
.poster-title { font-family: var(--font-space), sans-serif; font-weight: 600; font-size: clamp(18px, 2.4vw, 25px); letter-spacing: -.015em; line-height: 1.12; }
.poster-by { font-size: 12.5px; color: rgba(255,255,255,.62); }
.play { position: absolute; left: 50%; top: 50%; width: 104px; height: 104px; margin: -52px 0 0 -52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(47,107,255,.14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
  transform: scale(.9); transition: transform .35s var(--ease); }
.play-core { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: linear-gradient(180deg, rgba(107,161,255,.55), #2F6BFF); box-shadow: 0 12px 30px -8px rgba(47,107,255,.9), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .35s var(--ease); }
.play-core svg { width: 28px; height: 28px; margin-left: 4px; filter: drop-shadow(0 3px 3px rgba(0,0,0,.2)); }
.poster:hover .play { transform: scale(1); }
.poster:hover .play-core { transform: scale(1.14); }
.poster:hover .poster-img { filter: brightness(.82); transform: scale(1.03); }
.dur { position: absolute; left: 26px; bottom: 20px; font-size: 12px; letter-spacing: .06em; color: #fff; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }

.chapters { display: flex; flex-wrap: wrap; gap: 8px; }
.chap { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px 8px 10px; min-height: 36px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--brand);
  background: #F4F5FD; box-shadow: inset 0 0 0 1px rgba(20,17,111,.07); transition: background .25s, box-shadow .25s, transform .3s var(--ease); }
.chap .mono { font-size: 11.5px; color: var(--accent-ink); padding: 2px 6px; border-radius: 6px; background: #fff; box-shadow: inset 0 0 0 1px rgba(47,107,255,.2); }
.chap:hover { background: #fff; box-shadow: 0 6px 16px -8px rgba(20,17,111,.3), inset 0 0 0 1px rgba(47,107,255,.25); transform: translateY(-1px); }
.s2-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: -4px; }
.video-note { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); }

/* step 3: field (shadcn Field) */
.field { display: flex; flex-direction: column; gap: 12px; }
.field-label { font-family: var(--font-space), sans-serif; font-weight: 600; font-size: 15px; color: var(--brand); }
.field-desc { font-size: 14.5px; color: rgba(20,17,111,.66); margin-top: -6px; }
.prompt-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pchip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; min-height: 36px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--brand);
  background: #fff; box-shadow: inset 0 0 0 1px rgba(20,17,111,.14); transition: box-shadow .25s, background .25s, transform .3s var(--ease); }
.pchip > span:first-child { color: var(--accent); font-weight: 600; font-size: 15px; line-height: 1; }
.pchip:hover { box-shadow: inset 0 0 0 1px rgba(47,107,255,.5), 0 6px 16px -8px rgba(47,107,255,.5); transform: translateY(-1px); }
.pchip.used { background: #EEF2FF; box-shadow: inset 0 0 0 1px rgba(47,107,255,.3); }
.ta-wrap { border-radius: 16px; background: #F7F7FD; box-shadow: inset 0 0 0 1px rgba(20,17,111,.13); transition: box-shadow .3s, background .3s; }
.ta-wrap:focus-within { background: #fff; box-shadow: inset 0 0 0 1.5px rgba(47,107,255,.65), 0 0 0 5px rgba(47,107,255,.12); }
textarea { display: block; width: 100%; resize: vertical; min-height: 124px; font: 16px/1.55 var(--font-montserrat), sans-serif; color: var(--brand);
  background: transparent; border: 0; border-radius: 16px 16px 0 0; padding: 15px 17px 6px; }
textarea:focus { outline: none; }
textarea::placeholder { color: rgba(20,17,111,.4); }
.ta-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 6px 12px 10px 17px; }
.kbd-hint { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--faint); }
kbd { font-family: var(--font-mono), monospace; font-size: 11px; min-width: 20px; height: 20px; padding: 0 5px; display: inline-grid; place-items: center; border-radius: 5px;
  color: var(--brand); background: #fff; box-shadow: inset 0 0 0 1px rgba(20,17,111,.14), 0 1px 0 rgba(20,17,111,.12); }
.meter { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--faint); }
.meter svg { width: 22px; height: 22px; }
.m-track { fill: none; stroke: rgba(20,17,111,.12); stroke-width: 2.4; }
.m-fill { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 56.55; stroke-dashoffset: 56.55; transform: rotate(-90deg); transform-origin: 12px 12px; transition: stroke-dashoffset .35s var(--ease); }
.m-check { fill: none; stroke: var(--accent); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 12; stroke-dashoffset: 12; transition: stroke-dashoffset .4s var(--ease); }
.meter.ok .m-check { stroke-dashoffset: 0; }
.meter.ok { color: var(--accent-ink); }
#counter { display: inline-block; min-width: 2ch; text-align: right; }
.form-msg { font-size: 14px; color: var(--accent-ink); min-height: 0; }
.form-msg:empty { display: none; }
.spinner { display: none; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .7s linear infinite; }
.btn.loading .spinner { display: inline-block; }
.btn.loading .arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- proof + FAQ (dark act below the steps) ---------- */
.proof-s { padding: 112px 0 24px; overflow: hidden; background: radial-gradient(110% 55% at 50% 0%, #0f1840 0%, #0a0f2a 42%, #060616 80%); }
.proof-s::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  -webkit-mask-image: radial-gradient(60% 40% at 50% 0%, #000 0%, transparent 80%); mask-image: radial-gradient(60% 40% at 50% 0%, #000 0%, transparent 80%); }
.proof-s + footer[data-surface="dark"] { background: radial-gradient(80% 100% at 50% 100%, #0d1433 0%, #060616 70%); }
.sec-head { position: relative; z-index: 2; max-width: 660px; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 50px); letter-spacing: -.025em; }
.sec-head h2, .sec-head h3, .sec-head .lead { text-wrap: balance; }
.sec-head h3 { font-family: var(--font-space), sans-serif; font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -.02em; }
.sec-head .lead { font-size: 16.5px; max-width: 560px; }
.sec-head-sm { margin: 96px auto 36px; }

.metrics { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.metrics .mcard { grid-column: span 2; }
.metrics .mcard-lg { grid-column: span 3; min-height: 236px; background: linear-gradient(135deg, rgba(79,195,247,.1), rgba(255,255,255,.03) 60%); }
.mcard-lg .mval { font-size: clamp(46px, 5.2vw, 66px); }
@media (max-width: 960px) { .metrics .mcard, .metrics .mcard-lg { grid-column: auto; } }
.stat-strip { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.stat-strip li { font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--faint); padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px rgba(255,255,255,.09); }
.stat-strip b { color: #fff; font-weight: 500; margin-right: 3px; }
@media (min-width: 961px) { .sec-head .stat-strip { align-self: stretch; margin-inline: -80px; } } /* 4 pills (~760px) on one row inside the 660px head */
.mcard, .qcard, .faq-item { position: relative; border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.075), 0 30px 60px -40px rgba(0,0,0,.85); }
.mcard::before, .qcard::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.2px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.2) 0%, rgba(107,161,255,.12) 25%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 70%, rgba(47,107,255,.14) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.mcard { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 8px; min-height: 208px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.mcard:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px rgba(107,161,255,.18), 0 40px 70px -40px rgba(47,107,255,.55); }
.mtag { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8);
  padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,.09); margin-bottom: 10px; }
.mtag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cat, #6BA1FF); box-shadow: 0 0 10px var(--cat, #6BA1FF); }
.mcard[data-cat="outbound"] { --cat: #4FC3F7; }
.mcard[data-cat="ai"] { --cat: #6BA1FF; }
.mval { font-family: var(--font-space), sans-serif; font-size: clamp(38px, 4vw, 50px); font-weight: 600; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 30%, #b9ceff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mlabel { font-size: 14.5px; color: var(--muted); line-height: 1.45; }
/* standardized outbound spec: opportunities · deal or lifetime value · meetings · cash (only known values render) */
.mspec { margin: 14px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.mspec > div { padding: 10px 12px; background: rgba(9,12,34,.72); }
.mspec dt { font-family: var(--font-mono), monospace; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.mspec dd { margin: 3px 0 0; font-family: var(--font-space), sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: #fff; font-variant-numeric: tabular-nums; }
.mspec > div:last-child:nth-child(odd) { grid-column: span 2; }
/* revenue callout (Hugo, 2026-09-11): real revenue outranks the spec grid, so it gets its own lit row */
.mrev { margin: 14px 0 0; display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 6px 14px; padding: 12px 14px; border-radius: 14px;
  background: linear-gradient(90deg, rgba(47,107,255,.2), rgba(47,107,255,.05)); box-shadow: inset 0 0 0 1px rgba(107,161,255,.3); }
.mrev-k { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--soft, #6BA1FF); }
.mrev b { font-family: var(--font-space), sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -.01em; color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mrev-w { font-weight: 500; color: var(--soft, #6BA1FF); margin: 0 .12em; } /* "From … to …": words soft, numbers white */
.mrev-w:first-child { margin-left: 0; }
.mrev-w:last-child { margin: 0; } /* "/month" hugs the number */
/* wide cards: one column per known value, so 2 or 3 cells always fill the strip */
@media (min-width: 601px) {
  .mcard-lg .mspec { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); }
  .mcard-lg .mspec > div:last-child:nth-child(odd) { grid-column: auto; }
}
.mwho { margin-top: auto; padding-top: 14px; display: flex; align-items: center; gap: 10px; font-size: 12.5px; line-height: 1.35; color: var(--faint); }
.mwho img, .mwho .qinit { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 1.5px rgba(107,161,255,.4); }
.mwho .qinit { font-size: 10.5px; }
.mwho b { color: rgba(255,255,255,.9); font-weight: 600; }

.quotes { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.qcard { margin: 0; padding: 24px 24px 20px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.qcard-lg { grid-column: span 2; padding: 30px 32px 26px; background: linear-gradient(135deg, rgba(47,107,255,.14), rgba(255,255,255,.03) 60%); }
.qcard-lg blockquote p { font-family: var(--font-space), sans-serif; font-size: clamp(19px, 2vw, 23px); font-weight: 500; line-height: 1.45; letter-spacing: -.01em; color: #fff; }
.qcard blockquote { margin: 0; }
.qcard blockquote p { font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,.86); }
.qcard blockquote p::before { content: "\201C"; font-family: var(--font-serif), Georgia, serif; font-size: 42px; line-height: 0; color: var(--accent-2); vertical-align: -.36em; margin-right: 4px; }
.qwho { display: flex; align-items: center; gap: 12px; font-size: 13px; line-height: 1.35; }
.qwho img, .qinit { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(107,161,255,.35); }
.qinit { display: grid; place-items: center; font-size: 12.5px; font-weight: 600; background: linear-gradient(135deg, var(--accent), var(--brand)); }
.qwho b { display: block; font-weight: 600; color: #fff; }
.qwho span span { color: var(--faint); }
.qplay { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 10px; min-height: 36px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(47,107,255,.2); box-shadow: inset 0 0 0 1px rgba(107,161,255,.4); transition: background .25s, box-shadow .25s, transform .3s var(--ease); }
.qplay svg { width: 14px; height: 14px; }
.qplay:hover { background: rgba(47,107,255,.34); box-shadow: inset 0 0 0 1px rgba(107,161,255,.6), 0 10px 26px -10px rgba(47,107,255,.8); transform: translateY(-1px); }

.faq-wrap { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: 18px; transition: background .3s, box-shadow .3s; }
.faq-item.open { background: linear-gradient(180deg, rgba(47,107,255,.1), rgba(255,255,255,.03)); box-shadow: inset 0 0 0 1px rgba(107,161,255,.25), 0 30px 60px -40px rgba(47,107,255,.5); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; min-height: 64px; text-align: left;
  font-family: var(--font-space), sans-serif; font-size: 16.5px; font-weight: 600; letter-spacing: -.01em; border-radius: 18px; }
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--accent-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .45s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { height: 0; overflow: hidden; }
.faq-a > div { padding: 0 22px 20px; opacity: 0; }
.faq-a p { font-size: 15px; line-height: 1.65; color: var(--muted); }

/* video dialog (Magic UI HeroVideoDialog port) */
.vdialog { padding: 0; border: 0; background: transparent; max-width: none; max-height: none; overflow: visible; }
.vdialog::backdrop { background: rgba(6,6,22,.62); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.vd-frame { position: relative; width: min(960px, 92vw); aspect-ratio: 16 / 9; border-radius: 18px; background: #000; box-shadow: 0 0 0 1.5px rgba(255,255,255,.6), 0 40px 120px -30px rgba(47,107,255,.6); }
.vd-box, .vd-box video, .vd-box mux-player { width: 100%; height: 100%; border-radius: 18px; overflow: hidden; display: block; }
.vd-close { position: absolute; top: -54px; right: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.vd-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

@media (max-width: 960px) { .metrics, .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) {
  .proof-s { padding-top: 84px; }
  .metrics, .quotes { grid-template-columns: 1fr; }
  .qcard-lg { grid-column: auto; padding: 24px 22px 20px; }
  .mcard { min-height: 0; }
  .sec-head-sm { margin-top: 72px; }
  .faq-q { padding: 18px; font-size: 15.5px; }
  .faq-a > div { padding: 0 18px 18px; }
}

/* ---------- close ---------- */
.close { padding: 92px 24px 104px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.close-portrait { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; padding: 2px;
  background: linear-gradient(140deg, #6BA1FF, #2F6BFF 45%, #14116F); box-shadow: 0 16px 40px -14px rgba(47,107,255,.7); }
.close-line { font-family: var(--font-space), sans-serif; font-weight: 600; font-size: clamp(22px, 3.2vw, 30px); letter-spacing: -0.01em; margin-top: 8px; }
.sig { font-size: 30px; color: var(--accent-2); line-height: 1; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 52px 0 84px; }
  .ticket { max-width: 520px; width: 100%; }
}
@media (max-width: 600px) {
  .wrap-wide { padding: 0 20px; }
  .wrap { padding: 0 16px; }
  .mini-prep > span span { display: none; }
  .hero-grid { padding-top: 40px; }
  .ticket { padding: 20px 20px 18px; border-radius: 24px; }
  .t-status { position: absolute; top: 0; right: 0; padding: 5px 9px; font-size: 10px; } /* relative to .t-head */
  .t-who { padding-top: 30px; }
  .t-perf { margin: 20px -20px; }
  .unit b { font-size: 26px; }
  .steps-head, .done-banner { margin-left: 0; }
  .step { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
  .ind { width: 32px; height: 32px; }
  .ind .check { width: 16px; height: 16px; }
  .line { top: 56px; }
  .rail { padding-top: 22px; }
  .card-head { padding: 20px 18px; }
  .card-body .inner { padding: 0 18px 20px; }
  .poster-copy { left: 18px; top: 16px; right: 40%; gap: 6px; }
  .poster-title { font-size: 16px; }
  .poster-by { display: none; }
  .play { width: 84px; height: 84px; margin: -42px 0 0 -42px; }
  .play-core { width: 58px; height: 58px; }
  .dur { left: 18px; bottom: 14px; }
  .btn-primary { width: 100%; }
  .kbd-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .rise, .rise-ticket { animation: none; }
  .js .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .blob, .beam::after, .shine, .step[data-status="active"] .ind::after, .hero-badge-dot::before, .t-online::before { animation: none; }
  .beam { display: none; }
}

/* ======================================================================
   v4 polish (Lukas picked 2026-09-10): scroll progress, sticky mini-header,
   ticket tilt + glare (Motion tilt-card), word reveal, rolling digits,
   step toasts (shadcn Sonner look), definition tooltips (shadcn Tooltip).
   All CSS-driven where possible so nothing depends on the Motion CDN.
   ====================================================================== */

/* scroll progress: V3 progress motif, electric -> soft blue */
.scrollbar { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 300; pointer-events: none; transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 12px rgba(47,107,255,.75); will-change: transform; }

/* sticky mini-header: slides in once the hero is gone */
.mini-head { position: fixed; top: 14px; left: 50%; z-index: 250; display: flex; align-items: center; gap: 14px; padding: 6px 6px 6px 16px; border-radius: 999px; color: #fff;
  background: rgba(10,12,34,.64); backdrop-filter: blur(22px) saturate(1.3); -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: 0 18px 50px -20px rgba(0,0,0,.85), inset 0 0 0 1px rgba(255,255,255,.1), inset 0 1px 0 rgba(255,255,255,.14);
  transform: translate(-50%, -150%); opacity: 0; transition: transform .6s var(--ease), opacity .35s; will-change: transform, opacity; }
.mini-head.show { transform: translate(-50%, 0); opacity: 1; }
.mh-logo { display: inline-flex; align-items: center; gap: 8px; font: 700 14px/1 var(--font-space), sans-serif; letter-spacing: .03em; }
.mh-logo img { height: 24px; width: auto; }
.mh-sep { width: 1px; height: 20px; background: rgba(255,255,255,.14); }
.mh-prep { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.74); white-space: nowrap; }
.mh-prep b { color: #fff; font-weight: 600; }
.mh-prep svg { width: 20px; height: 20px; transform: rotate(-90deg); }
.mh-cta { display: inline-flex; align-items: center; gap: 7px; padding: 10px 15px; min-height: 38px; border-radius: 999px; background: #fff; color: var(--brand);
  font: 600 13px/1 var(--font-montserrat), sans-serif; transition: box-shadow .3s, transform .3s var(--ease); }
.mh-cta:hover { box-shadow: 0 10px 30px -10px rgba(47,107,255,.85); transform: translateY(-1px); }
.mh-cta svg { width: 14px; height: 14px; }
@media (max-width: 600px) { .mh-logo span, .mh-sep { display: none; } .mini-head { gap: 10px; padding-left: 10px; } }

/* ticket tilt (Motion tilt-card) + glare following the pointer */
.ticket { transform-style: preserve-3d; will-change: transform; }
.t-glare { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 5; opacity: 0; transition: opacity .45s var(--ease);
  background: radial-gradient(460px circle at var(--gx, 50%) var(--gy, 0%), rgba(255,255,255,.17), rgba(157,187,255,.06) 30%, rgba(255,255,255,0) 55%); mix-blend-mode: screen; }
.ticket.tilting .t-glare { opacity: 1; }

/* word reveal: blur-in stagger, per word (delay set inline by JS) */
.js .split:not(.is-split) { opacity: 0; }
.split .w { display: inline-block; opacity: 0; filter: blur(14px); transform: translateY(.35em); will-change: transform, opacity, filter; }
.split.words-in .w { animation: wordIn .9s var(--ease) both; animation-delay: var(--wd, 0s); }
@keyframes wordIn { to { opacity: 1; filter: blur(0); transform: none; } }

/* rolling digits (odometer): one column per digit, settles back to static text */
.roll { display: inline-flex; align-items: baseline; }
.roll .dg { display: inline-block; height: 1em; line-height: 1; overflow: hidden; vertical-align: -.12em; }
.roll .dg > span { display: flex; flex-direction: column; transform: translateY(0); transition: transform var(--rd, 1.2s) var(--ease); will-change: transform; }
.roll .dg > span > i { display: block; height: 1em; font-style: normal; }
/* digit cells are <i>: beat `.unit i` (the small d/h/m labels) so digits keep the big type */
.roll .dg i { font: inherit; font-style: normal; font-size: 1em; line-height: 1; color: inherit; letter-spacing: inherit; }
.mval.rolling { background: none; -webkit-background-clip: border-box; background-clip: border-box; color: #fff; }
.unit b.roll .dg { vertical-align: -.1em; }

/* toasts (shadcn Sonner look, glass on the popover surface) */
.toaster { position: fixed; left: 50%; bottom: 22px; z-index: 260; transform: translateX(-50%); width: min(380px, calc(100vw - 32px));
  display: flex; flex-direction: column-reverse; align-items: stretch; gap: 8px; pointer-events: none; }
.toast { pointer-events: auto; display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px; color: #fff;
  background: rgba(12,14,38,.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 22px 50px -18px rgba(0,0,0,.85), inset 0 0 0 1px rgba(255,255,255,.1), inset 0 1px 0 rgba(255,255,255,.12); will-change: transform, opacity; }
.toast .tc-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); box-shadow: 0 8px 20px -6px rgba(47,107,255,.95); }
.toast .tc-ic svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.toast .tc-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.toast b { font-family: var(--font-space), sans-serif; font-weight: 600; font-size: 14.5px; }
.toast .tc-sub { font-size: 12.5px; color: rgba(255,255,255,.6); }
.toast .tc-dots { display: inline-flex; gap: 4px; }
.toast .tc-dots i { width: 14px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.16); }
.toast .tc-dots i.on { background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 8px rgba(47,107,255,.8); }

/* definition tooltips (shadcn Tooltip: inverted surface, arrow, zoom-in) */
.tip-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: help; background: none; border: 0; padding: 0; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; text-align: left; }
.tip-i { flex-shrink: 0; width: 13px; height: 13px; border-radius: 50%; display: inline-grid; place-items: center; font: 600 9px/1 var(--font-montserrat), sans-serif; letter-spacing: 0;
  color: rgba(255,255,255,.6); box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); transition: color .2s, box-shadow .2s; }
.tip-trigger:hover .tip-i, .tip-trigger:focus-visible .tip-i { color: #fff; box-shadow: inset 0 0 0 1px var(--accent-2); }
.tip { position: fixed; z-index: 400; max-width: 260px; padding: 8px 12px; border-radius: 8px; background: #fff; color: var(--brand);
  font: 500 12.5px/1.45 var(--font-montserrat), sans-serif; letter-spacing: 0; text-transform: none; text-wrap: balance;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.65); pointer-events: none; opacity: 0; transform: translateY(4px) scale(.95); transform-origin: var(--ax, 50%) 100%;
  transition: opacity .14s, transform .2s var(--ease); }
.tip.show { opacity: 1; transform: none; }
.tip::after { content: ""; position: absolute; left: var(--ax, 50%); bottom: -4px; width: 9px; height: 9px; background: #fff; border-radius: 2px; transform: translateX(-50%) rotate(45deg); }

@media (prefers-reduced-motion: reduce) {
  .split .w { opacity: 1; filter: none; transform: none; animation: none !important; }
  .js .split:not(.is-split) { opacity: 1; }
  .roll .dg > span { transition: none; }
  .mini-head { transition: opacity .2s; }
  .ticket { transform: none !important; }
}
