:root {
  color-scheme: light;
  --ink: #161616;
  --muted: #5d6470;
  --paper: #f7f5ef;
  --line: #d9d1c1;
  --green: #176b4d;
  --amber: #b25f18;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

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

.shell {
  width: min(1080px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 64px 0 48px;
}

.hero {
  min-height: 52vh;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-label,
.label {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  margin-top: 16px;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

article {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
}

article strong {
  display: block;
  margin-top: 42px;
  color: var(--amber);
  font-size: 1.35rem;
  font-weight: 750;
}

article p,
.next p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.next {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.next h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.next p:last-child {
  max-width: 620px;
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .shell {
    width: min(100vw - 24px, 680px);
    padding-top: 32px;
  }

  .hero {
    min-height: 46vh;
  }

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

  article {
    min-height: 150px;
  }

  article strong {
    margin-top: 28px;
  }
}

