/* =============================
   Design tokens
   ============================= */
:root {
  /* Paleta atualizada para a identidade solicitada: ouro #bc9549, preto #0e0e0f e branco puro. */
  --bg-primary: #0e0e0f;
  --bg-secondary: #171718;
  --bg-elevated: #22201d;
  --accent-gold: #bc9549;
  --accent-gold-light: #d8bd7f;
  --accent-gold-dark: #8d6a2e;
  --text-primary: #ffffff;
  --text-secondary: #d8d1c5;
  --text-muted: #827a6f;
  --text-dark: #171514;
  --text-dark-soft: #51483e;
  --surface-light: #f6f1e8;
  --surface-light-alt: #ffffff;
  --border-subtle: #2f2c28;
  --border-gold: #bc9549;
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --success: #bc9549;
  --gold-gradient: linear-gradient(135deg, #8d6a2e 0%, #bc9549 52%, #d8bd7f 100%);
  --hero-overlay: linear-gradient(180deg, rgba(14, 14, 15, 0.96) 0%, rgba(14, 14, 15, 0.84) 56%, rgba(14, 14, 15, 0.98) 100%);
  /* Teste tipográfico: direção mais premium/luxo para títulos, sem mudar layout. */
  --font-serif: "Sora", "Manrope", "Segoe UI", Arial, sans-serif;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --container: 1120px;
}

@property --button-border-spin {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  /* A barra de oferta deixou de ser fixa, então o espaçamento de compensação no rodapé não é mais necessário. */
  padding-bottom: 0;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 32px, 820px);
}

.section-padding {
  padding: 72px 0;
}

.section-heading {
  margin: 0 auto 42px;
  text-align: center;
  max-width: 820px;
}

.section-title-line {
  display: block;
}

/* Títulos com quebra controlada: evita palavras isoladas variando por tamanho de tela. */
.title-balanced > span {
  display: block;
  white-space: nowrap;
}

.title-nowrap {
  white-space: nowrap;
}

/* Destaque dourado aplicado em palavras-chave dos títulos sem alterar a copy principal. */
.title-accent {
  position: relative;
  display: inline-block;
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: none;
}

h2 .title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(188, 149, 73, 0.86), transparent);
}

.section-copy {
  max-width: 700px;
}

.section-copy h2,
.pricing__copy h2,
.honesty h2 {
  margin-bottom: clamp(22px, 4vw, 34px);
}

.title-balanced--guarantee,
.title-balanced--honesty {
  font-size: clamp(22px, 5.5vw, 38px);
}

.title-balanced--guarantee {
  font-size: clamp(22px, 4.4vw, 34px);
}

.title-balanced--proof {
  font-size: clamp(14px, 4.4vw, 38px);
}

.section-copy p,
.pricing__copy p,
.honesty p,
.faq-answer p {
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.section-copy p:last-child,
.pricing__copy p:last-child,
.honesty p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text-primary);
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  line-height: 1.1;
  letter-spacing: 0.005em;
  font-weight: 700;
}

h1 {
  font-size: clamp(28px, 7vw, 40px);
  max-width: 1040px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 2000;
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 10px 14px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================
   Header / navigation
   ============================= */
/* Menu/topo removido no HTML para deixar a VSL abrir direto na headline, vídeo, subheadline e CTA. */

/* =============================
   Buttons and CTAs
   ============================= */
.button {
  --button-border-spin: 0deg;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: min(100%, 280px);
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button--primary {
  /* Efeito shiny adaptado do componente React: borda viva, brilho interno e shimmer mantendo a paleta ouro/preto. */
  background:
    linear-gradient(135deg, #9f7732 0%, var(--accent-gold) 48%, var(--accent-gold-light) 100%) padding-box,
    conic-gradient(
      from var(--button-border-spin),
      transparent 0deg,
      rgba(255, 255, 255, 0.08) 42deg,
      rgba(216, 189, 127, 0.95) 72deg,
      rgba(255, 255, 255, 0.85) 92deg,
      rgba(188, 149, 73, 0.95) 116deg,
      transparent 160deg,
      transparent 360deg
    ) border-box;
  color: var(--bg-primary);
  box-shadow:
    0 8px 32px rgba(188, 149, 73, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -12px 24px rgba(141, 106, 46, 0.2);
  animation: buttonBorderSpin 4.8s linear infinite;
}

.button span {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button--primary::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -72%;
  z-index: 0;
  width: 62%;
  transform: skewX(-18deg);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), rgba(216, 189, 127, 0.42), transparent);
  filter: blur(1px);
  animation: shimmer 3.4s ease-in-out infinite;
}

.button--primary::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 255, 255, 0.38) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 58%);
  background-size: 18px 18px, 22px 22px, 100% 100%;
  opacity: 0.34;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px) scale(1.025);
}

