/* VisBets — landing tokens, primitives, sections */

:root {
  --bg-primary: #0A0A0B;
  --bg-secondary: #1A1A1C;
  --bg-tertiary: #2A2A2C;
  --bg-elevated: #2A2A2C;
  --neon: #00FF88;
  --neon-glow: rgba(0, 255, 136, 0.4);
  --neon-soft: rgba(0, 255, 136, 0.15);
  --neon-faint: rgba(0, 255, 136, 0.08);
  --text-primary: #FFFFFF;
  --text-secondary: #B3B3B3;
  --text-tertiary: #9A9A9A;
  --text-muted: #666666;
  --border-default: #2A2A2C;
  --border-light: #333333;
  --danger: #FF0055;
  --warning: #FFB800;
  --info: #00D4FF;

  --tier-free: #B8C4CE;
  --tier-plus: #FFD700;
  --tier-max: #A8B8CC;

  --s-1: 8px; --s-2: 12px; --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 80px;

  --r-card: 16px;
  --r-input: 12px;
  --r-chip: 999px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", system-ui, sans-serif;

  --max-w: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--neon); color: #000; }

/* ── type ─────────────────────────────────────────────────── */

.eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--neon); border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.h-hero {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--text-primary);
  text-wrap: pretty;
}
.h-section {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  color: var(--text-primary);
  text-wrap: pretty;
}
.h-block {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
  color: var(--text-primary);
  text-wrap: pretty;
}

.body    { font-size: 16px; line-height: 1.5; color: var(--text-secondary); margin: 0; }
.body-lg { font-size: 18px; line-height: 1.55; color: var(--text-secondary); margin: 0; }
.micro   { font-size: 12px; line-height: 1.5; color: var(--text-muted); }

.glow-text { color: var(--neon); text-shadow: 0 0 12px var(--neon); }
.mono-num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ── buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-chip);
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background-color 160ms ease, border-color 160ms ease,
              color 160ms ease, box-shadow 200ms ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--neon); color: #000; border-color: var(--neon);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.16);
}
.btn-primary:hover {
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.45),
              0 0 0 6px rgba(0, 255, 136, 0.06);
}
.btn-ghost {
  background: transparent; color: var(--text-primary);
  border-color: var(--neon);
}
.btn-ghost:hover {
  background: rgba(0, 255, 136, 0.08);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.18);
}
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn:focus-visible {
  outline: 1px solid var(--neon);
  outline-offset: 2px;
}

/* ── card ─────────────────────────────────────────────────── */

.card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--r-card);
  transition: border-color 200ms ease, box-shadow 250ms ease, background-color 200ms ease;
}
.card-hover:hover {
  border-color: var(--neon);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.25);
}

.feat-name {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 10px;
}

/* ── section scaffolding ──────────────────────────────────── */

.section { position: relative; padding: 96px 24px; }
.section-tight { padding: 64px 24px; }
.container { max-width: var(--max-w); margin: 0 auto; position: relative; }

.section-label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ── chip ─────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-chip);
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  font-size: 12px; font-weight: 500;
  color: var(--text-secondary);
}

/* ── chase streak ─────────────────────────────────────────── */
.streak-host {
  position: absolute; inset: 0;
  pointer-events: none; overflow: visible;
  z-index: 2;
}
.streak-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; overflow: visible;
}
.streak-core, .streak-halo {
  fill: none; stroke-linecap: round;
}
.streak-core {
  stroke: var(--neon); stroke-width: 2px;
  filter: drop-shadow(0 0 6px var(--neon));
}
.streak-halo {
  stroke: var(--neon); stroke-width: 10px;
  opacity: 0.35; filter: blur(8px);
}
@keyframes streak-run {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: var(--streak-perim, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .streak-svg { display: none; }
}

/* ── grids ────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 72px 20px; }
}

/* ── hero backdrop glow ───────────────────────────────────── */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(0, 255, 136, 0.04), transparent 60%),
    radial-gradient(800px 400px at 10% 90%, rgba(0, 212, 255, 0.025), transparent 60%);
  pointer-events: none;
}

.count-up { font-variant-numeric: tabular-nums; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (max-width: 760px) {
  .streak-svg { display: none; }
}

section[id], div[id] { scroll-margin-top: 80px; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(42, 42, 44, 0.6);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img {
  width: 36px; height: 36px; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.45));
  flex-shrink: 0;
}
.nav-brand .wordmark {
  font-size: 15px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--text-primary);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  transition: color 160ms ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link[aria-current="page"] { color: var(--neon); }
