:root {
  --bg: #0a0a0b;
  --bg-soft: #121214;
  --card: #16161a;
  --card-hi: #1d1d22;
  --line: rgba(255, 255, 255, 0.08);
  --line-hi: rgba(255, 255, 255, 0.14);
  --text: #f4f4f6;
  --muted: #a1a1aa;
  --muted-dim: #71717a;
  --accent: #ec1e5c;
  --accent-2: #ff5b8d;
  --accent-glow: rgba(236, 30, 92, 0.45);
  --good: #38e08e;
  --radius: 20px;
  --max: 1180px;
}
:root[data-theme="light"] {
  --bg: #fafafb;
  --bg-soft: #f1f1f4;
  --card: #ffffff;
  --card-hi: #f5f5f8;
  --line: rgba(10, 10, 15, 0.09);
  --line-hi: rgba(10, 10, 15, 0.16);
  --text: #14141a;
  --muted: #52525b;
  --muted-dim: #8a8a93;
  --accent-glow: rgba(236, 30, 92, 0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s, color 0.4s;
}
img { max-width: 100%; }
h1, h2, h3, .brand-mark { font-family: "Sora", "Inter", sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }

.grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-2) 60%, #ffb199);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Scroll progress + cursor ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px; z-index: 1;
  border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  opacity: 0; transition: opacity 0.3s; filter: blur(10px); mix-blend-mode: screen;
}

/* ---------- Background ---------- */
.bg-canvas { position: fixed; inset: 0; z-index: -4; opacity: 0.5; }
.bg-grid {
  position: fixed; inset: 0; z-index: -3;
  background-image:
    linear-gradient(rgba(128,128,140,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128,128,140,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 80%);
}
.bg-glow { position: fixed; z-index: -2; border-radius: 50%; filter: blur(120px); opacity: 0.5; pointer-events: none; }
.glow-1 { width: 620px; height: 620px; top: -220px; right: -160px; background: radial-gradient(circle, var(--accent-glow), transparent 70%); animation: float1 16s ease-in-out infinite; }
.glow-2 { width: 520px; height: 520px; bottom: 10%; left: -180px; background: radial-gradient(circle, rgba(120,60,255,0.35), transparent 70%); animation: float2 20s ease-in-out infinite; }
:root[data-theme="light"] .bg-glow { opacity: 0.28; }
@keyframes float1 { 50% { transform: translate(-40px, 60px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(50px, -40px) scale(1.15); } }

/* ---------- Top launch bar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110; height: 38px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(90deg, var(--accent), #c4164c);
  color: #fff; font-size: 0.85rem; font-weight: 500; padding: 0 16px; overflow: hidden;
}
.topbar-live { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.6s infinite; }
#topbarMsg { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 62vw; }
.topbar-cta { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.topbar-cta:hover { opacity: 0.85; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 48px);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s; border-bottom: 1px solid transparent;
}
.nav.scrolled { background: color-mix(in srgb, var(--bg) 72%, transparent); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.brand-mark { font-weight: 800; font-size: 1.35rem; letter-spacing: 0.02em; }
.brand-o { color: var(--accent); }
.brand-logo { display: block; height: 30px; width: auto; }
/* Wordmark letters are white; on the light theme render it as a solid dark mark so it stays legible */
:root[data-theme="light"] .brand-logo { filter: brightness(0); opacity: 0.9; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links > a:hover { color: var(--text); }
.theme-toggle {
  background: var(--card-hi); border: 1px solid var(--line); color: var(--text);
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  cursor: pointer; transition: transform 0.2s, background 0.2s;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.05); }
.theme-toggle .ic-moon { display: none; }
:root[data-theme="light"] .theme-toggle .ic-sun { display: none; }
:root[data-theme="light"] .theme-toggle .ic-moon { display: block; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff !important; padding: 9px 20px; border-radius: 999px; font-weight: 600;
  box-shadow: 0 6px 24px -6px var(--accent-glow); transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -6px var(--accent-glow); }
.nav-cta svg { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 160px clamp(20px, 5vw, 48px) 60px; max-width: var(--max); margin: 0 auto;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(236,30,92,0.1);
  border: 1px solid rgba(236,30,92,0.3); color: var(--accent-2); font-weight: 600; font-size: 0.82rem;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(236,30,92,0.6); } 70% { box-shadow: 0 0 0 10px rgba(236,30,92,0); } 100% { box-shadow: 0 0 0 0 rgba(236,30,92,0); } }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 800; line-height: 1.02; }