.button--primary:hover {
  filter: saturate(1.08) brightness(1.03);
  box-shadow:
    0 12px 48px rgba(188, 149, 73, 0.48),
    0 0 0 6px rgba(188, 149, 73, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -12px 24px rgba(141, 106, 46, 0.22);
}

.button:active {
  transform: scale(0.98);
}

.button:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 4px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* =============================
   Hero
   ============================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  /* Layout da hero ajustado para abrir sem menu e seguir a ordem: headline, subheadline, vídeo e CTA. */
  padding: clamp(36px, 6vw, 56px) 0 clamp(52px, 7vw, 72px);
}

.hero__background,
.hero__overlay,
.hero__beams,
.hero__grain {
  position: absolute;
  inset: 0;
}

.hero__background {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(188, 149, 73, 0.16), transparent 34%),
    linear-gradient(180deg, #050505 0%, var(--bg-primary) 72%);
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 14, 15, 0.86) 0%, rgba(14, 14, 15, 0.78) 46%, rgba(14, 14, 15, 0.94) 100%),
    radial-gradient(circle at 50% 26%, rgba(188, 149, 73, 0.14), transparent 42%);
}

.hero__beams {
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
  filter: blur(10px);
}

.hero__grain {
  z-index: 3;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(115deg, transparent 0 41%, rgba(188, 149, 73, 0.12) 42%, transparent 44%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 4px);
  background-size: 180px 180px, 4px 4px;
  animation: drift 20s linear infinite;
}

.hero__asset-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.16);
  border: 0;
  filter: saturate(0.96) contrast(1.04);
  background:
    linear-gradient(90deg, rgba(14, 14, 15, 0.5), rgba(14, 14, 15, 0.34) 46%, rgba(14, 14, 15, 0.7)),
    url("assets/hero-background.webp") center / cover no-repeat;
  /* Efeito parallax/fixo: o conteúdo rola, mas a imagem de fundo permanece presa ao viewport. */
  background-attachment: scroll, fixed;
}

.hero__asset-placeholder span {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  display: grid;
  gap: clamp(16px, 2.4vw, 22px);
  max-width: 1040px;
  text-align: center;
}

/* Headline da hero: menor, mais legível e com destaques sem alterar a copy original. */
.hero__title {
  justify-self: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(24px, 4.2vw, 40px);
  line-height: 1.06;
  letter-spacing: 0.004em;
  font-weight: 800;
}

.hero__title-mobile {
  display: none;
}

.hero__title-line {
  display: block;
  text-wrap: balance;
}

.hero__title-accent {
  color: var(--accent-gold-light);
  text-shadow: none;
  filter: none;
}

@media (min-width: 980px) {
  .hero__title-line {
    white-space: nowrap;
  }
}

.hero__subtitle {
  /* Subheadline reposicionada acima do vídeo para preparar o clique na VSL. */
  color: var(--text-primary);
  font-size: clamp(17px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  max-width: 860px;
  margin-inline: auto;
}

/* Quebra editorial solicitada para manter a promessa da hero em duas linhas no desktop. */
.hero__subtitle span {
  display: block;
}

.hero__actions {
  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: center;
  margin-top: 6px;
}

/* =============================
   Video card
   ============================= */
/* Player da hero: moldura dourada premium sem alterar o embed funcional do YouTube. */
.hero__video-wrap {
  position: relative;
  isolation: isolate;
  width: min(100%, 860px);
  margin-inline: auto;
  padding: clamp(5px, 0.8vw, 8px);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(188, 149, 73, 0.92), rgba(216, 189, 127, 0.36) 34%, rgba(255, 255, 255, 0.12) 50%, rgba(141, 106, 46, 0.88) 100%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.58),
    0 0 42px rgba(188, 149, 73, 0.18);
}

.hero__video-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 189, 127, 0.28), transparent 58%),
    radial-gradient(circle at 15% 100%, rgba(188, 149, 73, 0.16), transparent 42%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.hero__video-wrap::after {
  content: "";
  position: absolute;
  inset: clamp(7px, 1vw, 10px);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(188, 149, 73, 0.16),
    inset 0 0 32px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 15, 0.86);
  border-radius: 14px;
  background: #090909;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
  display: block;
}

