:root {
  color-scheme: dark;
  --bg: #050608;
  --surface: #0b121a;
  --text: #ffffff;
  --muted: #c5c9d1;
  --accent: #c2a362;
  --line: rgba(194, 163, 98, 0.28);
  --max-width: 860px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); }
a { color: inherit; text-underline-offset: 0.2em; }
a:hover { color: var(--accent); }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.legal-header { border-bottom: 1px solid var(--line); background: rgba(11, 18, 26, 0.94); }
.legal-nav, .legal-main, .legal-footer { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }
.legal-nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-weight: 700; letter-spacing: 0.12em; text-decoration: none; text-transform: uppercase; }
.back { color: var(--muted); font-size: 0.88rem; }
.legal-main { padding: 64px 0 72px; }
.eyebrow { margin-bottom: 12px; color: var(--accent); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; }
h1 { margin: 0 0 18px; font-size: clamp(2.2rem, 7vw, 3.5rem); line-height: 1.05; }
.lead { max-width: 65ch; margin: 0 0 42px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.legal-section { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.1); }
h2 { margin: 0 0 12px; font-size: 1.35rem; }
p, li { color: var(--muted); line-height: 1.7; }
strong { color: var(--text); }
ul { padding-left: 22px; }
.notice { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.legal-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding: 26px 0 32px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; }
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 560px) {
  .legal-nav { align-items: flex-start; flex-direction: column; justify-content: center; padding: 14px 0; }
  .legal-main { padding-top: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
