/* InstaModel AI Suite PRO — LP V2 funnel (mobile-first) */

:root {
  --bg: #0f0a18;
  --bg-soft: #171022;
  --surface: #1f1630;
  --surface-2: #2a1d42;
  --text: #f7f4ff;
  --muted: rgba(247, 244, 255, 0.72);
  --muted-2: rgba(247, 244, 255, 0.52);
  --accent: #a855f7;
  --accent-2: #d946ef;
  --accent-glow: rgba(168, 85, 247, 0.35);
  --line: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-pill: 999px;
  --max-w: 480px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --sticky-footer-h: 108px;
  --funnel-progress-h: calc(18px + var(--safe-top));
  --funnel-copy-top-gap: clamp(16px, 2.5vh, 22px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Progressive enhancement: JS funnel vs stacked fallback */
.js .funnel-step {
  display: none;
}

.js .funnel-step.is-active {
  display: flex;
}

.js #offer {
  display: none;
}

.js #offer.is-active {
  display: block;
}

.no-js .funnel-progress,
.no-js .btn-advance,
.no-js .btn-choice,
.no-js .loading-fallback {
  display: none;
}

.no-js .funnel-step {
  display: block;
  min-height: auto;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.no-js .noscript-banner {
  display: block;
}

/* Progress bar */
.funnel-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(8px + var(--safe-top)) 16px 6px;
  background: rgba(15, 10, 24, 0.92);
  border-bottom: 1px solid var(--line);
}

.funnel-progress__track {
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.funnel-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.35s ease;
}

.funnel-progress__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Funnel shell */
.funnel-app {
  min-height: 100vh;
  min-height: 100dvh;
}

.funnel-step {
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--funnel-progress-h) + var(--funnel-copy-top-gap)) 16px calc(24px + var(--safe-bottom));
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.step-inner {
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Step 1 — hero hook */
.funnel-step[data-step="1"] .step-inner--hero {
  gap: 14px;
}

.funnel-step[data-step="1"] .step-hero-card {
  position: relative;
  width: min(397px, 100%);
  max-width: 397px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(124, 58, 237, 0.14);
  background: #14101c;
}

.funnel-step[data-step="1"] .step-hero-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: min(58dvh, 500px);
  aspect-ratio: 9 / 14;
  object-fit: cover;
  object-position: center 22%;
}

.funnel-step[data-step="1"] .step-hero-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(192, 38, 211, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
  line-height: 1.2;
  pointer-events: none;
}

.funnel-step[data-step="1"] .step-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.funnel-step[data-step="1"] .step-microcopy--step1 {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted-2);
}

.step-title {
  margin: 0;
  font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  line-height: 1.15;
  font-weight: 800;
  text-wrap: balance;
}

.step-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.copy-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: inherit;
}

.btn-choice__title .copy-accent {
  font-weight: 800;
}

/* Global funnel copy — centered headlines (steps 1–10; offer excluded) */
.funnel-step .step-copy,
.funnel-step .step-head,
.funnel-step .step-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: min(680px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.funnel-step:not([data-step="1"]) .step-copy,
.funnel-step:not([data-step="1"]) .step-head {
  flex-shrink: 0;
  padding-top: 0;
  margin-bottom: clamp(16px, 3vh, 24px);
}

.funnel-step[data-step="1"] .step-hero-copy {
  padding-top: 0;
  margin-bottom: clamp(12px, 2vh, 20px);
}

.funnel-step .step-title,
.funnel-step .step-subtitle,
.funnel-step .step-microcopy,
.funnel-step .step-hint {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: min(680px, 100%);
  text-wrap: balance;
}

.funnel-step .step-subtitle,
.funnel-step .step-microcopy,
.funnel-step .step-hint {
  text-wrap: pretty;
}

.funnel-step .step-media + .step-microcopy {
  margin-top: clamp(12px, 2vh, 16px);
}

.funnel-step:not([data-step="1"]):not([data-step="2"]) .step-media {
  flex: 0 1 auto;
  justify-content: flex-start;
}

.step-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.step-footer {
  margin-top: auto;
  padding-top: 12px;
  width: 100%;
}

/* Global sticky advance — steps 1–10 only (JS) */
.js .funnel-step .step-footer {
  display: none;
}

.js .funnel-step.is-active:not([data-step="2"]) {
  padding-bottom: calc(var(--sticky-footer-h) + var(--safe-bottom));
}

.funnel-sticky-advance {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + var(--safe-bottom));
  background: linear-gradient(
    180deg,
    rgba(15, 10, 24, 0) 0%,
    rgba(15, 10, 24, 0.92) 38%,
    var(--bg) 100%
  );
  pointer-events: none;
}

