* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f5f7;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0 50px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(54px, 9vw, 112px);
  line-height: .92;
  letter-spacing: -.06em;
  margin: 0;
  font-weight: 700;
}

.lead {
  font-size: clamp(25px, 4vw, 44px);
  letter-spacing: -.035em;
  margin: 30px 0 14px;
  font-weight: 600;
}

.sub {
  max-width: 700px;
  margin: 0;
  color: #6e6e73;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
}

.actions a {
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: transform .18s ease, opacity .18s ease;
}

.actions a:hover {
  transform: translateY(-1px);
  opacity: .88;
}

.primary {
  background: #1d1d1f;
  color: white;
}

.secondary {
  background: white;
  border: 1px solid #d2d2d7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 40px 0 120px;
}

.card {
  background: white;
  border-radius: 28px;
  padding: 34px;
  min-height: 260px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.num {
  color: #86868b;
  font-size: 13px;
  font-weight: 700;
}

.card h2 {
  font-size: 32px;
  margin: 52px 0 12px;
  letter-spacing: -.04em;
}

.card p {
  margin: 0;
  color: #6e6e73;
  line-height: 1.5;
  font-size: 17px;
}

.statement {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.statement p {
  font-size: clamp(52px, 9vw, 112px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 700;
  margin: 0;
}

footer {
  border-top: 1px solid #d2d2d7;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  color: #6e6e73;
  font-size: 14px;
}

footer a {
  text-decoration: none;
}

@media (max-width: 760px) {
  main {
    padding: 0 20px;
  }

  .hero {
    min-height: 78vh;
  }

  .grid {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
  }

  .card {
    min-height: 220px;
  }

  footer {
    flex-direction: column;
  }
}
