:root {
  color-scheme: light dark;
  --bg: #0f1410;
  --panel: #1a221c;
  --text: #eef2ea;
  --muted: #9aa394;
  --accent: #c4e86a;
  --border: #2a342c;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f4f6f1;
    --panel: #ffffff;
    --text: #1a221c;
    --muted: #5c665e;
    --accent: #3d6b1e;
    --border: #d7ddd2;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 232, 106, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(80, 120, 90, 0.18), transparent 50%),
    var(--bg);
  color: var(--text);
}

.shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 12px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 600;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 32px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.1rem;
  margin: 0 0 12px;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.55;
}

li + li { margin-top: 6px; }

.status {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  color: var(--accent);
  margin: 0 0 10px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
}

.foot {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

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