:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --panel: #34312d;
  --panel-strong: #3a3632;
  --border: #45403a;
  --accent: #81b64c;
  --accent-dark: #6aa23d;
  --muted: #b8b0a4;
  --text: #f4f2ec;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(129, 182, 76, 0.08), transparent 24%),
    linear-gradient(180deg, #322f2c 0%, #2b2926 100%);
  color: var(--text);
}

h1, h2, h3, p, ul {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 6px;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

code {
  background: rgba(129, 182, 76, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  color: var(--text);
}

/* Eyebrow label */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 12px;
}

