/* ════════════════════════════════════════════════════════════════════════
   posudi.to — landing page
   Palette mirrors src/theme/colors.ts (emerald / indigo / slate).
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --primary: #10B981;
  --primary-dark: #059669;
  --primary-mid: #34D399;
  --primary-light: #6EE7B7;
  --primary-faint: #ECFDF5;
  --accent: #6366F1;
  --accent-faint: #EEF2FF;
  --ink: #0F172A;
  --ink-2: #1E293B;
  --ink-3: #334155;
  --muted: #475569;
  --muted-2: #94A3B8;
  --bg: #F8FAFC;
  --line: #E2E8F0;
  --white: #FFFFFF;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, .10);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, .18);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* page scroll progress (scaleX driven by landing.js) */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
  transform-origin: left; transform: scaleX(0); pointer-events: none;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 14px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(16, 185, 129, .35); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 10px 28px rgba(16, 185, 129, .45); }
.btn-sm { padding: 9px 18px; font-size: 14px; border-radius: 11px; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .25); }
.btn-ghost:hover { border-color: var(--primary-light); color: var(--primary-light); }
/* Official Google Play badge (per Google brand guidelines — artwork unmodified,
   built-in padding kept; HR/EN variant swapped by landing.js applyLang). */
.play-badge { display: inline-flex; transition: transform .25s var(--ease), filter .25s; }
.play-badge img { height: 76px; width: auto; }
.play-badge:hover { transform: translateY(-2px); filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .35)); }

