.status-page {
  background: var(--bg);
}

.status-main {
  padding: 64px 0 80px;
}

.status-container {
  width: min(780px, 92vw);
  margin: 0 auto;
}

.status-container h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 2.45rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.status-lead {
  max-width: 680px;
  margin: 16px 0 34px;
  color: var(--muted);
  font-size: 1.04rem;
}

.status-overview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-overview div {
  display: grid;
  gap: 3px;
}

.status-overview strong {
  font-size: 1.05rem;
}

.status-overview span:not(.status-dot) {
  color: var(--muted);
  font-size: 0.88rem;
}

.status-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 50%;
  background: #7f92a8;
  box-shadow: 0 0 0 5px rgba(127, 146, 168, 0.12);
}

.status-dot.is-operational {
  background: #42d39b;
  box-shadow: 0 0 0 5px rgba(66, 211, 155, 0.12);
}

.status-dot.is-degraded {
  background: #f4bd50;
  box-shadow: 0 0 0 5px rgba(244, 189, 80, 0.12);
}

.status-dot.is-outage {
  background: #f36f7d;
  box-shadow: 0 0 0 5px rgba(243, 111, 125, 0.12);
}

.status-components {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.status-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.status-row h2 {
  margin: 0 0 5px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.status-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.component-state {
  min-width: 112px;
  text-align: right;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.component-state.is-operational {
  color: var(--ok);
}

.component-state.is-degraded {
  color: var(--warning);
}

.component-state.is-outage {
  color: var(--error);
}

.status-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 620px) {
  .status-main {
    padding: 42px 0 64px;
  }

  .status-container h1 {
    font-size: 1.9rem;
  }

  .status-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .component-state {
    min-width: 0;
    text-align: left;
  }

  .status-actions .btn {
    width: 100%;
  }
}
