:root {
  --bg: #030712;
  --surface: rgba(17, 24, 39, 0.82);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f9fafb;
  --muted: #b6becb;
  --primary: #818cf8;
  --purple: #c084fc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(99, 102, 241, 0.2), transparent 30rem),
    radial-gradient(circle at 90% 70%, rgba(168, 85, 247, 0.14), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.7;
}

a { color: var(--primary); }
.shell { width: min(920px, calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  border-bottom: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar .shell { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { color: white; font-size: 1.35rem; font-weight: 800; text-decoration: none; }
.brand span { background: linear-gradient(90deg, var(--primary), var(--purple)); background-clip: text; color: transparent; }
.back { color: var(--muted); text-decoration: none; font-weight: 600; }
.back:hover { color: white; }
main { padding: 4rem 0; }
.document {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  padding: clamp(1.4rem, 4vw, 3.5rem);
}
.eyebrow { color: var(--primary); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
h1 { margin: .35rem 0 .5rem; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; }
.updated { margin: 0 0 2.2rem; color: var(--muted); }
h2 { margin: 2.3rem 0 .6rem; color: white; font-size: 1.25rem; }
p, li { color: var(--muted); }
strong { color: #e5e7eb; }
ul { padding-left: 1.3rem; }
.notice { margin-top: 2.4rem; padding: 1rem 1.15rem; border-left: 3px solid var(--primary); background: rgba(99, 102, 241, .1); border-radius: 8px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.legal-nav a { text-decoration: none; font-weight: 600; }
footer { padding: 0 0 3rem; color: #7f8998; text-align: center; font-size: .85rem; }
@media (max-width: 560px) { .topbar .shell { min-height: 62px; } .back { font-size: .85rem; } main { padding: 2rem 0; } }
