:root {
  color-scheme: light;
  --bg: #f4f7f3;
  --ink: #17211b;
  --muted: #607067;
  --panel: #ffffff;
  --line: #d8e1dc;
  --accent: #1f7a5c;
  --accent-strong: #145b44;
  --warm: #f4b860;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(31, 122, 92, 0.12), rgba(244, 184, 96, 0.18)),
    var(--bg);
}

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

.panel {
  width: min(920px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(23, 33, 27, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.status-grid div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

dd {
  min-height: 28px;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 19px;
  font-weight: 800;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.checks span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0f513a;
  background: rgba(31, 122, 92, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.checks span::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

@media (max-width: 680px) {
  .status-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 26px 18px;
  }
}
