section {
  padding: 72px 0
}

/* hero */
.hero {
  background: linear-gradient(160deg, var(--blue-light) 0%, #fff 65%);
  padding: 88px 0 72px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center
}

.hero h1 {
  font-size: 2.9rem;
  line-height: 1.15;
  margin: 14px 0 18px;
  color: var(--blue-dark)
}

.hero h1 em {
  color: var(--orange);
  font-style: normal
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 28px
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-logo {
  text-align: center
}

.hero-logo img {
  max-width: 340px
}

@media(max-width:860px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-logo {
    order: -1
  }

  .hero-logo img {
    max-width: 200px
  }

  .hero h1 {
    font-size: 2.1rem
  }
}

/* pain */
.pain {
  background: var(--blue);
  color: #fff
}

.pain .eyebrow {
  color: #ffb98c
}

.pain h2 {
  color: #fff
}

.pain p {
  color: #cdd5f5;
  max-width: 740px
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px
}

.pain-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 26px
}

.pain-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem
}

.pain-card p {
  font-size: .95rem
}

@media(max-width:760px) {
  .pain-grid {
    grid-template-columns: 1fr
  }
}

/* products */
.prod-intro {
  color: var(--gray);
  max-width: 700px
}

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

.prod {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px rgba(28, 35, 51, .05)
}

.prod.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 26px rgba(242, 106, 31, .15)
}

.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap
}

.soon {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  align-self: flex-start;
  letter-spacing: .04em
}

.prod h3 {
  font-size: 1.35rem;
  margin-bottom: 6px
}

.prod .sub {
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 18px
}

.prod ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1
}

.prod li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: .94rem;
  border-bottom: 1px dashed var(--line)
}

.prod li:last-child {
  border-bottom: none
}

.prod li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--orange);
  font-weight: 700
}

.prod .btn {
  width: 100%;
  text-align: center
}

@media(max-width:860px) {
  .prod-grid {
    grid-template-columns: 1fr
  }
}

/* how */
.how {
  background: var(--blue-light)
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px
}

.how-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--line)
}

.how-card .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px
}

.how-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px
}

.how-card p {
  color: var(--gray);
  font-size: .95rem
}

@media(max-width:760px) {
  .how-grid {
    grid-template-columns: 1fr
  }
}

/* split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.split .panel {
  background: var(--blue-light);
  border-radius: 14px;
  padding: 34px;
  border: 1px solid var(--line)
}

.split .panel.plain {
  background: #fff
}

.split .panel ul {
  list-style: none
}

.split .panel li {
  padding: 8px 0 8px 30px;
  position: relative
}

.split .panel li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700
}

.split p {
  color: var(--gray);
  margin-bottom: 16px
}

@media(max-width:860px) {
  .split {
    grid-template-columns: 1fr
  }
}

/* waitlist */
.waitlist {
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  text-align: center
}

.waitlist h2 {
  color: #fff;
  font-size: 2.2rem
}

.waitlist p {
  color: #cdd5f5;
  max-width: 620px;
  margin: 0 auto 30px
}

.waitlist .btn {
  font-size: 1.05rem;
  padding: 16px 36px
}

.waitlist small {
  display: block;
  margin-top: 16px;
  color: #9daaf0
}