/* RAVEN Status — specialized layer over the shared content visual system. */

.status-page main {
  width: min(calc(100% - (var(--gutter) * 2)), var(--page));
  max-width: none;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
}

.status-page .eyebrow {
  margin-bottom: .7rem;
  color: var(--violet-bright);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .19em;
}

.status-page h1 {
  color: #f0edf6;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: .94;
}

.status-page h1 span { color: var(--accent-soft); }

.status-page .lede {
  max-width: 700px;
  margin-top: .85rem;
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.7;
}

.status-page .summary {
  min-height: 104px;
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  overflow: hidden;
  border-color: rgba(76, 175, 130, .28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 0%, rgba(76, 175, 130, .09), transparent 16rem),
    linear-gradient(145deg, rgba(18, 24, 25, .9), rgba(12, 10, 18, .97));
  box-shadow: 0 22px 58px rgba(0, 0, 0, .2);
}

.status-page .summary::before,
.status-page .summary::after { display: none; }

.status-page .pulse { width: 11px; height: 11px; }

.status-page .summary-title {
  color: #e9f2ed;
  font-size: 1.35rem;
  letter-spacing: .04em;
}

.status-page .summary-meta,
.status-page .updated { color: var(--muted); }

.status-page .refresh {
  min-height: 42px;
  padding: 0 1rem;
  border-color: rgba(76, 175, 130, .38);
  border-radius: 8px;
  color: var(--green);
  background: rgba(76, 175, 130, .045);
}

.status-page .refresh:hover { background: rgba(76, 175, 130, .1); }

.status-page .section-head {
  margin: 2.75rem 0 .8rem;
  padding: 0 .15rem;
}

.status-page h2 {
  color: #eeeaf5;
  font-size: 1.25rem;
  letter-spacing: .04em;
}

.status-page .count { color: var(--muted); }

.status-page .services {
  overflow: hidden;
  border-color: var(--border);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 14, 29, .96), rgba(10, 8, 16, .97));
  box-shadow: 0 18px 52px rgba(0, 0, 0, .16);
}

.status-page .service {
  min-height: 76px;
  padding: 1rem 1.2rem;
  border-color: var(--border);
}

.status-page .service:hover { background: rgba(255, 255, 255, .014); }

.status-page .service-name {
  color: var(--text);
  font-size: 1.05rem;
}

.status-page .service-group,
.status-page .uptime { color: var(--muted); }

.status-page .history {
  width: 170px;
  height: 24px;
  gap: 3px;
}

.status-page .tick { border-radius: 2px; }

.status-page .badge {
  min-width: 126px;
  justify-content: flex-end;
}

.status-page .incidents { gap: .75rem; }

.status-page .incident,
.status-page .empty {
  padding: 1.2rem 1.3rem;
  border-color: var(--border);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(18, 14, 29, .94), rgba(10, 8, 16, .96));
}

.status-page .incident-title { color: var(--text); font-size: 1rem; }
.status-page .incident-meta { color: var(--muted); }

@media (max-width: 860px) {
  .status-page .header-nav { display: none; }
  .status-page .hamburger { display: flex; }
  .status-page .mobile-nav { display: flex; }
}

@media (max-width: 700px) {
  .status-page main { width: calc(100% - 2rem); padding-top: 2rem; }
  .status-page h1 { font-size: clamp(2.55rem, 13vw, 3.5rem); }
  .status-page .summary { align-items: stretch; }
  .status-page .refresh { width: 100%; }
  .status-page .service { align-items: flex-start; }
  .status-page .service-health { align-items: flex-end; }
  .status-page .badge { min-width: 0; }
}