.accent-underline { position: relative; white-space: nowrap; }
.accent-underline::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px; background: var(--accent); opacity: 0.35; border-radius: 4px; z-index: -1; transform: skewX(-8deg); }
.hero-sub { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 480px; margin: 24px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Kinetic headline */
.kinetic-word { position: relative; display: inline-grid; }
.kinetic-word .k-old, .kinetic-word .k-new { grid-area: 1 / 1; white-space: nowrap; }
.kinetic-word .k-old { position: relative; }
.kinetic-word .k-old::after { content: ""; position: absolute; left: 0; top: 52%; height: 4px; width: 0; background: var(--accent); border-radius: 2px; }
.kinetic-word .k-new { opacity: 0; transform: translateY(0.4em); }
.kinetic-h1.kinetic-go .k-old::after { animation: strike 0.5s 0.6s ease forwards; }
.kinetic-h1.kinetic-go .k-old { animation: fadeUpOut 0.5s 1.1s ease forwards; }
.kinetic-h1.kinetic-go .k-new { animation: fadeUpIn 0.6s 1.35s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes strike { to { width: 100%; } }
@keyframes fadeUpOut { to { opacity: 0; transform: translateY(-0.4em); } }
@keyframes fadeUpIn { to { opacity: 1; transform: translateY(0); } }

.risk-row { color: var(--muted); font-size: 0.9rem; font-weight: 500; margin-bottom: 30px; }
.risk-row { color: var(--good); }

.trust-bar { display: flex; gap: 26px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); }
.trust b { font-family: "Sora"; font-size: 1.55rem; font-weight: 800; display: block; line-height: 1; }
.trust span { color: var(--muted-dim); font-size: 0.78rem; }

/* ---------- Store buttons ---------- */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px; background: #fff; color: #0a0a0b;
  padding: 12px 22px; border-radius: 14px; font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s; box-shadow: 0 8px 30px -12px rgba(0,0,0,0.6); will-change: transform;
}
.store-btn:hover { box-shadow: 0 14px 40px -12px var(--accent-glow); }
.store-btn span { display: flex; flex-direction: column; line-height: 1.15; font-size: 1.02rem; }
.store-btn small { font-size: 0.66rem; font-weight: 500; opacity: 0.7; letter-spacing: 0.03em; }
.store-btn.small { padding: 10px 18px; font-size: 0.92rem; gap: 9px; }

.hero-stats { display: flex; align-items: center; gap: 22px; margin-top: 40px; }
.stat b { font-family: "Sora"; font-size: 1.7rem; font-weight: 700; display: block; }
.stat span { color: var(--muted-dim); font-size: 0.82rem; }
.stat-divider { width: 1px; height: 34px; background: var(--line-hi); }