/* Thumbnail personalizada: cobre a capa nativa do YouTube e libera o player no clique. */
.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 24px;
  border: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 189, 127, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(14, 14, 15, 0.08), rgba(14, 14, 15, 0.38) 62%, rgba(14, 14, 15, 0.7)),
    url("assets/video-thumbnail.webp") center / cover no-repeat;
  color: var(--text-primary);
  cursor: pointer;
  text-align: center;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.2);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.video-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.12) 44%, transparent 52%),
    linear-gradient(180deg, transparent 0 60%, rgba(188, 149, 73, 0.16) 100%);
  opacity: 0.78;
  pointer-events: none;
}

.video-poster:hover,
.video-poster:focus-visible {
  transform: scale(1.01);
}

.video-poster:hover .video-poster__play,
.video-poster:focus-visible .video-poster__play {
  transform: scale(1.06);
  box-shadow:
    0 16px 48px rgba(188, 149, 73, 0.5),
    0 0 0 10px rgba(188, 149, 73, 0.12);
}

.video-poster.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-poster__play {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: clamp(58px, 8vw, 84px);
  height: clamp(58px, 8vw, 84px);
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: clamp(1.3rem, 3vw, 2rem);
  box-shadow:
    0 12px 38px rgba(188, 149, 73, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-poster__play::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(216, 189, 127, 0.32);
  border-radius: 50%;
  animation: videoPulse 2.4s ease-out infinite;
}

.video-poster__text {
  position: relative;
  z-index: 1;
  max-width: 90%;
  padding: 10px 18px;
  border: 1px solid rgba(216, 189, 127, 0.3);
  border-radius: 999px;
  background: rgba(14, 14, 15, 0.78);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

/* =============================
   Cards and grids
   ============================= */
/* Contraste alternado: seções claras dão respiro após a hero escura sem alterar textos ou ordem. */
.learn,
.bonus,
.guarantee,
.vip,
.faq {
  background: var(--surface-light);
  color: var(--text-dark);
}

.learn h2,
.learn h3,
.bonus h2,
.bonus h3,
.guarantee h2,
.guarantee h3,
.vip h2,
.vip h3,
.faq h2,
.faq h3 {
  color: var(--text-dark);
}

.learn .section-copy p,
.learn-card p,
.bonus-card p,
.guarantee .section-copy p,
.vip .section-copy p,
.vip .text-list {
  color: var(--text-dark-soft);
}

.modules,
.proof,
.about {
  background: var(--bg-secondary);
}

.modules-grid,
.bonus-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  overflow: visible;
  padding: 8px 0 0;
}

.learn-grid {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.learn-card,
.module-card,
.bonus-card,
.proof-card,
.offer-card,
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-secondary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.learn-card,
.bonus-card {
  background: var(--surface-light-alt);
  border-color: rgba(188, 149, 73, 0.24);
}

.learn-card:hover,
.module-card:hover,
.bonus-card:hover,
.proof-card:hover,
.offer-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

/* Spotlight reutilizável: a luz aparece apenas no hover/mouse, sem degradê fixo dentro do card. */
[data-spotlight-card] {
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  touch-action: pan-y;
}

[data-spotlight-card] > * {
  position: relative;
  z-index: 2;
}

[data-spotlight-card]::before,
[data-spotlight-card]::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.22s ease;
}

[data-spotlight-card]::before {
  z-index: 1;
  background: radial-gradient(220px circle at var(--card-x) var(--card-y), rgba(188, 149, 73, 0.24), transparent 64%);
}

[data-spotlight-card]::after {
  z-index: 3;
  padding: 1px;
  background: radial-gradient(260px circle at var(--card-x) var(--card-y), rgba(216, 189, 127, 0.95), transparent 66%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

[data-spotlight-card]:hover::before,
[data-spotlight-card]:hover::after {
  opacity: 1;
}

.learn-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-color: rgba(188, 149, 73, 0.22);
  background: var(--surface-light-alt);
  box-shadow: 0 16px 38px rgba(14, 14, 15, 0.08);
}

.learn-card.reveal {
  transform: translateY(62px) scale(0.985) !important;
}

.learn-card.reveal.is-visible {
  transform: translateY(0) scale(1) !important;
}

.learn-card:hover {
  transform: translateY(-5px) !important;
}

.learn-card__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(34, 197, 94, 0.42);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, var(--success));
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.24);
}

.learn-mockup,
.bonus-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  margin: clamp(30px, 5vw, 56px) auto 0;
}

