@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: "Stinger Fit";
  src: url("assets/fonts/stinger-fit-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --color-ink: #050302;
  --color-charcoal: #232323;
  --color-pink: #ff036f;
  --color-mauve: #a54d72;
  --color-paper: #ebd5b1;
  --color-white: #ffffff;
  --color-gray: #dfdfdf;
  --color-muted: #6c4f46;
  --font-display: "Stinger Fit", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --container-max: 1060px;
  --page-gutter-mobile: 24px;
  --page-gutter-desktop: 40px;
  --section-py-mobile: 72px;
  --section-py-desktop: 112px;
  --grid-gap-mobile: 24px;
  --grid-gap-desktop: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure,
p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

h1 {
  max-width: 850px;
  font-size: clamp(56px, 4.58vw, 88px);
  text-transform: uppercase;
}

h2 {
  max-width: 820px;
  font-size: clamp(36px, 2.9vw, 56px);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(21px, 1.5vw, 28px);
  line-height: 1.15;
}

.display-number {
  font-family: var(--font-body);
  font-weight: 800;
}

.brandmark-inline {
  white-space: nowrap;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-pink);
  outline-offset: 5px;
}

.section {
  position: relative;
  padding-block: var(--section-py-desktop);
  isolation: isolate;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--color-pink);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.purchase-button {
  min-width: min(520px, 100%);
  min-height: 85px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  background: var(--color-pink);
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    filter 160ms ease-out,
    transform 160ms ease-out;
}

.purchase-button:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
}

.hero {
  overflow: hidden;
  min-height: 820px;
  padding-top: 48px;
  background-color: var(--color-white);
  background-image:
    radial-gradient(circle at 25% 15%, rgba(235, 213, 177, 0.28), transparent 27%),
    repeating-linear-gradient(18deg, rgba(5, 3, 2, 0.018) 0 1px, transparent 1px 5px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  grid-template-areas:
    "brand brand"
    "copy product";
  gap: 44px 36px;
  align-items: center;
}

.brand-lockup {
  grid-area: brand;
  width: 230px;
  margin-inline: auto;
}

.hero__copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: clamp(18px, 1.3vw, 22px);
}

.hero__product {
  grid-area: product;
  position: relative;
  margin: 0;
  transform: translateX(6%) rotate(-1.5deg);
}

.hero__product::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: min(430px, 78%);
  aspect-ratio: 911 / 191;
  z-index: 1;
  background: url("assets/figma/hero-pink-brush.png") center / contain no-repeat;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero__product img {
  position: relative;
  z-index: 0;
  filter: drop-shadow(0 28px 40px rgba(5, 3, 2, 0.18));
}

.hero__product figcaption {
  position: absolute;
  right: 3%;
  bottom: 1%;
  max-width: 220px;
  padding: 12px 16px;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-weight: 600;
  z-index: 2;
  transform: rotate(2deg);
}

.audience {
  overflow: hidden;
  padding-top: 88px;
  background:
    linear-gradient(180deg, rgba(235, 213, 177, 0.46), transparent 28%),
    var(--color-white);
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.audience__panel {
  position: relative;
  z-index: 2;
  padding: 72px 60px;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.audience__panel h2 {
  position: relative;
  max-width: 520px;
  font-size: clamp(34px, 2.35vw, 45px);
}

.audience__panel h2::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -28px;
  width: min(460px, 92vw);
  aspect-ratio: 911 / 191;
  z-index: -1;
  background: url("assets/figma/hero-pink-brush.png") center / contain no-repeat;
  transform: rotate(-1.5deg);
}

.check-list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.audience__panel .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 58px;
  row-gap: 18px;
}

.check-list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 34px;
}

.audience__panel .check-list li {
  margin-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--color-pink);
  font-size: 24px;
  font-weight: 700;
}

.soul {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 3, 111, 0.26), transparent 30%),
    var(--color-charcoal);
  color: var(--color-white);
}

