*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #CDFF00;
  --brand-dark: #a8d400;
  --brand-glow: rgba(205,255,0,0.15);
  --bg:  #000000;
  --bg2: #0A0A0A;
  --bg3: #111111;
  --bg4: #1A1A1A;
  --border: rgba(255,255,255,0.08);
  --text: #FFFFFF;
  --muted: #888888;
  --radius: 20px;
  --max: 1320px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(8,12,24,0.88);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 1.25rem; font-weight: 800; color: var(--text);
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.4px;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-brand { color: var(--text); }
.nav-brand em { font-style: normal; color: var(--brand); }
.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.875rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--brand); color: #000;
  padding: 9px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.875rem;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: .3s;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 5% 36px;
  background: var(--bg2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: var(--max); margin: 0 auto 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.875rem; max-width: 260px; line-height: 1.7; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; }
.footer-badge {
  background: var(--brand-glow); border: 1px solid rgba(126,211,33,0.2);
  color: var(--brand); font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800; letter-spacing: -1px; line-height: 1.12;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--muted); font-size: 1.05rem;
  max-width: 540px; line-height: 1.7;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #000;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--brand-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126,211,33,0.25);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--brand); transform: translateY(-2px); }

/* ── FADE ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── INNER PAGE HERO ── */
.page-hero {
  padding: 140px 5% 80px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--brand-glow), transparent);
}
.page-hero .section-heading { margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── PROSE (privacy/support) ── */
.prose {
  max-width: 780px; margin: 0 auto;
  padding: 0 5% 100px;
}
.prose h2 {
  font-size: 1.3rem; font-weight: 700; margin: 48px 0 12px;
  padding-top: 48px; border-top: 1px solid var(--border);
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { color: var(--muted); font-size: 0.95rem; margin-bottom: 8px; line-height: 1.8; }
.prose a { color: var(--brand); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--text); }
.prose .updated { color: var(--muted); font-size: 0.8rem; margin-bottom: 40px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
