:root {
  color-scheme: light dark;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7f6;
  color: #18211f;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(35, 106, 88, 0.08), transparent 280px),
    #f5f7f6;
}

.status-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 24px;
}

.status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
}

.brand {
  color: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.overall,
.service-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.status-hero {
  padding: 64px 0 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #236a58;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.status-hero p:last-child {
  margin: 0;
  color: #52625e;
  font-size: 1rem;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid #d7e0dd;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.service-name {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 800;
}

.service-description {
  margin: 0;
  color: #586763;
  font-size: 0.92rem;
  line-height: 1.45;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(24, 33, 31, 0.08);
}

.dot--ok {
  background: #168a4a;
}

.dot--warning {
  background: #d98a11;
}

.dot--error {
  background: #c83b35;
}

@media (max-width: 640px) {
  .status-shell {
    padding: 18px;
  }

  .status-header,
  .service-row {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .status-header {
    flex-direction: column;
  }

  .status-hero {
    padding: 42px 0 26px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #111614;
    color: #edf4f1;
  }

  body {
    background:
      linear-gradient(180deg, rgba(112, 208, 184, 0.12), transparent 280px),
      #111614;
  }

  .eyebrow {
    color: #70d0b8;
  }

  .status-hero p:last-child,
  .service-description {
    color: #b9c6c2;
  }

  .service-row {
    border-color: #30413c;
    background: rgba(24, 33, 31, 0.86);
  }
}
