:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --ink: #202321;
  --muted: #656b66;
  --line: #d9ddd6;
  --accent: #2f6f62;
  --accent-soft: #dfece8;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.intro {
  width: min(100%, 720px);
}

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

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 13vw, 7.5rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.9;
}

.lede {
  max-width: 42rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-top: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.status:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .page {
    place-items: end start;
    padding: 24px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }
}
