:root {
  --bg: #F3F2F2;
  --ink: #201E1D;
  --red: #EC3013;
  --red-ink: #AE1800;
  --muted: rgba(32, 30, 29, 0.7);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141312;
    --ink: #F3F2F2;
    --red-ink: #FF6A52;
    --muted: rgba(243, 242, 242, 0.72);
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", -apple-system, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  padding: 48px 24px 96px;
}
main { max-width: 640px; margin: 0 auto; }
.wordmark {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: 0.14em; font-size: 16px;
  text-decoration: none; color: var(--ink);
}
.wordmark::before {
  content: ""; width: 12px; height: 12px; background: var(--red); display: inline-block;
}
.rule { height: 2px; background: var(--ink); opacity: 0.4; margin: 20px 0 40px; }
.kicker {
  color: var(--red-ink); font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px;
}
h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 24px; }
h2 {
  font-size: 15px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; margin: 40px 0 10px;
}
p, li { font-size: 16px; margin-bottom: 12px; }
ul { padding-left: 22px; }
a { color: var(--red-ink); font-weight: 600; }
.muted { color: var(--muted); font-size: 14px; }
footer { margin-top: 64px; }
