:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5b6770;
  --paper: #f7f3ea;
  --panel: #ffffff;
  --line: #d8d3c8;
  --accent: #e85d2a;
  --accent-2: #24786d;
}

* {
  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(135deg, rgba(232, 93, 42, 0.12), transparent 32%),
    linear-gradient(225deg, rgba(36, 120, 109, 0.14), transparent 34%),
    var(--paper);
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.panel {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(23, 32, 38, 0.14);
}

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

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 7rem, 5rem);
  line-height: 0.95;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.status-grid > div {
  min-width: 0;
  padding: 18px;
  background: #fbfaf6;
}

.status-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.status-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 1rem;
}

@media (max-width: 680px) {
  .shell {
    align-items: start;
    padding: 18px;
  }

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