:root {
  color-scheme: dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07111f;
  color: #e8eef8;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #16335d, #07111f 60%);
}

.status-card {
  width: min(520px, calc(100% - 64px));
  padding: 48px;
  border: 1px solid #2b496f;
  border-radius: 20px;
  background: rgb(9 24 43 / 88%);
  box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

.eyebrow {
  color: #72a7ec;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

h1 {
  margin: 12px 0;
  font-size: clamp(42px, 10vw, 72px);
  line-height: 1;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #81e6b3;
  font-size: 13px;
  font-weight: 700;
}

.status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #35d07f;
  box-shadow: 0 0 14px #35d07f;
}
