/* Plain, readable legal page styling. Matches the marketing site's
   dark surface without pulling in the full React bundle. */
:root {
  color-scheme: dark;
  --bg: #0a0b14;
  --bg-soft: #14151f;
  --text: #ecedf3;
  --text-dim: #b1b5c4;
  --accent: #7C5CFF;
  --border: #232634;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.legal-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 6rem;
}
.legal-back {
  display: inline-block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  transition: color 0.15s ease;
}
.legal-back:hover { color: var(--text); }
h1 {
  font-size: 2.2rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.legal-eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.legal-updated {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin: 0 0 2.5rem;
}
h2 {
  font-size: 1.2rem;
  margin: 2.5rem 0 0.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1rem; color: var(--text); }
ul { margin: 0 0 1.2rem; padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }
a { color: var(--accent); }
a:hover { text-decoration: underline; }
strong { font-weight: 600; }
.legal-foot {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
}
