.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.status-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
  text-align: center;
}

.status-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.status-hero h1.ok { color: var(--ok); }
.status-hero h1.degraded { color: #e0b25c; }
.status-hero h1.outage { color: var(--danger); }

.status-updated {
  color: var(--mute);
  font-size: 0.92rem;
}

.status-board,
.status-chart-card {
  max-width: 920px;
  margin: 0 auto 1.25rem;
  border-radius: 24px;
  padding: 1.35rem 1.4rem 1.5rem;
}

.status-board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.status-board-head h2 {
  font-size: 1rem;
  font-weight: 500;
}

.status-filter select {
  background: rgba(0, 0, 0, 0.35);
  color: var(--pearl);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font: inherit;
  font-size: 0.82rem;
}

.status-comp {
  padding: 1.05rem 0 1.15rem;
  border-top: 1px solid var(--line);
}

.status-comp:first-of-type { border-top: 0; padding-top: 0.2rem; }

.status-comp-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.status-name {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mute);
  box-shadow: 0 0 0 4px rgba(157, 203, 154, 0.08);
}

.status-dot.ok {
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(157, 203, 154, 0.16);
  animation: pulse 2.4s ease-out infinite;
}

.status-dot.down {
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(232, 160, 160, 0.16);
  animation: none;
}

.status-uptime {
  color: var(--mute);
  font-size: 0.82rem;
}

.status-bar {
  display: flex;
  gap: 2px;
  height: 28px;
}

.status-bar i {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.status-bar i.up { background: #3dd68c; }
.status-bar i.degraded { background: #e0b25c; }
.status-bar i.down { background: #e85d6c; }

.status-live-readout {
  color: var(--mute);
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
}

.status-chart-wrap {
  height: 220px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  overflow: hidden;
}

.status-chart-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.status-chart-axis {
  display: flex;
  justify-content: space-between;
  color: var(--mute);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.55rem;
}

.status-legend {
  display: flex;
  gap: 1rem;
  color: var(--mute);
  font-size: 0.8rem;
}

.status-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.35rem;
}

.status-legend .dot.api { background: var(--gold); }
.status-legend .dot.web { background: #8b93ff; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(157, 203, 154, 0.35); }
  100% { box-shadow: 0 0 0 10px rgba(157, 203, 154, 0); }
}

@media (max-width: 700px) {
  .status-bar { height: 22px; gap: 1px; }
}
