:root {
  color: hsl(212 48% 13%);
  background: hsl(210 35% 97%);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, hsl(206 88% 94%), transparent 42%),
    hsl(210 35% 97%);
}

.status-card {
  width: min(100%, 720px);
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid hsl(211 28% 84%);
  border-radius: 12px;
  background: hsl(0 0% 100% / 92%);
  box-shadow: 0 18px 52px hsl(212 48% 13% / 8%);
}

.eyebrow {
  margin: 0 0 12px;
  color: hsl(211 24% 42%);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Outfit, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 28px;
  color: hsl(211 24% 34%);
  font-size: 1.05rem;
  line-height: 1.65;
}

.state {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid hsl(38 72% 70%);
  border-radius: 10px;
  background: hsl(42 92% 95%);
}

.state-marker {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border: 3px solid hsl(38 88% 38% / 22%);
  border-radius: 50%;
  background: hsl(38 88% 38%);
  background-clip: padding-box;
}

.state h2 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.state p {
  margin: 0;
  color: hsl(32 40% 27%);
  line-height: 1.55;
}

dl {
  margin: 28px 0 0;
  border-top: 1px solid hsl(211 28% 88%);
}

dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) 1.2fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid hsl(211 28% 88%);
}

dt {
  color: hsl(211 24% 42%);
}

dd {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 560px) {
  body {
    place-items: start center;
    padding: 16px;
  }

  .status-card {
    padding: 24px 20px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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