:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: linear-gradient(145deg, #ffffff 45%, #f5f9ff 100%);
}

.status-card {
  width: min(100%, 42rem);
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 1.5rem 4rem rgb(15 23 42 / 8%);
}

.status-indicator {
  width: 2.75rem;
  height: 0.25rem;
  margin-bottom: 2rem;
  border-radius: 999px;
  background: #2563eb;
}

.brand,
.version,
.message,
.details p {
  margin: 0;
}

.brand {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0.65rem 0 0.75rem;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.version {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 650;
}

.message {
  margin-top: 2.5rem;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 0.85rem;
}

@media (max-width: 32rem) {
  .status-card {
    border-radius: 1rem;
  }

  .details {
    display: grid;
  }
}