.learn-mockup::before,
.bonus-showcase::before {
  content: "";
  position: absolute;
  inset: 18% 10%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(188, 149, 73, 0.2);
  filter: blur(34px);
}

.learn-mockup img,
.bonus-showcase img {
  width: min(100%, 1080px);
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.28));
  animation: mockupFloat 5s ease-in-out infinite alternate;
}

/* Ajuste visual: reduz a capa do curso em cerca de 30% sem afetar os banners das outras seções. */
.learn-mockup img {
  width: min(100%, 756px);
}

.module-card p,
.proof-card p {
  color: var(--text-secondary);
  margin: 0;
}

.learn-card p,
.bonus-card p {
  position: relative;
  z-index: 1;
  color: var(--text-dark-soft);
  margin: 0;
}

.learn-card strong {
  color: var(--text-dark);
  font-weight: 800;
}

.module-card,
.bonus-card {
  min-width: 0;
  height: 100%;
  padding: 20px;
}

.module-card__media,
.module-card__media-grid {
  margin: 0 0 18px;
}

.module-card__media {
  display: grid;
  place-items: center;
}

.module-card__media img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.26));
}

.module-card__media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.module-card__media-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24));
}

.module-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 28px;
  padding: 0 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(188, 149, 73, 0.54);
  border-radius: 999px;
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 800;
}

.module-card h3,
.bonus-card h3 {
  margin-bottom: 12px;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-light-alt);
}

.module-card h3,
.bonus-card h3 {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.22;
}

.module-card p,
.bonus-card p {
  font-size: clamp(13px, 1.35vw, 15px);
  line-height: 1.5;
}

.bonus__free-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 42px;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(188, 149, 73, 0.34);
  border-radius: 999px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.bonus__free-note strong {
  color: var(--accent-gold-dark);
  text-transform: uppercase;
}

.bonus-card__image {
  width: min(100%, 240px);
  height: auto;
  margin: -4px auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
}

.bonus-card__value {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--bg-primary);
  background: linear-gradient(135deg, rgba(188, 149, 73, 0.22), rgba(216, 189, 127, 0.58));
  font-weight: 800;
  white-space: nowrap;
}