.funnel-sticky-advance:not([hidden]) {
  pointer-events: auto;
}

.funnel-sticky-advance__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.funnel-sticky-advance__btn {
  min-height: 56px;
  box-shadow: 0 10px 28px var(--accent-glow), 0 4px 16px rgba(0, 0, 0, 0.35);
}

.funnel-sticky-advance__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 28px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(217, 70, 239, 0.4);
}

.btn-secondary {
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.btn-checkout {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
}

/* Video placeholder */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.video-frame img,
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
}

.video-frame__play span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.video-frame.is-playing .video-frame__play {
  display: none;
}

/* Step 3 — mini-VSL */
.funnel-step[data-step="3"] .step-inner {
  gap: 0;
}

.funnel-step[data-step="3"] .step-title {
  scroll-margin-top: calc(var(--funnel-progress-h) + var(--funnel-copy-top-gap));
}

.funnel-step[data-step="3"] .video-frame--vsl {
  position: relative;
  max-width: min(397px, 100%);
  aspect-ratio: auto;
  height: auto;
  background: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.1);
}

.funnel-step[data-step="3"] .video-frame--vsl .step-video-vsl {
  width: 100%;
  max-width: 397px;
  max-height: calc(100dvh - 260px);
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
  display: block;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 2px);
  cursor: pointer;
}

.funnel-step[data-step="3"] .video-frame--vsl.is-vsl-playing .step-video-vsl {
  cursor: pointer;
}

.funnel-step[data-step="3"] .vsl-play-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: min(280px, 84%);
  padding: 18px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 32px var(--accent-glow), 0 8px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.funnel-step[data-step="3"] .vsl-play-overlay:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.funnel-step[data-step="3"] .vsl-play-overlay__icon {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
}

.funnel-step[data-step="3"] .vsl-play-overlay__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.25;
}

.funnel-step[data-step="3"] .vsl-play-overlay__hint {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
}

.funnel-step[data-step="3"] .video-frame--vsl.is-vsl-playing .vsl-play-overlay {
  display: none;
}

.funnel-step[data-step="3"] .step-media {
  flex: 0 1 auto;
  min-height: 0;
}

.funnel-step[data-step="3"] .step-microcopy--step3 {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

.funnel-step[data-step="3"] .step-footer {
  flex-shrink: 0;
  margin-top: 0;
  padding-top: 8px;
}

/* Step 4 — galeria de personas */
.funnel-step[data-step="4"] .step-inner {
  gap: 0;
}

.funnel-step[data-step="4"] .step-media {
  flex: 0 1 auto;
  min-height: 0;
}

.funnel-step[data-step="4"] .step-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 16px;
}

.funnel-step[data-step="4"] .carousel--personas {
  width: min(397px, 100%);
  max-width: 397px;
  margin: 0 auto;
}

.funnel-step[data-step="4"] .carousel--personas .carousel__viewport {
  width: 100%;
  background: transparent;
  border-radius: 16px;
  border: none;
  overflow: hidden;
  aspect-ratio: auto;
}

.funnel-step[data-step="4"] .carousel--personas .carousel__track {
  align-items: flex-start;
}

.funnel-step[data-step="4"] .carousel--personas .carousel__slide {
  flex: 0 0 100%;
  aspect-ratio: auto;
  height: auto;
  display: block;
}

.funnel-step[data-step="4"] .persona-slide__figure {
  margin: 0;
}

