:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f646d;
  --surface: #f7f4ee;
  --accent: #1c6b5a;
  --accent-strong: #124c40;
  --line: rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--surface);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(28, 107, 90, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(196, 87, 59, 0.12), transparent 38%),
    var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
}

.hero {
  width: min(100%, 760px);
  padding: clamp(28px, 6vw, 72px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 14vw, 8.75rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.38;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 700;
}

.status::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

@media (max-width: 520px) {
  .page-shell {
    place-items: start center;
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(3.5rem, 20vw, 5.25rem);
  }
}
