:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #51615b;
  --paper: #f7f8f4;
  --panel: #ffffff;
  --line: #d8ded6;
  --accent: #2f6b4f;
  --focus: #b45309;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
}

a {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 48px 24px;
}

.hero {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 7vw, 76px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.status {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.note {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
