:root {
  color-scheme: dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  background: #03101f;
  color: #f4f8fc;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgb(17 76 121 / 58%), transparent 38rem),
    linear-gradient(145deg, #06182b 0%, #020b16 72%);
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
}

.card {
  width: min(74rem, 100%);
  padding: clamp(1.5rem, 5vw, 5rem);
  border: 1px solid #1b4b69;
  border-radius: 2rem;
  background: rgb(4 22 39 / 93%);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 32%);
}

.brand {
  margin: 0 0 3rem;
  color: #67dbff;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.35em;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #a9bdd0;
  font-weight: 700;
}

.status-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #ffbd45;
  box-shadow: 0 0 1rem rgb(255 189 69 / 72%);
}

html[data-health="ready"] .status-dot {
  background: #4ce29a;
  box-shadow: 0 0 1rem rgb(76 226 154 / 72%);
}

h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 62ch;
  margin: 2rem 0 3rem;
  color: #b8cad9;
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid #1c4059;
}

.facts div {
  min-width: 0;
  padding: 1.25rem 0;
  border-bottom: 1px solid #17354b;
}

.facts div:nth-child(odd) {
  padding-right: 2rem;
}

dt {
  margin-bottom: 0.4rem;
  color: #718da3;
  font-size: 0.95rem;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
}

.privacy,
noscript {
  display: block;
  margin: 2rem 0 0;
  color: #718da3;
  font-size: 0.9rem;
}

@media (max-width: 44rem) {
  .facts {
    grid-template-columns: 1fr;
  }

  .facts div:nth-child(odd) {
    padding-right: 0;
  }

  .brand {
    margin-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
