.landing-page .nav {
  background: transparent;
  border-bottom: none;
}

.landing-page .nav.scrolled {
  box-shadow: none;
}

.landing-page .nav__inner {
  height: auto;
  min-height: var(--nav-h);
  padding-top: 14px;
  padding-bottom: 10px;
}

.landing-nav__logo {
  min-height: 34px;
  padding-top: 6px;
}

.landing-nav__logo-image {
  width: 168px;
  height: auto;
  display: block;
}

.landing-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(240, 90, 34, 0.24), transparent 36%),
    linear-gradient(180deg, #fff3ec 0%, #fffaf7 30%, #ffffff 100%);
}

.landing-hero__glow {
  position: absolute;
  top: -180px;
  width: 520px;
  height: 320px;
  filter: blur(80px);
  opacity: 0.75;
  pointer-events: none;
}

.landing-hero__glow--left {
  left: -120px;
  background: rgba(240, 90, 34, 0.34);
}

.landing-hero__glow--right {
  right: -120px;
  background: rgba(212, 78, 26, 0.4);
}

.landing-hero__inner {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 96px;
  padding-bottom: 84px;
  position: relative;
  z-index: 1;
}

.landing-hero__title {
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--black);
  max-width: 780px;
  margin-bottom: 28px;
}

.landing-hero__subhead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--gray-2);
  max-width: 660px;
  margin-bottom: 34px;
}

.landing-hero__actions {
  margin-bottom: 96px;
}

.landing-hero__primary-cta {
  min-width: 320px;
  background: var(--orange);
  color: var(--white);
}

.landing-hero__primary-cta::before {
  background: var(--black);
}

.landing-hero__primary-cta:hover {
  color: var(--white);
}

.landing-proof {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.landing-proof__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--black);
}

.landing-proof__icon {
  width: 48px;
  height: 48px;
  color: var(--black);
}

.landing-proof__icon svg {
  width: 100%;
  height: 100%;
}

.landing-proof__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.landing-proof__text {
  max-width: 240px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--gray-3);
}

.landing-hero .hero__scroll-cue {
  color: rgba(17, 17, 17, 0.5);
  bottom: 24px;
}

.landing-page .cta-final {
  min-height: 100vh;
  min-height: 100svh;
}

.landing-page .cta-final__inner {
  padding-bottom: calc(var(--section-pad) + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 1024px) {
  .landing-proof {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .landing-hero__actions {
    margin-bottom: 64px;
  }
}

@media (max-width: 768px) {
  .landing-nav__logo-image {
    width: 140px;
  }

  .landing-page .nav__inner {
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .landing-hero__inner {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .landing-hero__subhead {
    font-size: 16px;
  }

  .landing-hero__primary-cta {
    min-width: 0;
    width: 100%;
  }

  .landing-page .problem {
    padding: 72px 0 60px;
    overflow: visible;
  }

  .landing-page .problem-header {
    margin-bottom: 28px;
  }

  .landing-page .problem-headline {
    font-size: clamp(34px, 11vw, 52px);
  }

  .landing-page .problem-sub {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 0;
  }

  .landing-page .problem__grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: auto !important;
  }

  .landing-page .problem-card,
  .landing-page .problem-card:nth-child(1),
  .landing-page .problem-card:nth-child(2),
  .landing-page .problem-card:nth-child(3),
  .landing-page .problem-card:nth-child(4) {
    position: relative !important;
    display: block;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 30px 22px 22px;
    border-radius: 18px;
    width: 100%;
    z-index: 1 !important;
  }

  .landing-page .problem-card::after {
    top: -8px;
    right: 2px;
    font-size: 110px;
  }

  .landing-page .card-number {
    font-size: 26px;
  }

  .landing-page .problem-card h3 {
    font-size: 22px;
  }

  .landing-page .problem-card p {
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
  }

  .landing-page .problem-card + .problem-card {
    margin-top: 0 !important;
  }

  .landing-page .cta-final__actions {
    width: auto;
  }

  .landing-page .cta-final__actions .btn {
    width: auto;
  }
}