.soul::before,
.creator::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image: repeating-linear-gradient(27deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 6px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split__copy p {
  max-width: 620px;
}

.split__visual {
  margin: 0;
}

.collage-visual {
  align-self: end;
  position: relative;
  margin-bottom: calc(var(--section-py-desktop) * -1);
}

.collage-visual img {
  position: relative;
  z-index: 1;
  max-height: 790px;
  margin-inline: auto;
  object-fit: contain;
}

.collage-note {
  position: relative;
  width: min(360px, 86%);
  margin: 22px auto 0;
  padding: 24px 26px 26px;
  z-index: 2;
  background: var(--color-charcoal);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 18px 18px 0 rgba(255, 3, 111, 0.72);
  transform: translateX(-8%) rotate(-2deg);
}

.collage-note::before {
  content: "";
  position: absolute;
  left: -28px;
  top: -22px;
  width: min(300px, 78%);
  aspect-ratio: 911 / 191;
  z-index: -1;
  background: url("assets/figma/hero-pink-brush.png") center / contain no-repeat;
  transform: rotate(1deg);
}

.collage-note strong,
.collage-note span {
  display: block;
}

.collage-note strong {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.25vw, 42px);
  line-height: 0.98;
  text-transform: uppercase;
}

.collage-note span {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.45;
}

.freedom {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 32%, rgba(255, 3, 111, 0.15), transparent 21%),
    repeating-linear-gradient(8deg, rgba(108, 79, 70, 0.035) 0 1px, transparent 1px 5px),
    var(--color-paper);
}

.freedom::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 10%;
  width: 280px;
  aspect-ratio: 1;
  z-index: -1;
  border: 38px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
}

.freedom__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: center;
}

.freedom__copy p,
.freedom__intro p {
  max-width: 560px;
}

.freedom__intro {
  display: grid;
  gap: 18px;
}

.freedom__intro p {
  margin-bottom: 0;
}

.freedom__intro p:first-child {
  padding-left: 22px;
  border-left: 6px solid var(--color-pink);
  font-weight: 600;
}

.freedom__visuals {
  display: grid;
  gap: 12px;
}

.freedom__visuals figure {
  margin: 0;
}

.freedom__visuals figure:first-child {
  transform: translateX(-4%) rotate(-3deg);
}

.freedom__visuals figure:last-child {
  margin-top: -26%;
  transform: translateX(12%) rotate(3deg);
}

.freedom__results {
  grid-column: 1 / -1;
  position: relative;
  padding: 54px 56px 58px;
  background: rgba(255, 255, 255, 0.82);
}

.freedom__results::before {
  content: "";
  position: absolute;
  right: 38px;
  top: -28px;
  width: min(420px, 46%);
  aspect-ratio: 911 / 191;
  z-index: 0;
  background: url("assets/figma/hero-pink-brush.png") center / contain no-repeat;
  transform: rotate(-2deg);
}

.freedom__results h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(32px, 2.6vw, 52px);
  line-height: 0.98;
  text-transform: uppercase;
}

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

.freedom__outcome {
  position: relative;
  min-height: 132px;
  padding: 22px 22px 22px 52px;
  background: var(--color-white);
  border: 1px solid rgba(35, 35, 35, 0.08);
  box-shadow: 8px 8px 0 rgba(255, 3, 111, 0.12);
}

.freedom__outcome::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 19px;
  color: var(--color-pink);
  font-size: 26px;
  font-weight: 800;
}

.freedom__outcome:last-child {
  grid-column: 1 / -1;
  min-height: auto;
}

.freedom__closing {
  grid-column: 1 / -1;
  margin-bottom: 0;
  padding: 36px 42px;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}

.authority {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.06), transparent 24%),
    repeating-linear-gradient(18deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px),
    var(--color-charcoal);
  color: var(--color-white);
}

.authority::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 72px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 3, 111, 0) 0 20%, rgba(255, 3, 111, 0.28) 20% 40%, rgba(255, 3, 111, 0.58) 40% 62%, rgba(255, 3, 111, 0.9) 62% 82%, var(--color-pink) 82% 100%);
}

.authority__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-areas:
    "copy phone"
    "logos logos";
  gap: 36px;
  align-items: center;
}

.authority__grid > div {
  grid-area: copy;
  position: relative;
  z-index: 2;
  max-width: 430px;
  justify-self: end;
}

