/* === Visbets — landing (redesign: premium green-on-black, spacious) === */

:root {
  --bg-0: #08080A;
  --bg-1: #0E0F12;
  --bg-2: #141519;
  --bg-3: #1B1D22;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --txt-0: #F4F5F7;
  --txt-1: #B7BAC1;
  --txt-2: #8A8D95;
  --txt-3: #5E626B;
  --txt-4: #3A3D44;
  --neon: #00FF88;
  --neon-light: #5CFFB0;
  --neon-dark: #00C46A;
  --neon-glow: rgba(0, 255, 136, 0.4);
  --neon-soft: rgba(0, 255, 136, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  /* One grotesque everywhere, matching the Visbets app UI. The "mono" slot is
     kept as a named role for letter-spaced label/number text — it's the same
     family, just used with tabular figures and tracking. */
  --font-sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Archivo", ui-monospace, "SF Mono", monospace;
  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg-0); color: var(--txt-0); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body { line-height: 1.55; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: var(--neon); color: #000; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.accent { color: var(--neon); }
.accent-bold { color: var(--neon); font-weight: 600; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.fine { font-size: 12px; color: var(--txt-3); }

.eyebrow {
  font-size: 12px;
  color: var(--neon);
  letter-spacing: 0.34em;
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow-sm {
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.link-u { border-bottom: 1px solid var(--line-2); padding-bottom: 1px; transition: color .15s, border-color .15s; }
.link-u:hover { color: var(--neon); border-color: var(--neon); }

/* ═══════════════════════════════════════════════════════════════════════════
   SPLASH — PRESERVED EXACTLY. The eye blinks, the camera dives in, the frame
   goes black, and the site is pulled up out of that black. Driven from main.js.
   ═══════════════════════════════════════════════════════════════════════════ */
html.vb-splashing,
html.vb-splashing body,
html.vb-revealing,
html.vb-revealing body { overflow: hidden; }

html.vb-splashing .vb-stage { opacity: 0; visibility: hidden; }
html.vb-nosplash .vb-splash { display: none; }

.vb-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  overflow: hidden;
  opacity: 1;
}
.vb-splash.is-done {
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vb-splash.is-gone { display: none; }

.vb-splash-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  display: block;
}

.vb-splash-black {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms linear;
}
.vb-splash.is-blacking .vb-splash-black { opacity: 1; }

.vb-splash-ui {
  position: absolute;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 2;
}
.vb-splash.is-ready .vb-splash-ui { opacity: 1; }
.vb-splash.is-blacking .vb-splash-ui { opacity: 0; transition: opacity 160ms ease; }

.vb-splash-skip,
.vb-splash-sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}
.vb-splash-sound { padding: 9px; }
.vb-splash-skip:hover,
.vb-splash-sound:hover {
  color: var(--neon);
  border-color: rgba(0, 255, 136, 0.55);
  background: rgba(0, 255, 136, 0.08);
}
.vb-splash-skip-arrow { font-size: 15px; line-height: 1; }
.vb-splash-sound .ic-on { display: none; }
.vb-splash-sound.is-on .ic-on { display: block; }
.vb-splash-sound.is-on .ic-off { display: none; }

/* The site doesn't zoom in — it simply fades up out of the same black the
   splash ends on, so the hand-off reads as one continuous dissolve. */
.vb-stage.is-revealing {
  animation: vb-fade-in 900ms ease both;
}
@keyframes vb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .vb-stage.is-revealing { animation: none; }
  .vb-splash { display: none; }
}

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-primary {
  background: var(--neon);
  color: #04120A;
  box-shadow: 0 6px 22px -8px var(--neon-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px var(--neon-glow); }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost {
  background: var(--surface);
  color: var(--txt-0);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); background: var(--neon-soft); }
.btn.full { width: 100%; }
.btn.grow { flex: 1; }
.apple-ic { width: 13px; height: 16px; display: block; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   THE APP STORE BUTTON — the single most important element on the site.
   ═══════════════════════════════════════════════════════════════════════════ */
.btn-store {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 17px 34px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--neon-light) 0%, var(--neon) 48%, var(--neon-dark) 100%);
  color: #04120A;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.9);
  box-shadow:
    0 0 0 5px rgba(0, 255, 136, 0.10),
    0 20px 50px -18px rgba(0, 255, 136, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 160ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 160ms ease;
  will-change: transform;
}
.btn-store:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 0 0 6px rgba(0, 255, 136, 0.16),
    0 28px 66px -18px rgba(0, 255, 136, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn-store:active { transform: translateY(-1px) scale(0.995); }
.btn-store:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.btn-store-apple { width: 28px; height: 34px; flex-shrink: 0; color: #04120A; }
.btn-store-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; text-align: left; }
.btn-store-kicker { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; opacity: 0.72; margin-bottom: 4px; }
.btn-store-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.btn-store-shine {
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: vb-shine 4.5s ease-in-out infinite;
}
@keyframes vb-shine {
  0%, 62% { left: -60%; }
  92%, 100% { left: 130%; }
}
.btn-store-sm { padding: 14px 28px; gap: 12px; }
.btn-store-sm .btn-store-apple { width: 24px; height: 29px; }
.btn-store-sm .btn-store-title { font-size: 20px; }
.btn-store-xl { padding: 24px 52px; gap: 20px; border-radius: 20px; }
.btn-store-xl .btn-store-apple { width: 38px; height: 46px; }
.btn-store-xl .btn-store-title { font-size: 32px; }
.btn-store-xl .btn-store-kicker { font-size: 14px; }

/* ═══════════════════════════ NEWS TICKER ═══════════════════════════ */
.newsbar {
  display: flex;
  align-items: stretch;
  background: #050705;
  border-bottom: 1px solid rgba(0, 255, 136, 0.18);
  overflow: hidden;
}
.newsbar-tag {
  display: inline-flex; align-items: center; gap: 7px;
  flex-shrink: 0;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--neon);
  background: rgba(0, 255, 136, 0.06);
  border-right: 1px solid rgba(0, 255, 136, 0.22);
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}
.newsbar-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: vb-pulse 1.8s ease-in-out infinite;
}
.newsbar-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 94%, transparent 100%);
}
.newsbar-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: vb-marquee 42s linear infinite;
}
.newsbar:hover .newsbar-track { animation-play-state: paused; }
.newsbar-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(0, 255, 136, 0.9);
  padding: 8px 0;
}
.newsbar-sep {
  color: rgba(0, 255, 136, 0.35);
  font-size: 8px;
  margin: 0 22px;
  transform: translateY(-1px);
}
@keyframes vb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .newsbar-track { animation: none; }
}

