:root {
  --black: #030404;
  --black-soft: #080b0f;
  --blue-deep: #061722;
  --gold: #d7a65d;
  --gold-soft: #f0bf76;
  --green: #15d13d;
  --green-dark: #079b2b;
  --red: #ff111f;
  --white: #f8f6f1;
  --paper: #eceae6;
  --text: #f4efe7;
  --muted: #c9c0b4;
  --dark-text: #1d1d1d;
  --line: rgba(215, 166, 93, 0.34);
  --line-soft: rgba(255, 255, 255, 0.11);
  --container: min(1280px, calc(100vw - 36px));
  --shadow-green: 0 0 22px rgba(21, 209, 61, 0.55), 0 14px 28px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
}

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

mark {
  color: var(--gold-soft);
  background: transparent;
}

.countdown-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 12px 16px;
  background: var(--red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.timer span {
  display: grid;
  place-items: center;
  min-width: 52px;
  min-height: 48px;
  padding: 6px 8px;
  border-radius: 3px;
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

.timer strong {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
}

.timer small {
  margin-top: 4px;
  color: #5c5c5c;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-dark,
.section-light {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 6% 18%, rgba(4, 73, 94, 0.55), transparent 26%),
    radial-gradient(circle at 88% 34%, rgba(215, 166, 93, 0.08), transparent 24%),
    linear-gradient(180deg, var(--black), var(--black-soft));
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(215, 166, 93, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 166, 93, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 72%);
  pointer-events: none;
}

.section-light {
  background: var(--paper);
  color: var(--dark-text);
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.hero {
  min-height: calc(100vh - 505px);
  display: grid;
  align-items: end;
  padding-top: 0;
  padding-bottom: 0;
}

.hero__grid,
.split {
  display: grid;
  grid-template-columns: minmax(680px, 760px) minmax(300px, 1fr);
  gap: 64px;
  align-items: center;
}

.hero__grid {
  grid-template-columns: minmax(0, 660px) minmax(420px, 560px);
  gap: 58px;
  align-items: end;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.hero-logo {
  display: block;
  width: min(172px, 44vw);
  height: auto;
  margin: 0 0 34px;
}

.hero-expert {
  align-self: end;
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-expert img {
  display: block;
  width: min(770px, 42vw);
  max-width: none;
  height: auto;
  transform: translateX(68px);
}

.eyebrow,
h2 strong {
  color: var(--gold-soft);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}

h1 {
  max-width: 640px;
  font-size: clamp(2.05rem, 2.9vw, 2.95rem);
  line-height: 0.96;
}

h2 {
  color: inherit;
  font-size: clamp(1.85rem, 2.55vw, 2.6rem);
  line-height: 1.12;
  text-align: center;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

h1 span,
h2 span {
  display: block;
}

h1 span {
  white-space: nowrap;
}

.hero-title--mobile {
  display: none;
}

.mobile-only {
  display: none;
}

.mobile-copy {
  display: none;
}

.lead,
.section-heading p,
.text-block p,
.bonus-box li,
.check-list li,
.highlight-card p,
.payback,
.whatsapp-note {
  color: var(--muted);
  line-height: 1.76;
}

.lead {
  max-width: 620px;
  margin: 24px 0 26px;
  color: #ffffff;
  font-size: clamp(0.96rem, 1.1vw, 1.16rem);
  line-height: 1.45;
}

.lead strong {
  font-style: italic;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  max-width: 100%;
  padding: 0 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #ffffff;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow-green);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(21, 209, 61, 0.68), 0 18px 34px rgba(0, 0, 0, 0.42);
}

.button.hotmart-fb,
.button.hotmart__button-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #ffffff;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: var(--shadow-green);
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0 82px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 400;
}

.secure-note img {
  display: block;
  width: 24px;
  height: auto;
  flex: 0 0 auto;
}

.secure-note strong {
  font-weight: 800;
}

.image-placeholder,
.seal-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 166, 93, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  color: var(--gold-soft);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.image-placeholder--portrait {
  min-height: 560px;
  border-radius: 0 0 46% 46%;
  background:
    radial-gradient(circle at center, rgba(215, 166, 93, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}

.image-placeholder--light,
.section-light .image-placeholder {
  border-color: rgba(215, 166, 93, 0.52);
  background: #f8f5ef;
  color: #8f5f22;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

.image-placeholder span,
.seal-placeholder span {
  display: block;
  max-width: 26ch;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.image-frame {
  overflow: hidden;
  padding: 0;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: center;
}

.image-frame--tall img {
  min-height: 180px;
  object-position: center 34%;
}

.image-frame--contain img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.reality-section .image-frame--tall {
  width: 50%;
  justify-self: center;
}

.reality-section .split {
  grid-template-columns: 380px 540px;
  justify-content: center;
  gap: 200px;
}

.reality-section .image-frame--tall {
  width: 100%;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading p {
  max-width: 720px;
  margin: 0;
}

.text-block {
  max-width: 760px;
  margin: 0 auto;
}

.text-block p {
  margin: 0 0 18px;
}

.text-block--centered {
  max-width: 900px;
  text-align: center;
  letter-spacing: 0.005em;
}

.text-block--centered p {
  line-height: 1.82;
}

.story-section .narrow {
  max-width: 980px;
}

.story-section .text-block {
  max-width: 980px;
  text-align: center;
}

.story-section .text-block p {
  margin-left: auto;
  margin-right: auto;
}

.story-copy--mobile {
  display: none;
}

.access-copy--mobile {
  display: none;
}

.pricing-copy--mobile {
  display: none;
}

.opportunity-section .narrow {
  max-width: 980px;
}

.opportunity-section .text-block {
  max-width: 980px;
  text-align: center;
}

.opportunity-section .center {
  margin-top: 30px;
}

.reveal-section .narrow {
  max-width: 980px;
}

.reveal-section .text-block {
  max-width: 980px;
  text-align: center;
}

.access-section .narrow,
.pricing-section .narrow {
  max-width: 980px;
}

.center {
  text-align: center;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.placeholder-grid .image-placeholder {
  min-height: 230px;
}

.dark-copy {
  color: #343434;
  line-height: 1.76;
  font-size: 1.04rem;
}

.guarantee-section .split {
  grid-template-columns: minmax(420px, 560px) minmax(300px, 360px);
  justify-content: center;
  gap: 44px;
}

.guarantee-section .reveal:first-child {
  text-align: center;
}

.guarantee-section .dark-copy {
  text-align: center;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list--stack {
  grid-template-columns: 1fr;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 50px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.026);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 15px;
  color: var(--green);
  font-weight: 900;
}

.section-light .check-list li {
  color: var(--dark-text);
  background: #f8f5ef;
}

.section-program {
  padding-top: 100px;
}

.program-kicker {
  color: var(--gold-soft) !important;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.modules-grid,
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.modules-grid article,
.gift-grid article,
.bonus-box,
.highlight-card,
.value-stack div,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.modules-grid article,
.gift-grid article {
  padding: 22px;
}

.modules-grid span,
.gift-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modules-grid p,
.gift-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.bonus-box {
  margin-top: 24px;
  padding: 28px;
}

.bonus-box h3,
.highlight-card strong {
  color: var(--gold-soft);
  font-size: 1.45rem;
}

.highlight-card {
  margin: 28px auto 0;
  max-width: 580px;
  padding: 28px;
  text-align: center;
}

.highlight-card img {
  display: block;
  width: min(430px, 100%);
  height: auto;
  margin: 0 auto;
}

.highlight-card p {
  margin: 10px 0 0;
}

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

.gift-grid article {
  background: #f8f5ef;
  color: var(--dark-text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.gift-grid p {
  color: #4e4e4e;
}

.value-stack {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.value-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.value-stack strong {
  color: var(--gold-soft);
  white-space: nowrap;
}

.price-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 30px auto 0;
  padding: 34px 26px;
  text-align: center;
}

.price-card p,
.price-card span {
  margin: 0;
  color: var(--muted);
}

.price-card strong {
  color: var(--gold-soft);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  line-height: 1;
}

.payback {
  max-width: 640px;
  margin: 26px auto 0;
  text-align: center;
  font-weight: 800;
}

.seal-placeholder {
  min-height: 300px;
  border-radius: 50%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, #fff6d9 0 48%, #e2b766 49% 64%, #8a551a 65% 100%);
  color: #5c3610;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.15);
}

.seal-placeholder strong {
  color: #5c3610;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
}

.seal-image {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
}

.seal-image img {
  display: block;
  width: min(360px, 100%);
  height: auto;
}

.testimonials-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.testimonials-video-grid--mobile {
  display: none;
}

.testimonials-video-grid iframe {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
}

.testimonials-video-grid--desktop iframe {
  aspect-ratio: 16 / 9;
}

.testimonials-video-grid--mobile iframe {
  aspect-ratio: 9 / 16;
}

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

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

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

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.72;
}

.whatsapp-note {
  margin: 28px 0 0;
  text-align: center;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

@media (max-width: 900px) {
  .hero__grid,
  .split,
  .split--reverse,
  .modules-grid,
  .placeholder-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .split,
  .split--reverse,
  .reality-section .split,
  .guarantee-section .split {
    gap: 34px;
  }

  .reality-section .split,
  .guarantee-section .split {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .hero {
    min-height: auto;
    padding-bottom: 62px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  h1,
  h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .secure-note {
    justify-content: center;
    margin-left: 0;
  }

  .hero-expert {
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .hero-expert img {
    width: min(520px, 96vw);
    transform: none;
  }

  .reality-section .image-frame--tall {
    width: 100%;
  }

  .guarantee-section .container {
    width: min(640px, calc(100vw - 34px));
  }

  .guarantee-section .seal-image {
    justify-self: center;
  }

  .image-placeholder--portrait {
    min-height: 400px;
    border-radius: 8px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 34px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  .section-dark,
  .section-light {
    padding: 58px 0;
  }

  .countdown-bar {
    padding: 18px 10px 24px;
  }

  .timer {
    gap: 8px;
  }

  .timer span {
    min-width: 46px;
    min-height: 54px;
    padding: 7px 8px;
  }

  .timer strong {
    font-size: 1.7rem;
  }

  .timer small {
    font-size: 0.68rem;
  }

  .check-list,
  .gift-grid {
    grid-template-columns: 1fr;
  }

  .value-stack div {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: min(100%, 280px);
    min-height: 56px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 0.78rem;
  }

  .button.hotmart-fb,
  .button.hotmart__button-checkout {
    width: min(100%, 280px);
    min-height: 56px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 0.78rem;
  }

  .hero-logo {
    width: min(210px, 58vw);
    margin-bottom: 28px;
  }

  .hero {
    padding-top: 52px;
    padding-bottom: 0;
  }

  .hero__grid {
    gap: 18px;
  }

  .hero__copy,
  .section-heading,
  .text-block,
  .center,
  .price-card,
  .faq-list,
  .value-stack,
  .split > *,
  .hero__grid > *,
  .modules-grid > *,
  .placeholder-grid > * {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    width: min(280px, 100%);
    max-width: calc(100vw - 34px);
    font-size: clamp(1.42rem, 6.7vw, 1.56rem);
    line-height: 1.04;
  }

  h2 {
    width: min(280px, 100%);
    max-width: calc(100vw - 34px);
    font-size: clamp(1.38rem, 6.3vw, 1.58rem);
    line-height: 1.08;
  }

  .lead {
    max-width: 280px;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .section-heading p,
  .text-block p,
  .dark-copy,
  .payback,
  .whatsapp-note {
    width: min(280px, 100%);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .story-copy--desktop {
    display: none;
  }

  .story-copy--mobile {
    display: block;
  }

  .access-copy--desktop {
    display: none;
  }

  .access-copy--mobile {
    display: block;
  }

  .pricing-copy--desktop {
    display: none;
  }

  .pricing-copy--mobile {
    display: block;
  }

  .story-section .story-copy--mobile p {
    width: min(320px, 100%);
    max-width: 320px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.72;
    text-align: center;
    letter-spacing: 0;
  }

  .access-section .access-copy--mobile p {
    width: min(320px, 100%);
    max-width: 320px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.82;
    text-align: center;
    letter-spacing: 0;
  }

  .pricing-section .pricing-copy--mobile p {
    width: min(320px, 100%);
    max-width: 320px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.82;
    text-align: center;
    letter-spacing: 0;
  }

  h1 span,
  h2 span {
    display: inline;
    max-width: 100%;
    white-space: normal !important;
  }

  .hero-title--desktop {
    display: none;
  }

  .hero-title--mobile {
    display: block;
  }

  .hero-title--mobile span {
    display: block;
    white-space: normal !important;
  }

  .mobile-only {
    display: initial;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: block;
  }

  h1,
  h2,
  p,
  li,
  .button {
    overflow-wrap: break-word;
  }

  .hero-expert {
    min-height: 0;
    max-height: none;
    justify-content: center;
  }

  .hero-expert img {
    width: min(510px, 112vw);
    transform: none;
  }

  .secure-note {
    gap: 10px;
    margin-top: 20px;
    font-size: 0.8rem;
  }

  .secure-note img {
    width: 24px;
  }

  .placeholder-grid {
    gap: 14px;
  }

  .image-placeholder,
  .seal-placeholder {
    min-height: 240px;
  }

  .image-frame img {
    min-height: 0;
  }

  .image-frame--tall img {
    min-height: 0;
  }

  .check-list li {
    padding: 15px 16px 15px 46px;
    font-size: 1rem;
  }

  .check-list {
    width: min(280px, 100%);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .reality-section .split > .image-frame--tall {
    order: 2;
    width: min(82vw, 300px);
    justify-self: center;
  }

  .reality-section .split > .reveal:not(.image-frame--tall) {
    order: 1;
  }

  .section-light .split,
  .section-light .split--reverse {
    gap: 28px;
  }

  .section-light .dark-copy {
    font-size: 1.02rem;
    line-height: 1.64;
  }

  .guarantee-section .container {
    width: calc(100vw - 34px);
  }

  .guarantee-section .split {
    gap: 22px;
  }

  .guarantee-section .seal-image img {
    width: min(260px, 72vw);
  }

  .payback {
    max-width: calc(100vw - 34px);
    font-size: 1.05rem;
    line-height: 1.58;
  }

  .testimonials-video-grid--desktop {
    display: none;
  }

  .testimonials-video-grid--mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .testimonials-video-grid--mobile iframe {
    width: min(100%, 300px);
  }
}
