:root {
  color-scheme: dark;
  --ink: #e8e5dc;
  --muted: #9f9c93;
  --line: #343631;
  --paper: #111310;
  --panel: #191c18;
  --accent: #c9d88a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 82% 3%, #24291e 0, transparent 34rem), var(--paper); }
a { color: inherit; text-decoration-color: #71766a; text-underline-offset: .25rem; }
a:hover, a:focus-visible { color: var(--accent); }
.site-header, main, footer { width: min(72rem, calc(100% - 2.5rem)); margin-inline: auto; }
.site-header { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.wordmark { font: 700 .78rem/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .22em; text-decoration: none; }
nav { display: flex; gap: 1.5rem; font-size: .92rem; }
nav a { text-decoration: none; color: var(--muted); }
nav a[aria-current="page"] { color: var(--ink); }
.hero { padding: clamp(5rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem); max-width: 58rem; }
.eyebrow, .index, .meta { font: 600 .72rem/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
h1 { margin: .65rem 0 1.4rem; max-width: 15ch; font-size: clamp(3rem, 8vw, 7rem); font-weight: 450; line-height: .94; letter-spacing: -.055em; }
.lede { max-width: 43rem; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.65; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.note { min-height: 19rem; padding: clamp(1.4rem, 3vw, 2.6rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--panel) 84%, transparent); }
.note-wide { grid-column: 1 / -1; min-height: 24rem; }
.note h2 { max-width: 18ch; margin: 2.4rem 0 1.1rem; font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.02; font-weight: 500; letter-spacing: -.035em; }
.note p:not(.index):not(.meta) { max-width: 38rem; color: var(--muted); line-height: 1.65; }
.meta { margin-top: 3rem; color: #767a70; }
.prose { padding: clamp(5rem, 10vw, 9rem) 0; max-width: 54rem; min-height: calc(100vh - 12rem); }
.prose h1 { font-size: clamp(3rem, 7vw, 6rem); }
.prose > p:not(.eyebrow) { max-width: 43rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.75; }
.text-link { color: var(--ink); }
.archive-list { list-style: none; padding: 0; margin: 4rem 0 0; border-top: 1px solid var(--line); }
.archive-list li { display: grid; grid-template-columns: 4rem 1fr 1fr; gap: 1rem; align-items: baseline; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.archive-list span { font: .75rem ui-monospace, SFMono-Regular, Consolas, monospace; color: var(--accent); }
.archive-list strong { font-weight: 520; }
.archive-list em { color: var(--muted); font-style: normal; font-size: .9rem; }
footer { display: flex; justify-content: space-between; gap: 2rem; padding: 2.5rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
footer p { margin: 0; }
@media (max-width: 44rem) {
  .site-header { align-items: flex-start; padding-block: 1.5rem; }
  nav { gap: .9rem; }
  .grid { grid-template-columns: 1fr; }
  .note-wide { grid-column: auto; }
  .archive-list li { grid-template-columns: 3rem 1fr; }
  .archive-list em { grid-column: 2; }
}