.authority__grid > div h2 {
  max-width: 390px;
  margin-bottom: 34px;
  font-size: clamp(30px, 2.3vw, 45px);
  line-height: 1.04;
}

.authority__grid > div h2::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -20px;
  width: min(330px, 86%);
  aspect-ratio: 911 / 191;
  z-index: -1;
  background: url("assets/figma/hero-pink-brush.png") center / contain no-repeat;
  transform: rotate(-1deg);
}

.metrics-list {
  padding: 0;
  list-style: none;
}

.metrics-list li {
  margin-bottom: 22px;
  padding: 0 0 0 36px;
  border-left: 0;
  background: transparent;
  font-size: clamp(15px, 1.04vw, 18px);
  line-height: 1.35;
}

.metrics-list li::before {
  content: "◎";
  position: absolute;
  margin-left: -36px;
  color: var(--color-pink);
  font-size: 24px;
  line-height: 0.95;
}

.metrics-list strong {
  font-weight: 800;
}

.authority__phone {
  grid-area: phone;
  position: relative;
  align-self: center;
  width: min(230px, 72%);
  margin: 0 auto;
  padding: 12px;
  background: linear-gradient(145deg, #ffffff, #ececec);
  border-radius: 30px;
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.85);
  transform: translateX(-4%) rotate(13deg);
}

.authority__phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 76px;
  height: 14px;
  z-index: 2;
  background: #080808;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.authority__phone img {
  width: 100%;
  aspect-ratio: 9 / 16.8;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.authority__logos {
  grid-area: logos;
  margin: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.authority__logos figcaption {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 32px;
}

.authority__logos img {
  width: 100%;
}

.paper-rip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -118px;
  z-index: 0;
  width: 110vw;
  height: 148px;
  background-image: url("assets/figma/paper-rip-edge.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  pointer-events: none;
  transform: translateX(-50%) scaleY(-1);
}

.qualification {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 35% 20%, rgba(255, 3, 111, 0.08), transparent 35%),
    var(--color-white);
}

.qualification__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(54px, 8vw, 128px);
  align-items: center;
}

.qualification__visual {
  margin: -38px 0 -52px -8%;
}

.qualification__visual img {
  width: min(520px, 100%);
  filter: drop-shadow(0 34px 22px rgba(0, 0, 0, 0.16));
}

.qualification__copy {
  max-width: 630px;
}

.qualification__copy h2 {
  margin-bottom: 34px;
  text-align: left;
}

.check-list--ink li::before {
  color: var(--color-pink);
}

.qualification__closing {
  margin: 28px 0 0;
  padding: 22px 24px;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-size: clamp(17px, 1.15vw, 20px);
  font-weight: 600;
  line-height: 1.45;
}

.inside {
  background:
    linear-gradient(180deg, rgba(223, 223, 223, 0.35), transparent 32%),
    radial-gradient(circle at 75% 52%, rgba(0, 0, 0, 0.06), transparent 28%),
    var(--color-white);
  overflow: hidden;
}

.inside__layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(46px, 7vw, 112px);
  align-items: center;
}

.inside__copy h2 {
  max-width: 680px;
  margin: 0 0 54px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.08;
  text-align: left;
}

.inside__copy h2 > span:first-child {
  display: block;
  color: var(--color-pink);
}

.inside__cards {
  display: grid;
  gap: 28px;
  max-width: 640px;
}

.inside__card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  min-height: 136px;
  margin-left: 28px;
  padding: 30px 34px 30px 108px;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.inside__card strong {
  position: absolute;
  left: -28px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 150px;
  min-height: 70px;
  padding: 12px 18px;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-1.5deg);
}

.inside__card p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.inside__visual {
  position: relative;
  margin: -52px -10% -66px 0;
}

.inside__visual img {
  width: min(520px, 100%);
  filter: drop-shadow(0 36px 26px rgba(0, 0, 0, 0.18));
}

.lessons {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(var(--section-py-desktop) + 90px);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.86), transparent 30%),
    var(--color-white);
}