/* ── Navbar ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: padding .35s var(--ease);
}
.nav.scrolled { background: rgba(15, 23, 42, .82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255, 255, 255, .08); }
.nav.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }
.nav.light { background: rgba(248, 250, 252, .85); }
.nav.light.scrolled { background: rgba(248, 250, 252, .88); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 800; font-size: 20px; letter-spacing: -.4px; color: #fff; }
.nav.light .nav-brand { color: var(--ink); }
.nav-brand em { font-style: normal; color: var(--primary); }
.nav-brand img { border-radius: 8px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none; font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, .75);
  transition: color .2s; position: relative;
}
.nav.light .nav-links a { color: var(--muted); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--primary); border-radius: 2px; transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--primary-light); }
.nav.light .nav-links a:hover { color: var(--primary-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px; overflow: hidden; cursor: pointer; padding: 0;
}
.nav.light .lang-toggle { background: #fff; border-color: var(--line); }
.lang-opt { padding: 6px 11px; font-size: 12.5px; font-weight: 700; color: rgba(255, 255, 255, .6); transition: background .2s, color .2s; }
.nav.light .lang-opt { color: var(--muted-2); }
.lang-opt.active { background: var(--primary); color: #fff !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.light .nav-burger span { background: var(--ink); }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  background: var(--ink); color: #fff; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; will-change: transform; }
.hero-copy, .hero-visual { will-change: transform; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(16,185,129,.55), transparent 65%); top: -140px; left: -120px; animation: drift1 16s ease-in-out infinite; }
.orb-2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(99,102,241,.35), transparent 65%); bottom: -160px; right: -80px; animation: drift2 20s ease-in-out infinite; }
.orb-3 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(16,185,129,.3), transparent 65%); top: 40%; left: 55%; animation: drift3 24s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,40px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px,-50px) scale(1.08); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0); } 33% { transform: translate(-50px,30px); } 66% { transform: translate(40px,-40px); } }
.hero-grid {
  position: absolute; inset: 0;
  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: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
}
.hero-inner {
  position: relative; max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; width: 100%;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(16, 185, 129, .12); border: 1px solid rgba(16, 185, 129, .35);
  color: var(--primary-light); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); position: relative; flex: none; }
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--primary); animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.hero-title { font-size: clamp(44px, 6.5vw, 76px); font-weight: 800; line-height: 1.04; letter-spacing: -2px; margin-bottom: 24px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title em { font-style: normal; color: var(--primary); position: relative; }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255, 255, 255, .72); max-width: 520px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }

/* hero entrance */
.reveal-h { opacity: 0; transform: translateY(26px); animation: heroIn .9s var(--ease) forwards; animation-delay: calc(var(--hd, 0) * .13s + .1s); }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* waitlist form */
.waitlist label { display: block; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.waitlist-row { display: flex; gap: 10px; max-width: 460px; }
.waitlist input[type="email"] {
  flex: 1; min-width: 0; padding: 13px 18px; border-radius: 14px; font-family: var(--font); font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .07); color: #fff;
  outline: none; transition: border-color .2s, background .2s;
}
.waitlist input[type="email"]::placeholder { color: rgba(255, 255, 255, .35); }
.waitlist input[type="email"]:focus { border-color: var(--primary); background: rgba(255, 255, 255, .1); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.waitlist-msg { font-size: 13.5px; font-weight: 600; margin-top: 10px; min-height: 20px; color: var(--primary-light); }
.waitlist-msg.err { color: #FCA5A5; }
.waitlist-center { max-width: 460px; margin: 0 auto; }
.waitlist-center .waitlist-row { margin: 0 auto; }

/* hero phone */
.hero-visual { display: flex; justify-content: center; }
.phone-stage { position: relative; animation: levitate 6s ease-in-out infinite; will-change: transform; }
@keyframes levitate { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.phone {
  position: relative; border-radius: 38px; background: #0b1220; padding: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1.5px rgba(255, 255, 255, .08), 0 0 90px rgba(16, 185, 129, .12);
  width: 270px;
}
.phone img { border-radius: 29px; width: 100%; height: auto; }
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; background: #0b1220; border-radius: 12px; z-index: 2;
}
.phone-hero { transform: rotate(2.5deg); transition: transform .3s ease-out; }
.phone-sm { width: 190px; margin: 0 auto 22px; border-radius: 30px; padding: 7px; }
.phone-sm img { border-radius: 23px; }
.phone-sm .phone-notch { top: 13px; width: 60px; height: 15px; border-radius: 8px; }

/* floating chips */
.chip {
  position: absolute; display: flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, .96); color: var(--ink); font-size: 13.5px; font-weight: 800;
  padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-md);
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-credit { top: 9%; right: -52px; color: var(--primary-dark); animation-delay: .6s; }
.chip-qr { bottom: 21%; left: -76px; color: var(--ink-2); animation-delay: 1.4s; }
.chip-qr svg { color: var(--primary); }
.chip-star { top: 38%; left: -58px; color: #F59E0B; animation-delay: 2.4s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .3); border-radius: 14px;
}
.hero-scroll span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--primary); border-radius: 2px; animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ── Stats ───────────────────────────────────────────────────────────── */
.stats { background: var(--ink); padding: 0 0 64px; color: #fff; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  text-align: center; padding: 26px 12px; border-radius: 18px;
  background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .09);
}
.stat-num { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; color: var(--primary-light); letter-spacing: -1px; }
.stat-label { font-size: 13.5px; color: rgba(255, 255, 255, .6); font-weight: 600; margin-top: 2px; }

/* ── Marquee ─────────────────────────────────────────────────────────── */
.marquee { background: var(--ink); padding: 0 0 56px; overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 26s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.cat {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 14.5px; font-weight: 700; color: #fff;
  background: color-mix(in srgb, var(--c) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 45%, transparent);
  padding: 10px 20px; border-radius: 999px;
}
.cat svg { color: var(--c); flex: none; }

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding: 110px 0; }
.section-alt { background: #fff; }
.kicker {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary-dark); background: var(--primary-faint); border: 1px solid #A7F3D0;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section-title { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.12; margin-bottom: 18px; max-width: 720px; }
.section-lead { font-size: 17.5px; color: var(--muted); max-width: 680px; margin-bottom: 52px; }

/* scroll reveal (+ directional variants: from-l / from-r slide in sideways,
   pop scales up — all resolve to the same `.in` end state) */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--d, 0) * .1s); }
.reveal.from-l { transform: translateX(-48px); }
.reveal.from-r { transform: translateX(48px); }
.reveal.pop { transform: translateY(28px) scale(.9); }
.reveal.in { opacity: 1; transform: none; }

