:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e6e8ee;
  --green: #20a66b;
  --blue: #2563eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: var(--blue);
  font-weight: 700;
}

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

.hero,
.card {
  width: min(760px, 100%);
}

.hero {
  padding: 24px 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 6vw, 48px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 9vw, 76px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 32px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.lede {
  max-width: 620px;
  font-size: 22px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--text);
  text-decoration: none;
}

.links a:first-child {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}

.updated,
.fineprint {
  font-size: 14px;
}

.fineprint {
  margin-top: 32px;
  color: #8b93a3;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
