/* ============================================================
   NightOut — LAUNCH site. App-forward, animated. Brand DNA.
   ============================================================ */

:root {
  --violet: #7358E8;
  --violet-bright: #9B7FFF;
  --violet-deep: #4C1D95;
  --grad: linear-gradient(135deg, #A47BFF 0%, #7C3AED 50%, #4C1D95 100%);

  --bg: #08080B;
  --bg-2: #0B0B0F;
  --surface: #111111;
  --surface-2: #161616;
  --border: #1E1E1E;
  --border-2: #2A2A2A;

  --text: #F6F6F8;
  --dim: #9A9AA3;
  --faint: #5B5B63;
  --green: #34D6A0;

  --r-card: 16px;
  --r-input: 12px;
  --r-pill: 100px;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden;
}
::selection { background: var(--violet); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1c1c22; border-radius: 100px; border: 2px solid var(--bg); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; }

/* ── Type ───────────────────────────────────────────────────── */
.display { font-size: clamp(48px, 9vw, 132px); font-weight: 900; letter-spacing: -0.05em; line-height: 0.9; margin: 0; }
.h1 { font-size: clamp(34px, 5vw, 64px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.02; margin: 0; }
.h2 { font-size: clamp(27px, 3.6vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; margin: 0; }
.h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; margin: 0; }
.body { font-size: clamp(15px, 1.15vw, 18px); font-weight: 400; line-height: 1.65; color: var(--dim); margin: 0; }
.lead { font-size: clamp(17px, 1.45vw, 22px); font-weight: 400; line-height: 1.58; color: var(--dim); margin: 0; }
.cap { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--violet-bright); margin: 0; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { position: relative; }
.sec-pad { padding-top: clamp(72px, 11vw, 150px); padding-bottom: clamp(72px, 11vw, 150px); }
.eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.eyebrow-row .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet-bright); box-shadow: 0 0 12px 1px var(--violet-bright); }
.divider { border: none; border-top: 0.5px solid var(--border); margin: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em; border-radius: var(--r-pill);
  padding: 15px 26px; cursor: pointer; border: none;
  transition: transform .18s var(--ease), background .2s ease-out, border-color .2s ease-out, opacity .2s; will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: #8169ee; }
.btn-ghost { background: transparent; color: var(--text); border: 0.5px solid var(--border-2); }
.btn-ghost:hover { border-color: #3a3a42; background: rgba(255,255,255,0.02); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* store badges */
.store-badge {
  display: inline-flex; align-items: center; gap: 11px; padding: 11px 20px 11px 16px;
  background: var(--surface); border: 0.5px solid var(--border-2); border-radius: 14px;
  cursor: pointer; transition: border-color .2s, transform .18s var(--ease); will-change: transform;
}
.store-badge:hover { border-color: #3a3a42; }
.store-badge:active { transform: scale(0.97); }
.store-badge .s1 { font-size: 10.5px; color: var(--dim); line-height: 1; }
.store-badge .s2 { font-size: 16px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-top: 3px; }
.store-badge .soon { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet-bright); border: 0.5px solid rgba(155,127,255,0.3); border-radius: 5px; padding: 2px 5px; margin-left: 4px; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease; border-bottom: 0.5px solid transparent; }
.nav.scrolled { background: rgba(8,8,11,0.72); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .wordmark { font-size: 19px; font-weight: 800; letter-spacing: -0.04em; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--dim); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 6px; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ── Hero ───────────────────────────────────────────────────── */
.hero { position: relative; padding-top: 120px; padding-bottom: clamp(48px, 7vw, 96px); overflow: hidden; }
.aurora { position: absolute; inset: -20% -10% auto -10%; height: 130vh; z-index: 0; pointer-events: none; }
.aurora .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; will-change: transform; }
.aurora .b1 { width: 620px; height: 620px; left: 4%; top: -10%; background: radial-gradient(circle, #7C3AED 0%, transparent 68%); animation: drift1 22s var(--ease) infinite alternate; }
.aurora .b2 { width: 560px; height: 560px; right: 2%; top: 6%; background: radial-gradient(circle, #4C1D95 0%, transparent 66%); animation: drift2 26s var(--ease) infinite alternate; }
.aurora .b3 { width: 480px; height: 480px; left: 38%; top: 36%; background: radial-gradient(circle, #A47BFF 0%, transparent 70%); opacity: 0.3; animation: drift3 30s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(120px, 80px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-100px, 60px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-80px, -70px) scale(1.2); } }
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 10%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 80% at 50% 10%, #000 0%, transparent 72%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(115,88,232,0.08);
  border: 0.5px solid rgba(155,127,255,0.28); border-radius: var(--r-pill); padding: 7px 15px 7px 11px;
  margin-bottom: 28px; font-size: 12.5px; font-weight: 600; color: var(--violet-bright);
}
.hero-eyebrow .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52,214,160,0.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,214,160,0.5); } 70% { box-shadow: 0 0 0 9px rgba(52,214,160,0); } 100% { box-shadow: 0 0 0 0 rgba(52,214,160,0); } }
.hero h1 { max-width: 12ch; }
.hero .lead { max-width: 44ch; margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-note { margin-top: 22px; color: var(--faint); font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
@media (max-width: 940px) { .hero-grid .phone-stage { order: -1; } }

/* ── Phone device ───────────────────────────────────────────── */
.phone-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 600px; }
.phone-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, #7C3AED 0%, transparent 64%); filter: blur(75px); opacity: 0.42; z-index: 0; }
.phone {
  position: relative; z-index: 1; width: 312px; height: 640px; border-radius: 48px; padding: 9px;
  background: #050507; border: 1px solid #232329; box-shadow: 0 44px 120px -28px rgba(0,0,0,0.92), inset 0 0 0 2px #0c0c10;
}
.phone .screen { width: 100%; height: 100%; border-radius: 40px; overflow: hidden; background: var(--bg); position: relative; }
.phone .island { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 27px; background: #000; border-radius: 100px; z-index: 50; }

/* hint pill above demo phone */
.demo-hint {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--violet); color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em;
  padding: 8px 15px; border-radius: var(--r-pill); box-shadow: 0 10px 30px -8px rgba(115,88,232,0.7);
  animation: hintbob 2.6s var(--ease) infinite;
}
.demo-hint::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--violet); border-radius: 2px; }
@keyframes hintbob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } }

/* ════════════ APP DEMO (inside phone) ════════════ */
.app { position: absolute; inset: 0; display: flex; flex-direction: column; background: var(--bg); font-size: 14px; }
.app-scroll { flex: 1; overflow-y: auto; overflow-x: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.app-scroll::-webkit-scrollbar { width: 0; height: 0; }
.app-statusbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 22px 6px; font-size: 12px; font-weight: 700; flex: none; }
.app-statusbar .sigs { display: flex; gap: 5px; align-items: center; opacity: 0.9; }

/* screens fade/slide */
.scr { animation: scrIn .32s var(--ease); }
@keyframes scrIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.scr-over { animation: overIn .34s var(--ease); }
@keyframes overIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }

