:root {
  color: #152017;
  background: #f2f4ee;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(170, 190, 154, 0.35), transparent 32rem),
    linear-gradient(145deg, #f6f7f2 0%, #e9eee4 100%);
}

.page {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 44px;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #57705d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 10vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: #536057;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

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

.card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(50, 70, 54, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 45px rgba(31, 45, 34, 0.06);
  backdrop-filter: blur(8px);
}

.number {
  color: #79917d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.card h2 {
  margin: 48px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.card p {
  margin: 0;
  color: #5c685f;
  line-height: 1.55;
}

.footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: #647068;
  font-size: 0.9rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5b9a69;
  box-shadow: 0 0 0 5px rgba(91, 154, 105, 0.12);
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 620px);
    padding-top: 56px;
  }

  .grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .card {
    min-height: 190px;
  }

  .card h2 {
    margin-top: 28px;
  }
}
