:root {
  color-scheme: dark;
  --background: #111114;
  --panel: #1b1b1f;
  --ink: #f4f4f6;
  --muted: #a1a1aa;
  --accent: #ff7a1a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--ink);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    sans-serif;
}

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

.status-panel {
  width: min(100%, 680px);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(28px, 7vw, 56px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

.summary {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.facts div {
  min-width: 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

dd {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .status-panel {
    padding: 28px;
  }

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