.funnel-step[data-step="4"] .persona-slide__frame {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  background: #14101c;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.funnel-step[data-step="4"] .persona-slide__frame img {
  display: block;
  width: 100%;
  max-width: 397px;
  max-height: calc(100dvh - 280px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.funnel-step[data-step="4"] .persona-slide__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px 14px;
  background: linear-gradient(180deg, rgba(8, 6, 14, 0) 0%, rgba(8, 6, 14, 0.55) 45%, rgba(8, 6, 14, 0.88) 100%);
  pointer-events: none;
}

.funnel-step[data-step="4"] .persona-slide__label {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(192, 38, 211, 0.92));
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.funnel-step[data-step="4"] .persona-slide__counter {
  flex-shrink: 0;
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  line-height: 1;
  background: rgba(15, 10, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.funnel-step[data-step="4"] .carousel--personas .carousel__nav--prev {
  left: 4px;
}

.funnel-step[data-step="4"] .carousel--personas .carousel__nav--next {
  right: 4px;
}

.funnel-step[data-step="4"] .carousel--personas .carousel__dots {
  margin-top: 12px;
}

/* Step 5 — comparador antes/depois */
.funnel-step[data-step="5"] .step-inner {
  gap: 0;
}

.funnel-step[data-step="5"] .step-media {
  flex: 0 1 auto;
  min-height: 0;
}

.funnel-step[data-step="5"] .step-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 8px;
}

.funnel-step[data-step="5"] .step-microcopy--step5 {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted-2);
  text-align: center;
}

.js .funnel-step[data-step="5"] .ba-fallback {
  display: none;
}

.no-js .funnel-step[data-step="5"] .ba-compare {
  display: none;
}

.funnel-step[data-step="5"] .ba-compare {
  position: relative;
  width: min(397px, 100%);
  max-width: 397px;
  margin: 0 auto;
  --ba-pos: 90%;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.funnel-step[data-step="5"] .ba-compare__stage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #14101c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 0;
}

.funnel-step[data-step="5"] .ba-compare__after {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 300px);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.funnel-step[data-step="5"] .ba-compare__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  clip-path: inset(0 calc(100% - var(--ba-pos, 90%)) 0 0);
  pointer-events: none;
}

.funnel-step[data-step="5"] .ba-compare__tag {
  position: absolute;
  top: 10px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 10, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.funnel-step[data-step="5"] .ba-compare__tag--before {
  left: 10px;
}

.funnel-step[data-step="5"] .ba-compare__tag--after {
  right: 10px;
}

.funnel-step[data-step="5"] .ba-compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 90%);
  z-index: 4;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.55);
  pointer-events: none;
}

.funnel-step[data-step="5"] .ba-compare__handle {
  position: absolute;
  top: 50%;
  left: var(--ba-pos, 90%);
  z-index: 5;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.funnel-step[data-step="5"] .ba-compare__range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
}

.funnel-step[data-step="5"] .ba-fallback {
  display: grid;
  gap: 14px;
  width: min(397px, 100%);
  max-width: 397px;
  margin: 0 auto;
}

.funnel-step[data-step="5"] .ba-fallback__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #14101c;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.funnel-step[data-step="5"] .ba-fallback__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.funnel-step[data-step="5"] .ba-fallback__item figcaption {
  padding: 10px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  color: var(--muted);
  background: rgba(15, 10, 24, 0.9);
}

/* Step 6 — Pose Variation */
.funnel-step[data-step="6"] .step-inner {
  gap: 0;
}

.funnel-step[data-step="6"] .step-media {
  flex: 0 1 auto;
  min-height: 0;
}

.funnel-step[data-step="6"] .step-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 8px;
}

.funnel-step[data-step="6"] .step-microcopy--step6 {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted-2);
  text-align: center;
}

.funnel-step[data-step="6"] .pose-showcase {
  width: min(397px, 100%);
  max-width: 397px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.funnel-step[data-step="6"] .pose-showcase__original,
.funnel-step[data-step="6"] .pose-showcase__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #14101c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 0;
}

.funnel-step[data-step="6"] .pose-showcase__original img {
  display: block;
  width: 100%;
  max-height: min(420px, calc(100dvh - 340px));
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
}

.funnel-step[data-step="6"] .pose-showcase__jump-wrap {
  margin: 0;
  text-align: center;
}

