:root {
  --bg: #050505;
  --fg: #f4f4f0;
  --muted: #92978a;
  --accent: #ccff00;
  --line: rgba(255, 255, 255, 0.1);
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
header, main { max-width: 760px; margin: 0 auto; padding: 24px; }
header { display: flex; justify-content: space-between; align-items: center; }
nav a, .links a, .brand { color: var(--fg); text-decoration: none; }
nav a { margin-left: 16px; color: var(--muted); }
.brand { font-weight: 700; letter-spacing: 0.04em; }
.eyebrow {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 { font-size: 2.4rem; line-height: 1.1; }
.lede, p { color: var(--muted); line-height: 1.6; }
.button {
  display: inline-block;
  margin-top: 8px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 4px;
  text-decoration: none;
}
.links { padding: 0; list-style: none; }
.links li { margin: 8px 0; }
.legal h2 { margin-top: 2rem; }
