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

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 15%, rgb(28 112 144 / 32%), transparent 38%),
    radial-gradient(circle at 84% 82%, rgb(190 139 72 / 22%), transparent 42%),
    linear-gradient(145deg, #03101c 0%, #082438 55%, #061520 100%);
}

main {
  width: min(880px, calc(100% - 36px));
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid rgb(229 208 166 / 28%);
  border-radius: 28px;
  background: rgb(3 18 31 / 78%);
  box-shadow: 0 30px 90px rgb(0 0 0 / 38%);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #d9b878;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.lede {
  max-width: 630px;
  margin: 28px 0 0;
  color: #c9d8df;
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.65;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.status-item {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgb(188 218 229 / 18%);
  border-radius: 16px;
  background: rgb(14 44 61 / 55%);
}

.status-item span {
  display: block;
  margin-bottom: 7px;
  color: #8eabb7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-item strong,
.status-item code {
  display: block;
  overflow: hidden;
  color: #f7f2e8;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.health-link {
  display: inline-block;
  margin-top: 26px;
  color: #d9b878;
  font-size: 13px;
  text-underline-offset: 4px;
}

@media (max-width: 680px) {
  .status-grid { grid-template-columns: 1fr; }
}
