.hide {
  display: none !important;
}

.vsl-page-shell {
  width: min(920px, calc(100% - 1rem));
  padding-top: max(1.2rem, env(safe-area-inset-top));
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

.vsl-focus {
  display: grid;
  gap: 1.4rem;
}

.vsl-hero {
  display: grid;
  gap: 1.25rem;
}

.vsl-hero__headline {
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  line-height: 1.02;
  font-weight: 600;
  color: var(--text);
}

.vsl-hero__highlight {
  background: linear-gradient(
    135deg,
    rgba(207, 171, 114, 1),
    rgba(242, 156, 191, 0.96)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vsl-hero__subheadline {
  margin: -0.25rem auto 0;
  max-width: 34ch;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.video-shell--solo {
  margin-top: 0;
}

.video-shell__frame {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 20%),
    rgba(255, 255, 255, 0.03);
}

.video-embed {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 15%, rgba(242, 156, 191, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(8, 4, 7, 0.65), rgba(8, 4, 7, 0.18)),
    linear-gradient(135deg, rgba(23, 10, 17, 0.95), rgba(57, 20, 37, 0.82));
}

.video-embed__inner {
  width: 100%;
  max-width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}

.video-embed vturb-smartplayer,
.video-embed iframe,
.video-embed video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.offer-reveal {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%),
    rgba(255, 255, 255, 0.03);
  animation: rise 420ms ease both;
}

.offer-reveal[hidden] {
  display: none;
}

.offer-reveal__top {
  display: grid;
  gap: 0.55rem;
}

.offer-reveal__eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-reveal__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.02;
  color: var(--text);
}

.offer-reveal__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.offer-reveal__actions {
  display: grid;
}

.offer-reveal__button {
  width: 100%;
  min-height: 3.8rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #30ff88 0%, #0bdc73 48%, #06b85b 100%);
  color: #042212;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 18px rgba(48, 255, 136, 0.62),
    0 0 42px rgba(21, 226, 113, 0.35),
    0 20px 40px rgba(6, 184, 91, 0.3);
  animation: ctaPulse 1.7s ease-in-out infinite;
}

.offer-reveal__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 75%);
  transform: translateX(-140%);
  animation: ctaSweep 2.8s ease-in-out infinite;
}

.offer-reveal__button:hover {
  background:
    linear-gradient(135deg, #44ff98 0%, #16ef81 46%, #08c663 100%);
  box-shadow:
    0 0 22px rgba(68, 255, 152, 0.72),
    0 0 52px rgba(22, 239, 129, 0.42),
    0 24px 44px rgba(8, 198, 99, 0.34);
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 18px rgba(48, 255, 136, 0.62),
      0 0 42px rgba(21, 226, 113, 0.35),
      0 20px 40px rgba(6, 184, 91, 0.3);
  }

  50% {
    transform: scale(1.03);
    box-shadow:
      0 0 22px rgba(68, 255, 152, 0.78),
      0 0 60px rgba(22, 239, 129, 0.52),
      0 24px 46px rgba(8, 198, 99, 0.38);
  }
}

@keyframes ctaSweep {
  0% {
    transform: translateX(-140%);
  }

  56%,
  100% {
    transform: translateX(140%);
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.offer-panel--faq {
  margin-top: 0;
}

.faq-mini {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.faq-mini__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-mini__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1rem 1.05rem;
  min-height: 3.45rem;
  display: flex;
  align-items: center;
  color: var(--text);
  font-weight: 600;
}

.faq-mini__item summary::-webkit-details-marker {
  display: none;
}

.faq-mini__item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.security-tab__panel {
  border: 1px solid rgba(207, 171, 114, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.security-tab__panel summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1rem 1.05rem;
  min-height: 3.45rem;
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.security-tab__panel summary::-webkit-details-marker {
  display: none;
}

.security-tab__body {
  display: grid;
  gap: 0.8rem;
  padding: 0 1rem 1rem;
}

.security-tab__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .vsl-page-shell {
    width: min(100%, calc(100% - 1rem));
  }

  .vsl-focus,
  .vsl-hero {
    gap: 1rem;
  }

  .offer-reveal {
    padding: 1.1rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .vsl-page-shell {
    width: min(100%, calc(100% - 0.8rem));
    padding-top: max(0.9rem, env(safe-area-inset-top));
  }

  .vsl-hero__headline {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
    line-height: 1.04;
  }

  .vsl-hero__subheadline {
    max-width: 30ch;
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .video-embed__inner {
    max-width: 100%;
  }

  .video-shell__frame {
    padding: 0.72rem;
    border-radius: 24px;
  }

  .video-embed {
    border-radius: 18px;
  }

  .offer-reveal {
    padding: 1rem;
    border-radius: 22px;
  }

  .offer-reveal__title {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .offer-reveal__text {
    font-size: 0.94rem;
  }

  .offer-reveal__button {
    min-height: 3.5rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip .signal-chip {
    padding: 0.95rem;
  }

  .faq-mini {
    gap: 0.7rem;
  }

  .faq-mini__item summary,
  .security-tab__panel summary {
    padding: 0.95rem 0.95rem 1rem;
    font-size: 0.94rem;
  }

  .faq-mini__item p,
  .security-tab__body {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }
}

@media (max-width: 480px) {
  .vsl-page-shell {
    width: min(100%, calc(100% - 0.55rem));
    padding-top: max(0.65rem, env(safe-area-inset-top));
  }

  .vsl-focus,
  .vsl-hero {
    gap: 0.9rem;
  }

  .vsl-hero__headline {
    font-size: clamp(1.3rem, 8.8vw, 1.7rem);
  }

  .vsl-hero__subheadline {
    font-size: 0.9rem;
  }

  .video-shell__frame {
    padding: 0.55rem;
  }

  .offer-reveal {
    gap: 0.85rem;
    padding: 0.9rem;
  }

  .offer-reveal__button {
    min-height: 3.3rem;
    font-size: 0.96rem;
  }

  .offer-reveal__eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }
}
