:root {
  color-scheme: dark;
  --background: #07120f;
  --surface: #0c1c17;
  --surface-raised: #11251e;
  --line: #254138;
  --text: #f1f8f5;
  --muted: #a9beb6;
  --brand: #59e2aa;
  --brand-dark: #103a2c;
  --warning: #ffd27a;
  --danger: #ff8f8f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--background); }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(89, 226, 170, .12), transparent 30rem),
    linear-gradient(180deg, #081611 0%, var(--background) 55%);
}
button, a { font: inherit; }
a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 10;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: #06120e;
  background: var(--brand);
  border-radius: .5rem;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.topbar, main, footer {
  width: min(70rem, calc(100% - 2rem));
  margin-inline: auto;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: #06120e;
  background: var(--brand);
  border-radius: .65rem;
  font-weight: 900;
}
.surface-name {
  padding-left: .7rem;
  color: var(--muted);
  border-left: 1px solid var(--line);
}
.locale-switcher {
  display: flex;
  gap: .25rem;
  padding: .25rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: rgba(12, 28, 23, .8);
}
.locale-switcher button, .retry-button {
  min-height: 2.5rem;
  padding: .55rem .85rem;
  color: var(--muted);
  border: 0;
  border-radius: .55rem;
  background: transparent;
  cursor: pointer;
}
.locale-switcher button[aria-pressed="true"] {
  color: #06120e;
  background: var(--brand);
  font-weight: 750;
}
button:focus-visible, a:focus-visible {
  outline: 3px solid var(--warning);
  outline-offset: 3px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  padding: 5.5rem 0 3.5rem;
}
.eyebrow, .card-label, .notice-state {
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  max-width: 13ch;
  margin: .7rem 0 1rem;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.intro {
  max-width: 43rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.privacy-seal {
  display: flex;
  align-items: center;
  gap: .65rem;
  max-width: 14rem;
  padding: 1rem;
  color: #c9f9e5;
  border: 1px solid #276447;
  border-radius: 1rem;
  background: rgba(16, 58, 44, .55);
  line-height: 1.35;
}
.privacy-seal span {
  flex: 0 0 auto;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 .35rem rgba(89, 226, 170, .12);
}
.status-content {
  min-height: 18rem;
  padding-bottom: 5rem;
}
.loading-bar {
  overflow: hidden;
  height: .3rem;
  border-radius: 1rem;
  background: var(--surface-raised);
}
.loading-bar::after {
  display: block;
  width: 35%;
  height: 100%;
  content: "";
  background: var(--brand);
  animation: load 1.3s ease-in-out infinite alternate;
}
@keyframes load { from { transform: translateX(-100%); } to { transform: translateX(290%); } }
@media (prefers-reduced-motion: reduce) { .loading-bar::after { animation: none; width: 100%; opacity: .45; } }
.state-panel, .summary-card, .service-card, .notices article {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(17, 37, 30, .95), rgba(12, 28, 23, .88));
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .15);
}
.state-panel {
  max-width: 48rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.state-panel h2 { margin: 1rem 0 .65rem; font-size: clamp(1.5rem, 4vw, 2.25rem); }
.state-panel p { max-width: 36rem; margin: 0; color: var(--muted); line-height: 1.65; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .45rem .7rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 18, 15, .55);
  font-size: .84rem;
  font-weight: 750;
}
.status-badge::before {
  width: .55rem;
  height: .55rem;
  content: "";
  border-radius: 50%;
  background: currentColor;
}
.status-operational { color: var(--brand); }
.status-degraded, .status-maintenance { color: var(--warning); }
.status-outage { color: var(--danger); }
.summary-card { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.service-card { display: flex; min-height: 8rem; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 1.2rem; }
.service-card h2 { margin: 0; font-size: 1.05rem; }
.generated-at { margin: 1.25rem 0 0; color: var(--muted); font-size: .85rem; }
.notices { margin-top: 3rem; }
.notices > h2 { font-size: 1.15rem; }
.notices article { margin-top: .75rem; padding: 1.25rem; }
.notices h3 { margin: .5rem 0; }
.notices p { margin: 0; color: var(--muted); line-height: 1.55; }
.retry-button { margin-top: 1.25rem; color: #06120e; background: var(--brand); font-weight: 800; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .88rem;
}
footer p { max-width: 42rem; margin: 0; line-height: 1.5; }
.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 720px) {
  .topbar { align-items: flex-start; padding: 1rem 0; }
  .surface-name { display: none; }
  .locale-switcher button { padding-inline: .6rem; }
  .hero { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 3.5rem; }
  .privacy-seal { max-width: none; }
  .service-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
