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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #f6f7f4 0%, #ffffff 54%, #e6f4ee 100%);
}

.site-shell {
  width: min(1120px, calc(100vw - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 64px 0;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #17724e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

p {
  margin: 0;
  max-width: 680px;
  color: #50554f;
  line-height: 1.6;
}

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

.status-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid #dfe6dc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(31, 52, 41, 0.08);
}

.status-grid span {
  display: block;
  margin-bottom: 18px;
  color: #9b6d1f;
  font-size: 12px;
  font-weight: 800;
}

.status-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

@media (max-width: 760px) {
  .site-shell {
    padding: 40px 0;
  }

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