.nav-burger {
  display: none;
  background: transparent; border: none;
  color: var(--text-primary);
  padding: 6px; border-radius: 8px;
}
.nav-mobile {
  display: none;
  padding: 8px 24px 18px;
  flex-direction: column; gap: 12px;
  background: rgba(10, 10, 11, 0.95);
  border-top: 1px solid var(--border-default);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 10px 0; }
.nav-mobile .btn { align-self: flex-start; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 24px 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-canvas {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 64px clamp(20px, 4vw, 56px);
  border-radius: 24px;
  border: 1px solid var(--border-default);
  background: linear-gradient(180deg, rgba(26, 26, 28, 0.4) 0%, rgba(10, 10, 11, 0.4) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-right { order: 2; }
}

.hero-cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; flex-wrap: wrap;
}

/* Store badges */
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #000;
  border: 1px solid var(--border-light);
  color: #fff;
}
.store-badge .meta {
  display: flex; flex-direction: column; line-height: 1.1;
}
.store-badge .meta-up   { font-size: 9px;  font-weight: 400; color: #bbb; }
.store-badge .meta-down { font-size: 14px; font-weight: 600; }

/* ── PHONE MOCK ───────────────────────────────────────────── */
.phone {
  position: relative;
  border-radius: calc(var(--phone-h) * 0.07);
  background: linear-gradient(180deg, #131316 0%, #0b0b0d 100%);
  border: 1px solid #1f1f22;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7),
              0 0 60px rgba(0, 255, 136, 0.12),
              inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 7px;
  overflow: hidden;
  flex-shrink: 0;
}
.phone::after {
  content: "";
  position: absolute; inset: 1px;
  border-radius: calc(var(--phone-h) * 0.07 - 1px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: calc(var(--phone-h) * 0.055);
  background: var(--bg-primary);
  overflow: hidden;
}
.phone-screen img {
  display: block;
  width: 100%; height: auto;
  object-fit: cover;
  object-position: top;
  user-select: none;
}

/* ── PROOF STRIP ──────────────────────────────────────────── */
.proof-section { padding-top: 64px; padding-bottom: 64px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: baseline;
}
.proof-item .stat-number {
  font-size: clamp(64px, 6.5vw, 104px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.proof-item .label {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 14px;
}
.proof-item .sub { margin-top: 6px; }
.proof-disclaimer { margin-top: 28px; }

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-wrap { position: relative; }
.how-line {
  position: absolute;
  left: 40px; right: 40px; top: 38px;
  border-top: 1px dashed rgba(0, 255, 136, 0.4);
  z-index: 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.how-card { padding: 24px 24px 28px; }
.how-card .head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.how-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 255, 136, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
}
.how-card .step-num { font-size: 12px; }
.how-card .step-name {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.how-card .step-body { font-size: 15px; }

@media (max-width: 900px) {
  .how-line { display: none; }
  .how-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT ──────────────────────────────────────────────── */
.product-stack { display: flex; flex-direction: column; gap: 72px; }
.product-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.product-row .copy { max-width: 460px; }
.product-row .copy h3 { margin-top: 12px; }
.product-row .copy p  { margin-top: 18px; }
.product-row .visual {
  display: flex; justify-content: center; min-width: 0;
}
.product-row.reverse .copy { order: 2; }
.product-row.reverse .visual { order: 1; }

@media (max-width: 1000px) {
  .product-row { grid-template-columns: 1fr; gap: 32px; }
  .product-row .copy { order: 1; }
  .product-row .visual { order: 2; }
}

.product-cta { display: flex; justify-content: center; margin-top: 56px; }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-head { max-width: 720px; margin-bottom: 56px; }
.pricing-head .h-section { margin-top: 12px; }
.pricing-head p { margin-top: 18px; max-width: 520px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier {
  position: relative;
  border-radius: 18px;
  padding: 28px;
  /* pure black so the black-background VB logos blend in seamlessly */
  background: #000;
  border: 1px solid var(--border-default);
  display: flex; flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 250ms ease;
}
.tier-logo {
  align-self: center;
  width: 96px; height: 96px;
  object-fit: contain;
  margin: -4px 0 -2px;
  user-select: none;
  pointer-events: none;
}
.tier.featured {
  border-color: var(--tier-plus);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.2),
              0 0 32px rgba(255, 215, 0, 0.13);
}
.tier-head { display: flex; align-items: center; justify-content: space-between; }
.tier-head .name-row { display: flex; align-items: center; gap: 10px; }
.tier-dot {
  display: inline-block; width: 12px; height: 12px; border-radius: 999px;
}
.tier-name {
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em;
}
.tier-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  color: #000; padding: 4px 8px; border-radius: 999px;
}
.tier-price {
  display: flex; align-items: baseline; gap: 8px;
}
.tier-price .amount {
  font-size: 44px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text-primary);
}
.tier-price .per { font-size: 14px; color: var(--text-muted); }
.tier-price .was {
  font-size: 22px; font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-right: 2px;
}
.tier-sub { margin-top: 10px; }
.save-pill {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--neon-soft);
  border: 1px solid var(--neon);
  color: var(--neon);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.launch-note {
  margin-top: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}
.launch-note strong { color: var(--text-primary); font-weight: 700; }
.tier ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.tier li { display: flex; gap: 10px; align-items: flex-start; }
.tier li .check { margin-top: 3px; flex-shrink: 0; }
.tier li span.body { font-size: 14px; }
.tier-footer { display: flex; flex-direction: column; gap: 10px; }
.tier-footer .micro { text-align: center; }

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-wrap { max-width: 720px; margin: 0 auto; padding: 0 4px; }
.faq-wrap h2 { margin-top: 12px; margin-bottom: 32px; }
.faq-list { border-top: 1px solid var(--border-default); }
.faq-item { border-bottom: 1px solid var(--border-default); }
.faq-btn {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px;
  background: transparent; border: none;
  color: var(--text-primary); text-align: left;
  font-size: 17px; font-weight: 600; letter-spacing: -0.005em;
  transition: color 160ms ease;
  font-family: inherit;
}
.faq-btn:hover { color: var(--neon); }
.faq-icon {
  margin-left: 16px;
  display: inline-flex;
  transition: transform 200ms ease, color 200ms ease;
}
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--neon); }
.faq-answer {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 280ms ease, opacity 200ms ease;
}
.faq-btn[aria-expanded="true"] + .faq-answer {
  max-height: 240px; opacity: 1;
}
.faq-answer .body { padding: 0 4px 20px; max-width: 620px; }

/* ── FINAL CTA ────────────────────────────────────────────── */
.final {
  position: relative;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px);
  border-radius: 24px;
  background: radial-gradient(ellipse at top, rgba(0, 255, 136, 0.08), transparent 60%),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-default);
  overflow: hidden;
  text-align: center;
}
.final .section-label {
  color: var(--neon);
  text-shadow: 0 0 8px var(--neon);
}
.final .section-label .ldot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 999px; background: var(--neon);
  margin-right: 8px; box-shadow: 0 0 8px var(--neon);
}
.final .h-section {
  margin-top: 16px;
  font-size: clamp(40px, 5.5vw, 72px);
}
.final-ctas {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 32px; flex-wrap: wrap;
}
.email-form {
  margin: 40px auto 0;
  max-width: 480px;
  display: flex; gap: 8px;
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid var(--border-default);
  border-radius: 999px;
  padding: 6px;
}
.email-form input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: var(--text-primary);
  padding: 10px 14px;
  font-size: 14px; font-family: inherit;
}
.email-form input::placeholder { color: var(--text-muted); }
.email-form .btn { padding: 10px 20px; }
.final-fineprint { margin-top: 18px; }