/* ── Value cards ─────────────────────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c) 12%, white); color: var(--c); margin-bottom: 20px;
}
.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.3px; }
.card p { font-size: 15px; color: var(--muted); }

/* ── Steps ───────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 54px; position: relative; }
.step { text-align: center; position: relative; }
.step .phone-sm { transition: transform .4s var(--ease); }
.step:hover .phone-sm { transform: translateY(-8px) rotate(-1.5deg); }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff;
  font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 6px 16px rgba(16, 185, 129, .4); position: relative; z-index: 1;
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 7px; letter-spacing: -.3px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ── Credit tiles ────────────────────────────────────────────────────── */
.credit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.credit-tile { border-radius: 20px; padding: 30px 26px; transition: transform .35s var(--ease); }
.credit-tile:hover { transform: translateY(-6px); }
.ct-icon { font-size: 26px; font-weight: 800; margin-bottom: 14px; line-height: 1; }
.credit-tile h3 { font-size: 19px; font-weight: 800; margin-bottom: 7px; }
.credit-tile p { font-size: 14.5px; opacity: .82; }
.t-earn   { background: var(--primary-faint); color: var(--primary-dark); }
.t-spend  { background: #FEF2F2; color: #DC2626; }
.t-bonus  { background: var(--accent-faint); color: #4F46E5; }
.t-refund { background: #EFF6FF; color: #2563EB; }
.credit-tile p { color: var(--ink-3); }

/* ── Features ────────────────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.feature {
  background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.f-icon {
  width: 44px; height: 44px; border-radius: 13px; background: var(--primary-faint); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; letter-spacing: -.2px; }
.feature p { font-size: 13.5px; color: var(--muted); }

/* ── Showcase ────────────────────────────────────────────────────────── */
/* The strip is a horizontal scroll container, which also clips vertically —
   the breathing room for hover-scale + shadows must live INSIDE it as
   padding (outer spacing is reduced by the same amount, so the page
   rhythm is unchanged: 16+40 = the old 56 top, 20+110 = the old 130 bottom). */
.showcase-sec { padding-bottom: 20px; }
.showcase {
  display: flex; gap: 34px; justify-content: center; margin-top: 16px;
  padding: 40px 24px 110px; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.showcase::-webkit-scrollbar { display: none; }
.sc-item { flex: none; scroll-snap-align: center; text-align: center; }
.sc-item .phone { width: 215px; }
.sc-up { transform: translateY(36px); }
.sc-up.reveal { transform: translateY(70px); }
.sc-up.reveal.in { transform: translateY(36px); }
.sc-item figcaption { margin-top: 40px; font-size: 14px; font-weight: 700; color: var(--muted); }
.sc-up figcaption { margin-top: 18px; }
.sc-item .phone { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.sc-item:hover .phone { transform: scale(1.04); box-shadow: 0 30px 70px rgba(15, 23, 42, .28), 0 0 0 1.5px rgba(16, 185, 129, .3); }

/* ── Timeline ────────────────────────────────────────────────────────── */
.timeline { position: relative; max-width: 660px; margin: 60px auto 0; padding-left: 42px; }
.tl-line {
  position: absolute; left: 11px; top: 6px; bottom: 6px; width: 3px;
  background: var(--line); border-radius: 3px; overflow: hidden;
}
.tl-line-fill {
  width: 100%; height: 100%; background: var(--primary);
  transform-origin: top; transform: scaleY(0); transition: transform .15s linear;
}
.tl-item { position: relative; padding-bottom: 42px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -37px; top: 6px; width: 19px; height: 19px; border-radius: 50%;
  background: #fff; border: 3px solid var(--line); transition: border-color .4s, background .4s, transform .4s var(--ease);
}
.tl-item.lit .tl-dot { border-color: var(--primary); background: var(--primary-faint); transform: scale(1.12); }
.tl-now .tl-dot { border-color: var(--primary); background: var(--primary); }
.tl-now .tl-dot::after {
  content: ''; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid var(--primary); animation: pulse 1.8s ease-out infinite;
}
.tl-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px;
  box-shadow: var(--shadow-sm); opacity: .45; transform: translateX(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .4s, box-shadow .4s;
}
.tl-item.lit .tl-card { opacity: 1; transform: none; }
.tl-now .tl-card { border-color: var(--primary-light); box-shadow: 0 10px 34px rgba(16, 185, 129, .14); }
.tl-date { font-size: 12.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); }
.tl-now .tl-date, .tl-now .tl-date b { color: var(--primary-dark); }
.tl-card h3 { font-size: 20px; font-weight: 800; margin: 6px 0 7px; letter-spacing: -.4px; }
.tl-card p { font-size: 15px; color: var(--muted); }

/* ── About ───────────────────────────────────────────────────────────── */
.about-wrap { display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: center; }
.about-p { font-size: 16.5px; color: var(--muted); margin-bottom: 18px; max-width: 580px; }
.about-card {
  background: var(--ink); color: #fff; border-radius: 24px; padding: 42px 36px; text-align: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.35), transparent 70%);
  top: -90px; right: -70px; filter: blur(30px);
}
.about-card img { margin: 0 auto 22px; border-radius: 14px; position: relative; }
.about-card blockquote { font-size: 19px; font-weight: 700; line-height: 1.45; letter-spacing: -.3px; position: relative; }
.about-sig { display: block; margin-top: 16px; font-size: 14px; color: var(--primary-light); font-weight: 600; position: relative; }

/* ── CTA band ────────────────────────────────────────────────────────── */
.cta-band { position: relative; background: var(--ink); color: #fff; padding: 110px 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-inner { position: relative; }
.cta-inner h2 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; letter-spacing: -1.2px; margin-bottom: 14px; }
.cta-inner > p { font-size: 17px; color: rgba(255, 255, 255, .7); margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 34px; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-size: 16.5px; font-weight: 700; letter-spacing: -.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  flex: none; width: 26px; height: 26px; border-radius: 50%; position: relative;
  background: var(--primary-faint); transition: transform .35s var(--ease), background .3s;
}
.faq-item summary i::before, .faq-item summary i::after {
  content: ''; position: absolute; background: var(--primary-dark); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item summary i::before { width: 12px; height: 2px; }
.faq-item summary i::after { width: 2px; height: 12px; transition: transform .35s var(--ease); }
.faq-item[open] summary i { transform: rotate(180deg); background: var(--primary); }
.faq-item[open] summary i::before, .faq-item[open] summary i::after { background: #fff; }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item p { padding: 0 24px 22px; font-size: 15px; color: var(--muted); max-width: 640px; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255, 255, 255, .7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 54px; }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 280px; color: rgba(255, 255, 255, .55); }
.footer h4 { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid a:not(.nav-brand) {
  display: block; text-decoration: none; font-size: 14.5px; color: rgba(255, 255, 255, .6);
  margin-bottom: 11px; transition: color .2s;
}
.footer-grid a:not(.nav-brand):hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 24px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  max-width: 1140px; margin: 0 auto; font-size: 13.5px; color: rgba(255, 255, 255, .45);
}
.fo-tm { flex-basis: 100%; font-size: 12px; color: rgba(255, 255, 255, .3); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 64px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .waitlist { max-width: 460px; margin: 0 auto; }
  .chip-qr { left: -38px; }
  .chip-credit { right: -34px; }
  .chip-star { left: -40px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .credit-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .showcase { justify-content: flex-start; }
}
@media (max-width: 700px) {
  .nav-links {
    position: fixed; top: 62px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(15, 23, 42, .97); backdrop-filter: blur(14px);
    padding: 12px 24px 20px; transform: translateY(-130%); transition: transform .35s var(--ease);
  }
  .nav.light .nav-links { background: rgba(248, 250, 252, .98); }
  .nav.menu-open .nav-links { transform: none; }
  .nav-links a { padding: 13px 0; font-size: 16px; }
  .nav-burger { display: flex; }
  .nav .btn-sm { display: none; }
  .hero { padding-top: 104px; }
  .hero-title { letter-spacing: -1.2px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .credit-grid { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .sc-up { transform: none; }
  .sc-up.reveal { transform: translateY(34px); }
  .sc-up.reveal.in { transform: none; }
  .sc-up figcaption { margin-top: 40px; }
  .waitlist-row { flex-direction: column; }
  .play-badge img { height: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .chip-credit { right: -8px; }
  .chip-qr { left: -16px; }
  .chip-star { left: -18px; }
}

/* ── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-h { opacity: 1 !important; transform: none !important; }
  .tl-card { opacity: 1; transform: none; }
  .tl-line-fill { transform: none; }
}
