:root {
  --home-pink-50: #fff7fb;
  --home-pink-100: #f9d9e8;
  --home-pink-400: #ee86ad;
  --home-pink-600: #cc3f77;
  --home-ink: #21171c;
  --home-muted: #74656c;
  --home-line: #ecd9e2;
  --home-mint: #7aa99a;
  --home-shadow: 0 18px 42px rgba(129, 62, 89, .12);
  --home-radius: 8px;
  --home-serif: "Playfair Display", Georgia, serif;
  --home-sans: "Inter", "Segoe UI", Arial, sans-serif;
}

.home-page {
  background: linear-gradient(180deg, #fffafc 0%, #ffffff 38%, #fff7fb 100%);
  color: var(--home-ink);
  font-family: var(--home-sans);
}

.lp-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  border-bottom: 1px solid var(--home-line);
  background: linear-gradient(112deg, #fff 0%, #fff 38%, #fff2f7 72%, #f6d9e6 100%);
  overflow: hidden;
}

.lp-hero[data-hero-slider] .slide {
  display: none;
  animation: lpHeroFade .55s ease both;
}

.lp-hero[data-hero-slider] .slide.is-active {
  display: block;
}

.lp-hero[data-hero-slider] .slide:nth-of-type(2) {
  background: linear-gradient(112deg, #fff 0%, #fff 38%, #fff4f5 72%, #ffe5e7 100%);
}

.lp-hero[data-hero-slider] .slide:nth-of-type(3) {
  background: linear-gradient(112deg, #fff 0%, #fff 36%, #f4fbf8 70%, #dff1ea 100%);
}

.lp-hero__grid {
  min-height: min(760px, calc(100vh - 86px));
  max-height: none;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.lp-hero__copy {
  padding: clamp(32px, 5vw, 68px) 0 clamp(70px, 7vw, 96px);
}

.lp-kicker {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(204, 63, 119, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--home-pink-600);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(129, 62, 89, .08);
}

.lp-hero h1,
.lp-hero h2 {
  max-width: 690px;
  margin: 24px 0 18px;
  color: var(--home-ink);
  font: 700 clamp(42px, 5.4vw, 72px) / 1 var(--home-serif);
  letter-spacing: 0;
  text-transform: none;
}

.lp-hero h1 span,
.lp-hero h2 span {
  display: block;
  color: var(--home-pink-600);
  font-style: italic;
}

.lp-hero p {
  max-width: 560px;
  margin: 0;
  color: #4f4248;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.lp-proof {
  max-width: 610px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.lp-proof span {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: rgba(255, 255, 255, .86);
  padding: 14px 16px 14px 54px;
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(129, 62, 89, .06);
}

.lp-proof span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 42%, #fff 43% 51%, transparent 52%), var(--home-mint);
}

.lp-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: var(--home-radius);
  padding: 0 28px;
  font: 900 13px var(--home-sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.lp-btn::after {
  content: "->";
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn--primary {
  background: linear-gradient(135deg, var(--home-pink-600), #a72f60);
  color: #fff;
  box-shadow: 0 16px 30px rgba(204, 63, 119, .28);
}

.lp-btn--light {
  background: #fff;
  color: #a72f60;
  box-shadow: 0 14px 28px rgba(76, 33, 49, .12);
}

.lp-hero__media {
  position: relative;
  min-height: 620px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lp-hero__media::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(560px, 100%);
  aspect-ratio: 1;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,245,249,.58)), #fff;
  box-shadow: var(--home-shadow);
}

.lp-hero__media img {
  position: relative;
  z-index: 1;
  width: min(440px, 84%);
  height: min(600px, 78vh);
  min-height: 500px;
  border-radius: var(--home-radius);
  object-fit: cover;
  object-position: 68% 28%;
  box-shadow: 0 24px 52px rgba(77, 37, 53, .2);
}

.lp-hero__media--youtube img {
  object-position: center;
}

.lp-hero__media--product img {
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: clamp(26px, 4vw, 54px);
}

.lp-hero__media--youtube::after,
.lp-hero__media--product::after {
  position: absolute;
  z-index: 3;
  top: 18%;
  right: 9%;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(65, 28, 43, .16);
}

.lp-hero__media--youtube::after {
  content: ">";
  width: 74px;
  height: 74px;
  background: #d72f4b;
}

.lp-hero__media--product::after {
  content: "LP";
  width: 78px;
  height: 78px;
  background: var(--home-mint);
  letter-spacing: .04em;
}

.lp-seal {
  position: absolute;
  z-index: 2;
  left: 6%;
  bottom: 80px;
  width: 146px;
  min-height: 98px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(204, 63, 119, .24);
  border-radius: var(--home-radius);
  background: rgba(255, 255, 255, .96);
  padding: 16px;
  color: var(--home-ink);
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--home-shadow);
}

.lp-seal strong,
.lp-seal span {
  display: block;
  line-height: 1.25;
}

.lp-seal strong {
  font-size: 12px;
}

.lp-seal span {
  margin-top: 4px;
  font-size: 10px;
}

.lp-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(204, 63, 119, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  color: var(--home-pink-600);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(129, 62, 89, .14);
  transform: translateY(-50%);
  transition: background .18s ease, transform .18s ease;
}

.lp-hero__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.lp-hero__arrow--prev {
  left: max(18px, calc((100vw - 1180px) / 2 - 62px));
}

.lp-hero__arrow--next {
  right: max(18px, calc((100vw - 1180px) / 2 - 62px));
}

.lp-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.lp-hero__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(204, 63, 119, .24);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.lp-hero__dots button.is-active {
  width: 30px;
  background: var(--home-pink-600);
}

.lp-section {
  padding: clamp(46px, 7vw, 74px) 0;
}

.lp-section--tight {
  padding-top: clamp(28px, 5vw, 52px);
}

.lp-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.lp-section__head h2,
.lp-final-cta h2 {
  margin: 0;
  color: var(--home-ink);
  font: 700 clamp(30px, 4.2vw, 48px) / 1.08 var(--home-serif);
}

.lp-section__head em {
  color: var(--home-pink-600);
}

.lp-section__head a {
  color: var(--home-pink-600);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.course-tabs {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
}

.course-tablist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-tablist button {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: rgba(255, 255, 255, .82);
  color: var(--home-ink);
  cursor: pointer;
  font: 900 13px var(--home-sans);
  text-align: left;
  padding: 0 16px;
  box-shadow: 0 8px 18px rgba(129, 62, 89, .05);
}

.course-tablist button:hover,
.course-tablist button.is-active {
  border-color: rgba(204, 63, 119, .45);
  background: var(--home-pink-600);
  color: #fff;
}

.course-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: var(--home-shadow);
  overflow: hidden;
}

.course-panel[hidden] {
  display: none;
}

.course-panel img {
  width: 100%;
  height: 460px;
  min-height: 420px;
  object-fit: cover;
  object-position: 64% 50%;
}

.course-panel div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 120px 30px 92px;
  background: linear-gradient(180deg, rgba(33, 23, 28, 0), rgba(33, 23, 28, .82));
}

.course-panel h3 {
  margin: 0 0 10px;
  color: #fff;
  font: 700 clamp(30px, 4vw, 50px) / 1.06 var(--home-serif);
}

.course-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
}

.course-panel span {
  display: inline-flex;
  margin-top: 14px;
  color: #f3bd4f;
  font-weight: 900;
}

.course-panel span::before {
  content: "* ";
}

.course-panel > a {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  border-radius: var(--home-radius);
  background: #fff;
  color: var(--home-pink-600);
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
}

.lp-youtube {
  background: linear-gradient(180deg, #23181e 0%, #2e2028 100%);
  color: #fff;
}

.lp-youtube .lp-section__head h2,
.lp-youtube .lp-section__head em,
.lp-youtube .lp-section__head a {
  color: #fff;
}

.lp-video-grid,
.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lp-video-card {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.lp-video-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .25s ease;
}

.lp-video-card:hover img {
  transform: scale(1.04);
}

.lp-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.72));
}