.bonus-showcase img {
  width: min(100%, 680px);
}

  .hero__content {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero__title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__title-mobile .hero__title-line {
    white-space: normal;
    text-wrap: balance;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: clamp(14px, 4vw, 16px);
    overflow-wrap: break-word;
  }

  .hero__subtitle span {
    display: inline;
  }

  .hero__subtitle span + span::before {
    content: " ";
  }
.bonus-showcase__caption {
  position: absolute;
  right: clamp(8px, 10vw, 140px);
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(82%, 360px);
  padding: 10px 16px;
  transform: translateY(-50%) rotate(-5deg);
  border: 1px solid rgba(216, 189, 127, 0.65);
  border-radius: 999px;
  background: rgba(14, 14, 15, 0.88);
  color: var(--text-primary);
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.bonus-showcase__x {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 30px;
  line-height: 1;
}

/* =============================
   Pricing and offer
   ============================= */
.pricing {
  background:
    linear-gradient(180deg, var(--bg-primary), #080808);
}

.pricing__grid,
.guarantee__grid,
.vip__grid,
.about__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.offer-card {
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  text-align: center;
  background: var(--surface-light-alt);
  color: var(--bg-primary);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.offer-card p {
  margin: 0 0 12px;
  color: #272018;
}

.offer-card__old {
  color: #6d6255 !important;
  font-weight: 700;
  text-decoration: line-through;
}

.offer-card__price {
  color: var(--accent-gold-dark) !important;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.offer-card__installments {
  font-size: 22px;
  font-weight: 800;
}

.offer-card .button {
  margin-top: 14px;
}

.offer-card__value-box {
  position: relative;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid rgba(188, 149, 73, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(188, 149, 73, 0.14), transparent 42%),
    #101011;
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.18);
}

.offer-card__eyebrow {
  margin: 0 0 14px !important;
  color: var(--text-primary) !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-align: left;
}

.offer-table {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-table li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.3;
  text-align: left;
}

.offer-table span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.offer-table i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.offer-table strong {
  color: var(--accent-gold-light);
  font-weight: 900;
  white-space: nowrap;
}

.offer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-weight: 900;
  text-align: left;
}

.offer-total strong {
  position: relative;
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1;
}

/* Oferta: X vermelho sobre o valor total para deixar claro que esse nao e o preco pago hoje. */
.offer-total strong::before,
.offer-total strong::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 50%;
  width: 116%;
  height: 4px;
  border-radius: 999px;
  background: #d62525;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18), 0 2px 8px rgba(214, 37, 37, 0.34);
  transform-origin: center;
  pointer-events: none;
}

.offer-total strong::before {
  transform: translateY(-50%) rotate(14deg);
}

.offer-total strong::after {
  transform: translateY(-50%) rotate(-14deg);
}

.offer-card__anchor {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0 4px;
}

.offer-card__anchor p {
  margin: 0 !important;
  color: #31291f;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.offer-card__anchor strong {
  color: var(--accent-gold-dark);
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.offer-card__final {
  display: grid;
  gap: 7px;
  margin: 0 auto 10px;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid rgba(141, 106, 46, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 189, 127, 0.32), transparent 44%),
    linear-gradient(180deg, #fffaf0, #f4ead7);
  color: var(--text-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.offer-card__final span {
  max-width: 360px;
  margin-inline: auto;
  color: #4b4034;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.offer-card__final strong {
  color: var(--accent-gold-dark);
  font-family: var(--font-serif);
  font-size: clamp(38px, 8vw, 58px);
  font-weight: 800;
  line-height: 0.96;
}

.offer-card__final em {
  color: var(--text-dark);
  font-size: clamp(20px, 4vw, 28px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.offer-card__art-stack {
  display: grid;
  gap: 12px;
  margin: 0 auto 14px;
}

.offer-card__support {
  max-width: 360px;
  margin: 12px auto 10px !important;
  font-weight: 700;
}

.offer-card__checkout {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 14px;
}

.offer-card__button {
  width: min(100%, 360px);
  min-width: 0;
  min-height: 58px;
  box-shadow:
    0 16px 34px rgba(188, 149, 73, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -12px 24px rgba(141, 106, 46, 0.18);
}

.payment-icons,
.payment-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.payment-icons {
  gap: 8px;
  margin-top: 4px;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 24px;
  padding: 4px 7px;
  border: 1px solid rgba(23, 21, 20, 0.16);
  border-radius: 6px;
  background: #f7f2e9;
  color: #29231e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.payment-icon--boleto {
  gap: 5px;
  min-width: 66px;
  text-transform: uppercase;
}

.payment-icon__barcode {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  background:
    linear-gradient(90deg, #29231e 0 2px, transparent 2px 4px, #29231e 4px 5px, transparent 5px 8px, #29231e 8px 11px, transparent 11px 13px, #29231e 13px 14px, transparent 14px 16px, #29231e 16px 18px);
  opacity: 0.72;
}

.payment-icon--visa {
  color: #1c3f8f;
}

.payment-icon--master {
  position: relative;
  gap: 0;
  min-width: 40px;
}

.payment-icon--master span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.payment-icon--master span:first-child {
  margin-right: -5px;
  background: #d84832;
}

.payment-icon--master span:last-child {
  background: #f4a31d;
  mix-blend-mode: multiply;
}

.payment-icon--amex {
  color: #2368a2;
}

.payment-icon--paypal {
  color: #204e8a;
}

.payment-icon--pix {
  color: #118a79;
  font-size: 12px;
  text-transform: lowercase;
}

.payment-trust {
  gap: 6px 10px;
  max-width: 370px;
  color: #665b50;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.payment-trust span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.payment-trust span::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--accent-gold-dark);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #f7f2e9;
  background: var(--accent-gold);
}

.scarcity-badge {
  position: absolute;
  right: 16px;
  top: -18px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  transform: rotate(-4deg);
  border-radius: 999px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  animation: badgeRock 2.4s ease-in-out infinite;
}

/* =============================
   Asset placeholders
   ============================= */
.asset-frame {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(188, 149, 73, 0.34);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(188, 149, 73, 0.12), transparent 36%),
    var(--bg-elevated);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.asset-frame--portrait {
  min-height: 460px;
}

/* Selos da garantia: substituem o placeholder por uma composição visual leve e otimizada. */
.guarantee__visual {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.guarantee__visual::before {
  content: none;
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 189, 127, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.guarantee__seal-main {
  position: relative;
  z-index: 1;
  width: min(390px, 82vw);
  height: auto;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.32));
}

.vip__visual,
.about__visual {
  margin: 0;
  display: grid;
  place-items: center;
}

.vip__visual img {
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.2));
}

.about__visual img {
  width: min(100%, 430px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.38));
}

.text-list {
  display: grid;
  gap: 12px;
  color: var(--text-secondary);
  padding-left: 20px;
}

.text-list li::marker {
  color: var(--accent-gold);
}

.honesty {
  background: var(--bg-primary);
  text-align: center;
}

.honesty .button {
  margin-top: 20px;
}

/* =============================
   Social proof
   ============================= */
.proof-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 76%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 10px 0 22px;
}

.proof-card {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--text-secondary);
  text-align: center;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--bg-secondary);
}

/* Deck de depoimentos: troca automatica e interacao por clique/hover mantendo a estetica dourada. */
.proof-rotator {
  position: relative;
  isolation: isolate;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(8px, 3vw, 28px) 0 clamp(26px, 4vw, 44px);
}

.proof-rotator::before {
  content: "";
  position: absolute;
  inset: 10% 8% 18%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(188, 149, 73, 0.24), transparent 58%),
    radial-gradient(circle at 24% 72%, rgba(255, 255, 255, 0.08), transparent 42%);
  filter: blur(34px);
}

.proof-rotator::after {
  content: "";
  position: absolute;
  right: 11%;
  top: 7%;
  z-index: 6;
  width: 64px;
  height: 64px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 189, 127, 0.72), rgba(188, 149, 73, 0.2) 38%, transparent 70%);
  filter: blur(3px);
  animation: proofGlow 3.2s ease-in-out infinite alternate;
}

