:root {
  --canvas: 1366;
  --scale: min(1px, calc(100vw / var(--canvas)));
  --pink: #dc39d8;
  --pink-soft: #f08bf0;
  --white: #ffffff;
  --muted: #d7d7d7;
  --black: #000000;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 1366px);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.section {
  position: relative;
  display: grid;
  place-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: clamp(22px, 5vw, 110px);
}

.hero {
  min-height: clamp(650px, 56.2vw, 768px);
  isolation: isolate;
  background: #000;
  align-items: start;
}

.hero-art {
  position: absolute;
  top: clamp(46px, 5.6vw, 77px);
  left: 50%;
  z-index: 0;
  width: clamp(238px, 21.8vw, 298px);
  height: clamp(297px, 27.2vw, 372px);
  max-width: none;
  object-fit: contain;
  object-position: center center;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  margin-top: clamp(232px, 23.2vw, 317px);
  text-align: center;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1 {
  line-height: .82;
  text-transform: none;
}

h1 span {
  display: block;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 900;
  text-shadow: 0 7px 12px rgba(0, 0, 0, .7);
}

h1 strong {
  display: block;
  color: var(--pink-soft);
  font-size: clamp(31px, 4.45vw, 61px);
  font-weight: 900;
  text-shadow: 0 5px 10px rgba(0, 0, 0, .75);
}

.hero-copy p {
  margin-top: 14px;
  color: #eee;
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: .92;
  font-weight: 600;
}

.label {
  display: block;
  margin-top: 13px;
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 800;
}

.pill,
.cta,
.price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  
  background: linear-gradient(180deg, #ff9ef6 0%, #df36d9 42%, #7a087f 100%);
  box-shadow: inset 0 3px 5px rgba(255, 255, 255, .55), inset 0 -4px 8px rgba(0, 0, 0, .45), 0 1px 0 #ffb7ff;
}

.pill {
  min-width: clamp(230px, 19vw, 260px);
  min-height: 42px;
  margin-top: 9px;
  padding: 0 24px;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 900;
}

.hero-copy small {
  display: block;
  margin-top: 11px;
  font-size: clamp(8px, .7vw, 10px);
  font-weight: 900;
}

.stars {
  margin-top: 10px;
  color: #f6c129;
  font-size: 18px;
  letter-spacing: 2px;
  text-shadow: 0 0 6px rgba(255, 193, 7, .4);
}

.hero-copy b {
  display: block;
  margin-top: 14px;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 900;
}

.cta {
  position: relative;
  gap: 13px;
  min-width: 265px;
  min-height: 43px;
  margin-top: 11px;
  padding: 0 23px;
  border: 1px solid rgba(255, 184, 255, .8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
  will-change: transform, opacity;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-18deg);
  transition: left .65s ease;
  pointer-events: none;
}

.cta:hover {
  transform: translateY(-2px) scale(1.015);
  filter: saturate(1.12);
  box-shadow: inset 0 3px 5px rgba(255, 255, 255, .6), inset 0 -4px 8px rgba(0, 0, 0, .45), 0 0 18px rgba(222, 57, 216, .42);
}

.cta:hover::before {
  left: 125%;
}

.cta:active {
  transform: translateY(0) scale(.99);
}

.cta.button-reveal {
  opacity: 0;
  transform: translateX(-42px);
}

.cta.button-reveal.from-right {
  transform: translateX(42px);
}

.cta.button-reveal.is-visible {
  animation: buttonSlideIn .78s cubic-bezier(.18, .88, .26, 1) forwards;
}

.cta.button-reveal.from-right.is-visible {
  animation-name: buttonSlideInRight;
}

.cta span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: none;
  font-size: 15px;
}

.cta .whatsapp-icon svg {
  width: 19px;
  height: 19px;
  fill: #fff;
  display: block;
}

.cta {
  z-index: 0;
}

.cta:not(.button-reveal),
.cta.is-visible {
  opacity: 1;
}

.brand {
  display: block;
  width: clamp(142px, 14vw, 185px);
  margin: 37px auto 0;
  position: relative;
  z-index: 3;
  clear: both;
}

.hero-copy .cta + .cta {
  display: none;
}

.hero-copy .brand {
  margin-top: 44px;
}

.rule {
  width: min(1110px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 93, 229, .7), transparent);
}

.problem {
  min-height: 930px;
  justify-content: center;
  padding-top: 60px;
}

.two-lists {
  width: min(600px, 100%);
  margin-inline: auto;
  margin-top: 103px;
  text-align: center;
}

ul {
  padding-left: 0;
  list-style: none;
}

.cross-list,
.check-list {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
}

.cross-list li,
.check-list li {
  position: relative;
  margin: 0 0 15px;
  padding-left: 40px;
  color: #f4f4f4;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
}

.cross-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -6px;
  color: var(--pink);
  font-size: 34px;
  font-weight: 900;
}

.solution {
  margin-top: 35px;
  text-align: center;
}

