:root { --bg:#10140f; --fg:#e7eee4; --muted:#8b9a86; --line:#243024; --accent:#7cb07a; }
* { 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: .08em; }
main { padding: 3rem 0 4rem; flex: 1; }
h1 { font-size: 1.75rem; font-weight: 650; letter-spacing: .06em; margin: 0 0 .75rem; }
.lede { color: var(--muted); margin: 0 0 1.5rem; }
a { color: var(--accent); }