.proof-rotator__stage {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  min-height: clamp(260px, 52vw, 570px);
  margin-inline: auto;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.proof-rotator__card {
  --proof-x: 0%;
  --proof-y: 0%;
  --proof-scale: 1;
  --proof-rotate: 0deg;
  position: absolute;
  width: min(94%, 900px);
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  opacity: 0.4;
  transform: translate3d(var(--proof-x), var(--proof-y), 0) scale(var(--proof-scale)) rotate(var(--proof-rotate));
  transform-origin: center;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease, filter 420ms ease;
  will-change: transform, opacity;
}

.proof-rotator__card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.36));
  user-select: none;
  pointer-events: none;
}

.proof-rotator__card.is-active {
  --proof-x: 0%;
  --proof-y: 0%;
  --proof-scale: 1;
  --proof-rotate: -1deg;
  z-index: 5;
  opacity: 1;
  filter: saturate(1.04);
}

.proof-rotator__card.is-next {
  --proof-x: 12%;
  --proof-y: 9%;
  --proof-scale: 0.82;
  --proof-rotate: 7deg;
  z-index: 4;
  opacity: 0.48;
}

.proof-rotator__card.is-far {
  --proof-x: -14%;
  --proof-y: 13%;
  --proof-scale: 0.74;
  --proof-rotate: -8deg;
  z-index: 3;
  opacity: 0.3;
}

.proof-rotator__card.is-previous {
  --proof-x: 1%;
  --proof-y: -9%;
  --proof-scale: 0.66;
  --proof-rotate: 3deg;
  z-index: 2;
  opacity: 0.22;
}

.proof-rotator:hover .proof-rotator__card.is-active,
.proof-rotator__card.is-active:focus-visible {
  --proof-y: -2%;
  --proof-scale: 1.02;
}

.proof-rotator:hover .proof-rotator__card.is-next {
  --proof-x: 18%;
  --proof-y: 10%;
}

.proof-rotator:hover .proof-rotator__card.is-far {
  --proof-x: -20%;
  --proof-y: 16%;
}

.proof-rotator:hover .proof-rotator__card.is-previous {
  --proof-x: -4%;
  --proof-y: -13%;
}

.proof-rotator__card:focus-visible {
  outline: 3px solid rgba(216, 189, 127, 0.9);
  outline-offset: 6px;
}

.proof-rotator__controls {
  position: relative;
  z-index: 7;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(8px, 1.5vw, 16px);
}

.proof-rotator__controls button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(216, 189, 127, 0.7);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  transition: width 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.proof-rotator__controls button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 18px rgba(188, 149, 73, 0.42);
}