/* ═══════════════════════════ NAV ═══════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 11px; }
.nav-logo {
  width: 34px; height: 34px; border-radius: 9px; object-fit: cover;
  border: 1px solid rgba(0, 255, 136, 0.35);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.22);
}
.nav-word {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px; letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--txt-1);
  padding: 8px 14px; border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--txt-0); background: var(--surface-2); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-parent {
  font-size: 12px; color: var(--txt-3);
  letter-spacing: 0.02em;
  transition: color .15s;
}
.nav-parent:hover { color: var(--neon); }

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero-aura {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 30%, rgba(0, 255, 136, 0.14), transparent 62%),
    radial-gradient(50% 50% at 15% 15%, rgba(0, 255, 136, 0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero-copy { max-width: 560px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--neon);
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.28);
  margin-bottom: 26px;
  transition: background .15s, border-color .15s, transform .15s;
}
a.badge:hover { background: rgba(0, 255, 136, 0.12); border-color: rgba(0, 255, 136, 0.5); transform: translateY(-1px); }
.badge-static { cursor: default; }
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: vb-pulse 1.8s ease-in-out infinite;
}
.badge-arrow { transition: transform .15s; }
a.badge:hover .badge-arrow { transform: translateX(3px); }
@keyframes vb-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--neon-glow); }
  50% { opacity: .65; box-shadow: 0 0 0 5px rgba(0,255,136,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.grad {
  background: linear-gradient(180deg, var(--neon-light), var(--neon-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(0, 255, 136, 0.45));
}
.hero-sub {
  font-size: 18px; color: var(--txt-1);
  line-height: 1.6; margin-bottom: 34px;
  max-width: 520px;
}
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hero-cta-meta { font-size: 14px; color: var(--txt-2); }

/* Hero device */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 560px;
}
.hero-visual-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.28), transparent 66%);
  filter: blur(20px);
  pointer-events: none;
}
.device-hero { transform: rotate(3deg); }

