:root {
  --gold: #f0b90b;
  --gold-light: #ffd75e;
  --navy-950: #060a14;
  --navy-900: #0a0e1a;
  --navy-800: #101728;
  --border: #26314a;
  --text: #f1f5f9;
  --muted: #9aa5bb;
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(240,185,11,0.1), transparent 34rem),
    var(--navy-950);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.legal-nav {
  border-bottom: 1px solid rgba(240,185,11,0.12);
  background: rgba(6,10,20,0.82);
}

.legal-nav-inner {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand span { color: var(--gold); }
.back-link { color: var(--gold-light); font-size: 0.9rem; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

main {
  width: min(780px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 100px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.updated { margin: 18px 0 48px; color: var(--muted); }

.notice {
  margin-bottom: 42px;
  border: 1px solid rgba(240,185,11,0.25);
  border-radius: 16px;
  background: rgba(240,185,11,0.07);
  padding: 18px 20px;
  color: #d8dfeb;
}

section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

h2 { margin: 0 0 12px; font-size: 1.35rem; letter-spacing: -0.025em; }
p, li { color: #bcc6d7; }
ul { padding-left: 1.25rem; }
a { color: var(--gold-light); }
strong { color: var(--text); }

footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 18px;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

@media (max-width: 560px) {
  main { padding-top: 52px; }
  .legal-nav-inner { align-items: flex-start; }
  .back-link { padding-top: 3px; }
}