.lessons::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -62px;
  width: 110vw;
  height: 142px;
  background-image: url("assets/figma/paper-rip-edge.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  pointer-events: none;
  transform: translateX(-50%);
}

.section-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.lessons .section-heading h2 {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  font-size: clamp(42px, 4.1vw, 74px);
  line-height: 1.15;
}

.lessons__title-mark {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  white-space: nowrap;
}

.lessons__title-mark::before {
  content: "";
  position: absolute;
  left: -0.7em;
  right: -0.9em;
  top: 50%;
  z-index: -1;
  height: 1.68em;
  background-image: url("assets/figma/hero-pink-brush.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: translateY(-50%) rotate(-1deg);
}

.lesson-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 150px calc(50% - 50vw) 0;
  padding: 52px calc(50vw - 50%) 0;
  border-top: 2px dashed var(--color-pink);
  border-image: linear-gradient(90deg, var(--color-ink), var(--color-pink)) 1;
  counter-reset: lesson;
  list-style: none;
}

.lesson-nav li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 26px 40px;
  background: var(--lesson-color);
  color: var(--color-white);
  font-size: clamp(20px, 1.45vw, 30px);
  font-weight: 800;
  line-height: 1.22;
  text-align: left;
}

.lesson-nav li::before {
  counter-increment: lesson;
  content: counter(lesson);
  position: absolute;
  left: 0;
  top: -88px;
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border: 6px solid currentColor;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--lesson-color);
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 64px 0 0;
}

.lesson-grid article {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(42px, 5.5vw, 76px);
  background: var(--lesson-card-bg);
  color: var(--color-white);
}

.lesson-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 32% 42%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 86px);
  mix-blend-mode: screen;
  opacity: 0.38;
}

.lesson-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 3, 2, 0.04), rgba(5, 3, 2, 0.5));
}

