:root {
  --bg: #fcfbf7;
  --grid: rgba(20, 20, 20, 0.055);
  --paper: #fffdf8;
  --paper-2: #f4efe3;
  --ink: #111111;
  --cyan: #69d8f0;
  --yellow: #ffd93d;
  --pink: #ff7aa5;
  --green: #b7ecd5;
  --orange: #ff8d67;
  --muted: rgba(17, 17, 17, 0.78);
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    radial-gradient(circle at 15% 10%, rgba(105, 216, 240, 0.12), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 217, 61, 0.14), transparent 16%),
    var(--bg);
  background-size: 24px 24px, 24px 24px, auto, auto, auto;
}

a {
  color: inherit;
}

.page-shell {
  width: min(calc(100% - 40px), 1380px);
  margin: 18px auto 28px;
}

.hero-banner {
  display: flex;
  justify-content: center;
  padding: 16px 20px 14px;
  background: var(--orange);
  border: var(--border);
  box-shadow: var(--shadow);
  font-family: "Space Mono", monospace;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 34px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 24px;
}

.hero__points,
.program-section,
.journey-section,
.bonus-section,
.pricing-grid-section,
.guarantee-section,
.bonus-offer-section,
.results-section,
.urgency-section,
.choices-section,
.final-proof,
.future-choice,
.contact-strip,
.legal-footer {
  grid-column: 1 / -1;
}

.eyebrow,
.offer-card__label {
  margin: 0;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.92rem;
}

.launch-alert {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 12px;
  background: var(--paper);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}

.launch-alert__content {
  position: relative;
  z-index: 1;
}

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

.launch-alert__title {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.05;
}

.launch-alert__pulse {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 999px;
  background: #ff2f2f;
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 0 rgba(255, 47, 47, 0.6);
  animation: alert-pulse 1.2s infinite;
}

.launch-alert__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 61, 0.3), transparent);
  transform: translateX(-120%);
  animation: alert-scan 3.4s ease-in-out infinite;
}

.hero__copy h1 {
  margin: 18px 0 0;
  max-width: 10.8ch;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.headline-mark {
  display: inline-block;
  padding: 0 0.14em;
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--pink);
}

.hero__quote p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin-top: 8px;
}

.hero-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px 20px;
  background: transparent;
  text-align: center;
}

.hero-point__copy {
  width: 100%;
}

.hero-point strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.28;
  text-transform: uppercase;
}

.hero-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-point__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  margin-bottom: 14px;
}

