:root {
  --bg: #f7f7f5;
  --fg: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #1a4d3a;
  --border: #dddad3;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101110;
    --fg: #f2f2f0;
    --muted: #a3a3a0;
    --accent: #7fd9ae;
    --border: #2a2b29;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
}

.wrap {
  max-width: 34rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.25;
  font-weight: 600;
}

.lede {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

footer {
  position: fixed;
  bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}
