:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5f6873;
  --line: #d7dde3;
  --paper: #f8fafc;
  --white: #ffffff;
  --aqua: #1f9aa2;
  --rose: #d94f80;
  --gold: #b8872d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

main {
  min-height: 100vh;
}

.hero {
  padding: 72px 24px 48px;
  max-width: 1120px;
  margin: 0 auto;
}

.hero.compact {
  padding-bottom: 24px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

a {
  color: inherit;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.primary {
  color: var(--white);
  background: var(--ink);
}

.secondary {
  background: var(--white);
}

.status-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.status-band div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.status-band div:last-child {
  border-right: 0;
}

.status-band span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.status-band strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 56px auto 0;
  padding: 0 24px;
}

article,
.notice {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

article {
  padding: 24px;
}

h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

article p,
.notice p {
  color: var(--muted);
  line-height: 1.6;
}

code {
  display: block;
  margin-top: 16px;
  overflow-wrap: anywhere;
  color: var(--rose);
  font-size: 14px;
}

.notice {
  max-width: 1072px;
  margin: 24px auto 72px;
  padding: 24px;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 44px;
  }

  .status-band,
  .grid {
    grid-template-columns: 1fr;
  }

  .status-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .notice {
    margin-left: 24px;
    margin-right: 24px;
  }
}
