:root {
  --bg: #f6f0e6;
  --ink: #17212b;
  --muted: #5e6b76;
  --line: #d7c7b1;
  --panel: rgba(255, 252, 247, 0.88);
  --accent: #0b6e4f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(11, 110, 79, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p,
ul,
pre {
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: 0.98;
  max-width: 10ch;
}

.lede {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.panel {
  margin-top: 24px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.panel h2 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

ul {
  padding-left: 20px;
  line-height: 1.8;
}

pre {
  overflow-x: auto;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: "SFMono-Regular", ui-monospace, monospace;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.status[data-state="ok"] {
  color: var(--accent);
  font-weight: 600;
}

.status[data-state="missing"] {
  color: #8f2d2d;
  font-weight: 600;
}
