:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #07111f;
  color: #edf6ff;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgb(24 119 242 / 22%), transparent 36rem),
    linear-gradient(145deg, #07111f, #0b1d32 60%, #07111f);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.hero {
  width: min(100%, 48rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #70c7ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.summary {
  max-width: 42rem;
  margin: 2rem 0;
  color: #afc2d6;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.status-card {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgb(112 199 255 / 25%);
  border-radius: 1rem;
  background: rgb(7 17 31 / 62%);
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 24%);
  backdrop-filter: blur(1rem);
}

.status-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.status-card p {
  margin: 0;
  color: #afc2d6;
}

.status-indicator {
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 auto;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #f5b942;
  box-shadow: 0 0 1rem rgb(245 185 66 / 70%);
}

.status-card.is-healthy .status-indicator {
  background: #49e6a5;
  box-shadow: 0 0 1rem rgb(73 230 165 / 70%);
}

.status-card.is-unhealthy .status-indicator {
  background: #ff6b81;
  box-shadow: 0 0 1rem rgb(255 107 129 / 70%);
}