.lesson-grid article > * {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.lesson-grid article:nth-child(1) {
  --lesson-card-bg:
    radial-gradient(ellipse at 18% 48%, rgba(38, 180, 194, 0.42), transparent 24%),
    linear-gradient(90deg, #07191d 0%, #242424 52%, #222222 100%);
}

.lesson-grid article:nth-child(1)::after {
  background:
    linear-gradient(90deg, rgba(3, 18, 23, 0.16), rgba(35, 35, 35, 0.96) 48%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.26));
}

.lesson-grid article:nth-child(2) {
  --lesson-card-bg:
    radial-gradient(circle at 25% 35%, rgba(0, 195, 214, 0.58), transparent 18%),
    linear-gradient(90deg, rgba(255, 3, 111, 0.78), rgba(55, 42, 52, 0.98) 47%, #4a333d 100%);
}

.lesson-grid article:nth-child(2)::after {
  background: linear-gradient(90deg, rgba(255, 3, 111, 0.16), rgba(60, 42, 53, 0.84) 42%, rgba(60, 42, 53, 0.96));
}

.lesson-grid article:nth-child(3) {
  --lesson-card-bg:
    radial-gradient(ellipse at 18% 54%, rgba(67, 0, 255, 0.7), transparent 18%),
    radial-gradient(circle at 20% 28%, rgba(255, 169, 74, 0.46), transparent 24%),
    linear-gradient(115deg, #b82295, #e24988 52%, #a54b72);
}

.lesson-grid article:nth-child(4) {
  --lesson-card-bg:
    radial-gradient(ellipse at 9% 42%, rgba(255, 219, 99, 0.68), transparent 23%),
    linear-gradient(115deg, #f39268 0%, #ec2a88 45%, #ff036f 100%);
}

.lesson-grid article:nth-child(5) {
  --lesson-card-bg:
    radial-gradient(ellipse at 16% 44%, rgba(0, 105, 115, 0.58), transparent 23%),
    radial-gradient(circle at 20% 35%, rgba(255, 176, 77, 0.56), transparent 13%),
    linear-gradient(90deg, #1c2c2c 0%, #ff036f 49%, #ff036f 100%);
}

.lesson-grid article:last-child {
  grid-column: 1 / -1;
  min-height: 330px;
  padding-left: 50%;
}

.lesson-grid h3 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.lesson-grid p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.42;
}

.lesson-visual {
  display: none;
}

.sample {
  background:
    repeating-linear-gradient(22deg, rgba(5, 3, 2, 0.025) 0 1px, transparent 1px 6px),
    #f0f0f0;
}

.sample h2 {
  margin-inline: auto;
  text-align: center;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 58px;
}

.sample-grid article {
  min-height: 263px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  border-radius: 4px;
  background: var(--color-charcoal);
  color: var(--color-white);
  text-align: center;
}

.sample-grid span {
  margin-bottom: 22px;
  color: var(--color-pink);
  font-family: var(--font-display);
  font-size: 50px;
}

.sample-grid h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.bonuses {
  overflow: hidden;
  padding-top: 150px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.7), transparent 18%),
    radial-gradient(circle at -5% 50%, rgba(255, 255, 255, 0.44), transparent 19%),
    repeating-linear-gradient(11deg, rgba(108, 79, 70, 0.035) 0 1px, transparent 1px 6px),
    var(--color-paper);
}

.bonuses::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 8%;
  width: 430px;
  aspect-ratio: 1;
  border: 26px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
}

.bonuses::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 58px;
  background: linear-gradient(90deg, var(--color-charcoal) 0 20%, #4a333d 20% 40%, #aa5078 40% 60%, #d71c72 60% 80%, var(--color-pink) 80% 100%);
}

.section-heading--center {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.section-heading--center h2 {
  margin-inline: auto;
  font-size: clamp(34px, 2.9vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading--center h2::first-line {
  color: var(--color-pink);
}

.section-heading--center p {
  margin-bottom: 0;
  font-weight: 800;
}

.bonus-list {
  display: grid;
  gap: 118px;
  margin-top: 150px;
}

.bonus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.bonus__laptop-wrap {
  position: relative;
  z-index: 1;
  margin: 0 -42px 0 0;
}

.bonus__laptop {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 14px solid #111111;
  border-bottom-width: 22px;
  border-radius: 12px 12px 4px 4px;
  background: var(--color-charcoal);
  box-shadow: 0 28px 0 -14px #e72782, 0 38px 22px rgba(5, 3, 2, 0.24);
}

.bonus__laptop::before {
  content: "";
  position: absolute;
  left: -13%;
  right: -13%;
  bottom: -48px;
  height: 34px;
  background: linear-gradient(180deg, #fb3a99, #c21466);
  border-radius: 0 0 48% 48%;
  transform: perspective(260px) rotateX(42deg);
}

.bonus__screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 46px 42px;
  background:
    linear-gradient(90deg, rgba(5, 3, 2, 0.96), rgba(5, 3, 2, 0.72) 52%, rgba(255, 3, 111, 0.28)),
    repeating-radial-gradient(circle at 62% 34%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 8px),
    var(--color-charcoal);
  color: var(--color-white);
}

.bonus__screen::before,
.bonus__screen::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 34px;
  background-image: url("assets/figma/hero-white-brush.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.96;
}

.bonus__screen::before {
  top: 18px;
  width: 52%;
}

.bonus__screen::after {
  bottom: 8px;
  opacity: 0.62;
  transform: rotate(1deg);
}

.bonus__screen--portrait {
  background:
    radial-gradient(circle at 72% 46%, rgba(202, 125, 93, 0.32), transparent 21%),
    linear-gradient(90deg, rgba(5, 3, 2, 0.98), rgba(5, 3, 2, 0.76) 52%, rgba(255, 3, 111, 0.36)),
    var(--color-charcoal);
}

.bonus__screen--guide {
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 3, 111, 0.48), transparent 22%),
    linear-gradient(90deg, rgba(5, 3, 2, 0.92), rgba(18, 6, 16, 0.82), rgba(255, 3, 111, 0.34)),
    var(--color-charcoal);
}

.bonus__screen--eye {
  background:
    radial-gradient(circle at 75% 45%, rgba(235, 213, 177, 0.34), transparent 19%),
    linear-gradient(90deg, rgba(5, 3, 2, 0.98), rgba(5, 3, 2, 0.76) 55%, rgba(255, 3, 111, 0.32)),
    var(--color-charcoal);
}

.bonus__screen--archetype {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.1), transparent 17%),
    linear-gradient(90deg, rgba(5, 3, 2, 0.98), rgba(5, 3, 2, 0.88) 58%, rgba(255, 3, 111, 0.34)),
    var(--color-charcoal);
}