/* Device mockup (shared) */
.device {
  position: relative;
  width: 268px;
  aspect-ratio: 268 / 560;
  background: linear-gradient(160deg, #26282e, #0c0d10);
  border-radius: 42px;
  padding: 9px;
  box-shadow:
    0 50px 90px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 255, 136, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.device-notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.device-screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
}
.device-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ═══════════════════════════ SECTION HEADS ═══════════════════════════ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.section-lead { margin-top: 18px; font-size: 17px; color: var(--txt-2); line-height: 1.6; }

/* ═══════════════════════════ SHOWCASE ═══════════════════════════ */
.showcase { padding: 100px 0; }
.show-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}
.show-row-rev .show-text { order: 2; }
.show-row-rev .show-visual { order: 1; }
.show-text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.show-text > p { font-size: 16.5px; color: var(--txt-1); line-height: 1.65; margin-bottom: 24px; max-width: 460px; }
.show-list { display: flex; flex-direction: column; gap: 11px; }
.show-list li {
  position: relative; padding-left: 28px;
  font-size: 15px; color: var(--txt-1);
}
.show-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--neon-soft);
  border: 1px solid rgba(0, 255, 136, 0.4);
}
.show-list li::after {
  content: "";
  position: absolute; left: 5px; top: 10px;
  width: 6px; height: 3.5px;
  border-left: 1.5px solid var(--neon);
  border-bottom: 1.5px solid var(--neon);
  transform: rotate(-45deg);
}
.show-visual { display: flex; justify-content: center; position: relative; }
.show-visual::before {
  content: "";
  position: absolute; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.14), transparent 68%);
  filter: blur(10px); pointer-events: none;
}
.show-visual .device { position: relative; transition: transform .4s ease; }
.show-row:hover .show-visual .device { transform: translateY(-6px); }

/* ═══════════════════════════ PRICING ═══════════════════════════ */
.pricing { padding: 100px 0; border-top: 1px solid var(--line); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg-1);
  display: flex; flex-direction: column;
}
.price-card-hero {
  border-color: rgba(0, 255, 136, 0.4);
  background:
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(0, 255, 136, 0.1), transparent 70%),
    var(--bg-2);
  box-shadow: 0 40px 100px -46px var(--neon-glow);
}
.price-flag {
  position: absolute; top: -11px; left: 32px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  padding: 5px 12px; border-radius: 999px;
  color: #04120A; background: var(--neon);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.5);
}
.price-name { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; color: var(--txt-2); margin-bottom: 16px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price-num { font-family: var(--font-display); font-size: 46px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.price-per { font-size: 13px; color: var(--txt-3); }
.price-sub { font-size: 12.5px; color: var(--txt-3); margin-bottom: 20px; }
.price-lead { font-size: 14.5px; color: var(--txt-1); margin-bottom: 24px; }
.price-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-list li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--txt-1); line-height: 1.5; }
.price-list li::before {
  content: "";
  position: absolute; left: 2px; top: 6px;
  width: 11px; height: 7px;
  border-left: 2px solid var(--txt-3);
  border-bottom: 2px solid var(--txt-3);
  transform: rotate(-45deg);
}
.price-list-neon li::before { border-color: var(--neon); }
.price-fine { margin-top: 28px; text-align: center; }

/* ═══════════════════════════ STATEMENT / MID CTA ═══════════════════════════ */
.statement { padding: 110px 0; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.statement-aura {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(0, 255, 136, 0.09), transparent 66%);
  pointer-events: none;
}
.statement-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 36px;
}
.statement-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 900px;
}

/* ═══════════════════════════ MEGA CTA ═══════════════════════════ */
.mega { padding: 120px 0; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.mega-aura {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 45%, rgba(0, 255, 136, 0.16), transparent 66%);
  pointer-events: none;
}
.mega-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.mega-logo {
  width: 76px; height: 76px; border-radius: 20px;
  margin-bottom: 26px;
  border: 1px solid rgba(0, 255, 136, 0.35);
  filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.4));
}
.mega .badge { margin-bottom: 24px; }
.mega-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -0.03em; line-height: 0.98;
  margin-bottom: 22px;
}
.mega-sub { font-size: 17px; color: var(--txt-1); max-width: 540px; margin: 0 auto 40px; line-height: 1.6; }
.mega-alt {
  margin-top: 30px; font-size: 14px; color: var(--txt-3);
  display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.mega-alt .link-u { color: var(--neon); border-color: rgba(0, 255, 136, 0.4); }
.mega-qr { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mega-qr[hidden] { display: none; }
.mega-qr-frame {
  padding: 14px; background: #fff; border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.5), 0 20px 50px -20px rgba(0, 255, 136, 0.6);
  line-height: 0;
}
.mega-qr canvas { display: block; width: 200px; height: 200px; image-rendering: pixelated; }

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq { padding: 100px 0; border-top: 1px solid var(--line); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .18s ease;
}
.faq-item[open] { border-color: rgba(0, 255, 136, 0.32); }
.faq-item summary {
  padding: 20px 52px 20px 24px;
  font-size: 16px; font-weight: 600;
  cursor: pointer; list-style: none; position: relative;
  transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--neon); }
.faq-item summary::after {
  content: "";
  position: absolute; right: 24px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq-body { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.7; color: var(--txt-2); max-width: 68ch; }

/* ═══════════════════════════ SIGNUP ═══════════════════════════ */
.signup-section { padding: 100px 0; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.signup-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 22% 30%, rgba(0, 255, 136, 0.1), transparent 62%);
  pointer-events: none;
}
.signup-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.signup-copy .badge { margin-bottom: 24px; }
.signup-copy .section-title { text-align: left; }
.signup-lead { font-size: 16.5px; color: var(--txt-1); line-height: 1.6; margin: 22px 0 24px; max-width: 440px; }
.signup-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px -40px var(--neon-glow);
}
.signup-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }

.step-indicator { display: flex; gap: 6px; margin-bottom: 22px; }
.step-dot { flex: 1; height: 3px; border-radius: 2px; background: var(--line-2); transition: background .2s, box-shadow .2s; }
.step-dot.on { background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); }

.step { display: flex; flex-direction: column; gap: 14px; }
.step.hidden { display: none; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--txt-2); font-weight: 600; margin-bottom: 7px;
}
.field input {
  width: 100%; padding: 13px 15px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--txt-0); font-size: 14px;
  transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px rgba(0,255,136,0.15); }

.segmented { display: flex; gap: 8px; }
.seg {
  flex: 1; padding: 12px; border-radius: 10px;
  background: var(--bg-1); border: 1px solid var(--line-2);
  color: var(--txt-1); font-weight: 600; font-size: 14px;
  transition: all .15s;
}
.seg.on { background: rgba(0,255,136,0.08); border-color: var(--neon); color: var(--neon); }

.chip-grid { display: grid; gap: 6px; }
.chip-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.chip-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pill {
  padding: 11px 6px; border-radius: 9px;
  background: var(--bg-1); border: 1px solid var(--line-2);
  color: var(--txt-1); font-weight: 600; font-size: 13px;
  transition: all .15s;
}
.chip-grid.cols-3 .pill { font-size: 12px; }
.pill.on { background: rgba(0,255,136,0.1); border-color: var(--neon); color: var(--neon); }

.exp-list { display: flex; flex-direction: column; gap: 6px; }
.exp {
  padding: 13px 14px; border-radius: 10px;
  background: var(--bg-1); border: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 12px; text-align: left;
  transition: all .15s;
}
.exp.on { background: rgba(0,255,136,0.08); border-color: var(--neon); }
.exp-radio {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color .15s;
}
.exp.on .exp-radio { border-color: var(--neon); }
.exp.on .exp-radio::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--neon); }
.exp-text { display: flex; flex-direction: column; }
.exp-title { font-weight: 600; font-size: 14px; color: var(--txt-0); }
.exp.on .exp-title { color: var(--neon); }
.exp-sub { font-size: 12px; color: var(--txt-2); }

.row-btns { display: flex; gap: 8px; }

.checkbox-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--neon); cursor: pointer;
}
.checkbox-label {
  font-size: 13px; color: var(--txt-1); line-height: 1.5; cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
}
.checkbox-label a { color: var(--neon); text-decoration: underline; font-weight: 500; }
.checkbox-label a:hover { opacity: 0.8; }