.funnel-step[data-step="6"] .pose-showcase__jump {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(192, 38, 211, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.funnel-step[data-step="6"] .pose-showcase__jump:hover,
.funnel-step[data-step="6"] .pose-showcase__jump:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
  outline: none;
}

.funnel-step[data-step="6"] .pose-showcase__jump:active {
  transform: scale(0.98);
}

.funnel-step[data-step="6"] .pose-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  scroll-margin-top: calc(var(--funnel-progress-h) + var(--funnel-copy-top-gap) + 4px);
  scroll-margin-bottom: 24px;
}

.funnel-step[data-step="6"] .pose-showcase__item img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
}

.funnel-step[data-step="6"] .pose-showcase__badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(15, 10, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.2;
  pointer-events: none;
}

.funnel-step[data-step="6"] .pose-showcase__badge--base {
  font-size: 0.6875rem;
  padding: 6px 10px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(192, 38, 211, 0.92));
  border-color: rgba(255, 255, 255, 0.18);
}

/* Step 7 — try-on / troca de roupa */
.funnel-step[data-step="7"] .step-inner {
  gap: 0;
}

.funnel-step[data-step="7"] .tryon-showcase {
  width: min(397px, 100%);
  max-width: 397px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.funnel-step[data-step="7"] .tryon-showcase__original,
.funnel-step[data-step="7"] .tryon-showcase__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #14101c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 0;
}

.funnel-step[data-step="7"] .tryon-showcase__original img {
  display: block;
  width: 100%;
  max-height: min(420px, calc(100dvh - 340px));
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
}

.funnel-step[data-step="7"] .tryon-showcase__jump-wrap {
  margin: 0;
  text-align: center;
}

.funnel-step[data-step="7"] .tryon-showcase__jump {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(192, 38, 211, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.funnel-step[data-step="7"] .tryon-showcase__jump:hover,
.funnel-step[data-step="7"] .tryon-showcase__jump:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
  outline: none;
}

.funnel-step[data-step="7"] .tryon-showcase__jump:active {
  transform: scale(0.98);
}

.funnel-step[data-step="7"] .tryon-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  scroll-margin-top: calc(var(--funnel-progress-h) + var(--funnel-copy-top-gap) + 4px);
  scroll-margin-bottom: calc(var(--sticky-footer-h) + var(--safe-bottom) + 12px);
}

.funnel-step[data-step="7"] .tryon-showcase__item img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
}

.funnel-step[data-step="7"] .tryon-showcase__badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(15, 10, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.2;
  pointer-events: none;
}

.funnel-step[data-step="7"] .tryon-showcase__badge--base {
  font-size: 0.6875rem;
  padding: 6px 10px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(192, 38, 211, 0.92));
  border-color: rgba(255, 255, 255, 0.18);
}

.funnel-step[data-step="7"] .step-microcopy--step7 {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted-2);
  text-align: center;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  touch-action: pan-y;
}

.carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  aspect-ratio: 2 / 3;
  background: var(--surface);
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  border: none;
}

.carousel__dot.is-active {
  background: var(--accent-2);
  transform: scale(1.15);
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 10, 24, 0.75);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

.carousel__nav--prev {
  left: -4px;
}

.carousel__nav--next {
  right: -4px;
}

/* Step 2 — perfis interativos estilo Instagram */
.js .funnel-step[data-step="2"].is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100dvh;
  max-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
}

.funnel-step[data-step="2"] {
  overflow: visible;
  --step2-progress-offset: calc(var(--funnel-progress-h) + var(--funnel-copy-top-gap));
  --step2-footer-offset: calc(var(--sticky-footer-h) + var(--safe-bottom) + 16px);
}

.js .funnel-step[data-step="2"].is-active .step-inner--profiles {
  min-height: 100%;
}

.funnel-step[data-step="2"] .step-inner--profiles {
  width: 100%;
  max-width: var(--max-w);
  gap: 0;
  display: flex;
  flex-direction: column;
  flex: none;
  min-height: calc(100dvh - var(--funnel-progress-h) - var(--step2-footer-offset));
  max-height: none;
  padding-bottom: var(--step2-footer-offset);
}

.funnel-step[data-step="2"] .step-inner--profiles:has(.profile-card.is-active) {
  padding-bottom: calc(var(--step2-footer-offset) + 20px);
}

.funnel-step[data-step="2"] .step-head {
  margin-bottom: clamp(10px, 2vh, 14px);
  gap: 8px;
}

