:root {
  color-scheme: dark;
  --bg: #080a18;
  --surface: #11152b;
  --surface-2: #171c38;
  --line: #39436f;
  --text: #f2eefa;
  --dim: #b8a9c8;
  --faint: #897896;
  --accent: #b98cff;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at 10% 0%, #24134d 0, transparent 32rem), var(--bg);
  font-family: "Segoe UI", system-ui, sans-serif;
  line-height: 1.7;
}
a { color: var(--accent); }
.legal-shell { width: min(900px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 70px; }
.legal-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.brand { color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.back { font-size: .85rem; text-decoration: none; }
.legal-card { margin-top: 42px; padding: clamp(24px, 5vw, 54px); background: color-mix(in srgb, var(--surface) 92%, transparent); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 20px 60px rgb(0 0 0 / .24); }
.eyebrow { color: var(--faint); font: 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: Bahnschrift, "Arial Narrow", sans-serif; line-height: 1.08; }
h1 { margin: 12px 0 12px; font-size: clamp(2rem, 5vw, 3.7rem); }
h2 { margin: 34px 0 10px; font-size: 1.45rem; }
p, li { color: var(--dim); }
ul { padding-left: 1.25rem; }
.legal-footer { margin-top: 26px; color: var(--faint); font-size: .78rem; }
@media (max-width: 560px) { .legal-shell { width: min(100% - 20px, 900px); padding-top: 16px; } .legal-nav { align-items: flex-start; flex-direction: column; } }