.step-done { text-align: center; padding: 12px 0 8px; align-items: center; gap: 8px; }
.done-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,255,136,0.1); border: 2px solid var(--neon);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 0 30px var(--neon-glow);
}
.done-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--txt-0); }
.done-body { color: var(--txt-1); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

/* ═══════════════════════════ DISCLAIMER ═══════════════════════════ */
.disclaimer-section { padding: 48px 0 20px; border-top: 1px solid var(--line); }
.disclaimer {
  font-size: 12px; color: var(--txt-2); line-height: 1.6;
  text-align: center; max-width: 860px; margin: 0 auto;
  padding: 20px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.disclaimer strong { color: var(--txt-1); }

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
.site-footer { padding: 44px 0 40px; border-top: 1px solid var(--line); background: var(--bg-1); }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.footer-logo { width: 30px; height: 30px; border-radius: 8px; border: 1px solid rgba(0, 255, 136, 0.3); }
.footer-meta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-meta small { font-size: 12px; color: var(--txt-3); line-height: 1.7; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--txt-3); font-size: 13px; transition: color .15s; }
.footer-links a:hover { color: var(--neon); }

/* ═══════════════════════════ STICKY DOWNLOAD BAR ═══════════════════════════ */
.dl-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px max(16px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right));
  background: rgba(10, 11, 13, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 255, 136, 0.35);
  box-shadow: 0 -14px 40px -12px rgba(0, 0, 0, 0.9);
  transform: translateY(120%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 320ms;
  pointer-events: none;
}
.dl-bar.is-visible {
  transform: translateY(0); visibility: visible; pointer-events: auto;
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s;
}
.dl-bar-inner { max-width: 620px; margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.dl-bar-icon { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(0, 255, 136, 0.35); }
.dl-bar-text { flex: 1; min-width: 0; }
.dl-bar-title { font-size: 15px; font-weight: 700; line-height: 1.2; }
.dl-bar-sub { font-size: 11.5px; color: var(--txt-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dl-bar-btn {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  padding: 12px 26px; border-radius: 999px;
  background: var(--neon); color: #04120A;
  font-family: var(--font-mono); font-size: 13px; font-weight: 800; letter-spacing: 0.16em;
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.5);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.dl-bar-btn svg { width: 13px; height: 16px; }
.dl-bar-btn:hover { transform: scale(1.04); box-shadow: 0 0 36px rgba(0, 255, 136, 0.75); }
.dl-bar-btn:active { transform: scale(0.98); }

/* ═══════════════════════════ TOAST ═══════════════════════════ */
.vb-toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 9000;
  transform: translate(-50%, 24px);
  max-width: min(90vw, 460px);
  padding: 14px 20px; border-radius: 12px;
  background: rgba(10, 11, 13, 0.96);
  border: 1px solid rgba(0, 255, 136, 0.45);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.9), 0 0 30px -10px var(--neon-glow);
  color: var(--txt-0); font-size: 14px; text-align: center;
  opacity: 0; visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}
.vb-toast.is-up {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s;
}

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 1000px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 600px; margin: 0 auto; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { align-items: center; }
  .hero-visual { min-height: 0; }
  .price-grid { grid-template-columns: 1fr; gap: 18px; max-width: 440px; }
  .show-row, .show-row-rev {
    grid-template-columns: 1fr;
    gap: 28px; text-align: center;
    max-width: 420px; margin: 0 auto;
  }
  .show-row-rev .show-text { order: 2; }
  .show-row-rev .show-visual { order: 1; }
  .show-text > p { margin-left: auto; margin-right: auto; }
  .show-list { max-width: 300px; margin: 0 auto; text-align: left; }
  .signup-inner { grid-template-columns: 1fr; gap: 40px; }
  .signup-copy { text-align: center; }
  .signup-copy .section-title { text-align: center; }
  .signup-lead { margin-left: auto; margin-right: auto; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-parent { display: none; }
}
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  .hero { padding: 40px 0 56px; }
  .showcase, .statement, .pricing, .mega, .faq, .signup-section { padding: 68px 0; }
  .section-head { margin-bottom: 44px; }
  .price-grid { grid-template-columns: 1fr; gap: 22px; }
  .signup-card { padding: 24px; }
  .site-footer { padding: 36px 0 96px; }
  .footer-meta { align-items: center; text-align: center; }
  .footer-top { justify-content: center; }

  /* App Store button: full-width thumb target on phones */
  .btn-store, .btn-store-xl, .btn-store-sm {
    width: 100%; max-width: 400px; justify-content: center;
    padding: 19px 24px; gap: 14px; border-radius: 16px;
  }
  .btn-store .btn-store-apple, .btn-store-xl .btn-store-apple { width: 28px; height: 34px; }
  .btn-store .btn-store-title, .btn-store-xl .btn-store-title { font-size: 23px; }
  .hero-cta { width: 100%; }
  .device { width: 240px; }

  .vb-splash-skip, .vb-splash-sound { padding: 8px 13px; font-size: 10px; }
  .vb-splash-sound { padding: 8px; }
  .vb-toast { bottom: 92px; font-size: 13px; padding: 12px 16px; }
}
@media (max-width: 420px) {
  .chip-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .dl-bar-btn { padding: 11px 20px; font-size: 12px; }
  .price-num { font-size: 40px; }
}

/* The sticky bar only earns its space on phones/tablets, where the tap is the point. */
@media (min-width: 901px) {
  .dl-bar { display: none; }
}
