.status-main {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.status-header .brand img {
  height: 148px;
}

.status-nav a[aria-current="page"] {
  color: var(--text-main);
  background: rgba(58, 168, 255, 0.14);
}

.status-intro {
  max-width: 760px;
  margin: 1rem auto 2rem;
  text-align: center;
}

.status-intro h1 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(2.25rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.status-intro > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.overall-card,
.status-service-card,
.coverage-card {
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--bg-panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.overall-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  transition: border-color 180ms ease, background 180ms ease;
}

.overall-card.is-up {
  border-color: rgba(55, 200, 113, 0.42);
  background: linear-gradient(135deg, rgba(55, 200, 113, 0.1), rgba(9, 24, 58, 0.78));
}

.overall-card.is-down {
  border-color: rgba(255, 92, 92, 0.45);
  background: linear-gradient(135deg, rgba(255, 92, 92, 0.1), rgba(9, 24, 58, 0.78));
}

.overall-state {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-indicator {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.06);
}

.status-indicator.is-up {
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(55, 200, 113, 0.12), 0 0 24px rgba(55, 200, 113, 0.55);
}

.status-indicator.is-down {
  background: #ff5c5c;
  box-shadow: 0 0 0 7px rgba(255, 92, 92, 0.12), 0 0 24px rgba(255, 92, 92, 0.5);
}

.status-indicator.is-checking {
  background: var(--accent-bright);
  animation: status-pulse 1.1s ease-in-out infinite alternate;
}

@keyframes status-pulse {
  to { opacity: 0.35; }
}

.overall-label,
.service-kicker {
  margin: 0 0 0.2rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.overall-card h2,
.status-service-card h2,
.coverage-card h2 {
  margin: 0;
}

.overall-card h2 {
  font-size: clamp(1.25rem, 4vw, 1.8rem);
}

.status-refresh {
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.status-refresh:hover,
.status-refresh:focus-visible {
  border-color: rgba(58, 168, 255, 0.7);
  background: rgba(58, 168, 255, 0.12);
}

.status-refresh:disabled {
  cursor: wait;
  opacity: 0.55;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.status-service-card {
  min-height: 190px;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.status-service-card h2 {
  font-size: 1.12rem;
}

.status-service-card > p {
  margin: 1.4rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-state {
  flex: 0 0 auto;
  padding: 0.36rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.service-state.is-up {
  color: #85f0ae;
  background: rgba(55, 200, 113, 0.12);
}

.service-state.is-down {
  color: #ff9b9b;
  background: rgba(255, 92, 92, 0.12);
}

.service-state.is-checking {
  color: #8bcaff;
  background: rgba(58, 168, 255, 0.12);
}

.coverage-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.coverage-card .eyebrow {
  margin-bottom: 0.4rem;
}

.coverage-card h2 {
  font-size: 1.35rem;
}

.country-list {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.country-list span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(58, 168, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(30, 107, 255, 0.09);
  font-size: 0.78rem;
  font-weight: 750;
}

.status-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 820px) {
  .status-grid { grid-template-columns: 1fr; }
  .coverage-card { align-items: flex-start; flex-direction: column; }
  .country-list { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .status-header .brand img { height: 170px; }
  .status-main { padding-top: 1rem; }
  .status-intro { margin-top: 0; }
  .overall-card { align-items: stretch; flex-direction: column; }
  .status-refresh { width: 100%; }
  .status-meta { align-items: center; flex-direction: column; }
  .status-meta span[aria-hidden="true"] { display: none; }
}