/* ---------- Phone ---------- */
.hero-phone { position: relative; display: flex; justify-content: center; perspective: 1400px; }
.phone {
  position: relative; width: 300px; height: 610px; background: linear-gradient(160deg, #1c1c22, #0e0e11);
  border-radius: 42px; padding: 12px; border: 1px solid var(--line-hi);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), inset 0 0 0 2px rgba(255,255,255,0.03);
  transform: rotateY(-14deg) rotateX(4deg); transition: transform 0.3s ease; animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone { 50% { transform: rotateY(-14deg) rotateX(4deg) translateY(-14px); } }
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 110px; height: 24px; background: #050506; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-screen { width: 100%; height: 100%; background: linear-gradient(180deg, #0d0d10, #141418); border-radius: 32px; padding: 44px 16px 16px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
.app-topbar { display: flex; justify-content: space-between; align-items: center; }
.app-logo { font-family: "Sora"; font-weight: 800; font-size: 1.1rem; color: #fff; }
.app-logo .accent { color: var(--accent); }
.app-loc { font-size: 0.72rem; color: #a1a1aa; }
.app-search { background: #1d1d22; color: #71717a; padding: 11px 14px; border-radius: 12px; font-size: 0.78rem; border: 1px solid rgba(255,255,255,0.08); }
.app-chips { display: flex; gap: 8px; }
.chip { font-size: 0.72rem; padding: 6px 13px; border-radius: 999px; background: #1d1d22; color: #a1a1aa; border: 1px solid rgba(255,255,255,0.08); transition: .2s; }
.chip-active { background: var(--accent); color: #fff; border-color: transparent; }
.app-card { display: flex; gap: 11px; background: #16161a; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 10px; transition: transform .2s, border-color .2s; }
.app-card:hover { transform: scale(1.02); border-color: rgba(236,30,92,0.4); }
.app-card-img { width: 62px; height: 62px; border-radius: 12px; flex-shrink: 0; }
.i1 { background: linear-gradient(135deg, #ff6a3d, #ec1e5c); }
.i2 { background: linear-gradient(135deg, #7c4dff, #00c2ff); }
.app-card-body { flex: 1; min-width: 0; }
.app-card-title { font-size: 0.82rem; font-weight: 700; color: #fff; display: flex; justify-content: space-between; gap: 6px; }
.rate { color: #ffc94d; font-size: 0.72rem; white-space: nowrap; }
.app-card-meta { font-size: 0.7rem; color: #71717a; margin: 2px 0 7px; }
.app-slots { display: flex; gap: 6px; }
.slot { font-size: 0.66rem; padding: 4px 9px; border-radius: 8px; background: #1d1d22; color: #a1a1aa; border: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: .18s; }
.slot:hover { border-color: rgba(236,30,92,0.5); }
.slot-on { background: rgba(236,30,92,0.15); color: var(--accent-2); border-color: rgba(236,30,92,0.35); }
.app-book { margin-top: auto; background: var(--accent); color: #fff; border: none; padding: 13px; border-radius: 13px; font-weight: 700; font-size: 0.88rem; cursor: pointer; font-family: inherit; box-shadow: 0 10px 28px -10px var(--accent-glow); transition: transform .15s; }
.app-book:active { transform: scale(0.96); }
.app-success {
  position: absolute; inset: 12px; border-radius: 32px; background: rgba(10,10,14,0.9); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 5;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.app-success.show { opacity: 1; }
.app-success b { color: #fff; font-family: "Sora"; font-size: 1.4rem; }
.app-success span { color: #a1a1aa; font-size: 0.85rem; }
.check-ring svg { width: 76px; height: 76px; }
.check-ring circle { stroke: var(--good); stroke-width: 3; stroke-dasharray: 151; stroke-dashoffset: 151; }
.check-ring path { stroke: var(--good); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.app-success.show circle { animation: draw .5s ease forwards; }
.app-success.show path { animation: draw .4s .35s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.phone-glow { position: absolute; inset: 8% 12%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, var(--accent-glow), transparent 70%); filter: blur(70px); opacity: 0.6; }

.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  background: color-mix(in srgb, var(--card) 92%, transparent); backdrop-filter: blur(8px);
  border: 1px solid var(--line-hi); color: var(--text); font-size: 0.78rem; font-weight: 600;
  padding: 8px 13px; border-radius: 12px; box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5); white-space: nowrap;
  animation: floatChip 5s ease-in-out infinite;
}
.float-chip svg { width: 15px; height: 15px; color: var(--accent-2); flex-shrink: 0; }
.fc-1 { top: 12%; left: -6%; animation-delay: 0s; }
.fc-2 { top: 44%; right: -10%; animation-delay: 1.2s; }
.fc-3 { bottom: 12%; left: -2%; animation-delay: 2.4s; }
@keyframes floatChip { 50% { transform: translateY(-12px); } }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 24px; height: 40px; border: 2px solid var(--line-hi); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.scroll-hint span { width: 4px; height: 8px; border-radius: 4px; background: var(--accent); animation: scroll 1.6s infinite; }
@keyframes scroll { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.2; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; background: var(--bg-soft); }
.marquee-track { display: flex; gap: 34px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { color: var(--muted); font-family: "Sora"; font-weight: 600; font-size: 1.05rem; }
.marquee-track span:nth-child(even) { color: var(--accent); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 48px); position: relative; z-index: 2; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow { display: inline-block; color: var(--accent); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.1; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Compare ---------- */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; max-width: 900px; margin: 0 auto; }
.compare-side { background: linear-gradient(180deg, var(--card), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.compare-side.new { border-color: rgba(236,30,92,0.35); box-shadow: 0 24px 60px -30px var(--accent-glow); }
.compare-tag { font-weight: 700; margin-bottom: 18px; }
.compare-side ul { list-style: none; display: grid; gap: 10px; margin: 18px 0; }
.compare-side li { color: var(--muted); font-size: 0.92rem; padding-left: 22px; position: relative; }
.compare-side.old li::before { content: "✕"; position: absolute; left: 0; color: #ff5b5b; font-weight: 700; }
.compare-side.new li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.queue-viz { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; font-size: 1.4rem; min-height: 60px; }
.queue-viz.solo { gap: 12px; }
.q-person { animation: bob 2s ease-in-out infinite; }
.q-person:nth-child(2){animation-delay:.2s}.q-person:nth-child(3){animation-delay:.4s}.q-person:nth-child(4){animation-delay:.6s}.q-person:nth-child(5){animation-delay:.8s}.q-person:nth-child(6){animation-delay:1s}
@keyframes bob { 50% { transform: translateY(-3px); } }
.q-you { font-size: 0.8rem; font-weight: 700; color: #ff5b5b; }
.q-you.happy { color: var(--good); }
.q-chair { font-size: 0.8rem; font-weight: 700; color: var(--good); }
.compare-vs { align-self: center; font-family: "Sora"; font-weight: 800; color: var(--muted-dim); font-size: 1.1rem; }
.compare-time { display: flex; flex-direction: column; margin-top: 8px; }
.compare-time b { font-family: "Sora"; font-size: 1.8rem; font-weight: 800; color: #ff5b5b; }
.compare-time.good b { color: var(--good); }
.compare-time span { color: var(--muted-dim); font-size: 0.8rem; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: linear-gradient(180deg, var(--card), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: border-color 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; transform-style: preserve-3d; }
.feature-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { border-color: var(--line-hi); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7); }
.feature-card:hover::before { opacity: 1; }
.feature-ic { width: 52px; height: 52px; display: grid; place-items: center; background: rgba(236,30,92,0.1); border: 1px solid rgba(236,30,92,0.22); border-radius: 14px; margin-bottom: 18px; transition: transform .3s; color: var(--accent-2); }
.feature-ic svg { width: 26px; height: 26px; }
.feature-card:hover .feature-ic { transform: translateZ(30px) scale(1.08); }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- How ---------- */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; max-width: 300px; text-align: center; }
.step-num { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; font-family: "Sora"; font-weight: 800; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 50%; box-shadow: 0 12px 30px -10px var(--accent-glow); transition: transform .3s; }
.step:hover .step-num { transform: scale(1.12) rotate(-6deg); }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; }
.step-line { flex: 0.5; min-width: 60px; height: 2px; margin-top: 28px; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0.4; }

/* ---------- Reviews ---------- */
.reviews { display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.reviews::-webkit-scrollbar { display: none; }
.review { flex: 0 0 340px; scroll-snap-align: start; background: linear-gradient(180deg, var(--card), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .3s, border-color .3s; }
.review:hover { transform: translateY(-6px); border-color: var(--line-hi); }
.stars { color: #ffc94d; letter-spacing: 2px; margin-bottom: 12px; }
.rev-ic { width: 46px; height: 46px; display: grid; place-items: center; background: rgba(236,30,92,0.1); border: 1px solid rgba(236,30,92,0.22); border-radius: 12px; margin-bottom: 14px; color: var(--accent-2); }
.rev-ic svg { width: 24px; height: 24px; }
.review .avatar svg { width: 20px; height: 20px; }
.review p { color: var(--text); font-size: 1rem; margin-bottom: 18px; }
.review footer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; }
.a1 { background: linear-gradient(135deg,#ff6a3d,#ec1e5c);} .a2 { background: linear-gradient(135deg,#7c4dff,#00c2ff);} .a3 { background: linear-gradient(135deg,#38e08e,#00c2ff);} .a4 { background: linear-gradient(135deg,#ec1e5c,#ffb199);}
.review footer b { display: block; font-size: 0.95rem; }
.review footer small { color: var(--muted-dim); font-size: 0.8rem; }

/* ---------- Partner ---------- */
.partner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.partner-copy p { color: var(--muted); margin: 16px 0 22px; font-size: 1.05rem; }
.partner-list { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.partner-list li { position: relative; padding-left: 32px; color: var(--text); }
.partner-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; background: rgba(236,30,92,0.15); color: var(--accent-2); border-radius: 50%; font-size: 0.75rem; font-weight: 700; }
.partner-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.partner-visual { display: flex; justify-content: center; perspective: 1200px; }
.dash { width: 100%; max-width: 380px; background: linear-gradient(180deg, var(--card-hi), var(--card)); border: 1px solid var(--line-hi); border-radius: var(--radius); padding: 22px; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7); transition: transform .3s; }
.dash-row { display: flex; justify-content: space-between; align-items: center; }
.dash-head { font-weight: 700; font-size: 1.05rem; margin-bottom: 16px; }
.dash-pill { background: rgba(56,224,142,0.15); color: var(--good); font-size: 0.75rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.dash-item { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.dash-item b { color: var(--text); font-family: "Sora"; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted-dim); flex-shrink: 0; }
.dot.on { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); animation: pulse 2s infinite; }
.dash-tag { margin-left: auto; background: rgba(236,30,92,0.15); color: var(--accent-2); font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 6px; }
.dash-bar { height: 8px; background: var(--card-hi); border-radius: 999px; margin: 18px 0 10px; overflow: hidden; border: 1px solid var(--line); }
.dash-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; transition: width 1.4s ease; }
.dash-bar.fill span { width: var(--w); }
.dash-foot { font-size: 0.85rem; color: var(--muted); }
.dash-foot b { color: var(--text); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; transition: border-color .25s; }
.faq-item[open] { border-color: rgba(236,30,92,0.35); }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 0; font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s; }
.faq-ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ic::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { color: var(--muted); padding: 0 0 18px; font-size: 0.98rem; }

/* ---------- Download ---------- */
.download-card { max-width: var(--max); margin: 0 auto; text-align: center; background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(236,30,92,0.16), transparent 65%), linear-gradient(180deg, var(--card), var(--bg-soft)); border: 1px solid var(--line-hi); border-radius: 28px; padding: clamp(40px, 7vw, 72px) clamp(24px, 6vw, 60px); }
.download-card h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
.download-card > p { color: var(--muted); max-width: 520px; margin: 16px auto 40px; font-size: 1.08rem; }
.download-apps { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.app-col { display: flex; flex-direction: column; gap: 14px; }
.app-col-label { color: var(--muted-dim); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.app-col-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); position: relative; z-index: 2; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 46px clamp(20px, 5vw, 48px) 30px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand .brand-mark { font-size: 1.4rem; }
.footer-brand .brand-logo { height: 34px; }
.footer-brand p { color: var(--muted-dim); font-size: 0.9rem; margin-top: 4px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); text-align: center; padding: 20px; color: var(--muted-dim); font-size: 0.85rem; }

/* ---------- Scroll-driven story ---------- */
.story { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); z-index: 2; }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); }
.story-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; }
.story-phone { animation: none; transform: rotateY(-8deg) rotateX(3deg); }
.story-phone .phone-screen { position: relative; }
.scene { position: absolute; inset: 44px 16px 16px; display: flex; flex-direction: column; gap: 12px; opacity: 0; transform: translateY(16px) scale(0.98); transition: opacity 0.5s, transform 0.5s; pointer-events: none; }
.scene-active { opacity: 1; transform: none; }
.scene-booked { align-items: center; justify-content: center; text-align: center; gap: 10px; }
.scene-booked b { color: #fff; font-family: "Sora"; font-size: 1.5rem; }
.scene-booked .booked-s { color: #a1a1aa; font-size: 0.9rem; }
.booked-chip { margin-top: 10px; background: rgba(56,224,142,0.15); color: var(--good); font-size: 0.8rem; font-weight: 700; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(56,224,142,0.3); }
.svc { display: flex; justify-content: space-between; align-items: center; background: #16161a; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 13px 15px; color: #d4d4d8; font-size: 0.86rem; }
.svc b { color: #fff; }
.svc-on { border-color: rgba(236,30,92,0.4); background: rgba(236,30,92,0.1); }
.pick-label { color: #71717a; font-size: 0.78rem; margin-top: 6px; }
.app-slots.big { flex-wrap: wrap; }
.app-slots.big .slot { font-size: 0.78rem; padding: 8px 12px; }
.i3 { background: linear-gradient(135deg, #38e08e, #00c2ff); }
.check-ring.big svg { width: 92px; height: 92px; }
.scene-booked circle { stroke: var(--good); stroke-width: 3; stroke-dasharray: 151; stroke-dashoffset: 151; }
.scene-booked path { stroke: var(--good); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.scene-booked.scene-active circle { animation: draw .5s ease forwards; }
.scene-booked.scene-active path { animation: draw .4s .35s ease forwards; }
.story-steps { display: flex; flex-direction: column; justify-content: center; gap: 0; }
.story-step { min-height: 62vh; display: flex; flex-direction: column; justify-content: center; opacity: 0.32; transition: opacity 0.4s; }
.story-step.active { opacity: 1; }
.story-num { font-family: "Sora"; font-weight: 800; font-size: 1rem; color: var(--accent); letter-spacing: 0.1em; }
.story-step h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin: 8px 0 12px; }
.story-step p { color: var(--muted); font-size: 1.05rem; max-width: 420px; }

/* ---------- Download QR ---------- */
.download-card {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 6vw, 80px); align-items: center; text-align: left;
}
.download-card > .dl-copy h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
.dl-copy > p { color: var(--muted); max-width: 480px; margin: 16px 0 32px; font-size: 1.08rem; }
.download-apps { display: flex; flex-direction: column; gap: 26px; }
.app-col { align-items: flex-start; }
.app-col-btns { justify-content: flex-start; }
.app-col-btns .store-btn { justify-content: flex-start; }

.dl-qr {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 22px; border-left: 1px solid var(--line);
}
.qr-frame { background: #fff; padding: 16px; border-radius: 20px; box-shadow: 0 24px 55px -22px var(--accent-glow), 0 10px 30px -12px rgba(0,0,0,0.5); }
.qr-frame img { display: block; border-radius: 6px; }
.dl-qr span { color: var(--muted); font-size: 0.88rem; text-align: center; line-height: 1.6; font-weight: 500; }
.dl-qr span b { color: var(--text); }
.qr-scan-ic { width: 20px; height: 20px; color: var(--accent-2); margin-bottom: 4px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: color-mix(in srgb, var(--card) 94%, transparent); backdrop-filter: blur(16px);
  border: 1px solid var(--line-hi); border-radius: 16px; padding: 12px 14px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.6); transform: translateY(140%); transition: transform 0.4s;
}
.sticky-cta.show { transform: none; }
.sticky-txt b { display: block; font-size: 0.98rem; }
.sticky-txt small { color: var(--muted); font-size: 0.78rem; }
.sticky-btn { background: var(--accent); color: #fff; font-weight: 700; padding: 12px 20px; border-radius: 12px; white-space: nowrap; box-shadow: 0 8px 22px -8px var(--accent-glow); }

/* ---------- Exit modal ---------- */
.exit-overlay {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.exit-overlay.show { opacity: 1; pointer-events: auto; }
.exit-modal {
  position: relative; max-width: 420px; width: 100%; text-align: center;
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--line-hi); border-radius: 24px; padding: 40px 32px 32px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8); transform: scale(0.92); transition: transform 0.3s;
}
.exit-overlay.show .exit-modal { transform: scale(1); }
.exit-emoji { width: 64px; height: 64px; margin: 0 auto 14px; display: grid; place-items: center; background: rgba(236,30,92,0.12); border: 1px solid rgba(236,30,92,0.28); border-radius: 18px; color: var(--accent-2); }
.exit-emoji svg { width: 32px; height: 32px; }
.exit-modal h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.exit-modal p { color: var(--muted); margin-bottom: 24px; }
.exit-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.exit-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--muted); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.exit-close:hover { color: var(--text); }
.exit-dismiss { background: none; border: none; color: var(--muted-dim); font-size: 0.85rem; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.exit-dismiss:hover { color: var(--muted); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

/* Large desktop: widen container */
@media (min-width: 1400px) {
  :root { --max: 1240px; }
}

/* Tablet & below (single-column hero, feature grid to 2-up) */
@media (max-width: 980px) {
  .nav-links > a:not(.nav-cta) { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .trust-bar { justify-content: center; }
  .hero-phone { margin-top: 40px; }
  .phone { transform: rotateY(-8deg); animation: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-inner { grid-template-columns: 1fr; }
  .partner-visual { order: -1; }
  .badge { margin-left: auto; margin-right: auto; }
  .compare { grid-template-columns: 1fr; }
  .compare-vs { justify-self: center; }
  /* Keep the phone sticky & scroll-driven on mobile: single column, phone
     pinned to the top of the viewport while the steps scroll past under it. */
  .story-inner { grid-template-columns: 1fr; gap: 0; }
  /* Single column: the phone becomes a sticky banner pinned to the top of the
     viewport, and the steps flow underneath it in normal document order. As you
     scroll the steps past, the phone stays pinned (and its scene animates) until
     the section ends. This avoids grid-overlap sticky quirks entirely. */
  .story-inner { display: block; }
  /* Pin below the fixed topbar (38px) + nav (~50px) so the phone banner never
     hides behind the header. */
  .story-sticky { position: sticky; top: 92px; height: auto; padding: 10px 0 8px; z-index: 5; background: linear-gradient(180deg, var(--bg) 70%, transparent); }
  .story-phone { transform: rotateY(0); }
  .story-steps { gap: 0; }
  /* Each step is tall enough to give the pinned phone time to animate its scene
     as it scrolls through. Text is pushed to the lower half of the screen so it
     never sits behind the phone banner pinned at the top. */
  .story-step { min-height: 82vh; min-height: 82svh; opacity: 0.32; text-align: center; align-items: center; justify-content: flex-end; padding: 0 0 6vh; pointer-events: none; }
  .story-step.active { opacity: 1; }
  /* Compact banner phone — wide enough that the app cards render cleanly. */
  .story-phone.phone { width: min(200px, 54vw); height: min(400px, 106vw); }
  .story-phone .app-card-img { width: 46px; height: 46px; }
  .story-phone .app-card-title { font-size: 0.74rem; }
  .story-phone .app-card-meta { font-size: 0.64rem; }
  .story-step h3 { font-size: clamp(1.35rem, 5.5vw, 1.85rem); }
  .story-step p { font-size: 0.96rem; }
  .download-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .dl-copy > p { margin-left: auto; margin-right: auto; }
  .app-col { align-items: center; }
  .app-col-btns { justify-content: center; }
  .app-col-btns .store-btn { justify-content: center; }
  .dl-qr { display: none; }
  .sticky-cta { display: flex; }
  #topbarMsg { max-width: 46vw; }
}

/* Small tablet / large phone */
@media (max-width: 760px) {
  .float-chip { display: none; }
  .step-line { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .review { flex: 0 0 82vw; max-width: 340px; }
  .marquee-track span { font-size: 0.92rem; }
  .exit-btns { flex-direction: column; }
  .exit-btns .store-btn { width: 100%; justify-content: center; }
}

/* Phone */
@media (max-width: 560px) {
  .topbar { font-size: 0.76rem; gap: 8px; }
  .topbar-live { display: none; }
  #topbarMsg { max-width: 62vw; }
  .nav { padding: 14px clamp(16px, 5vw, 48px); }
  .hero { padding: 140px 18px 50px; }
  .hero-cta { gap: 10px; }
  .hero-cta .store-btn { flex: 1 1 100%; justify-content: center; }
  .trust-bar { gap: 16px 22px; }
  .trust b { font-size: 1.3rem; }
  .phone { width: 260px; height: 540px; }
  .section { padding: clamp(56px, 12vw, 90px) 18px; }
  .section-head { margin-bottom: 40px; }
  .partner-cta { justify-content: center; }
  .partner-list { max-width: 360px; margin-left: auto; margin-right: auto; }
  .sticky-cta { left: 10px; right: 10px; padding: 10px 12px; }
  .sticky-txt small { display: none; }
  .cursor-glow { display: none; }
}

/* Small phone */
@media (max-width: 380px) {
  .brand-mark { font-size: 1.2rem; }
  .nav-cta { padding: 8px 14px; }
  .phone { width: 230px; height: 480px; }
  .review { flex: 0 0 86vw; }
  .trust { flex: 1 1 40%; }
  .exit-modal { padding: 32px 22px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .dash-bar span { width: var(--w); }
}
