.snap {
  height: 100dvh;
  width: 100vw;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  z-index: 1;
}

.snap::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.panel {
  position: relative;
  height: 100dvh;
  min-height: 100svh;
  width: 100vw;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10vw;
  overflow: hidden;
  perspective: 1200px;
  background: transparent;
}

.panel::before {
  content: "";
  position: absolute;
  inset: -1px 0;
  z-index: 1;
  background: var(--panel-bg, transparent);
}

.content {
  max-width: 1000px;
  position: relative;
  z-index: 2;
  transform: translateZ(40px);
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  margin-bottom: 2.4rem;
  max-width: 690px;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
