:root {
  color: #17201c;
  background: #edf2ee;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  place-items: center;
  background: radial-gradient(circle at 12% 8%, #ffffff 0, transparent 32%), #edf2ee;
}

.shell { width: min(48rem, calc(100% - 2rem)); padding: 4rem 0; }
.eyebrow, .label { color: #52705d; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: .35rem 0 .75rem; font-size: clamp(3rem, 10vw, 6rem); line-height: .95; letter-spacing: -.06em; }
.intro { max-width: 34rem; color: #526158; font-size: 1.15rem; line-height: 1.6; }
.health { display: flex; align-items: center; gap: 1rem; margin-top: 3rem; padding: 1.4rem 1.5rem; border: 1px solid #cad7ce; border-radius: 1rem; background: rgba(255,255,255,.72); box-shadow: 0 1.2rem 3rem rgba(29,50,36,.08); }
.health h2 { margin: .2rem 0 0; font-size: 1.6rem; }
.health p { margin: 0; }
.pulse { width: .9rem; height: .9rem; border-radius: 50%; background: #438259; box-shadow: 0 0 0 .45rem rgba(67,130,89,.16); }
.status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 1.5rem; overflow: hidden; border: 1px solid #d2dcd5; border-radius: 1rem; background: #d2dcd5; }
.status-grid div { min-width: 0; padding: 1rem 1.2rem; background: #f9fbf9; }
dt { color: #6c7b71; font-size: .75rem; }
dd { overflow: hidden; margin: .35rem 0 0; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
footer { display: flex; justify-content: space-between; gap: 1rem; color: #6c7b71; font-size: .85rem; }

@media (max-width: 34rem) {
  .status-grid { grid-template-columns: 1fr; }
  footer { display: block; }
}

