:root {
  --bg: #090909;
  --panel: #111111;
  --text: #f5f5f5;
  --muted: #9d9d9d;
  --line: #2a2a2a;
  --accent: #ffffff;
  --max: 980px;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: var(--text); text-underline-offset: 3px; }
a:hover { opacity: .72; }

.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.topbar {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(9, 9, 9, .92);
  backdrop-filter: blur(12px);
  z-index: 20;
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
}

.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.nav a[aria-current="page"] { color: var(--text); }

main { padding: 72px 0 88px; }
.eyebrow { color: var(--muted); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; }
h1 { font-size: clamp(2.4rem, 7vw, 5.6rem); line-height: .95; letter-spacing: -.055em; margin: 14px 0 26px; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin: 48px 0 12px; letter-spacing: -.025em; }
h3 { margin: 28px 0 8px; }
p, li { color: #d6d6d6; }
.lead { max-width: 760px; font-size: 1.08rem; color: #c8c8c8; }

.notice {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px 20px;
  margin: 28px 0;
}
.notice strong { color: var(--text); }

.placeholder {
  border-bottom: 1px dashed #777;
  color: #fff;
  font-weight: 700;
}

section { max-width: 820px; }
ul { padding-left: 22px; }
code { background: #151515; padding: 2px 6px; border: 1px solid #242424; }

.legal-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 0 38px;
}
.legal-footer-inner { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.legal-links a { color: var(--muted); text-decoration: none; }

@media (max-width: 640px) {
  .topbar-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  main { padding-top: 48px; }
}
