.cvlp {
  --cvlp-bg: none;
  --cvlp-pink: #f97187;
  --cvlp-pink-deep: #e65073;
  --cvlp-track: 0.208em;
  position: relative;
  display: flex;
  height: 100dvh;
  flex-direction: column;
  overflow: hidden;
  background-color: #0b0b0c;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.cvlp-ambient {
  position: absolute;
  inset: -12%;
  background-image: var(--cvlp-bg);
  background-position: center;
  background-size: cover;
  filter: blur(58px) saturate(1.4);
  opacity: 0.5;
  transform: translateZ(0);
  transition: background-image 0.4s ease-out;
  pointer-events: none;
}

.cvlp-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 85% at 50% 42%, rgba(11, 11, 12, 0) 0%, rgba(11, 11, 12, 0.5) 80%),
    linear-gradient(180deg, rgba(11, 11, 12, 0.26) 0%, rgba(11, 11, 12, 0.66) 100%);
}

.cvlp-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}

.cvlp-hint {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.36);
}

.cvlp-resend-link {
  background-color: transparent;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.cvlp-resend-link.pointer-events-none {
  opacity: 0.5;
}

.cvlp-masthead {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(10px, calc((100dvh - 700px) * 0.43), 96px);
  rotate: -1.6deg;
}

.cvlp-foil {
  display: block;
  font-family: "Special Gothic Expanded One", "Poppins", sans-serif;
  font-size: clamp(25px, 8.6vw, 40px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0.06em 0.07em 0 #e65073,
    0.12em 0.14em 0 rgba(0, 0, 0, 0.45);
}

.cvlp-foil-lead {
  display: flex;
  align-items: center;
  gap: 0.1em;
}

.cvlp-foil-tracked {
  letter-spacing: var(--cvlp-track);
  margin-right: calc(var(--cvlp-track) * -1);
}

.cvlp-mark {
  display: block;
  height: 0.82em;
  width: auto;
  flex: none;
  filter: drop-shadow(0 2px 10px rgba(230, 80, 115, 0.75));
}

.cvlp[data-step="stepTwo"] .cvlp-masthead {
  display: none;
}

.cvlp[data-step="stepTwo"] .cvlp-head {
  padding-bottom: 6px;
}

.cvlp-head {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 62%, rgba(0, 0, 0, 0) 100%);
}

.cvlp-media {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.cvlp-locked {
  filter: blur(11px) saturate(1.3) brightness(0.88);
  transform: scale(1.08);
}

.cvlp-reveal {
  animation: cvlpReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cvlpReveal {
  from { opacity: 0; transform: scale(1.06); filter: blur(14px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

.cvlp-rail {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.cvlp-rail::-webkit-scrollbar {
  display: none;
}

.cvlp-rail-faded {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}

.cvlp-rail > * {
  scroll-snap-align: center;
  flex: 0 0 auto;
}

.cvlp-scroll-y {
  overflow-y: auto;
  scrollbar-width: none;
  overscroll-behavior-y: contain;
}

.cvlp-scroll-y::-webkit-scrollbar {
  display: none;
}

.cvlp-render-scrim {
  background: rgba(11, 11, 12, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.cvlp-paywall-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.78) 100%);
}

.cvlp-cta {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(92deg, #ff7b91 0%, var(--cvlp-pink-deep) 100%);
  box-shadow: 0 0 34px rgba(255, 79, 163, 0.45);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cvlp-cta:active {
  transform: scale(0.975);
}

.cvlp-cta-idle {
  background-image: linear-gradient(92deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: none;
}

.cvlp-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: cvlpPulse 1.9s ease-in-out infinite;
  pointer-events: none;
}

.cvlp-sheet:not([data-open="true"]) .cvlp-pulse::before {
  animation: none;
  opacity: 0;
}

@keyframes cvlpPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.cvlp-bar {
  transition: width 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.cvlp-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background-color: #111013;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cvlp-sheet[data-open="true"] {
  transform: translateY(0);
  pointer-events: auto;
}

.cvlp-signup-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  background-image: linear-gradient(96deg, #ffd3de 0%, var(--cvlp-pink) 46%, var(--cvlp-pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cvlp-trust {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cvlp-trust > * {
  gap: 22px;
  transform: scale(0.86);
  transform-origin: center;
}

.cvlp-fade {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cvlp-fade[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .cvlp-head {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    padding-bottom: 0;
    background: none;
  }

  .cvlp-masthead {
    margin-block: auto;
  }

  .cvlp-frame {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 432px;
    flex: 0 0 auto;
    height: min(820px, calc(100dvh - 205px));
    min-height: 0;
    flex-direction: column;
    margin-inline: auto;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  }

  .cvlp-desktop-pad {
    padding: 20px 0 24px;
  }

  .cvlp-sheet {
    inset: 0;
    width: min(408px, calc(100vw - 48px));
    height: max-content;
    max-height: min(84dvh, 720px);
    overflow-y: auto;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    transition:
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease;
  }

  .cvlp-sheet[data-open="true"] {
    transform: none;
    opacity: 1;
  }

  .cvlp-paywall-scrim {
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cvlp-pulse,
  .cvlp-glow {
    animation: none;
  }

  .cvlp-reveal {
    animation-duration: 0.01ms;
  }

  .cvlp-bar,
  .cvlp-sheet,
  .cvlp-ambient {
    transition: none;
  }
}

.cvlp-cf {
  --cvlp-cf-w: 54vw;
  --cvlp-cf-max: 225px;
  --cvlp-cf-ar: 0.667;
  display: flex;
  height: 100%;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  perspective: 1200px;
  perspective-origin: 50% 45%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cvlp-cf::-webkit-scrollbar {
  display: none;
}

.cvlp-cf[data-ready="true"] {
  opacity: 1;
}

.cvlp-cf:not([data-ready="true"]) {
  animation: cvlpStageReveal 0.2s ease 1.2s forwards;
}

@keyframes cvlpStageReveal {
  to { opacity: 1; }
}

.cvlp-cf-item {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
  scroll-snap-align: center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: none;
}

.cvlp-cf--tall {
  --cvlp-cf-w: 65vw;
  --cvlp-cf-max: 290px;
  --cvlp-cf-ar: 0.5625;
}

.cvlp-cf-card {
  position: relative;
  aspect-ratio: var(--cvlp-cf-ar);
  height: min(100%, calc(min(var(--cvlp-cf-w), var(--cvlp-cf-max)) / var(--cvlp-cf-ar)));
  width: auto;
  overflow: hidden;
  border-radius: 22px;
  background-color: #131313;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.cvlp-check-gold {
  background-image: linear-gradient(180deg, #ffca00 0%, #fa9106 100%);
  color: #fff;
}

.cvlp-glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 185%;
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(249, 113, 135, 0.5) 0%,
      rgba(230, 80, 115, 0.26) 38%,
      rgba(124, 60, 184, 0.16) 58%,
      transparent 74%);
  animation: cvlpGlow 7s ease-in-out infinite;
  will-change: transform, opacity;
  pointer-events: none;
}

@keyframes cvlpGlow {
  0%, 100% { transform: scale(0.92); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}

.cvlp-cf-name {
  font-size: clamp(21px, 6.4vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.cvlp-cf-item[data-active="true"] .cvlp-cf-card {
  box-shadow:
    0 0 0 2px var(--cvlp-pink),
    0 0 30px 0 rgba(255, 79, 163, 0.48),
    0 24px 60px rgba(0, 0, 0, 0.7);
}

.cvlp-cf-item[data-active="false"] .cvlp-cf-card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.cvlp-cf-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 26px;
  width: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #ff7b91 0%, var(--cvlp-pink-deep) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  opacity: 0;
  scale: 0.5;
  transition: opacity 0.2s ease, scale 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.cvlp-cf-item[data-active="true"] .cvlp-cf-check {
  opacity: 1;
  scale: 1;
}

@media (prefers-reduced-motion: reduce) {
  .cvlp-cf {
    perspective: none;
  }
}