.funnel-step[data-step="2"] .step-title {
  font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  line-height: 1.18;
}

.funnel-step[data-step="2"] .step-subtitle {
  margin-top: 4px;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.funnel-step[data-step="2"] .step-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-2);
  text-align: center;
  letter-spacing: 0.01em;
}

.funnel-step[data-step="2"] .step-media--profiles {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  overflow: visible;
  padding: clamp(10px, 2.5vh, 20px) 0;
}

.funnel-step[data-step="2"] .profile-feed {
  width: min(397px, 100%);
  max-width: 397px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 3.2vh, 22px);
}

.funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) {
  flex: 1;
  justify-content: space-evenly;
  gap: clamp(18px, 4.8vh, 30px);
  padding: clamp(6px, 2vh, 16px) 0;
}

.funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) .profile-card {
  padding: 14px 16px;
}

.funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) .profile-card__avatar {
  width: 60px;
  height: 60px;
}

.funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) .profile-card__identity-group {
  gap: 12px;
}

.funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) .profile-card__username {
  font-size: 0.875rem;
}

.funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) .profile-card__name {
  font-size: 0.75rem;
}

.funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) .profile-card__toggle {
  min-height: 42px;
  height: 42px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.funnel-step[data-step="2"] .step-head:has(+ .step-media--profiles .profile-feed > .profile-card:nth-child(3):last-child) {
  margin-bottom: clamp(8px, 1.8vh, 12px);
}

.funnel-step[data-step="2"] .profile-card {
  background: #fff;
  color: #262626;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 12px 14px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  cursor: pointer;
}

.funnel-step[data-step="2"] .profile-card.is-active {
  border-color: rgba(0, 149, 246, 0.45);
  box-shadow: 0 4px 20px rgba(0, 149, 246, 0.14);
  scroll-margin-top: var(--step2-progress-offset);
  scroll-margin-bottom: var(--step2-footer-offset);
}

.funnel-step[data-step="2"] .profile-card__top {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.funnel-step[data-step="2"] .profile-card__identity-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
}

.funnel-step[data-step="2"] .profile-card__avatar-wrap {
  flex-shrink: 0;
}

.funnel-step[data-step="2"] .profile-card__avatar-ring {
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.funnel-step[data-step="2"] .profile-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  object-position: center top;
  background: #efefef;
  display: block;
}

.funnel-step[data-step="2"] .profile-card__identity {
  min-width: 0;
  flex: 1 1 auto;
}

.funnel-step[data-step="2"] .profile-card__username {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.funnel-step[data-step="2"] .profile-card__name {
  margin: 1px 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #444;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.funnel-step[data-step="2"] .profile-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.funnel-step[data-step="2"] .profile-card__stats {
  display: flex;
  align-items: flex-start;
  gap: clamp(3px, 1.2vw, 6px);
  margin: 0;
  text-align: center;
}

.funnel-step[data-step="2"] .profile-card__stats div {
  min-width: 0;
  flex: 0 0 auto;
}

.funnel-step[data-step="2"] .profile-card__stats dt {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 500;
  text-transform: lowercase;
  color: #8e8e8e;
  letter-spacing: 0;
  line-height: 1.05;
  white-space: nowrap;
}

.funnel-step[data-step="2"] .profile-card__stats dd {
  margin: 1px 0 0;
  font-size: clamp(0.6875rem, 2.2vw, 0.8125rem);
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  white-space: nowrap;
}

.funnel-step[data-step="2"] .profile-card__menu {
  flex-shrink: 0;
  align-self: flex-start;
  font-size: 0.9375rem;
  line-height: 1;
  color: #8e8e8e;
  padding: 0;
  margin-top: -1px;
}

.funnel-step[data-step="2"] .profile-card__toggle {
  width: 100%;
  min-height: 40px;
  height: 40px;
  margin-top: 10px;
  padding: 0 12px;
  border-radius: 8px;
  background: #0095f6;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}

.funnel-step[data-step="2"] .profile-card__toggle:active {
  transform: scale(0.98);
}

.funnel-step[data-step="2"] .profile-card.is-active .profile-card__toggle {
  background: #1877f2;
}

@media (max-width: 359px) {
  .funnel-step[data-step="2"] .profile-card {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .funnel-step[data-step="2"] .profile-card__avatar {
    width: 52px;
    height: 52px;
  }

  .funnel-step[data-step="2"] .profile-card__identity-group {
    gap: 8px;
  }

  .funnel-step[data-step="2"] .profile-card__username {
    font-size: 0.75rem;
  }

  .funnel-step[data-step="2"] .profile-card__name {
    font-size: 0.625rem;
  }

  .funnel-step[data-step="2"] .profile-card__stats dt {
    font-size: 0.5rem;
  }

  .funnel-step[data-step="2"] .profile-card__stats dd {
    font-size: 0.6875rem;
  }

  .funnel-step[data-step="2"] .profile-card__stats {
    gap: 2px;
  }

  .funnel-step[data-step="2"] .profile-card__toggle {
    min-height: 38px;
    height: 38px;
    margin-top: 9px;
    font-size: 0.8125rem;
  }

  .funnel-step[data-step="2"] .profile-feed {
    gap: 12px;
  }

  .funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) {
    gap: clamp(14px, 4vh, 22px);
  }

  .funnel-step[data-step="2"] .profile-feed:has(> .profile-card:nth-child(3):last-child) .profile-card__avatar {
    width: 56px;
    height: 56px;
  }
}

.funnel-step[data-step="2"] .profile-card__video {
  margin-top: 12px;
  margin-bottom: 0;
  width: 100%;
  max-width: 397px;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  scroll-margin-top: var(--step2-progress-offset);
  scroll-margin-bottom: var(--step2-footer-offset);
  cursor: default;
}

.funnel-step[data-step="2"] .profile-card.is-active .profile-card__video {
  margin-bottom: 20px;
}

.funnel-step[data-step="2"] .profile-card__video:not([hidden]) {
  display: block;
}

.funnel-step[data-step="2"] .profile-card__video video {
  width: 100%;
  max-width: 397px;
  max-height: calc(100dvh - 190px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
  display: block;
}

/* Choice step — Step 8 */
.funnel-step[data-step="8"] .step-inner--choice {
  gap: 0;
  justify-content: flex-start;
}

.funnel-step[data-step="8"] .step-media {
  flex: 0 1 auto;
  margin-top: 0;
}

.funnel-step[data-step="8"].is-active {
  padding-bottom: calc(var(--sticky-footer-h) + var(--safe-bottom) + 16px);
}

.funnel-step[data-step="8"] .choice-grid {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.funnel-step[data-step="8"] .btn-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(31, 22, 48, 0.72) 0%, rgba(20, 16, 28, 0.88) 100%);
  color: var(--text);
  text-align: left;
  line-height: 1.35;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.funnel-step[data-step="8"] .btn-choice:active {
  transform: scale(0.99);
}

.funnel-step[data-step="8"] .btn-choice__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 900;
  color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.funnel-step[data-step="8"] .btn-choice__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.funnel-step[data-step="8"] .btn-choice__title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.funnel-step[data-step="8"] .btn-choice__sub {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.funnel-step[data-step="8"] .btn-choice.is-selected {
  border-color: rgba(217, 70, 239, 0.65);
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.22) 0%, rgba(192, 38, 211, 0.12) 100%);
  box-shadow: 0 0 0 1px rgba(217, 70, 239, 0.35), 0 8px 24px rgba(124, 58, 237, 0.2);
}

.funnel-step[data-step="8"] .btn-choice.is-selected .btn-choice__check {
  border-color: var(--accent-2);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 0 14px rgba(217, 70, 239, 0.45);
}

.funnel-step[data-step="8"] .btn-choice.is-selected .btn-choice__check::before {
  content: '✓';
}

.funnel-step[data-step="8"] .btn-choice:focus-visible {
  outline: 2px solid rgba(168, 85, 247, 0.65);
  outline-offset: 2px;
}

/* Legacy choice styles (no-js fallback) */
.choice-grid {
  display: grid;
  gap: 10px;
}

.btn-choice {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.35;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-choice.is-selected {
  border-color: var(--accent-2);
  background: rgba(168, 85, 247, 0.18);
  box-shadow: 0 0 0 1px rgba(217, 70, 239, 0.35);
}

/* Step 10 — promessa / expectativa */
.funnel-step[data-step="9"] .step-inner--promise {
  flex: 1;
  justify-content: flex-start;
}

.funnel-step[data-step="9"] .step-promise {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.funnel-step[data-step="9"] .step-promise__badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(192, 38, 211, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.28);
}

.funnel-step[data-step="9"] .step-title {
  margin: 0;
}

.funnel-step[data-step="9"] .step-subtitle {
  margin: 0;
  max-width: 36ch;
}

.funnel-step[data-step="9"] .step-promise__highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.funnel-step[data-step="9"] .step-microcopy--step10 {
  margin: 4px 0 0;
  max-width: 30ch;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 600;
}

/* Text-only step */
.step-text-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
}

/* Loading step */
.loading-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 0 0 32px;
}

.loading-bar {
  width: 100%;
  max-width: 280px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.loading-bar__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s linear;
}

.loading-percent {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-2);
}

.loading-fallback {
  margin-top: 16px;
}

/* Offer page (step 12) */
#offer {
  padding: calc(56px + var(--safe-top)) 16px calc(32px + var(--safe-bottom));
}

