/* ── Google Fonts ───────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  --bg: #0a0a0b;
  --surface: #141416;
  --surface2: #1c1c20;
  --border: #2a2a2f;
  --text: #e8e6e3;
  --muted: #7a7880;
  --accent: #d4f534;
  --accent-dark: #1a1f08;
  --success: #22c55e;
  --success-dark: #0f2a10;
  --fail: #ef4444;
  --fail-dark: #2a0a0a;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

/* ── Site Nav ───────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 52px;
  gap: 16px;
}

.site-nav .logo {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -1px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 20px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.site-nav-links a:hover {
  color: var(--text);
  background: var(--surface2);
}

.site-nav-links a.active {
  color: var(--text);
  background: var(--surface2);
}

@media (max-width: 480px) {
  .site-nav {
    padding: 0 12px;
    height: auto;
    min-height: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .site-nav-links a {
    font-size: 12px;
    padding: 4px 9px;
  }
}

/* ── Content Sections ───────────────────────────────────────────── */
.content-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.page-intro {
  padding: 48px 0 40px;
}

.page-intro h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.page-intro p {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.page-intro .cta-line {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
}

.content-sections {
  padding: 40px 0 64px;
}

.content-sections section {
  margin-bottom: 48px;
}

.content-sections h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.content-sections p {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.content-sections p:last-child {
  margin-bottom: 0;
}

.content-sections ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.content-sections ul li {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.content-sections ul li::before {
  content: '—';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-answer {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer .footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.site-footer .footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--border);
  letter-spacing: 0.5px;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.site-footer .footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.site-footer .footer-links a:hover {
  color: var(--text);
}
