/* Standalone styling for /privacy and /terms. These pages must render without the app's
   JS or its full stylesheet chain — a crawler or a reviewer with scripts off has to be
   able to read them — so this file is self-contained and mirrors the design tokens by
   value rather than importing them. */
:root {
  --bg: #0B0E14;
  --text: #F5F7FA;
  --text-2: #C4CBD6;
  --muted: #8A93A3;
  --lime: #CBFF2E;
  --border: #1E2530;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.legal {
  max-width: 44rem;
  margin: 0 auto;
  padding: 40px 22px 72px;
}

.legal-back { margin: 0 0 28px; font-size: 14px; }
.legal-back a { color: var(--muted); text-decoration: none; font-weight: 600; }
.legal-back a:hover { color: var(--lime); }

.legal h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 6px;
  color: var(--text);
  text-transform: uppercase;
}
.legal-date { margin: 0 0 30px; font-size: 13.5px; color: var(--muted); }

.legal h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 22px;
  margin: 34px 0 10px;
  color: var(--text);
  text-transform: uppercase;
}

.legal p { margin: 0 0 14px; font-size: 15.5px; }
.legal strong { color: var(--text); font-weight: 700; }

.legal ul { margin: 0 0 14px; padding-left: 20px; font-size: 15.5px; }
.legal li { margin-bottom: 8px; }

.legal a { color: var(--lime); }
.legal a:hover { color: #DDFF6B; }

.legal-foot {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 480px) {
  .legal { padding: 28px 18px 56px; }
  .legal h1 { font-size: 31px; }
}
