:root {
  color-scheme: dark;
  --ink: #07131c;
  --panel: #0d202b;
  --line: rgba(157, 189, 200, 0.2);
  --text: #f4f8f8;
  --muted: #a8bec5;
  --accent: #4de3c2;
  --max: 920px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.legal-header { border-bottom: 1px solid var(--line); background: rgba(7,19,28,.96); }
.nav { width: min(1180px, calc(100% - 48px)); min-height: 82px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: .12em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--accent); color: var(--ink); font-size: 19px; }
.brand-copy { display: grid; gap: 2px; line-height: 1; }
.brand-copy small { color: var(--muted); font-size: .56rem; letter-spacing: .16em; }
.back { color: var(--accent); text-decoration: none; font-weight: 700; font-size: .9rem; }
.back:hover { text-decoration: underline; text-underline-offset: 4px; }
main { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 86px 0 110px; }
.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2 { line-height: 1.15; letter-spacing: -.025em; }
h1 { max-width: 760px; margin: 0 0 18px; font-size: clamp(2.7rem, 7vw, 5.5rem); letter-spacing: -.05em; }
.lead { max-width: 740px; margin-bottom: 34px; color: #bdd0d6; font-size: 1.12rem; }
.meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 0 0 52px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.notice { margin: 0 0 48px; padding: 22px 24px; border-left: 3px solid var(--accent); background: var(--panel); color: #c7d7db; }
.legal-section { padding: 34px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 14px; font-size: 1.55rem; }
.legal-section p:last-child, .legal-section ul:last-child { margin-bottom: 0; }
p, li { color: #c3d2d7; }
li + li { margin-top: 9px; }
.contact-box { margin-top: 48px; padding: 30px; background: var(--accent); color: #071713; }
.contact-box h2 { margin-top: 0; }
.contact-box p { color: #16493e; }
.contact-box a { font-weight: 800; }
footer { padding: 30px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-row { width: min(1180px, calc(100% - 48px)); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; font-size: .88rem; }
.footer-row a:hover { color: var(--text); }
@media (max-width: 620px) {
  .nav, main, .footer-row { width: min(100% - 30px, var(--max)); }
  .nav { min-height: 72px; }
  .brand-copy small { font-size: .52rem; }
  main { padding: 64px 0 82px; }
  h1 { font-size: 2.7rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
