:root {
  --bg: #0b0d10;
  --surface: #14181d;
  --text: #e8eaed;
  --muted: #9aa0a6;
  --accent: #4ade80;
  --border: #232830;
  --max-width: 760px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 96px;
}

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
}

header.site .brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

header.site nav a {
  margin-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

header.site nav a:hover { color: var(--text); text-decoration: none; }

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

p { color: var(--text); }
.muted { color: var(--muted); }

.lede {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

ul { padding-left: 22px; }
li { margin: 6px 0; }

footer.site {
  border-top: 1px solid var(--border);
  padding: 24px;
  max-width: var(--max-width);
  margin: 48px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--text); }

.legal h2 { margin-top: 32px; }
.legal p, .legal li { color: #cfd2d6; }

.meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}
