html,
body {
  scroll-padding-top: 74px;
  scroll-snap-type: y mandatory;
}

main > section,
body > section,
footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

main > section[class] {
  min-height: 100vh;
  min-height: 100svh;
}

main > .inbox-section,
main > .founder-section,
main > .pricing-section,
main > .faq-section {
  scroll-snap-stop: normal;
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
}

@media (max-width: 760px) {
  html,
  body {
    scroll-padding-top: 0;
    scroll-snap-type: none !important;
  }

  main > section,
  body > section,
  footer,
  .pricing-top-screen,
  .pricing-ending {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  main > section[class],
  body > section[class] {
    min-height: auto;
  }
}
