:root {
  --purple: #6d28d9;
  --purple-dark: #3b0764;
  --pink: #f72585;
  --pink-soft: #ffe0f0;
  --yellow: #facc15;
  --cyan: #22d3ee;
  --ink: #17111f;
  --cream: #fff9e8;
  --white: #ffffff;
  --green: #16a34a;
  --shadow: 0 12px 0 rgba(23, 17, 31, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(100% - 32px, 1040px); margin: 0 auto; }
.narrow { max-width: 760px; }

.topbar {
  position: relative;
  z-index: 5;
  padding: 10px 12px;
  background: #ef123b;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-align: center;
}

section { padding: 64px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Baloo 2", "Inter", sans-serif;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3rem, 11vw, 5.7rem); line-height: 0.9; margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 8vw, 4.25rem); line-height: 0.98; margin-bottom: 32px; }
h3 { font-size: 1.55rem; line-height: 1.05; }

.kicker, .eyebrow {
  margin-bottom: 14px;
  color: var(--purple);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.kicker.light { color: var(--yellow); }
.section-lead { max-width: 680px; margin: -14px auto 32px; font-size: 1.05rem; }
.light-text { color: #f2eafd; }

.section-purple { background: var(--purple); color: #fff; }
.section-yellow { background: var(--yellow); }
.section-dark { background: var(--ink); color: #fff; }
.section-pink { background: var(--pink-soft); }
.section-cream { background: var(--cream); }

.hero { padding-top: 34px; padding-bottom: 30px; text-align: center; }
.hero-grid { display: grid; gap: 12px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 999px;
}
.hero h1 span { color: var(--yellow); }
.hero-lead { max-width: 620px; font-size: 1.15rem; line-height: 1.55; }
.microcopy { margin: 15px 0 0; font-size: 0.76rem; font-weight: 700; opacity: 0.9; }
.hero-art {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.hero-art img {
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 24px 20px rgba(0,0,0,.22));
}
.hero-placeholder {
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: none;
  place-content: center;
  padding: 32px;
  border: 4px solid #fff;
  border-radius: 32px;
  background: var(--pink);
  color: #fff;
  text-align: center;
  transform: rotate(2deg);
  box-shadow: var(--shadow);
}
.hero-placeholder strong { font: 900 4.6rem/0.8 "Baloo 2", sans-serif; color: var(--yellow); }
.hero-placeholder span { font-weight: 900; font-size: 1.55rem; }
.hero-placeholder small { display: block; margin-top: 12px; }

.cta {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 0 7px 0 var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.cta:hover { transform: translateY(3px); box-shadow: 0 4px 0 var(--ink); }
.cta:focus-visible { outline: 4px solid var(--cyan); outline-offset: 3px; }
.cta-yellow { background: var(--yellow); color: var(--ink); }
.cta-dark { max-width: 460px; background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 7px 0 var(--purple); }
.cta-outline { background: #fff; color: var(--purple); border-color: var(--purple); box-shadow: 0 7px 0 var(--purple); }

.quick-benefits { padding: 38px 0; background: #fff; }
.quick-grid { display: grid; gap: 12px; }
.quick-grid article {
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--pink);
}
.quick-grid b { display: block; color: var(--purple); font-size: 2rem; font-weight: 900; }
.quick-grid h3 { margin: 4px 0 6px; }
.quick-grid p { margin: 0; }

.pain-section { text-align: center; }
.pain-list { display: grid; gap: 12px; margin: 34px 0; text-align: left; }
.pain-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--pink);
  font-weight: 800;
}
.pain-list b { font-size: 1.6rem; }
.big-center { margin: 40px 0 0; font: 800 1.7rem/1.2 "Baloo 2", sans-serif; }
.big-center em { color: var(--purple); font-style: normal; }

.how { text-align: center; }
.steps { display: grid; gap: 18px; margin: 34px 0 38px; text-align: left; }
.steps article {
  position: relative;
  padding: 24px 20px 20px 82px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.steps article > span {
  position: absolute; left: 16px; top: 18px;
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; background: var(--pink); color: #fff;
  font-weight: 900; font-size: 1.4rem;
}
.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; }

.contents-preview { overflow: hidden; text-align: center; background: #fff; }
.carousel-shell { position: relative; margin: 0 -16px; }
.preview-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 16px 22px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.preview-carousel::-webkit-scrollbar { display: none; }
.preview-slide {
  scroll-snap-align: center;
  margin: 0;
  padding: 10px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--pink-soft);
  box-shadow: 6px 6px 0 var(--ink);
}
.replaceable-media { position: relative; overflow: hidden; background: #f4d9ff; }
.vertical-media { aspect-ratio: 9 / 16; border-radius: 10px; }
.replaceable-image { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-content: center;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(150deg, #6d28d9, #f72585);
  color: #fff;
  text-align: center;
}
.image-placeholder b { color: var(--yellow); font-size: 1.2rem; }
.image-placeholder span { font-size: .76rem; overflow-wrap: anywhere; }
.carousel-button {
  position: absolute;
  z-index: 2;
  top: 45%;
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
}
.carousel-button.previous { left: -18px; }
.carousel-button.next { right: -18px; }
.swipe-hint { margin: 2px 0 24px; color: var(--purple); font-size: .78rem; font-weight: 900; letter-spacing: .05em; }

.showcase { text-align: center; }
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tag-cloud span {
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--yellow);
}
.stat-strip {
  margin-top: 38px;
  padding: 25px 20px;
  border-radius: 16px;
  background: var(--purple);
  color: #fff;
  transform: rotate(-1deg);
}
.stat-strip strong { display: block; font: 900 3.8rem/0.9 "Baloo 2", sans-serif; color: var(--yellow); }
.stat-strip span { font-weight: 800; }

.benefits { text-align: center; }
.benefits h2 { color: #fff; }
.benefit-grid { display: grid; gap: 14px; text-align: left; }
.benefit-grid article { padding: 22px; border: 2px solid #695f72; border-radius: 14px; background: #271f2f; }
.benefit-grid b { font-size: 2rem; }
.benefit-grid h3 { margin: 10px 0 6px; color: var(--yellow); }
.benefit-grid p { margin: 0; color: #ece8ef; }
.five-benefits article:last-child { border-color: var(--yellow); }

.social-proof { text-align: center; }
.testimonial-grid { display: grid; gap: 16px; }
.testimonial-media {
  min-height: 280px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--purple);
}

.before-after { text-align: center; }
.comparison { display: grid; gap: 20px; text-align: left; }
.comparison article { padding: 16px; border: 2px solid var(--ink); border-radius: 16px; }
.comparison small { display: inline-block; margin-bottom: 12px; font-weight: 900; }
.story-card {
  aspect-ratio: 9/12;
  display: grid;
  place-content: center;
  padding: 26px;
  text-align: center;
  border-radius: 12px;
}
.story-card span { font-weight: 900; }
.story-card.plain { background: #e7e7e7; color: #777; }
.story-card.styled {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #6d28d9 0%, #f72585 65%, #facc15 100%);
  color: #fff;
  font-size: 1.2rem;
}
.story-card.styled::after { content: "✦"; position: absolute; right: 12px; top: 8px; color: var(--yellow); font-size: 3rem; }
.story-card.styled b { display: inline-block; margin-top: 20px; padding: 8px 12px; background: var(--yellow); color: var(--ink); border-radius: 999px; }
.comparison article > p { margin: 14px 0 0; font-weight: 700; text-align: center; }

.pricing { text-align: center; }
.price-grid { display: grid; gap: 32px; text-align: left; }
.price-card {
  position: relative;
  padding: 30px 22px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}
.price-card.premium { background: var(--purple); color: #fff; }
.popular {
  position: absolute; left: 50%; top: -18px; transform: translateX(-50%);
  width: max-content; max-width: calc(100% - 24px); padding: 7px 14px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--yellow); color: var(--ink); font-size: 0.76rem; font-weight: 900;
  text-align: center;
}
.plan-name { margin-bottom: 0; font-weight: 900; letter-spacing: .06em; text-align: center; }
.price-card h3 { margin: 10px 0 0; font-size: 5rem; line-height: .9; text-align: center; }
.price-card h3 sup { font-family: "Inter", sans-serif; font-size: 1rem; vertical-align: top; }
.payline { text-align: center; font-size: .85rem; }
.includes { margin: 24px 0 8px; color: var(--yellow); font-weight: 900; }
.price-card ul { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; font-weight: 700; }
.price-card li { padding-bottom: 10px; border-bottom: 1px solid rgba(127,127,127,.27); }
.small-note { margin: 15px 0 0; font-size: .78rem; text-align: center; }
.offer-alert { max-width: 520px; margin: 0 auto 34px; padding: 12px 18px; border: 2px solid var(--ink); border-radius: 999px; background: #ef123b; color: #fff; font-weight: 900; }
.old-price { margin: 20px 0 0; text-align: center; text-decoration: none; opacity: .8; }
.saving { width: fit-content; margin: 14px auto 0; padding: 7px 12px; border-radius: 999px; background: #dcfce7; color: #15803d; font-size: .78rem; font-weight: 900; }

.bonus { text-align: center; }
.bonus-list { display: grid; gap: 14px; text-align: left; }
.bonus-list article { overflow: hidden; padding: 0; border: 2px solid #fff; border-radius: 14px; background: #fff; color: var(--ink); }
.bonus-media { aspect-ratio: 16 / 9; border-bottom: 2px solid var(--ink); }
.bonus-copy { padding: 20px; }
.bonus-copy > span { color: var(--purple); font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.bonus-list h3 { margin: 8px 0; font-size: 1.7rem; }
.bonus-list p { margin: 0 0 16px; }
.included { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #dcfce7; color: #15803d; font-size: .7rem; letter-spacing: .04em; }

.delivery { text-align: center; }
.delivery-flow { display: grid; gap: 16px; margin: 34px 0; text-align: left; }
.delivery-flow article {
  position: relative;
  padding: 24px 20px 20px 76px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--pink);
}
.delivery-number {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 900;
}
.delivery-icon { font-size: 2rem; }
.delivery-flow h3 { margin: 6px 0; }
.delivery-flow p { margin: 0; }
.delivery-proof {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin: 38px 0 30px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--purple);
  text-align: left;
}
.delivery-media { min-height: 300px; border-bottom: 3px solid var(--ink); }
.delivery-proof-copy { padding: 24px; }
.delivery-proof-copy h3 { margin-bottom: 18px; font-size: 2rem; }
.delivery-proof-copy ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; font-weight: 700; }

.guarantee { background: #fff; }
.guarantee-box {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 28px;
  border: 3px dashed var(--purple);
  border-radius: 20px;
  text-align: center;
  background: var(--cream);
}
.guarantee-media {
  width: min(220px, 72vw);
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.guarantee-media .replaceable-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.guarantee h2 { margin-bottom: 16px; }
.guarantee p:last-child { margin-bottom: 0; }

.final-cta { text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p:not(.kicker) { margin-bottom: 28px; font-size: 1.1rem; }
.final-cta .cta { max-width: 480px; }

.upgrade-page { background: var(--cream); }
.upgrade-hero { padding: 42px 0 52px; text-align: center; }
.upgrade-hero .eyebrow { color: #fff; border: 2px solid #fff; border-radius: 999px; padding: 7px 12px; }
.upgrade-hero h1 { margin-top: 22px; font-size: clamp(2.75rem, 11vw, 5rem); }
.upgrade-hero h1 span { color: var(--yellow); }
.upgrade-lead { max-width: 680px; margin: 0 auto 28px; font-size: 1.08rem; }
.upgrade-price { width: min(100%, 340px); margin: 0 auto 20px; padding: 22px; border: 3px solid var(--ink); border-radius: 18px; background: #fff; color: var(--ink); box-shadow: 8px 8px 0 var(--yellow); }
.upgrade-price span { display: block; color: #777; font-weight: 800; text-decoration: line-through; }
.upgrade-price strong { display: block; font: 900 5rem/.9 "Baloo 2", sans-serif; color: var(--purple); }
.upgrade-price sup { font: 800 1rem "Inter", sans-serif; vertical-align: top; }
.upgrade-price small { font-weight: 900; letter-spacing: .06em; }
.upgrade-callout { max-width: 580px; margin: 0 auto; padding: 13px 18px; border-radius: 12px; background: var(--yellow); color: var(--ink); font-weight: 900; }

.upgrade-comparison { text-align: center; }
.upgrade-grid { display: grid; gap: 28px; margin: 34px 0 54px; text-align: left; }
.upgrade-grid article { position: relative; padding: 28px 22px; border: 3px solid var(--ink); border-radius: 18px; background: #fff; box-shadow: 7px 7px 0 var(--ink); }
.upgrade-grid .upgrade-premium { background: var(--purple); color: #fff; box-shadow: 7px 7px 0 var(--pink); }
.upgrade-grid h3 { margin: 8px 0 20px; font-size: 3.5rem; text-align: center; }
.upgrade-grid ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-weight: 700; }
.upgrade-grid li { padding-bottom: 10px; border-bottom: 1px solid rgba(127,127,127,.28); }
.upgrade-grid .no { color: #9b1c1c; }
.upgrade-action { padding: 28px 20px; border: 3px solid var(--ink); border-radius: 20px; background: var(--purple); color: #fff; box-shadow: 8px 8px 0 var(--pink); }
.upgrade-action h2 { margin-bottom: 16px; color: #fff; }
.urgency-note { width: fit-content; margin: 0 auto 20px; padding: 8px 12px; border-radius: 999px; background: #ef123b; font-size: .76rem; font-weight: 900; }
.upgrade-action .cta { max-width: 520px; margin-top: 12px; }
.secure-note { margin: 16px 0 0; font-size: .78rem; }
.decline-box { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.35); }
.decline-box p { margin-bottom: 8px; font-size: .86rem; }
.decline-box a { color: #fff; font-size: .8rem; opacity: .78; }

.faq { text-align: center; padding-bottom: 110px; }
.faq-list { display: grid; gap: 12px; margin-bottom: 32px; text-align: left; }
.faq details { border: 2px solid var(--ink); border-radius: 12px; background: #fff; box-shadow: 4px 4px 0 var(--pink); }
.faq summary { padding: 17px; cursor: pointer; font-weight: 900; }
.faq details p { margin: 0; padding: 0 17px 18px; }

footer { padding: 38px 20px 96px; background: var(--ink); color: #fff; text-align: center; }
footer strong { font-family: "Baloo 2", sans-serif; font-size: 1.7rem; color: var(--yellow); }
footer p { margin: 4px 0; }
footer .legal { margin-top: 18px; font-size: .75rem; opacity: .65; }

.mobile-sticky {
  position: fixed; z-index: 20; left: 12px; right: 12px; bottom: 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 62px; padding: 10px 18px;
  border: 3px solid var(--ink); border-radius: 14px; background: var(--green); color: #fff;
  box-shadow: 0 6px 0 var(--ink); text-decoration: none;
}
.mobile-sticky span { font-weight: 900; }
.mobile-sticky small { font-weight: 700; text-align: right; }

@media (min-width: 720px) {
  section { padding: 86px 0; }
  .hero { text-align: left; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 34px; }
  .hero-copy { align-items: flex-start; }
  .hero-art img { width: min(100%, 460px); }
  .hero .cta { width: auto; min-width: 390px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps article { padding: 82px 22px 22px; text-align: center; }
  .steps article > span { left: 50%; transform: translateX(-50%); }
  .quick-grid { grid-template-columns: repeat(4, 1fr); }
  .upgrade-grid { grid-template-columns: .85fr 1.15fr; align-items: center; }
  .upgrade-premium { padding-top: 42px !important; padding-bottom: 42px !important; }
  .benefit-grid, .bonus-list, .comparison, .price-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .five-benefits article:last-child { grid-column: 1 / -1; text-align: center; }
  .preview-carousel { grid-auto-columns: calc((100% - 32px) / 3); margin: 0; padding-left: 4px; padding-right: 4px; }
  .carousel-button { display: grid; }
  .swipe-hint { display: none; }
  .delivery-flow { grid-template-columns: repeat(3, 1fr); }
  .delivery-flow article { padding: 76px 20px 22px; text-align: center; }
  .delivery-number { left: 18px; top: 18px; }
  .delivery-proof { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .delivery-media { min-height: 420px; border-right: 3px solid var(--ink); border-bottom: 0; }
  .delivery-proof-copy { align-self: center; padding: 38px; }
  .price-grid { align-items: center; }
  .price-card.premium { padding-top: 42px; padding-bottom: 42px; }
  .guarantee-box { grid-template-columns: 150px 1fr; align-items: center; text-align: left; }
  .mobile-sticky { display: none; }
  footer { padding-bottom: 38px; }
  .faq { padding-bottom: 86px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta { transition: none; }
}