.lp-video-card::after {
  content: ">";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--home-pink-600);
  color: #fff;
  transform: translate(-50%, -50%);
}

.lp-video-card strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 21px;
  line-height: 1.12;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.lp-blog-news {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.lp-blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: var(--home-shadow);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.lp-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(129, 62, 89, .16);
}

.lp-blog-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.lp-blog-card time,
.lp-blog-card h3,
.lp-blog-card p,
.lp-blog-card a {
  margin-left: 14px;
  margin-right: 14px;
}

.lp-blog-card time {
  display: block;
  margin-top: 12px;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lp-blog-card h3 {
  margin-top: 8px;
  color: var(--home-ink);
  font-size: 17px;
  line-height: 1.25;
}

.lp-blog-card p {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.5;
}

.lp-blog-card a {
  display: inline-flex;
  margin-top: auto;
  margin-bottom: 16px;
  color: var(--home-pink-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-final-cta {
  margin: 0;
  padding: clamp(36px, 6vw, 58px) 0;
  background: linear-gradient(135deg, #21171c 0%, #4b2335 46%, #cc3f77 100%);
  color: #fff;
}

.lp-final-cta__inner {
  display: grid;
  grid-template-columns: .9fr minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.lp-final-cta h2 {
  color: #fff;
}

.lp-final-cta p {
  margin: 0;
  max-width: 540px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.6;
}

@keyframes lpHeroFade {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .lp-hero__grid,
  .course-tabs,
  .lp-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .lp-hero__grid {
    min-height: auto;
    max-height: none;
  }

  .lp-hero__copy {
    padding-bottom: 14px;
  }

  .lp-hero__media {
    min-height: 460px;
  }

  .lp-hero__media img {
    height: 460px;
    min-height: 0;
  }

  .lp-hero__arrow {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .lp-hero__arrow:hover {
    transform: scale(1.04);
  }

  .lp-hero__arrow--prev {
    left: 18px;
  }

  .lp-hero__arrow--next {
    right: 18px;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .lp-hero__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .78fr);
    gap: clamp(20px, 4vw, 36px);
    align-items: center;
  }

  .lp-hero__copy {
    padding: clamp(26px, 5vw, 44px) 0 clamp(58px, 7vw, 82px);
  }

  .lp-hero h1,
  .lp-hero h2 {
    font-size: clamp(42px, 6.8vw, 58px);
    line-height: 1;
  }

  .lp-hero p {
    font-size: 15px;
    line-height: 1.55;
  }

  .lp-proof {
    gap: 10px;
    margin: 22px 0;
  }

  .lp-proof span {
    min-height: 48px;
    padding: 12px 12px 12px 48px;
    font-size: 10px;
  }

  .lp-hero__media {
    min-height: 430px;
    align-self: stretch;
  }

  .lp-hero__media img {
    width: min(320px, 86%);
    height: 420px;
    min-height: 0;
  }

  .lp-hero__media--product img {
    padding: clamp(18px, 3vw, 32px);
  }

  .lp-seal {
    left: 0;
    bottom: 62px;
  }
}

@media (max-width: 760px) {
  .lp-container {
    width: min(100% - 28px, 1160px);
  }

  .lp-hero h1,
  .lp-hero h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .lp-proof,
  .lp-blog-grid,
  .lp-video-grid {
    grid-template-columns: 1fr;
  }

  .course-tablist {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .course-tablist button {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .course-panel,
  .course-panel img {
    min-height: 390px;
    height: 390px;
  }

  .course-panel div {
    padding: 100px 22px 82px;
  }

  .course-panel > a {
    left: 22px;
    bottom: 22px;
  }

  .lp-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-hero__dots {
    bottom: 28px;
  }

  .lp-hero__arrow {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .lp-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .lp-container {
    width: min(100% - 22px, 1160px);
  }

  .lp-hero {
    overflow: hidden;
  }

  .lp-hero__grid {
    gap: 8px;
  }

  .lp-hero__copy {
    padding: 30px 0 8px;
  }

  .lp-kicker {
    min-height: 28px;
    padding: 0 12px;
    font-size: 11px;
  }

  .lp-hero h1,
  .lp-hero h2 {
    margin: 18px 0 12px;
    font-size: clamp(36px, 13vw, 50px);
    line-height: .98;
  }

  .lp-hero p {
    font-size: 15px;
    line-height: 1.55;
  }

  .lp-proof {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px 0;
  }

  .lp-proof span {
    min-height: 48px;
    padding: 12px 12px 12px 48px;
    font-size: 11px;
  }

  .lp-proof span::before {
    left: 12px;
    width: 24px;
    height: 24px;
  }

  .lp-btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    text-align: center;
  }

  .lp-hero__media {
    min-height: 330px;
    padding-bottom: 54px;
    align-items: center;
  }

  .lp-hero__media::before {
    width: min(330px, 92%);
    bottom: 58px;
    right: 50%;
    transform: translateX(50%);
  }

  .lp-hero__media img {
    width: min(290px, 82vw);
    height: 300px;
    min-height: 0;
    object-position: center;
  }

  .lp-hero__media--product img {
    padding: 26px;
  }

  .lp-hero__media--youtube::after,
  .lp-hero__media--product::after {
    top: 24px;
    right: max(24px, 10vw);
    width: 54px;
    height: 54px;
    font-size: 14px;
  }

  .lp-seal {
    left: 12px;
    bottom: 62px;
    width: 112px;
    min-height: 78px;
    padding: 10px;
  }

  .lp-seal strong {
    font-size: 10px;
  }

  .lp-seal span {
    font-size: 9px;
  }

  .lp-hero__arrow {
    top: auto;
    bottom: 18px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .lp-hero__arrow--prev {
    left: 12px;
  }

  .lp-hero__arrow--next {
    right: 12px;
  }

  .lp-hero__dots {
    bottom: 30px;
  }

  .lp-section {
    padding: 34px 0;
  }

  .lp-section__head h2,
  .lp-final-cta h2 {
    font-size: clamp(28px, 10vw, 38px);
  }

  .course-tabs {
    gap: 12px;
  }

  .course-tablist {
    margin-right: -11px;
    padding-right: 11px;
  }

  .course-tablist button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .course-panel,
  .course-panel img {
    min-height: 330px;
    height: 330px;
  }

  .course-panel div {
    padding: 84px 16px 76px;
  }

  .course-panel h3 {
    font-size: clamp(27px, 9vw, 36px);
  }

  .course-panel > a {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }

  .lp-video-card {
    min-height: 190px;
  }

  .lp-video-card strong {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 18px;
  }

  .lp-blog-card {
    max-width: 430px;
    margin: 0 auto;
  }

  .lp-final-cta__inner {
    gap: 16px;
    text-align: center;
  }
}
