:root {
  color-scheme: dark;
  --bg: #07110c;
  --surface: rgba(255, 255, 255, 0.06);
  --border: rgba(247, 241, 223, 0.16);
  --text: #f7f1df;
  --muted: rgba(247, 241, 223, 0.70);
  --leaf: #41c965;
  --gold: #f0a91f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(65, 201, 101, 0.20), transparent 34rem),
    linear-gradient(145deg, #07110c, #111713 72%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

header,
section {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  background: var(--surface);
}

h1 {
  margin: 0 0 8px;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

p {
  margin: 0 0 12px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--gold);
  font-weight: 800;
}

.meta {
  color: var(--muted);
  font-weight: 700;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
