:root {
  --bg: #f7f7f4;
  --text: #1c2321;
  --muted: #5b6662;
  --accent: #1f6f5c;
  --rule: #d9ddd6;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141917;
    --text: #e8ece9;
    --muted: #9aa7a1;
    --accent: #6cc4a8;
    --rule: #2c3531;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

.page {
  flex: 1;
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 18vh 1rem 4rem;
}

.brand {
  margin: 0 0 1.5rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  line-height: 1.15;
  text-wrap: balance;
}

.lede {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.status {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1.25rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}