.hero-point__image {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.hero-point__image--niche {
  transform: scale(1);
}

.hero-point__image--auto {
  transform: scale(1.14);
}

.hero-point__image--sales {
  transform: scale(1.14);
}

.program-section,
.journey-section,
.bonus-section,
.reels-section,
.pricing-teaser {
  grid-column: 1 / -1;
  margin-top: 38px;
}

.section-band {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background: var(--orange);
  color: var(--ink);
  border: var(--border);
  box-shadow: var(--shadow);
  font-family: "Space Mono", monospace;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-band--dark {
  background: #1a1d22;
  color: #fff;
}

.section-band--hot {
  background: #eb5339;
  color: #fff;
}

.section-band--full {
  display: flex;
  width: 100%;
}

.format-grid,
.module-card__grid,
.bonus-card {
  display: grid;
  gap: 24px;
  align-items: start;
}

.format-grid {
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 24px;
}

.format-visual,
.journey-intro,
.module-card,
.bonus-card {
  background: rgba(255, 255, 255, 0.68);
  border: var(--border);
  box-shadow: var(--shadow);
}

.format-visual {
  padding: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.format-visual__image,
.module-card__gallery img,
.bonus-image {
  display: block;
  width: 100%;
  height: auto;
}

.format-copy {
  display: grid;
  gap: 14px;
  padding-top: 6px;
}

.format-copy p,
.journey-intro p,
.module-card__copy p,
.bonus-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.journey-intro {
  margin-top: 22px;
  padding: 20px 22px;
}

.module-list {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.module-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 24px;
  align-items: start;
  padding: 22px;
}

.module-card__header {
  grid-column: 1;
  margin-bottom: 18px;
}

.module-card__day,
.bonus-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  font-family: "Space Mono", monospace;
  font-size: 1.28rem;
  font-weight: 700;
  text-transform: uppercase;
}

.module-card__header h2,
.bonus-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.module-card__grid { display: contents; }

.module-card__copy {
  grid-column: 1;
  display: grid;
  gap: 12px;
}

.module-card__spaced-highlight {
  margin-bottom: 10px;
}

.module-card__gallery {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 14px;
  align-content: start;
  align-self: start;
  margin-top: 0;
}

.module-card--audience .module-card__gallery {
  align-self: center;
  align-content: center;
}

.module-card--day7 .module-card__gallery {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  align-content: center;
  justify-content: center;
}

.module-card--day7 {
  grid-template-areas:
    "header gallery"
    "copy gallery";
}

.module-card--day7 .module-card__header {
  grid-area: header;
}

.module-card--day7 .module-card__copy {
  grid-area: copy;
}

.module-card--day7 .module-card__gallery {
  grid-area: gallery;
}

.module-card__gallery img {
  padding: 5px;
  border: 0;
  box-shadow: var(--shadow-sm);
  background: var(--pink);
}

.module-card__inline-shot {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  box-shadow: var(--shadow-sm);
}

.module-mini-bonus {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: var(--border);
  box-shadow: var(--shadow-sm);
}

.module-mini-bonus__label {
  margin: 0;
  width: fit-content;
  padding: 6px 10px;
  background: var(--yellow);
  border: var(--border);
  box-shadow: 3px 3px 0 var(--pink);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.module-mini-bonus h3 {
  margin: 0 0 -2px;
  font-size: 1.2rem;
  line-height: 1.05;
}

.module-mini-bonus p {
  margin: 0;
}

.module-mini-bonus p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 1280px) {
  .module-card {
    display: block;
  }

  .module-card__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .module-card__header {
    margin-bottom: 16px;
  }

  .module-card__copy,
  .module-card__gallery,
  .module-card--audience .module-card__gallery,
  .module-card--day7 .module-card__gallery {
    grid-column: auto;
    grid-row: auto;
    grid-area: auto;
    align-self: start;
    align-content: start;
    justify-content: stretch;
  }

  .module-card__gallery {
    margin-top: 0;
  }

  .module-card__gallery img,
  .module-card--day7 .module-card__gallery img {
    width: 100%;
    max-width: 100%;
  }

  .module-card--day7 {
    grid-template-areas: none;
  }
}

.bonus-card {
  margin-top: 22px;
  padding: 22px;
  display: grid;
  gap: 24px;
}

.reels-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.reels-copy {
  display: grid;
  gap: 14px;
}

.reels-copy--bottom {
  margin-top: 24px;
}

.reels-copy__lead {
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.reels-copy__system-title {
  font-size: 1.6rem !important;
  line-height: 1.35 !important;
}

.reels-copy p,
.pricing-teaser__card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.reels-media-stack,
.reels-gallery img,
.pricing-teaser__card {
  background: rgba(255, 255, 255, 0.68);
  border: var(--border);
  box-shadow: var(--shadow);
}

.reels-media-stack {
  padding: 18px;
}

.reels-media-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.reels-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.reels-gallery--stack {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.reels-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 5px;
  background: var(--pink);
  border: 0;
}

.reels-layout .bonus-label,
.reels-layout h2 {
  justify-self: start;
}

.reels-layout h2 {
  margin: -2px 0 2px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.pricing-teaser__card {
  margin-top: 22px;
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
  padding: 22px;
  display: grid;
  gap: 12px;
}

.pricing-teaser__highlight-row {
  margin: 0;
}

.pricing-teaser__highlight {
  display: inline;
  padding: 0.28em 0.48em 0.22em;
  line-height: 1.55;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--pink);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.pricing-grid-section,
.guarantee-section,
.bonus-offer-section,
.results-section,
.urgency-section,
.choices-section,
.final-proof,
.contact-strip {
  margin-top: 28px;
}

.pricing-grid-section {
  min-height: auto;
  display: grid;
  justify-items: center;
  padding-top: 10px;
}

.pricing-grid,
.legal-bonus,
.choices-grid {
  display: grid;
  gap: 24px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 700px);
  margin: 28px auto 0;
  gap: 16px;
}

.price-card,
.dark-copy-card,
.guarantee-card,
.legal-bonus,
.proof-intro,
.urgency-block,
.choice-card,
.final-proof__copy,
.contact-card {
  background: rgba(255, 255, 255, 0.68);
  border: var(--border);
  box-shadow: var(--shadow);
}

.price-card {
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
  box-shadow: 6px 6px 0 var(--ink);
}

.price-card--featured {
  background: linear-gradient(180deg, rgba(255, 141, 103, 0.16), rgba(255, 255, 255, 0.86));
}

.price-card__head h3,
.choice-card h3 {
  margin: 6px 0 0;
  font-size: clamp(1.72rem, 2.45vw, 2.45rem);
  line-height: 1.02;
}

.price-card__head {
  margin-bottom: -2px;
}

.price-card__access {
  margin: 8px 0 0;
  font-family: "Space Mono", monospace;
  font-size: 0.76rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card__visual {
  margin-top: -4px;
  margin-bottom: -2px;
}

.price-card__eyebrow,
.price-card__price-label {
  margin: 0;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card__eyebrow {
  color: var(--muted);
  font-size: 0.72rem;
}

.price-card__visual,
.legal-bonus__image,
.results-section__image,
.choices-section__image,
.final-proof__image,
.urgency-block__chart {
  display: block;
  width: 100%;
  height: auto;
}

.price-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card__features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: translateY(-50%);
}

.price-card__features .is-muted {
  color: rgba(17, 17, 17, 0.44);
  text-decoration: line-through;
}

.price-card__footer {
  padding-top: 14px;
  border-top: 2px solid rgba(17, 17, 17, 0.12);
  display: grid;
  gap: 8px;
}

.price-card__price {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: #f0a000;
  white-space: nowrap;
}

.price-card__installment {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
  color: var(--muted);
}

.price-card .neo-button {
  min-height: 68px;
  padding: 0 20px;
  font-size: 1.08rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.price-card__widget {
  width: 100%;
  display: grid;
  justify-items: stretch;
  min-height: 68px;
}

.price-card__widget script {
  display: block;
  width: 100%;
}

.neo-button--featured-tariff {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: tariff-cta-pulse 1.9s ease-in-out infinite;
}

.neo-button--featured-tariff::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -45%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  transform: skewX(-18deg);
  animation: hero-cta-shine 2.2s ease-in-out infinite;
  z-index: -1;
}

.guarantee-section {
  width: min(100%, 620px);
  margin: 22px auto 0;
}

.guarantee-card {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  background: #1a1d22;
  color: #fff;
  display: grid;
  gap: 10px;
  box-shadow: 6px 6px 0 var(--ink);
  animation: guarantee-breathe 2.4s ease-in-out infinite;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 211, 55, 0.16) 45%, transparent 68%);
  transform: translateX(-120%);
  animation: guarantee-scan 3.2s ease-in-out infinite;
}

.guarantee-card p {
  position: relative;
  margin: 0;
}

.guarantee-card__badge {
  width: fit-content;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--pink);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.guarantee-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff2f2f;
  box-shadow: 0 0 0 0 rgba(255, 47, 47, 0.7);
  animation: alert-pulse 1.2s infinite;
}

.guarantee-card__title,
.guarantee-card__headline {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.guarantee-card__title {
  font-family: "Space Mono", monospace;
  font-size: 0.92rem;
}

.guarantee-card__headline {
  font-size: 1.28rem;
  line-height: 1.15;
  color: var(--ink);
}

.guarantee-card__body {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.legal-bonus {
  margin-top: 22px;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  padding: 22px;
  align-items: center;
}

.legal-bonus__copy {
  display: grid;
  gap: 14px;
  text-align: left;
  justify-items: start;
}

.legal-bonus__copy h2 {
  margin: -2px 0 2px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.bonus-offer-section__cta {
  margin-top: 38px;
  margin-bottom: 38px;
  display: flex;
  justify-content: center;
}

.bonus-offer-section__cta .join-button {
  min-width: 340px;
}

.legal-bonus__copy p,
.urgency-block__copy p,
.choice-card p,
.final-proof__copy p,
.contact-card p,
.proof-intro p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.proof-intro {
  padding: 18px 22px;
  background: #ff8d67;
}

.proof-intro p {
  font-size: 1.15rem;
  text-align: center;
}

.final-proof .section-band.section-band--hot {
  text-align: center;
  color: var(--ink);
  background: #ff8d67;
}

.results-section {
  width: min(100%, 760px);
  margin: 28px auto 0;
}

.results-section__image,
.choices-section__image,
.final-proof__image {
  margin-top: 22px;
}

.results-section__picture {
  display: block;
  margin-top: 22px;
}

.results-section__picture .results-section__image {
  margin-top: 0;
}

.urgency-block {
  margin-top: 22px;
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
  padding: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 18px;
}

.urgency-block > p:first-child {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.14rem;
  line-height: 1.55;
  color: var(--ink);
}

.urgency-block__chart {
  border: var(--border);
  box-shadow: var(--shadow-sm);
}

.urgency-block__copy {
  display: grid;
  gap: 12px;
}

.urgency-section__cta {
  width: min(100%, 760px);
  margin: 40px auto 52px;
  display: flex;
  justify-content: center;
}

.urgency-section__cta .neo-button {
  min-height: 96px;
  padding: 0 40px;
  font-size: 1.55rem;
  box-shadow: 8px 8px 0 var(--ink);
}

.choices-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
  padding: 22px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.choice-card--accent {
  background: linear-gradient(180deg, rgba(105, 216, 240, 0.15), rgba(255, 255, 255, 0.88));
}

.choice-card h3 {
  color: #eb5339;
}

.final-proof__copy {
  margin-top: 22px;
  padding: 22px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.final-proof__copy p {
  max-width: 760px;
}

.future-choice {
  width: 100%;
  margin-top: 28px;
  display: grid;
  justify-items: center;
}

.future-choice > .section-band {
  justify-content: center;
  text-align: center;
}

.future-choice__image,
.future-choice__copy {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.future-choice__image {
  display: block;
  margin-top: 22px;
  height: auto;
  object-fit: contain;
}

.future-choice__copy {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.contact-card {
  padding: 28px 22px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.final-proof,
.future-choice,
.contact-strip {
  margin-left: auto;
  margin-right: auto;
}

.final-proof {
  width: 100%;
}

.final-proof__image,
.future-choice__image,
.final-proof__copy {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.contact-strip {
  width: min(100%, 760px);
}

.legal-footer {
  width: min(100%, 760px);
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-bottom: 22px;
}

.legal-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.68);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-footer__meta {
  width: 100%;
  margin-top: 8px;
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.45;
}

.legal-footer__meta p {
  margin: 0;
}

.widget-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.widget-modal.is-open {
  display: flex;
}

.widget-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(4px);
}

.widget-modal__dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(88vh, 920px);
  padding: 18px;
  background: var(--paper);
  border: var(--border);
  box-shadow: var(--shadow);
  overflow: auto;
}

.widget-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-bottom: 12px;
  width: 42px;
  height: 42px;
  border: var(--border);
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.widget-modal__body {
  min-height: 520px;
}

.widget-modal__body iframe {
  width: 100% !important;
}

.hero__quote {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 26px;
}

.hero__quote-line {
  width: 100%;
  min-height: 100%;
  background: linear-gradient(180deg, var(--pink), var(--yellow));
  border: var(--border);
  box-shadow: var(--shadow-sm);
}

.hero__quote p {
  margin: 0;
}

.hero__actions,
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: 30px;
}

.hero__chips {
  margin-top: 24px;
}

.neo-button,
.neo-pill,
.offer-card,
.skill-tag {
  border: var(--border);
  box-shadow: var(--shadow-sm);
}

.neo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.neo-button:hover,
.neo-pill:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.neo-button--cyan {
  background: var(--cyan);
}

.neo-button--paper {
  background: var(--paper);
}

.neo-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-family: "Space Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.neo-pill--yellow { background: var(--yellow); }
.neo-pill--cyan { background: var(--cyan); }
.neo-pill--pink { background: var(--pink); }
.neo-pill--green { background: var(--green); }

.hero__visual {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding-top: 8px;
  width: 100%;
  max-width: 650px;
  justify-self: end;
}

.portrait-composition {
  position: relative;
  width: min(100%, 520px);
  min-height: 760px;
  margin-left: auto;
  margin-right: auto;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.portrait-frame {
  position: absolute;
  inset: 0 18px 70px 18px;
  background: linear-gradient(180deg, rgba(105, 216, 240, 0.9), rgba(105, 216, 240, 0.68));
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.portrait-placeholder__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.offer-card {
  position: relative;
  padding: 18px;
  background: var(--paper);
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 26px;
  background: var(--cyan);
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.join-button:hover {
  transform: translate(5px, 5px);
  box-shadow: none;
}

.join-button--hero {
  position: relative;
  width: min(100%, 500px);
  min-height: 86px;
  font-size: 1.35rem;
  overflow: hidden;
  isolation: isolate;
  animation: hero-cta-pulse 1.8s ease-in-out infinite;
}

.join-button--hero::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
  animation: hero-cta-shine 2.4s ease-in-out infinite;
  z-index: -1;
}

.offer-card__label {
  display: inline-block;
  color: var(--pink);
  font-size: 0.74rem;
}

.offer-card h2 {
  margin: 10px 0 10px;
  font-size: 1.42rem;
  line-height: 1.1;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes alert-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 47, 47, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(255, 47, 47, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 47, 47, 0);
  }
}

@keyframes alert-scan {
  0%, 18% { transform: translateX(-120%); }
  42%, 100% { transform: translateX(120%); }
}

@keyframes guarantee-breathe {
  0%, 100% {
    box-shadow: 6px 6px 0 var(--ink), 0 0 0 rgba(255, 211, 55, 0);
  }
  50% {
    box-shadow: 6px 6px 0 var(--ink), 0 0 22px rgba(255, 211, 55, 0.28);
  }
}

@keyframes guarantee-scan {
  0%, 35% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}

@keyframes hero-cta-pulse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    box-shadow: 10px 10px 0 var(--ink), 0 0 0 rgba(105, 216, 240, 0);
  }
  50% {
    transform: translate(-1px, -1px) scale(1.035);
    box-shadow: 12px 12px 0 var(--ink), 0 0 24px rgba(105, 216, 240, 0.5);
  }
}

@keyframes hero-cta-shine {
  0%, 30% { left: -45%; }
  62%, 100% { left: 125%; }
}

@keyframes hero-cta-pulse-mobile {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    box-shadow: 4px 4px 0 var(--ink), 0 0 0 rgba(105, 216, 240, 0);
  }
  50% {
    transform: translate(-1px, -1px) scale(1.03);
    box-shadow: 5px 5px 0 var(--ink), 0 0 18px rgba(105, 216, 240, 0.45);
  }
}

@keyframes tariff-cta-pulse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    box-shadow: 4px 4px 0 var(--ink), 0 0 0 rgba(105, 216, 240, 0);
  }
  50% {
    transform: translate(-1px, -1px) scale(1.025);
    box-shadow: 5px 5px 0 var(--ink), 0 0 20px rgba(105, 216, 240, 0.45);
  }
}

@media (max-width: 1100px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__copy h1 {
    max-width: none;
  }

  .format-grid,
  .reels-layout {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .legal-bonus,
  .choices-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid-section {
    min-height: auto;
  }

  .pricing-grid,
  .guarantee-section {
    width: 100%;
  }

  .results-section {
    width: 100%;
  }

  .urgency-block {
    width: 100%;
  }

  .urgency-section__cta,
  .final-proof,
  .contact-strip {
    width: 100%;
  }

  .bonus-offer-section__cta .join-button {
    min-width: 0;
    width: 100%;
    max-width: 340px;
  }

  .bonus-card__top {
    grid-template-columns: 1fr;
  }

  .module-card {
    display: block;
  }

  .module-card__grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --shadow: 4px 4px 0 var(--ink);
    --shadow-sm: 2px 2px 0 var(--ink);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .page-shell {
    width: calc(100% - 24px);
    max-width: 100%;
    margin: 0 auto;
    padding: 8px 0;
    overflow: hidden;
  }

  .widget-modal {
    padding: 12px;
  }

  .widget-modal__dialog {
    width: 100%;
    max-height: 92vh;
    padding: 14px;
  }

  .widget-modal__body {
    min-height: 420px;
  }

  .hero {
    width: 100%;
    gap: 28px;
    padding-top: 28px;
    overflow: hidden;
  }

  .hero > * {
    min-width: 0;
  }

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

  .eyebrow {
    width: 100%;
    max-width: 100%;
    font-size: 0.78rem;
    line-height: 1.35;
    letter-spacing: 0.035em;
    white-space: normal;
    overflow-wrap: normal;
  }

  .hero__copy h1 {
    font-size: clamp(2.4rem, 15vw, 4.1rem);
  }

  .hero__points {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .program-section {
    margin-top: 24px;
  }

  .format-grid {
    margin-top: 18px;
    gap: 0;
  }

  .format-visual {
    display: none;
  }

  .module-card__gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
    width: 100%;
  }

  .module-card__gallery img {
    order: 1;
    width: 100%;
    padding: 2px;
  }

  .reels-gallery img {
    padding: 2px;
  }

  .module-mini-bonus {
    order: 2;
    width: 100%;
  }

  .reels-gallery {
    grid-template-columns: 1fr;
  }

  .hero-point__media {
    min-height: 0;
    margin-bottom: 0;
    order: 2;
    align-items: flex-start;
    line-height: 0;
  }

  .hero-point {
    padding: 8px 0 10px;
  }

  .hero-point__copy {
    order: 1;
    margin-bottom: 4px;
  }

  .hero-point__image {
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-position: top center;
  }

  .hero-point__image--auto,
  .hero-point__image--sales {
    transform: scale(1);
  }

  .portrait-composition {
    width: min(100%, 330px);
    min-height: 500px;
    margin: 0 auto;
  }

  .portrait-frame {
    inset: 0 12px 58px 12px;
  }

  .join-button {
    min-height: 62px;
    font-size: 1.05rem;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .join-button--hero {
    animation-name: hero-cta-pulse-mobile;
  }

  .section-band {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .format-visual,
  .journey-intro,
  .module-card,
  .bonus-card,
  .price-card,
  .guarantee-card,
  .legal-bonus,
  .proof-intro,
  .urgency-block,
  .choice-card,
  .final-proof__copy,
  .contact-card,
  .reels-media-stack,
  .reels-gallery img,
  .pricing-teaser__card {
    padding: 16px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .module-list {
    gap: 22px;
  }

  .module-card {
    width: 100%;
    padding: 14px;
    text-align: center;
  }

  .urgency-block__chart {
    width: calc(100% + 32px);
    max-width: none;
    margin-left: -16px;
    margin-right: -16px;
  }

  .urgency-block {
    box-shadow: none;
  }

  .module-card__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .module-card--day7 {
    grid-template-areas: none;
  }

  .module-card__header {
    grid-column: 1;
    grid-row: auto;
    grid-area: auto;
    margin-bottom: 14px;
  }

  .module-card__copy {
    grid-column: 1;
    grid-row: auto;
    grid-area: auto;
    width: 100%;
    gap: 10px;
    text-align: center;
  }

  .module-card__gallery,
  .module-card--audience .module-card__gallery,
  .module-card--day7 .module-card__gallery {
    grid-column: 1;
    grid-row: auto;
    grid-area: auto;
    align-self: auto;
    align-content: start;
    justify-content: stretch;
  }

  .module-card--day7 .module-card__gallery img {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
  }

  .module-card__copy p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .module-card__day {
    padding: 10px 12px;
    font-size: 1rem;
    justify-self: center;
  }

  .module-mini-bonus__label {
    justify-self: center;
  }

  .reels-layout .bonus-label,
  .legal-bonus__copy .bonus-label {
    justify-self: center;
  }

  .reels-layout h2 {
    justify-self: center;
    text-align: center;
  }

  .legal-bonus__copy h2 {
    justify-self: center;
    text-align: center;
  }

  .reels-copy__lead {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }

  .reels-gallery.reels-gallery--stack img {
    padding: 4px;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .urgency-section__cta {
    margin: 24px auto 36px;
    width: 100%;
    background: transparent;
  }

  .urgency-section__cta .neo-button {
    min-height: 78px;
    padding: 0 28px;
    font-size: 1.18rem;
    line-height: 1;
    white-space: nowrap;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
  }

  .module-card__header h2 {
    font-size: 1.75rem;
  }

  .pricing-teaser__card {
    width: 100%;
  }

  .price-card__price {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}