/* ── TESTFLIGHT NOTIFY ────────────────────────────────────── */
.tf-card {
  position: relative;
  padding: clamp(48px, 8vw, 88px) clamp(24px, 5vw, 64px);
  border-radius: 24px;
  background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.10), transparent 60%),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-default);
  overflow: hidden;
  text-align: center;
}
.tf-icon {
  width: 88px; height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 8px 26px rgba(0, 212, 255, 0.4));
  margin-bottom: 22px;
}
.tf-card .section-label { color: var(--info); }
.tf-card .section-label .ldot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 999px; background: var(--info);
  margin-right: 8px; box-shadow: 0 0 8px var(--info);
}
.tf-card .h-section { margin-top: 14px; }
.tf-sub { margin: 16px auto 0; max-width: 540px; }
.tf-form {
  margin: 32px auto 0;
  max-width: 480px;
  display: flex; gap: 8px;
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid var(--border-default);
  border-radius: 999px;
  padding: 6px;
  transition: border-color 160ms ease, box-shadow 200ms ease;
}
.tf-form:focus-within {
  border-color: var(--neon);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.18);
}
.tf-form.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 18px rgba(255, 0, 85, 0.18);
}
.tf-form input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: var(--text-primary);
  padding: 10px 14px;
  font-size: 14px; font-family: inherit;
}
.tf-form input::placeholder { color: var(--text-muted); }
.tf-form .btn { padding: 10px 20px; }
.tf-form input:disabled { color: var(--text-muted); }
.tf-msg {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 13px; font-weight: 500;
}
.tf-msg.ok  { color: var(--neon); }
.tf-msg.err { color: var(--danger); }
.tf-fineprint { margin-top: 10px; }

