:root {
  --bg: #071410;
  --bg-elevated: #0d221c;
  --ink: #f2f8f5;
  --ink-muted: #8aa89b;
  --accent: #c4f042;
  --line: rgba(242, 248, 245, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

header {
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

header a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1rem 5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  color: var(--accent);
}

p {
  color: var(--ink-muted);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.9rem;
}