.offer-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

.offer-head {
  text-align: center;
  margin-bottom: 24px;
}

.offer-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto 20px;
  padding: 14px 16px 16px;
  max-width: 100%;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(165deg, rgba(31, 22, 48, 0.78) 0%, rgba(15, 10, 24, 0.92) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.offer-timer__label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.35;
}

.offer-timer.is-expired .offer-timer__label {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.75rem;
  color: var(--muted);
}

.offer-timer__digits {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.offer-timer__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.offer-timer__group-digits {
  display: flex;
  gap: 6px;
}

.offer-timer__digit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 52px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: clamp(1.5rem, 6.5vw, 1.875rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #fff;
  background: linear-gradient(180deg, rgba(42, 29, 66, 0.95) 0%, rgba(20, 14, 32, 0.98) 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 16px rgba(124, 58, 237, 0.15);
}

.offer-timer.is-expired .offer-timer__digit {
  color: var(--muted-2);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer-timer__caption {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.2;
}

.offer-head h1 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  line-height: 1.15;
  font-weight: 800;
  text-wrap: balance;
}

.offer-highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offer-subheadline,
.offer-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.offer-box {
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(31, 22, 48, 0.55) 0%, rgba(20, 16, 28, 0.85) 100%);
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer-box h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.benefit-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted);
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 0.9375rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.proof-card {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-pricing {
  text-align: center;
  padding: 22px 18px 20px;
  margin-bottom: 24px;
  border-radius: 20px;
  border: 1px solid rgba(217, 70, 239, 0.38);
  background: linear-gradient(
    165deg,
    rgba(124, 58, 237, 0.22) 0%,
    rgba(31, 22, 48, 0.92) 42%,
    rgba(15, 10, 24, 0.98) 100%
  );
  box-shadow:
    0 16px 40px rgba(124, 58, 237, 0.2),
    0 8px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offer-pricing__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(192, 38, 211, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.offer-pricing__name {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.offer-pricing__tagline {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

.offer-pricing__value {
  margin: 0 0 8px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 24px rgba(217, 70, 239, 0.35);
}

.offer-pricing__currency {
  font-size: clamp(1.125rem, 4.5vw, 1.375rem);
  font-weight: 800;
  vertical-align: top;
  margin-right: 2px;
}

.offer-pricing__amount {
  font-size: clamp(3.25rem, 14vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.offer-pricing__cents {
  font-size: clamp(1.25rem, 5vw, 1.625rem);
  font-weight: 800;
  vertical-align: super;
}

.offer-pricing__note {
  margin: 0 0 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted-2);
}

.offer-pricing__cta {
  margin: 0;
}

.offer-cta-final {
  margin-bottom: 0;
}

.faq-block {
  margin: 28px 0 20px;
}

.faq-block h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-2);
}

.noscript-banner {
  display: none;
  margin: 0;
  padding: 12px 16px;
  background: #3b1d5c;
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 520px) {
  .funnel-step {
    padding-left: 24px;
    padding-right: 24px;
  }

  #offer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track,
  .funnel-progress__bar,
  .loading-bar__fill,
  .btn {
    transition: none;
  }
}