@media (max-width: 460px) {
  .tf-form { flex-direction: column; border-radius: 18px; }
  .tf-form .btn { width: 100%; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  padding: 64px 24px 40px;
  border-top: 1px solid var(--border-default);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-contact {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact a {
  color: var(--text-secondary);
  transition: color 160ms ease;
}
.footer-contact a:hover { color: var(--neon); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.45));
}
.footer-brand .wordmark { font-size: 14px; font-weight: 800; color: var(--text-primary); }
.footer-disclaimer {
  font-size: 13px; max-width: 320px; color: var(--text-muted); margin: 0;
}
.footer-disclaimer a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-col .section-label {
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
  color: var(--text-muted); font-size: 13px;
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
  flex-wrap: wrap; gap: 12px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* skip link */
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--neon); color: #000;
  padding: 8px 12px; border-radius: 8px;
  font-weight: 700; font-size: 13px;
  z-index: 100;
  transition: top 160ms ease;
}
.skip-link:focus { top: 8px; }

/* ── legal pages ── */
.legal-doc { max-width: 760px; margin: 0 auto; }
.legal-doc .effective-date {
  display: inline-block;
  color: var(--neon);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.02em;
  margin: 12px 0 8px;
}
.legal-doc .lead { font-size: 16px; color: var(--text-secondary); }
.legal-doc h2 {
  font-size: 20px; font-weight: 700;
  color: var(--text-primary);
  margin: 36px 0 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border-default);
}
.legal-doc h2:first-of-type { border-top: none; padding-top: 8px; }
.legal-doc h3 {
  font-size: 15px; font-weight: 600;
  color: var(--text-primary);
  margin: 22px 0 8px;
}
.legal-doc p, .legal-doc li {
  color: var(--text-secondary);
  font-size: 15px; line-height: 1.75;
}
.legal-doc p { margin-bottom: 12px; }
.legal-doc ul, .legal-doc ol { padding-left: 22px; margin-bottom: 16px; }
.legal-doc ul { list-style: disc; }
.legal-doc ol { list-style: decimal; }
.legal-doc li { margin-bottom: 6px; }
.legal-doc li::marker { color: var(--text-muted); }
.legal-doc a {
  color: var(--neon);
  text-decoration: underline; text-underline-offset: 3px;
}
.legal-doc strong { color: var(--text-primary); font-weight: 700; }
.legal-consent-box {
  background: var(--neon-faint);
  border: 1px solid var(--neon-soft);
  padding: 20px; border-radius: var(--r-card);
  margin: 16px 0;
}
.legal-consent-box strong { color: var(--text-primary); }
.legal-sample {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  padding: 16px; border-radius: 12px;
  margin: 10px 0 20px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px; line-height: 1.6;
  color: var(--text-secondary);
}

/* ── beta join page ── */
.beta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 720px) {
  .beta-grid { grid-template-columns: 1fr; }
}
.beta-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex; flex-direction: column;
}
.beta-card .platform-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--bg-tertiary);
  margin-bottom: 18px;
}
.beta-card h3 {
  font-size: 20px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.beta-card .beta-card-sub {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 22px;
}
.beta-steps {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: flex; flex-direction: column; gap: 16px;
  counter-reset: step;
}
.beta-steps li {
  position: relative; padding-left: 40px;
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
  counter-increment: step;
}
.beta-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: -3px;
  width: 27px; height: 27px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--neon-soft);
  border: 1px solid var(--neon);
  color: var(--neon);
  font-size: 12px; font-weight: 800;
}
.beta-card .btn { margin-top: auto; width: 100%; }
.beta-fallback {
  margin-top: 28px;
  text-align: center;
}