.bonus__screen span,
.bonus__screen strong {
  position: relative;
  z-index: 1;
}

.bonus__screen span {
  width: max-content;
  margin-bottom: 44px;
  color: var(--color-pink);
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.bonus__screen strong {
  max-width: 360px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.bonus__copy {
  position: relative;
  padding: 54px 48px;
  background: var(--color-white);
  color: var(--color-ink);
}

.bonus--reverse .bonus__laptop-wrap {
  order: 2;
  margin: 0 0 0 -42px;
}

.bonus--reverse .bonus__copy {
  order: 1;
}

.bonus__tag {
  position: absolute;
  left: 0;
  top: -48px;
  display: flex;
  align-items: center;
  margin: 0;
}

.bonus__tag span:first-child {
  min-width: 150px;
  padding: 14px 24px;
  background: var(--color-pink);
  color: var(--color-white);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.bonus__gift::before {
  content: "🎁";
  display: grid;
  place-items: center;
  width: 54px;
  height: 48px;
  background: var(--color-white);
  color: var(--color-pink);
  font-size: 30px;
}

.recap {
  background:
    repeating-linear-gradient(11deg, rgba(108, 79, 70, 0.035) 0 1px, transparent 1px 6px),
    var(--color-paper);
}

.recap::before {
  content: "";
  position: absolute;
  right: max(40px, calc((100vw - var(--container-max)) / 2));
  top: 112px;
  z-index: 0;
  width: min(500px, 36vw);
  height: 18px;
  background: linear-gradient(90deg, var(--color-charcoal) 0 20%, #4a333d 20% 40%, #aa5078 40% 60%, #d71c72 60% 80%, var(--color-pink) 80% 100%);
}

.recap__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 72px;
  align-items: start;
}

.recap-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recap-list li {
  position: relative;
  padding: 18px 0;
  padding-left: 64px;
  border-bottom: 0;
}

.recap-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--color-pink);
  font-size: 38px;
  font-weight: 900;
}

.recap__total {
  display: inline-block;
  margin-top: 28px;
  padding: 22px 48px;
  border: 1px solid var(--color-ink);
  background: transparent;
  color: var(--color-ink);
  font-weight: 900;
  text-transform: uppercase;
}

.ecosystem {
  overflow: hidden;
  padding-block: 0 22px;
  background:
    linear-gradient(180deg, var(--color-paper) 0 22%, var(--color-white) 22% 100%);
}

.ecosystem .container {
  --container-max: 1180px;
}

.ecosystem figure {
  margin: 0;
}

.ecosystem img {
  width: min(1040px, 100%);
  margin: -18px auto -10px;
  filter: drop-shadow(0 40px 30px rgba(5, 3, 2, 0.16));
}

.offer,
.final-offer {
  padding-top: 0;
  background:
    repeating-linear-gradient(19deg, rgba(5, 3, 2, 0.025) 0 1px, transparent 1px 5px),
    var(--color-white);
}

.offer__inner,
.final-offer__inner {
  max-width: 760px;
  text-align: center;
}

.offer h2,
.final-offer h2 {
  margin-inline: auto;
}

.price {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: end;
  margin-bottom: 0;
  line-height: 1;
}

.price span {
  padding-bottom: 14px;
  font-size: 22px;
  font-weight: 600;
}

.price strong {
  color: var(--color-pink);
  font-size: 88px;
  letter-spacing: -0.07em;
}

.price sup {
  align-self: center;
  margin-top: -20px;
  font-size: 26px;
  font-weight: 600;
}

.cash-price {
  margin: 8px 0 32px;
  font-size: 22px;
  font-weight: 600;
}

.payment-methods {
  width: min(520px, 100%);
  margin: 16px auto 0;
}

.creator {
  overflow: hidden;
  padding-block: 0;
  min-height: 880px;
  background-color: #050505;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.16) 38%, rgba(12, 6, 8, 0.72) 60%, rgba(0, 0, 0, 0.98) 100%),
    url("assets/figma/bio-background-tatiana.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: var(--color-white);
}

.creator__grid {
  width: min(1260px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  justify-content: end;
  align-items: stretch;
  min-height: 880px;
}

.creator__copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: 88px 64px;
}

.creator__copy::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50px;
  width: min(620px, calc(100% - 28px));
  aspect-ratio: 1672 / 436;
  z-index: -1;
  background-image: url("assets/figma/hero-pink-brush.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-4deg);
}

.creator__copy h2 {
  font-size: 43px;
}

.creator__copy p {
  max-width: 620px;
}

.testimonials {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.testimonials h2 {
  margin-inline: auto;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: 56px;
}

.testimonial-card {
  break-inside: avoid;
  margin: 0;
  padding: 14px;
  background: var(--color-white);
  box-shadow: 18px 18px 0 rgba(255, 3, 111, 0.16);
}

.testimonial-card img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.faq {
  padding-top: 72px;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.faq h2 {
  margin-inline: auto;
  text-align: center;
}

.faq-list {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.faq summary {
  position: relative;
  padding: 26px 58px 26px 0;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--color-pink);
  transition: transform 160ms ease-out;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0deg);
}

.faq details p {
  max-width: 850px;
  margin-bottom: 0;
  padding: 0 58px 28px 0;
}

.final-offer {
  padding-top: 120px;
}

.guarantee {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 74px;
  text-align: left;
}

.guarantee p {
  margin-bottom: 0;
}

.footer {
  padding-block: 42px;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray);
}

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

.footer nav {
  display: flex;
  gap: 28px;
}

.footer a {
  color: var(--color-ink);
  font-weight: 600;
  text-decoration-color: var(--color-pink);
  text-underline-offset: 4px;
}

.footer p {
  margin-bottom: 0;
  font-size: 13px;
}

@media (max-width: 1023px) {
  :root {
    --section-py-desktop: 88px;
  }

  .container {
    width: min(var(--container-max), calc(100% - 64px));
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "product";
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy h1,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__product {
    width: min(720px, 100%);
    margin-inline: auto;
    transform: none;
  }

  .audience__grid,
  .freedom__grid,
  .authority__grid,
  .recap__grid {
    grid-template-columns: 1fr;
  }

  .freedom__visuals {
    grid-row: 2;
  }

  .freedom__results,
  .freedom__closing {
    grid-column: 1;
  }

  .authority__grid {
    grid-template-areas:
      "copy"
      "phone"
      "logos";
  }

  .authority__phone {
    width: min(250px, 70%);
    margin-inline: auto;
  }

  .qualification__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .qualification__visual {
    grid-row: 1;
    width: min(430px, 72%);
    margin: -34px auto -18px;
  }

  .qualification__copy {
    grid-row: 2;
    max-width: none;
  }

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

  .creator__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .creator__copy {
    padding: 70px 44px;
  }

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

@media (max-width: 639px) {
  :root {
    --section-py-desktop: var(--section-py-mobile);
  }

  body {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 48px);
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .purchase-button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 16px 20px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .brand-lockup {
    width: 180px;
  }

  .hero__grid {
    gap: 26px;
  }

  .hero__product figcaption {
    position: relative;
    max-width: none;
    margin-top: 10px;
    text-align: center;
    transform: none;
  }

  .hero__product::before {
    right: 50%;
    bottom: 8px;
    width: min(360px, 96%);
    transform: translateX(50%) rotate(-2deg);
  }

  .audience__panel {
    padding: 44px 24px;
  }

  .audience__panel h2::after {
    left: -18px;
    bottom: -20px;
    width: min(330px, 92vw);
  }

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

  .soul .split__copy {
    grid-row: 1;
  }

  .collage-visual {
    grid-row: 2;
    width: 90%;
    margin: 0 auto calc(var(--section-py-mobile) * -1);
  }

  .collage-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -64px 0 0;
    padding: 22px 20px 24px;
    box-shadow: 10px 10px 0 rgba(255, 3, 111, 0.72);
    transform: rotate(-1deg);
  }

  .collage-note::before {
    left: -18px;
    top: -18px;
    width: min(260px, 82%);
  }

  .freedom__grid {
    gap: 34px;
  }

  .freedom__visuals figure:last-child {
    margin-top: -18%;
    transform: translateX(4%) rotate(2deg);
  }

  .freedom__results {
    padding: 38px 24px 42px;
  }

  .freedom__results::before {
    right: 12px;
    top: -20px;
    width: min(300px, 78%);
  }

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

  .freedom__outcome {
    min-height: auto;
    padding: 20px 18px 20px 48px;
  }

  .freedom__closing {
    padding: 28px 24px;
  }

  .authority__phone {
    width: min(230px, 76%);
    padding: 10px;
    border-radius: 28px;
    transform: none;
  }

  .authority__phone img {
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 18px;
  }

  .authority__logos img {
    min-height: 130px;
    object-fit: contain;
  }

  .inside__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .inside__copy h2 {
    margin-bottom: 36px;
  }

  .inside__visual {
    width: min(430px, 76%);
    margin: -12px auto -40px;
  }

  .inside__card {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-left: 0;
    padding: 82px 24px 28px;
  }

  .inside__card strong {
    left: 18px;
    top: -22px;
    width: min(190px, calc(100% - 36px));
    min-height: 64px;
    transform: rotate(-1.5deg);
  }

  .inside__card p {
    grid-column: 1;
  }

  .lessons .section-heading h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .lesson-nav {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 88px 0 0;
    padding: 0 0 0 52px;
    border-top: 0;
    border-left: 2px dashed var(--color-pink);
    counter-reset: lesson;
  }

  .lesson-nav li {
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: var(--lesson-color);
    text-align: left;
  }

  .lesson-nav li::before {
    left: -52px;
    top: 50%;
    width: 42px;
    border-width: 5px;
    font-size: 20px;
    transform: none;
  }

  .lesson-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .lesson-grid article,
  .lesson-grid article:last-child {
    grid-column: auto;
    min-height: 330px;
    padding: 36px 28px;
  }

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

  .sample-grid article {
    min-height: 210px;
  }

  .bonus-list {
    gap: 82px;
    margin-top: 78px;
  }

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

  .bonus__laptop-wrap,
  .bonus--reverse .bonus__laptop-wrap {
    order: 1;
    margin: 0 0 -18px;
  }

  .bonus__copy,
  .bonus--reverse .bonus__copy {
    order: 2;
    padding: 54px 24px 32px;
  }

  .bonus__laptop {
    border-width: 10px;
    border-bottom-width: 18px;
  }

  .bonus__screen {
    padding: 36px 26px;
  }

  .bonus__screen span {
    margin-bottom: 36px;
  }

  .bonus__tag {
    top: -42px;
  }

  .bonus__tag span:first-child {
    min-width: 132px;
    padding: 12px 18px;
  }

  .recap::before {
    position: relative;
    display: block;
    right: auto;
    top: auto;
    width: min(320px, 100%);
    margin-bottom: 28px;
  }

  .recap__grid {
    gap: 28px;
  }

  .ecosystem {
    padding-block: 26px 50px;
  }

  .price strong {
    font-size: 64px;
  }

  .price span {
    font-size: 18px;
  }

  .creator__grid {
    display: block;
    min-height: 0;
  }

  .creator {
    min-height: 0;
    padding-top: 360px;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.22) 34%, rgba(0, 0, 0, 0.88) 68%, #050505 100%),
      url("assets/figma/bio-background-tatiana.png");
    background-size: cover, auto 390px;
    background-position: center top, 30% top;
  }

  .creator__copy {
    padding: 54px 24px 72px;
  }

  .creator__copy::before {
    left: -9%;
    right: auto;
    top: 34px;
    width: min(390px, 118%);
  }

  .creator__copy h2 {
    font-size: 36px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card {
    padding: 10px;
  }

  .faq summary {
    padding-right: 46px;
  }

  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee img {
    width: 190px;
    margin-inline: auto;
  }
}

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

}
