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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(27, 109, 103, 0.16), transparent 36%),
    linear-gradient(240deg, rgba(245, 166, 35, 0.18), transparent 34%), #f5f7f3;
}

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

.hero {
  min-height: 48vh;
  display: grid;
  align-content: center;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: #22645f;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 11vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.summary {
  max-width: 660px;
  color: #3f5149;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.45;
}

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

article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(30, 42, 36, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.label {
  display: block;
  margin-bottom: 18px;
  color: #6f7c75;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

article p,
.next p {
  color: #45564f;
  line-height: 1.55;
}

.next {
  max-width: 760px;
  padding-top: 32px;
  border-top: 1px solid rgba(30, 42, 36, 0.18);
}

.next h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

@media (max-width: 760px) {
  main {
    width: min(100% - 24px, 680px);
    padding: 32px 0;
  }

  .hero {
    min-height: 42vh;
  }

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