:root {
  color-scheme: dark;
  --bg: #080d12;
  --text: #f7f9fc;
  --muted: #a5b2bf;
  --line: rgba(255, 255, 255, .12);
  --accent: #54d6ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: inherit; text-underline-offset: 4px; }
a:hover { color: var(--accent); }
.wrap { width: min(820px, calc(100% - 32px)); margin: 0 auto; }

header {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 18, .94);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img { width: 32px; height: 32px; }
.back { color: var(--muted); text-decoration: none; }
main { padding: 56px 0 80px; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 750;
  text-transform: uppercase;
}

h1, h2 { letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(2.3rem, 8vw, 4.6rem); line-height: 1; }
h2 { margin: 38px 0 8px; font-size: 1.25rem; }
p { margin: 8px 0 0; }
ul { margin: 10px 0 0; padding-left: 22px; }
li + li { margin-top: 6px; }
.intro { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.legal-content { margin-top: 42px; padding-top: 4px; border-top: 1px solid var(--line); }
address { margin-top: 12px; font-style: normal; }
.updated { margin-top: 42px; color: var(--muted); font-size: .9rem; }

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  color: var(--muted);
}

.footer-row { display: flex; justify-content: space-between; gap: 18px; }
.footer-links { display: flex; gap: 16px; }

@media (max-width: 600px) {
  main { padding-top: 38px; }
  .nav, .footer-row { align-items: flex-start; flex-direction: column; padding: 14px 0; }
}
