:root {
  color-scheme: light dark;
  --bg: #0f1a14;
  --card: #1a2b22;
  --text: #e8f3ec;
  --muted: #9eb5a8;
  --accent: #7fd99a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: radial-gradient(circle at top, #1f3b2d, var(--bg));
  color: var(--text);
}

.shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.8rem;
}

.prose section {
  margin: 1.5rem 0;
}

.prose code {
  background: var(--card);
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
}

a {
  color: var(--accent);
}