/* app pieces */
.a-topbar { display: flex; align-items: center; gap: 10px; padding: 4px 18px 10px; }
.a-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--text); background: var(--surface); border: 0.5px solid var(--border-2); border-radius: 100px; padding: 7px 12px; }
.a-iconbtn { width: 34px; height: 34px; border-radius: 50%; background: var(--surface); border: 0.5px solid var(--border-2); display: grid; place-items: center; color: var(--dim); cursor: pointer; }
.a-iconbtn:active { transform: scale(0.94); }
.a-hello { padding: 2px 18px 0; }
.a-hello .ttl { font-size: 26px; font-weight: 900; letter-spacing: -0.05em; line-height: 1.02; }
.a-hello .live { display: flex; align-items: center; gap: 7px; margin-top: 11px; font-size: 12.5px; font-weight: 700; color: var(--green); letter-spacing: -0.01em; }
.a-hello .live .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.a-chips { display: flex; gap: 7px; padding: 16px 18px 0; overflow-x: auto; scrollbar-width: none; }
.a-chips::-webkit-scrollbar { display: none; }
.a-chip { flex: none; font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--dim); background: var(--surface); border: 0.5px solid var(--border-2); border-radius: 100px; padding: 8px 14px; cursor: pointer; white-space: nowrap; transition: background .18s, color .18s, border-color .18s; }
.a-chip.on { background: var(--violet); color: #fff; border-color: var(--violet); }
.a-search { margin: 14px 18px 0; display: flex; align-items: center; gap: 9px; background: var(--surface); border: 0.5px solid var(--border-2); border-radius: 12px; padding: 11px 13px; color: var(--faint); font-size: 13px; }

.a-sectlabel { display: flex; align-items: center; justify-content: space-between; padding: 22px 18px 12px; }
.a-sectlabel .l { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.a-sectlabel .a { font-size: 12.5px; font-weight: 700; color: var(--violet-bright); display: inline-flex; align-items: center; gap: 4px; }

/* event card */
.a-card { margin: 0 18px 12px; border-radius: 16px; overflow: hidden; border: 0.5px solid var(--border); background: var(--surface); cursor: pointer; transition: border-color .2s, transform .16s var(--ease); }
.a-card:active { transform: scale(0.985); }
.a-card.feature { margin-top: 18px; }
.a-card .art { position: relative; height: 168px; }
.a-card.row { display: flex; height: 92px; }
.a-card.row .art { width: 92px; height: 92px; flex: none; }
.a-card.row .info { flex: 1; padding: 12px 13px; display: flex; flex-direction: column; justify-content: center; }
.art-tint { position: absolute; inset: 0; background: var(--violet); opacity: 0.06; }
.art-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(8,8,11,0.78) 100%); }
.a-badge { position: absolute; top: 11px; left: 11px; display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em; background: rgba(8,8,11,0.55); backdrop-filter: blur(6px); border: 0.5px solid rgba(255,255,255,0.14); padding: 5px 10px; border-radius: 100px; }
.a-badge.feat { color: var(--violet-bright); }
.a-heart { position: absolute; top: 9px; right: 9px; width: 34px; height: 34px; border-radius: 50%; background: rgba(8,8,11,0.5); backdrop-filter: blur(6px); display: grid; place-items: center; cursor: pointer; border: 0.5px solid rgba(255,255,255,0.1); }
.a-heart svg { transition: transform .18s var(--ease); }
.a-heart:active svg { transform: scale(0.8); }
.a-card .feat-info { position: absolute; left: 14px; right: 14px; bottom: 13px; }
.a-card .info .t { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.a-card.row .info .t { font-size: 14.5px; }
.a-card .info .sub { font-size: 11.5px; color: var(--violet-bright); font-weight: 600; margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.a-card .info .metarow { display: flex; align-items: center; gap: 8px; margin-top: 11px; }
.a-pill { font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 100px; background: rgba(8,8,11,0.6); border: 0.5px solid rgba(255,255,255,0.12); }
.a-pill.solid { background: var(--violet); border-color: var(--violet); }
.a-dist { font-size: 12px; color: var(--violet-bright); font-weight: 700; }

/* ── detail screen ── */
.d-hero { position: relative; height: 252px; }
.d-back { position: absolute; top: 50px; left: 16px; z-index: 6; width: 38px; height: 38px; border-radius: 50%; background: rgba(8,8,11,0.55); backdrop-filter: blur(8px); border: 0.5px solid rgba(255,255,255,0.12); display: grid; place-items: center; cursor: pointer; }
.d-back:active { transform: scale(0.92); }
.d-herotext { position: absolute; left: 18px; right: 18px; bottom: 16px; }
.d-herotext .t { font-size: 27px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.02; }
.d-herotext .v { font-size: 13px; color: var(--violet-bright); font-weight: 700; margin-top: 7px; display: flex; align-items: center; gap: 6px; }
.d-body { padding: 18px; }
.d-orginfo { display: flex; align-items: center; gap: 11px; padding-bottom: 16px; border-bottom: 0.5px solid var(--border); }
.d-orginfo .av { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #fff; }
.d-orginfo .nm { font-size: 14px; font-weight: 700; }
.d-orginfo .rl { font-size: 11.5px; color: var(--dim); margin-top: 2px; }
.d-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 16px 0; }
.d-fact .l { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); display: flex; align-items: center; gap: 6px; }
.d-fact .v { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; margin-top: 6px; }
.d-section-t { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin: 8px 0 12px; }
.d-lineup { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 8px; }
.d-lineup .row { display: flex; align-items: center; gap: 13px; background: var(--surface); padding: 14px 15px; }
.d-lineup .tm { font-size: 12px; font-weight: 700; color: var(--violet-bright); background: rgba(115,88,232,0.12); border-radius: 100px; padding: 5px 11px; }
.d-lineup .ar { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }

/* sticky buy bar */
.d-buybar { flex: none; padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); border-top: 0.5px solid var(--border); background: var(--bg-2); display: flex; align-items: center; gap: 14px; }
.d-buybar .from { flex: 1; }
.d-buybar .from .l { font-size: 10.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.d-buybar .from .p { font-size: 19px; font-weight: 900; letter-spacing: -0.03em; margin-top: 3px; }
.d-buybar .cta { background: var(--violet); color: #fff; font-size: 14px; font-weight: 800; letter-spacing: -0.01em; border: none; border-radius: 100px; padding: 14px 24px; cursor: pointer; transition: transform .16s var(--ease), background .2s; }
.d-buybar .cta:active { transform: scale(0.96); }

/* ── buy screen ── */
.b-head { display: flex; align-items: center; gap: 12px; padding: 50px 16px 14px; }
.b-head .t { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; }
.b-tickets { padding: 4px 18px 0; display: flex; flex-direction: column; gap: 12px; }
.b-trow { border: 0.5px solid var(--border-2); border-radius: 14px; padding: 15px; display: flex; align-items: center; gap: 12px; transition: border-color .2s, background .2s; }
.b-trow.active { border-color: var(--violet); background: rgba(115,88,232,0.05); }
.b-trow .ti .nm { font-size: 14.5px; font-weight: 800; letter-spacing: -0.02em; }
.b-trow .ti .pr { font-size: 13px; font-weight: 700; color: var(--violet-bright); margin-top: 4px; }
.b-trow .ti .av { font-size: 11px; color: var(--faint); margin-top: 3px; }
.b-step { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.b-step button { width: 32px; height: 32px; border-radius: 50%; background: var(--surface-2); border: 0.5px solid var(--border-2); color: var(--text); font-size: 18px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: transform .14s var(--ease), background .2s, opacity .2s; }
.b-step button:active { transform: scale(0.9); }
.b-step button:disabled { opacity: 0.32; cursor: default; }
.b-step button.plus { background: var(--violet); border-color: var(--violet); color: #fff; }
.b-step .q { font-size: 16px; font-weight: 800; min-width: 16px; text-align: center; }
.b-terms { margin: 18px 18px 0; padding: 15px; background: var(--surface); border: 0.5px solid var(--border); border-radius: 14px; }
.b-terms .note { font-size: 11.5px; color: var(--dim); line-height: 1.5; }
.b-check { display: flex; align-items: center; gap: 11px; margin-top: 14px; cursor: pointer; }
.b-check .box { width: 22px; height: 22px; border-radius: 7px; border: 1.5px solid var(--border-2); flex: none; display: grid; place-items: center; transition: background .18s, border-color .18s; }
.b-check.on .box { background: var(--violet); border-color: var(--violet); }
.b-check .box svg { opacity: 0; transition: opacity .18s; }
.b-check.on .box svg { opacity: 1; }
.b-check .lbl { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.b-summary { flex: none; padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); border-top: 0.5px solid var(--border); background: var(--bg-2); }
.b-breakdown { font-size: 11px; color: var(--faint); line-height: 1.5; margin-bottom: 10px; }
.b-totalrow { display: flex; align-items: center; gap: 14px; }
.b-totalrow .tot .l { font-size: 10.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.b-totalrow .tot .v { font-size: 24px; font-weight: 900; letter-spacing: -0.04em; margin-top: 2px; }
.b-totalrow .cta { margin-left: auto; background: var(--violet); color: #fff; font-size: 14px; font-weight: 800; border: none; border-radius: 100px; padding: 15px 26px; cursor: pointer; transition: transform .16s var(--ease), opacity .2s, background .2s; }
.b-totalrow .cta:disabled { opacity: 0.4; cursor: default; }
.b-totalrow .cta:not(:disabled):active { transform: scale(0.96); }

/* ── ticket screen ── */
.t-wrap { padding: 56px 18px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 100%; }
.t-success { width: 64px; height: 64px; border-radius: 50%; background: rgba(52,214,160,0.12); display: grid; place-items: center; color: var(--green); margin-bottom: 18px; animation: pop .5s var(--ease); }
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.t-wrap .ttl { font-size: 22px; font-weight: 900; letter-spacing: -0.04em; }
.t-wrap .sub { font-size: 13px; color: var(--dim); margin-top: 8px; max-width: 26ch; }
.t-card { width: 100%; margin-top: 24px; background: var(--surface); border: 0.5px solid var(--border); border-radius: 18px; overflow: hidden; text-align: left; }
.t-card .top { padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.t-card .top .ic { width: 44px; height: 44px; border-radius: 11px; flex: none; }
.t-card .top .nm { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; }
.t-card .top .mt { font-size: 11.5px; color: var(--dim); margin-top: 3px; }
.t-perf { border-top: 0.5px dashed var(--border-2); border-bottom: 0.5px dashed var(--border-2); position: relative; padding: 22px 18px; display: flex; justify-content: center; }
.t-perf::before, .t-perf::after { content: ''; position: absolute; top: -9px; width: 18px; height: 18px; border-radius: 50%; background: var(--bg); }
.t-perf::before { left: -9px; } .t-perf::after { right: -9px; }
.qr { width: 130px; height: 130px; display: grid; grid-template-columns: repeat(11, 1fr); grid-template-rows: repeat(11, 1fr); gap: 2px; padding: 9px; background: #fff; border-radius: 12px; }
.qr i { background: #0a0a0a; border-radius: 1px; }
.qr i.off { background: transparent; }
.t-card .foot { padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.t-card .foot .l { font-size: 10.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.t-card .foot .code { font-size: 14px; font-weight: 800; letter-spacing: 0.04em; }
.t-card .foot .status { font-size: 11.5px; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.t-restart { margin-top: 22px; font-size: 13px; font-weight: 700; color: var(--violet-bright); cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }

/* ── bottom nav ── */
.a-nav { flex: none; display: flex; justify-content: space-around; padding: 11px 6px calc(20px + env(safe-area-inset-bottom)); border-top: 0.5px solid var(--border); background: var(--bg-2); }
.a-nav .ni { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--faint); cursor: pointer; transition: color .2s; padding: 2px 4px; }
.a-nav .ni.on { color: var(--text); }
.a-nav .ni .accdot { width: 4px; height: 4px; border-radius: 50%; background: transparent; }
.a-nav .ni.on .accdot { background: var(--violet-bright); }

/* ── Feature strip ──────────────────────────────────────────── */
.sec-head { max-width: 740px; margin-bottom: clamp(44px, 6vw, 76px); }
.sec-head .h2 { margin-top: 18px; }
.sec-head .body { margin-top: 20px; max-width: 56ch; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .body { margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow-row { justify-content: center; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 920px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--r-card); padding: 26px; position: relative; overflow: hidden; transition: border-color .3s, transform .3s var(--ease); }
.feat:hover { border-color: rgba(155,127,255,0.35); transform: translateY(-4px); }
.feat::after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .35s; background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(115,88,232,0.10), transparent 60%); }
.feat:hover::after { opacity: 1; }
.feat .ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px; background: rgba(115,88,232,0.10); border: 0.5px solid rgba(155,127,255,0.22); color: var(--violet-bright); }
.feat h3 { margin-bottom: 9px; }
.feat .body { font-size: 14.5px; }

/* ── How it works ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--r-card); padding: 30px; position: relative; }
.step .n { font-size: 13px; font-weight: 800; color: var(--violet-bright); letter-spacing: 0.1em; }
.step .bar { height: 2px; background: var(--border-2); border-radius: 2px; margin: 16px 0 22px; overflow: hidden; }
.step .bar i { display: block; height: 100%; width: 0; background: var(--grad); }
.step h3 { margin-bottom: 10px; }

/* ── Costs ──────────────────────────────────────────────────── */
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 820px) { .cost-grid { grid-template-columns: 1fr; } }
.cost {
  background: var(--surface); border: 0.5px solid var(--border-2); border-radius: 22px; padding: clamp(28px, 3.6vw, 44px);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.cost.hl { border-color: rgba(155,127,255,0.4); }
.cost .ribbon { position: absolute; top: 0; right: 0; width: 260px; height: 260px; background: radial-gradient(circle at top right, rgba(124,58,237,0.22), transparent 60%); pointer-events: none; }
.cost .kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: var(--violet-bright); }
.cost .who { font-size: 13px; color: var(--dim); margin-top: 6px; }
.cost .figure { display: flex; align-items: baseline; gap: 10px; margin: 22px 0 6px; position: relative; z-index: 1; }
.cost .figure .big { font-size: clamp(44px, 6vw, 64px); font-weight: 900; letter-spacing: -0.05em; line-height: 1; }
.cost .figure .unit { font-size: 15px; color: var(--dim); font-weight: 600; }
.cost .figsub { font-size: 13.5px; color: var(--dim); position: relative; z-index: 1; }
.cost .clist { list-style: none; margin: 24px 0 0; padding: 22px 0 0; border-top: 0.5px solid var(--border); display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.cost .clist li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; }
.cost .clist .tick { flex: none; width: 21px; height: 21px; border-radius: 50%; background: rgba(52,214,160,0.12); display: grid; place-items: center; color: var(--green); margin-top: 1px; }
.cost .clist .muted { color: var(--dim); }
.cost .foot-note { margin-top: 24px; font-size: 12px; color: var(--faint); line-height: 1.5; }

/* fee breakdown mini-widget */
.fee-demo { margin-top: 22px; background: var(--surface-2); border: 0.5px solid var(--border); border-radius: 14px; padding: 16px; position: relative; z-index: 1; }
.fee-demo .row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 5px 0; color: var(--dim); }
.fee-demo .row.total { border-top: 0.5px solid var(--border); margin-top: 6px; padding-top: 11px; color: var(--text); font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }
.fee-demo .row .v { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.fee-demo .row .v.accent { color: var(--violet-bright); }

/* ── CTA finale ─────────────────────────────────────────────── */
.cta-final { position: relative; overflow: hidden; border-radius: 28px; border: 0.5px solid var(--border-2); background: var(--surface); padding: clamp(48px, 7vw, 92px) var(--pad); text-align: center; }
.cta-final .glow { position: absolute; left: 50%; top: -42%; transform: translateX(-50%); width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, #7C3AED 0%, transparent 62%); filter: blur(82px); opacity: 0.45; pointer-events: none; }
.cta-final .inner { position: relative; z-index: 1; }
.cta-final .h1 { max-width: 16ch; margin: 0 auto; }
.cta-final .lead { max-width: 46ch; margin: 22px auto 0; }
.cta-final .acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 38px; }

/* waitlist form */
.waitlist { display: flex; gap: 10px; max-width: 460px; margin: 32px auto 0; }
.waitlist input { flex: 1; background: var(--bg); border: 0.5px solid var(--border-2); border-radius: var(--r-pill); padding: 15px 22px; color: var(--text); font: inherit; font-size: 15px; outline: none; transition: border-color .2s; }
.waitlist input:focus { border-color: var(--violet); }
.waitlist input::placeholder { color: var(--faint); }
@media (max-width: 520px) { .waitlist { flex-direction: column; } }
.waitlist-ok { margin: 32px auto 0; max-width: 460px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--green); font-weight: 700; font-size: 15px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { border-top: 0.5px solid var(--border); padding: clamp(48px, 6vw, 80px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
.footer-brand .body { margin-top: 18px; max-width: 32ch; font-size: 14px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); margin: 0 0 18px; font-weight: 700; }
.footer-col a { display: block; color: var(--dim); font-size: 14.5px; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; border-top: 0.5px solid var(--border); color: var(--faint); font-size: 13px; flex-wrap: wrap; gap: 14px; }

/* ── Reveal ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .aurora .blob, .hero-eyebrow .pulse, .demo-hint, .t-success { animation: none !important; }
}