.proof-feedbacks {
  position: relative;
  isolation: isolate;
  width: min(100%, 820px);
  margin: clamp(22px, 5vw, 46px) auto 0;
  padding: clamp(16px, 3vw, 28px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(188, 149, 73, 0.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.proof-feedbacks::before {
  content: "";
  position: absolute;
  inset: 12% 6%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(188, 149, 73, 0.18);
  filter: blur(36px);
}

.proof-feedbacks img {
  width: min(100%, 720px);
  height: auto;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.34));
  animation: proofFloat 6.2s ease-in-out infinite alternate;
}

/* =============================
   FAQ
   ============================= */
.faq {
  background: var(--surface-light);
  color: var(--text-dark);
}

.faq h2,
.faq h3 {
  color: var(--text-dark);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(188, 149, 73, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-item h3 {
  font-family: var(--font-sans);
  font-size: 16px;
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 16px 48px 16px 18px;
  text-align: left;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold-dark);
  font-size: 24px;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  color: var(--text-dark-soft);
}

/* =============================
   Footer
   ============================= */
/* Barra de oferta do topo removida para a página iniciar direto na hero. */
.site-footer {
  padding: 44px 0 52px;
  border-top: 1px solid var(--border-subtle);
  background: #080808;
}

.site-footer__inner {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.site-footer__logo {
  width: min(280px, 72vw);
  height: auto;
  display: block;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.site-footer a {
  color: var(--text-secondary);
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-gold);
}

/* =============================
   Motion
   ============================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  to {
    left: 120%;
  }
}

@keyframes buttonBorderSpin {
  to {
    --button-border-spin: 360deg;
  }
}

@keyframes drift {
  to {
    background-position: 180px 180px, 4px 4px;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@keyframes videoPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes badgeRock {
  0%,
  100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(2deg);
  }
}

@keyframes proofFloat {
  from {
    transform: translateY(0) rotate(-1.2deg);
  }
  to {
    transform: translateY(-10px) rotate(0.8deg);
  }
}

@keyframes mockupFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.01);
  }
}

@keyframes proofGlow {
  from {
    opacity: 0.45;
    transform: scale(0.92);
  }
  to {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__beams {
    display: none;
  }
}

/* =============================
   Responsive layout
   ============================= */
@media (min-width: 640px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .proof-track {
    grid-auto-columns: minmax(260px, 36%);
  }

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

}

@media (max-width: 480px) {
  h2,
  .title-balanced--guarantee,
  .title-balanced--honesty {
    font-size: clamp(18px, 5.45vw, 23px);
    line-height: 1.1;
  }

  .title-balanced--proof {
    font-size: clamp(14px, 4.4vw, 18px);
    line-height: 1.12;
  }

  .hero {
    min-height: auto;
  }

  .hero__asset-placeholder {
    background-position: 30% center;
    background-attachment: scroll, scroll;
  }

  .hero__beams {
    opacity: 0.26;
  }

  .hero__title {
    font-size: clamp(18px, 5.6vw, 22px);
    line-height: 1.09;
  }

  .hero__title-desktop {
    display: none;
  }

  .hero__title-mobile {
    display: block;
  }

  .hero__title-mobile .hero__title-line {
    white-space: nowrap;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__content {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero__title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__title-mobile .hero__title-line {
    white-space: normal;
    text-wrap: balance;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: clamp(14px, 4vw, 16px);
    overflow-wrap: break-word;
  }

  .hero__subtitle span {
    display: inline;
  }

  .hero__subtitle span + span::before {
    content: " ";
  }

  .hero__video-wrap {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }

  .video-container,
  .video-container iframe,
  .video-poster {
    border-radius: 12px;
  }
  .bonus-showcase__caption {
    position: relative;
    right: auto;
    top: auto;
    justify-self: center;
    margin-top: -10px;
    transform: rotate(-3deg);
  }

  .proof-rotator {
    padding-bottom: 28px;
  }

  .proof-rotator__stage {
    min-height: clamp(220px, 58vw, 300px);
  }

  .proof-rotator__card {
    width: 98%;
  }

  .proof-rotator:hover .proof-rotator__card.is-next,
  .proof-rotator:hover .proof-rotator__card.is-far,
  .proof-rotator:hover .proof-rotator__card.is-previous {
    --proof-x: 0%;
  }

  .offer-table li {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .offer-table strong {
    justify-self: end;
  }

  .hero__actions .button {
    width: 100%;
    min-width: 0;
  }

  .video-poster__text {
    max-width: 100%;
    font-size: 12px;
  }
}

@media (min-width: 900px) and (max-height: 820px) {
  .hero {
    min-height: auto;
    padding: 36px 0 48px;
  }

  .hero__content {
    gap: 16px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    max-width: 760px;
    font-size: 20px;
  }

  .hero__video-wrap,
  .video-container {
    max-width: 680px;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 18px;
    padding-bottom: 0;
  }

  .section-padding {
    padding: 96px 0;
  }

  .modules .container,
  .bonus .container {
    width: min(100% - 32px, 1360px);
  }

  .modules-grid,
  .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 42px;
  }

  .pricing__grid,
  .guarantee__grid,
  .vip__grid,
  .about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-track {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    overflow: visible;
  }

  .proof-card {
    min-height: 360px;
    animation: floatCard 4s ease-in-out infinite alternate;
  }

  .proof-card:nth-child(even) {
    animation-delay: 0.8s;
  }

}

@media (min-width: 1180px) {
  .hero__subtitle {
    font-size: 24px;
  }

  .modules-grid,
  .bonus-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .module-card,
  .bonus-card {
    padding: 14px;
  }

  .module-card__media,
  .module-card__media-grid {
    margin-bottom: 12px;
  }

  .module-card__media img {
    max-height: 172px;
  }

  .module-card__media-grid {
    gap: 4px;
  }

  .bonus-card__image {
    width: min(100%, 170px);
    margin-bottom: 12px;
  }

  .module-card__number {
    height: 26px;
    margin-bottom: 12px;
    padding: 0 9px;
    font-size: 11px;
  }

  .module-card h3,
  .bonus-card h3 {
    font-size: 15px;
  }

  .module-card p,
  .bonus-card p {
    font-size: 12.2px;
    line-height: 1.42;
  }
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

/* Exit Intent Modal */
body.exit-modal-open {
  overflow: hidden;
}

.exit-modal[hidden] {
  display: none;
}

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.exit-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(9px);
}

.exit-modal__dialog {
  position: relative;
  width: min(100%, 480px);
  max-height: min(88dvh, 640px);
  overflow-y: auto;
  padding: 40px 38px;
  border: 1px solid rgba(188, 149, 73, 0.68);
  border-radius: 8px;
  background: #1d1d1e;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), 0 0 34px rgba(188, 149, 73, 0.15);
  color: #ffffff;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.exit-modal.is-visible .exit-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.exit-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 28px;
  line-height: 1;
}

.exit-modal__close:hover,
.exit-modal__close:focus-visible {
  color: #ffffff;
  outline: none;
}

.exit-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 5px;
  background: rgba(141, 45, 38, 0.72);
  color: #ffb3aa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.exit-modal__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 5vw, 2rem);
  line-height: 1.08;
}

.exit-modal__text {
  display: grid;
  gap: 12px;
  margin: 18px auto 24px;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.55;
}

.exit-modal__text p {
  margin: 0;
}

.exit-modal__fineprint {
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}
.exit-modal__button.button {
  width: min(100%, 360px);
  min-width: 0;
  margin-inline: auto;
  text-decoration: none;
}

.exit-modal__button.button span {
  white-space: normal;
  text-wrap: balance;
}
@media (max-width: 520px) {
  .exit-modal {
    align-items: center;
    padding: 16px;
  }

  .exit-modal__dialog {
    width: 100%;
    max-height: 86dvh;
    padding: 34px 22px 24px;
  }

  .exit-modal__text {
  display: grid;
  gap: 12px;
  margin: 18px auto 24px;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.55;
}

.exit-modal__text p {
  margin: 0;
}

.exit-modal__fineprint {
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}
.exit-modal__button.button {
  width: min(100%, 360px);
  min-width: 0;
  margin-inline: auto;
  text-decoration: none;
}

.exit-modal__button.button span {
  white-space: normal;
  text-wrap: balance;
}
}
/* Exit Intent Modal - page visual alignment */
.exit-modal__overlay {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px) saturate(0.9);
}

.exit-modal__dialog {
  border-color: rgba(188, 149, 73, 0.7);
  background:
    radial-gradient(circle at 50% -20%, rgba(216, 189, 127, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(34, 32, 29, 0.98), rgba(14, 14, 15, 0.98));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.58),
    0 0 42px rgba(188, 149, 73, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.exit-modal__eyebrow {
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
  color: #fff8e3;
  box-shadow: 0 10px 24px rgba(188, 149, 73, 0.18);
}

.exit-modal__title {
  color: var(--text-primary);
}

.exit-modal__text {
  color: var(--text-secondary);
}

.exit-modal__fineprint {
  color: var(--accent-gold-light);
}

/* Exit Intent Modal - high contrast text */
.exit-modal__text,
.exit-modal__text p {
  color: rgba(255, 255, 255, 0.94);
}

.exit-modal__fineprint {
  color: color-mix(in srgb, #ffffff 82%, var(--champagne, var(--accent-gold-light, #d8bd7f)) 18%);
  opacity: 1;
}
