:root {
  color-scheme: light;
  --text: #17212f;
  --muted: #5d6878;
  --line: #d9e0e7;
  --paper: #f6f3ed;
  --accent: #0d6b61;
  --accent-strong: #074d47;
  --gold: #b9792d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(13, 107, 97, 0.12), transparent 42%),
    linear-gradient(245deg, rgba(185, 121, 45, 0.14), transparent 38%),
    var(--paper);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 40px;
}

.hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 10vw, 7.8rem);
  line-height: 0.95;
  font-weight: 800;
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--muted);
}

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

.actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.45);
}

.actions a:first-child {
  color: #fff;
  background: var(--accent);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
}

.status-grid article {
  padding: 18px 0;
}

.status-grid span {
  display: block;
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
}

.status-grid h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

@media (max-width: 720px) {
  .page-shell {
    padding-top: 36px;
  }

  .hero {
    min-height: 62vh;
  }

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

  .status-grid article {
    border-bottom: 1px solid var(--line);
  }
}
