:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #18202f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(68, 126, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #f5f7fb 0%, #edf3ff 44%, #f7f9fc 100%);
}

.status-panel {
  width: min(760px, 100%);
  border: 1px solid rgba(39, 54, 83, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(28px, 6vw, 56px);
  box-shadow: 0 24px 70px rgba(30, 46, 78, 0.14);
}

.eyebrow {
  margin: 0 0 14px;
  color: #2d6cdf;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #46546f;
  font-size: 18px;
  line-height: 1.7;
}

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

.facts div {
  min-width: 0;
  border: 1px solid rgba(39, 54, 83, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

dt {
  margin: 0 0 8px;
  color: #697794;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: #1f293a;
  font-size: 16px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #18a058;
  box-shadow: 0 0 0 5px rgba(24, 160, 88, 0.12);
}

.timestamp {
  margin: 28px 0 0;
  color: #596985;
  font-size: 14px;
}

@media (max-width: 640px) {
  .shell {
    place-items: stretch;
    padding: 16px;
  }

  .status-panel {
    align-self: center;
  }

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