:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --ink: #172033;
  --muted: #5c667a;
  --line: #d9e0ea;
  --brand: #005ea8;
  --accent: #1f8f6a;
  --panel: #ffffff;
}

* {
  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(--ink);
  background:
    linear-gradient(120deg, rgba(0, 94, 168, 0.11), transparent 42%),
    linear-gradient(300deg, rgba(31, 143, 106, 0.12), transparent 38%),
    var(--bg);
}

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

.hero {
  max-width: 760px;
  padding: 0 0 36px;
}

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

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

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

.status div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status div:nth-child(3n) {
  border-right: 0;
}

.status div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.status span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

  .status div,
  .status div:nth-child(3n),
  .status div:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  footer {
    flex-direction: column;
  }
}
