:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b1020;
  color: #eef2ff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at top, #172554 0, #0b1020 48%);
}

.card {
  width: min(100%, 640px);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid #273454;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.eyebrow {
  margin: 0 0 8px;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 32px;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.05;
}

.status-list {
  border-top: 1px solid #273454;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #273454;
}

.operational {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #86efac;
  font-weight: 650;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.13);
}

.note {
  margin: 24px 0 0;
  color: #94a3b8;
}

@media (max-width: 480px) {
  .status-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
