:root {
  --bg: #0f1419;
  --fg: #e8edf2;
  --muted: #8b98a5;
  --line: #243040;
  --accent: #c9a227;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrap { width: min(40rem, calc(100% - 2rem)); margin: 0 auto; }
header.site, footer.site { padding: 1.25rem 0; }
header.site { border-bottom: 1px solid var(--line); }
footer.site { border-top: 1px solid var(--line); margin-top: auto; color: var(--muted); font-size: .875rem; }
.brand { color: var(--fg); text-decoration: none; font-weight: 700; letter-spacing: .04em; }
main { padding: 3rem 0 4rem; flex: 1; }
h1 { font-size: 1.75rem; font-weight: 650; letter-spacing: -.02em; margin: 0 0 .75rem; }
.lede { color: var(--muted); margin: 0 0 1.5rem; }
.slot {
  min-height: 6rem;
  border: 1px dashed var(--line);
  border-radius: .5rem;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: .8rem;
  margin: 1.5rem 0;
}
a { color: var(--accent); }
.prose p { color: var(--muted); }
