body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1d1d1f;
  background: #fff;
}

/* NAV */

.nav {
  padding: 30px 60px;
}

.logo {
  width: 160px;
}

/* HERO */

.hero {
  padding: 140px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 90px;
  margin: 0;
}

.tagline {
  color: #888;
  margin-top: 10px;
}

.lead {
  margin-top: 30px;
  font-size: 22px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTAINER */

.container {
  max-width: 900px;
  margin: auto;
}

.container.narrow {
  max-width: 700px;
}

/* BLOCK */

.block {
  padding: 120px 20px;
}

.block.dark {
  background: #f5f5f7;
}

/* STEPS */

.steps {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.steps h3 {
  font-size: 40px;
}

/* IMAGE */

.image img {
  width: 100%;
}

/* GRID */

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* NUMBERS */

.numbers {
  display: flex;
  justify-content: space-around;
  padding: 120px;
  text-align: center;
}

.numbers span {
  font-size: 48px;
}

/* CTA */

.cta {
  text-align: center;
  padding: 120px;
}

button {
  background: #efb7a0;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
}

/* ANIMATION */

section {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}