.solution h2,
.block h2,
.audience h2,
.closing h2,
.closing h3 {
  color: var(--pink-soft);
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.solution h2 {
  margin-bottom: 19px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.check-list li {
  margin-bottom: 13px;
}

.check-list li::before,
.big-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -7px;
  color: var(--pink);
  font-size: 35px;
  font-weight: 900;
}

.about {
  min-height: 930px;
  justify-content: center;
  padding-top: 0;
  text-align: center;
}

.about .rule {
  margin-bottom: 145px;
}

.meta-mark {
  width: clamp(145px, 13.5vw, 184px);
  margin-bottom: 37px;
}

.about p {
  margin-bottom: 28px;
  color: #f5f5f5;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.35;
  font-weight: 800;
}

.photo-strip {
  width: min(760px, 82vw);
  margin-top: 24px;
}

.classes {
  min-height: 820px;
  align-items: start;
  justify-items: center;
  padding-top: 150px;
}

.block {
  width: min(430px, 100%);
  margin-inline: auto;
  text-align: center;
}

.classes .block ul {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
}

.block h2 {
  margin-bottom: 36px;
  text-align: center;
}

.classes li {
  margin-bottom: 11px;
  padding-left: 26px;
  color: #fff;
  list-style: disc;
  list-style-position: inside;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.1;
}

.audience {
  min-height: 890px;
  align-content: start;
  justify-items: center;
  padding-top: 54px;
}

.audience h2 {
  margin-bottom: 22px;
}

.audience h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 900;
  text-align: center;
}

.green-dot,
.red-x {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  vertical-align: middle;
}

.green-dot {
  background: #11ba34;
  color: #fff;
}

.red-x {
  color: #e01313;
  font-size: 48px;
  line-height: 36px;
}

.plain {
  width: fit-content;
  max-width: min(830px, 100%);
  margin-inline: auto;
  text-align: left;
}

.plain li {
  margin-bottom: 8px;
  color: #d9d9d9;
  font-size: clamp(11px, .95vw, 14px);
  font-weight: 600;
  line-height: 1.2;
}

.yes li::before {
  content: "✓ ";
}

.no-title {
  margin-top: 31px;
}

.no li::before {
  content: "× ";
}

.includes {
  min-height: 740px;
  align-items: start;
  justify-items: center;
  padding-top: 160px;
}

.big-checks li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 50px;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 900;
  line-height: 1.05;
}

.big-checks li::before {
  top: -9px;
  font-size: 48px;
}

.closing {
  min-height: 895px;
  justify-content: center;
  padding-top: 90px;
  text-align: center;
}

.closing h2 {
  margin-bottom: 24px;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6px, .9vw, 14px);
  margin-bottom: 44px;
}

.countdown div {
  min-width: 72px;
}

.countdown strong,
.countdown i {
  color: #f7f7f7;
  font-size: clamp(39px, 4.1vw, 57px);
  font-style: normal;
  font-weight: 500;
  line-height: .9;
}

.countdown div:last-child strong,
.countdown div:last-child + i {
  color: var(--pink);
}

.countdown span {
  display: block;
  margin-top: 9px;
  font-size: 8px;
  font-weight: 900;
}

.closing h3 {
  color: var(--pink-soft);
  font-size: clamp(25px, 2.7vw, 38px);
}

.closing p {
  margin-top: 9px;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 900;
}

.price {
  min-width: clamp(245px, 28vw, 332px);
  min-height: clamp(68px, 7vw, 94px);
  margin-top: 27px;
  font-size: clamp(43px, 5vw, 69px);
  font-weight: 900;
}

.cta-bottom {
  min-width: 280px;
  margin-top: 34px;
}

.bottom {
  width: clamp(132px, 13vw, 178px);
  margin-top: 75px;
}

@keyframes buttonSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-42px) scale(.97);
  }

  70% {
    opacity: 1;
    transform: translateX(4px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes buttonSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(42px) scale(.97);
  }

  70% {
    opacity: 1;
    transform: translateX(-4px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta,
  .cta::before {
    transition: none;
  }

  .cta.button-reveal,
  .cta.button-reveal.from-right,
  .cta.button-reveal.is-visible,
  .cta.button-reveal.from-right.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 760px;
    align-items: start;
  }

  .hero-art {
    top: 58px;
    width: 286px;
    height: 358px;
  }

  .hero-copy {
    margin-top: 318px;
  }

  h1 span {
    font-size: clamp(46px, 14vw, 72px);
  }

  h1 strong {
    font-size: clamp(28px, 8.8vw, 44px);
  }

  .hero-copy p br,
  .about p br {
    display: none;
  }

  .problem,
  .about,
  .classes,
  .audience,
  .includes,
  .closing {
    min-height: auto;
    padding-block: 78px;
  }

  .about .rule {
    margin-bottom: 82px;
  }

  .two-lists {
    margin-top: 70px;
  }

  .photo-strip {
    width: min(100%, 520px);
  }

  .classes {
    justify-items: center;
  }

  .block h2 {
    text-align: center;
  }

  .audience {
    padding-inline: 24px;
  }

  .green-dot {
    width: 28px;
    height: 28px;
  }

  .red-x {
    width: 28px;
    height: 28px;
    font-size: 39px;
  }

  .countdown div {
    min-width: 48px;
  }
}

@media (max-width: 430px) {
  .section {
    padding-inline: 18px;
  }

  .hero {
    min-height: 730px;
  }

  .hero-art {
    top: 52px;
    width: 250px;
    height: 312px;
  }

  .hero-copy {
    margin-top: 285px;
  }

  .pill,
  .cta,
  .cta-bottom {
    width: min(100%, 280px);
    min-width: 0;
  }

  .cross-list li,
  .check-list li {
    padding-left: 32px;
    font-size: 14px;
  }

  .big-checks li {
    padding-left: 42px;
  }
}
