:root {
  --bg: #101210;
  --panel: #1b1f1a;
  --text: #f5f7ef;
  --muted: #a9aea4;
  --accent: #b9ff2e;
  --line: #343a32;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.72; }
a { color: inherit; }
.site-header, main, footer { width: min(1060px, calc(100% - 40px)); margin-inline: auto; }
.site-header { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 19px; font-weight: 800; }
.brand b { color: var(--accent); }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--accent); color: #101210; }
nav { display: flex; gap: 22px; }
nav a, footer a { color: var(--muted); text-decoration: none; }
nav a:hover, footer a:hover { color: var(--accent); }
main { padding: 92px 0 72px; min-height: calc(100vh - 160px); }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 780px; margin: 0 0 34px; font-size: clamp(44px, 8vw, 86px); line-height: 1.02; letter-spacing: -.045em; }
h2 { margin: 0 0 10px; font-size: 22px; line-height: 1.35; }
p { margin: 0 0 18px; color: var(--muted); }
.lede { max-width: 760px; font-size: clamp(20px, 3vw, 28px); color: var(--text); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 64px; }
.pill-row span { padding: 9px 14px; border: 1px solid #4e5a41; border-radius: 999px; color: #dfe8d5; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
article, .notice, .legal { padding: 28px; background: var(--panel); border: 1px solid var(--line); border-radius: 22px; }
.notice { margin-top: 18px; border-color: #526326; }
.notice a, .legal a { color: var(--accent); }
.legal { max-width: 820px; }
.legal h2:not(:first-child) { margin-top: 32px; }
footer { padding: 28px 0 40px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); }
@media (max-width: 720px) {
  .site-header { align-items: flex-start; padding: 20px 0; }
  nav { gap: 12px; font-size: 14px; }
  main { padding-top: 56px; }
  .grid { grid-template-columns: 1fr; }
  article, .notice, .legal { padding: 22px; border-radius: 18px; }
  footer { flex-direction: column; }
}
