*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #111111;
  --surface: #111111;
  --cream: #e8e8e0;
  --cream-rgb: 232,232,224;
  --line: rgba(var(--cream-rgb),0.14);
  --text: var(--cream);
  --muted: rgba(var(--cream-rgb),0.62);
  --red: #ff5a4d;
  --paper: var(--cream);
  --grid-step: 4rem;
}
html {
  background: var(--bg); color: var(--text); scroll-behavior: smooth;
  overscroll-behavior-x: none;
}
body {
  background:
    linear-gradient(rgba(232,232,224,0.022) 1px, transparent 1px) 0 0 / 100% var(--grid-step),
    var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
}
a { color: inherit; text-underline-offset: 3px; }

header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 2rem 0.35rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  z-index: 50;
}
.brand {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
#last-updated-label {
  margin-left: auto;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.hdr-d1 + .hdr-d2 { margin-left: 0.35em; }

main { min-height: calc(100svh - 48px); }

.hero {
  position: relative;
  padding: 6rem 2rem 4rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-inner, .content-inner, .footer-inner {
  width: min(860px, calc(100vw - 4rem));
  margin: 0 auto;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text);
}
.lede {
  max-width: 680px;
  margin-top: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.75rem;
  color: var(--muted);
}

.content { padding: 4rem 2rem; }

.section {
  max-width: 820px;
  margin: 0 auto 4rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(232,232,224,0.12);
}
.section:last-child { margin-bottom: 0; }
.section-rule {
  border: none;
  border-top: 1px solid var(--line);
  margin-bottom: 2rem;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.body-copy {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.75rem;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 1.25rem;
}
.body-copy:last-child { margin-bottom: 0; }
.body-copy a { color: var(--text); }

footer { border-top: 1px solid var(--line); }
.footer-inner {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 11px;
}
.made { color: var(--muted); }
.made a { color: rgba(var(--cream-rgb),0.78); }
.links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.links a { color: rgba(232,232,224,0.45); text-decoration: none; }
.links a:hover { color: var(--text); }

@media (max-width: 800px) {
  .hero { padding: 4rem 1rem 4rem; }
  .hero-inner, .content-inner, .footer-inner { width: min(100%, calc(100vw - 2rem)); }
  .content { padding: 3.5rem 1rem; }
  .section { padding-left: 0.9rem; }
}
@media (max-width: 640px) {
  header {
    padding: 1rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 0.5rem;
    position: static;
  }
  .brand, #last-updated-label { font-size: 13px; line-height: 1.2; }
  .brand { white-space: normal; }
  .hdr-t2, .hdr-d1, .hdr-d2 { display: block; }
  .hdr-d1, .hdr-d2 { text-align: right; }
  .hdr-d1 + .hdr-d2 { margin-left: 0; }
}