:root {
  --sky: oklch(0.93 0.07 230);
  --sky-mid: oklch(0.82 0.10 230);
  --sky-deep: oklch(0.65 0.12 235);
  --gold: oklch(0.87 0.14 85);
  --gold-light: oklch(0.95 0.07 85);
  --gold-pale: oklch(0.97 0.04 85);
  --white: oklch(0.99 0.005 85);
  --grass: oklch(0.82 0.12 155);
  --grass-light: oklch(0.93 0.07 155);
  --ink: oklch(0.28 0.04 235);
  --ink-light: oklch(0.48 0.05 230);
  --border: oklch(0.75 0.08 230 / 0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.7;
}

body {
  font-family: "Fredoka", Georgia, serif;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(
      ellipse at 60% 0%,
      oklch(0.87 0.14 85 / 0.25) 0%,
      transparent 55%
    ),
    radial-gradient(
    ellipse at 10% 80%,
    oklch(0.82 0.12 155 / 0.18) 0%,
    transparent 45%
  ),
    radial-gradient(
    ellipse at 90% 70%,
    oklch(0.82 0.10 230 / 0.20) 0%,
    transparent 50%
  ),
    linear-gradient(
    175deg,
    var(--sky) 0%,
    var(--white) 55%,
    var(--gold-pale) 100%
  );
  background-attachment: fixed;
}

main {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
footer {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 3rem;
  font-size: 0.875rem;
  color: var(--ink-light);
  border-top: 1px solid var(--border);
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tagline {
  color: var(--ink-light);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.2rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section h2 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky-deep);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
section p, section li {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
}
section ol {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
section li {
  padding-left: 0.2rem;
}
p.note {
  font-size: 0.9rem;
  color: var(--ink-light);
  font-style: italic;
}

ul.members {
  list-style: none;
}
li.member {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
li.member:first-child {
  border-top: 1px solid var(--border);
}
li.member::before {
  content: "🐾 ";
  font-size: 0.8rem;
  opacity: 0.6;
  margin-right: 0.1rem;
}
a.domain {
  font-family: "Menlo", "Consolas", "Monaco", monospace;
  font-size: 0.9rem;
  color: var(--sky-deep);
  text-decoration: none;
  font-weight: 500;
}
a.domain:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--sky-mid);
}

pre.snippet {
  font-family: "Menlo", "Consolas", "Monaco", monospace;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--ink);
  background: oklch(0.99 0.005 85 / 0.75);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  margin-top: 0.4rem;
  white-space: pre;
}

a {
  color: var(--sky-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: oklch(0.65 0.12 235 / 0.35);
}
a:hover {
  text-decoration-color: var(--sky-deep);
}
code {
  font-family: "Menlo", "Consolas", "Monaco", monospace;
  font-size: 0.875em;
  color: var(--ink);
  background: oklch(0.82 0.10 230 / 0.15);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

footer a {
  color: var(--ink-light);
  text-decoration-color: var(--border);
}
footer a:hover {
  color: var(--sky-deep);
}
