:root {
  --bg: #0a0a0b;
  --ink: #f2f2f3;
  --muted: #8b8b93;
  --dim: #5c5c64;
  --line: #232326;
  --line-2: #2e2e33;
  --accent: #7ee0b0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--muted); }
.shell { width: min(760px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 11, .86);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  color: var(--ink); font-weight: 700; letter-spacing: -.02em;
  font-size: 16px; text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.brand img, .brand .mark { width: 28px; height: 28px; display: block; object-fit: contain; }
.crumb {
  font-size: 12px;
  color: var(--dim);
}
.legal { padding: 56px 0 80px; }
.kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -.038em;
  line-height: 1.15;
  margin: 10px 0 16px;
}
.lede { color: var(--muted); margin-bottom: 36px; max-width: 62ch; }
h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 32px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
p, li { color: var(--muted); margin-bottom: 10px; }
ol, ul { padding-left: 22px; margin-bottom: 12px; }
li { margin-bottom: 8px; }
.toc {
  border: 1px solid var(--line);
  background: #111113;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 0 0 36px;
}
.toc a {
  display: block; color: var(--muted); margin: 6px 0; font-size: 14px;
  text-decoration: none;
}
.toc a:hover { color: var(--ink); }
.cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 36px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 16px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px; font-weight: 500;
  text-decoration: none;
}
.btn--primary { background: var(--ink); color: #0a0a0b; border-color: var(--ink); }
footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 32px;
  font-size: 13px;
  color: var(--dim);
  display: flex; justify-content: space-between; gap: 16px;
}
@media (max-width: 700px) {
  footer { flex-direction: column; }
}
