:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5e6a72;
  --line: #d8dfdf;
  --paper: #f7f4ed;
  --blue: #2457a6;
  --green: #13795b;
  --coral: #c4533d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(36, 87, 166, 0.16), transparent 34%),
    linear-gradient(215deg, rgba(19, 121, 91, 0.14), transparent 36%),
    var(--paper);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0 40px;
  display: grid;
  align-content: space-between;
  gap: 48px;
}

.hero {
  max-width: 780px;
}

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

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.45;
}

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

.actions a {
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.actions a + a {
  background: transparent;
  color: var(--ink);
}

.status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.status article {
  min-height: 168px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.status span {
  color: var(--coral);
  font-weight: 900;
}

.status h2 {
  margin: 24px 0 8px;
  font-size: 1.15rem;
}

.status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1120px);
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(3.6rem, 19vw, 6.5rem);
  }

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