:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f8fb;
  color: #161a20;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

main {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  margin-bottom: 32px;
}

h1 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

p {
  color: #586070;
  line-height: 1.6;
}

.eyebrow {
  margin: 0;
  color: #1f6feb;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.status-grid article {
  background: #ffffff;
  border: 1px solid #dde2ea;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgb(30 41 59 / 8%);
  min-height: 112px;
  padding: 20px;
}

.status-grid span {
  color: #586070;
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.status-grid strong {
  color: #161a20;
  font-size: 1.25rem;
}

@media (max-width: 640px) {
  main {
    padding: 40px 0;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}
