
@font-face {
  font-family: 'Druk Cyr';
  src: url('../fonts/druk-cyr-medium.woff2') format('woff2'),
    url('../fonts/druk-cyr-medium.otf') format('opentype'),
    url('../fonts/druk-cyr-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rage Italic';
  src: url('../fonts/rage-italic.woff2') format('woff2'),
    url('../fonts/rage-italic.otf') format('opentype'),
    url('../fonts/rage-italic.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #000207;
  --coral: #FA494A;
  --coral-2: #D12C2D;
  --coral-pink: #DF5B72;
  --orange: #FF5800;
  --light: #EDF3F6;
  --muted: #54565B;
  --blue: #00A4D8;
  --card-d1: #1D1F26;
  --card-d2: #13151A;

  --f-display: 'Druk Cyr', 'Oswald', 'Anton', 'Impact', 'Haettenschweiler', 'Arial Narrow', sans-serif;
  --f-script: 'Rage Italic', 'Snell Roundhand', 'Brush Script MT', 'Segoe Script', cursive;
  --f-body: 'Helvetica Neue', 'HelveticaNeueCyr', Arial, Roboto, sans-serif;

  --pad: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden
}

body {
  background: #000;
  overflow-x: hidden;
  color: #fff;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none
}

.page {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background: var(--dark);
  overflow: hidden;
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  transition: opacity .5s ease, visibility .5s ease;
  
  animation: preloader-failsafe .01s linear 2s forwards;
}

@keyframes preloader-failsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__ring {
  position: relative;
  width: 56px;
  height: 56px;
}

.preloader__ring::before {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 73, 74, .4) 0%, rgba(250, 73, 74, 0) 70%);
  filter: blur(6px);
}

.preloader__ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(250, 73, 74, .15);
  border-top-color: var(--coral);
  animation: preloader-spin .9s linear infinite;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

.sec-title,
.day__title,
.who__title,
.hero__title,
.btn,
.price__old,
.price__new,
.timer__unit,
.manager__title,
.offer__l1,
.offer__l2,
.offer__l3 {
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .005em;
}

.script {
  font-family: var(--f-script);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}

.script--coral {
  color: var(--coral)
}

.c {
  color: var(--coral)
}

.sec-title {
  font-size: 48px;
  line-height: 1;
  text-align: center
}

.sec-title--dark {
  color: var(--dark)
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-align: center;
  padding: 0 18px;
}

.btn--glow {
  background:
    radial-gradient(120% 130% at 50% 50%, #FA494A 0%, #E23639 60%, #D12C2D 100%);
  box-shadow:
    0 4px 20px 0 rgba(250, 73, 74, .9),
    
    inset 0 0 12px 0 rgba(255, 255, 255, .5),
    
    inset 0 -20px 20px -10px rgba(255, 255, 255, .18);
  
}

.btn--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(54% 46% at 50% -2%, rgba(255, 255, 255, .6), rgba(255, 255, 255, 0) 68%),
    radial-gradient(54% 44% at 50% 102%, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0) 68%);
}

.btn--dark {
  background: radial-gradient(120% 140% at 50% 30%, #474747 0%, #1F1F1F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  max-width: 390px;
  margin: 0 auto;
  padding: 24px 16px 16px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.25, .8, .35, 1), transform .35s cubic-bezier(.25, .8, .35, 1);
}

.sticky-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--dark) 45%);
  pointer-events: none;
}

.sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(75deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .65) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  animation: btn-shine 4.2s ease-in-out infinite;
  animation-play-state: paused;
}

.page-ready .btn::after {
  animation-play-state: running;
}

@keyframes btn-shine {
  0% { left: -60%; }
  30% { left: 130%; }
  100% { left: 130%; }
}

.hero {
  padding: 25px var(--pad) 34px;
  position: relative
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: rgba(255, 255, 255, .65);
  padding: 0 9px;
  animation: topbar-slide-in 1.1s cubic-bezier(.25, .8, .35, 1) both;
  animation-play-state: paused;
}

.page-ready .topbar {
  animation-play-state: running;
}

@keyframes topbar-slide-in {
  0% { opacity: 0; transform: translateY(-28px); }
  100% { opacity: 1; transform: translateY(0); }
}

.topbar__item {
  display: flex;
  align-items: center;
  line-height: normal;
}

.topbar__item b {
  color: #fff;
  font-weight: 400
}

.topbar__ic {
  width: 11px;
  height: 11px;
  margin-right: 6px
}

.rule {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, .16);
  margin: 14px 0 0
}

.hero__title {
  font-size: 48px;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-top: 33px
}

.hero__title .hl {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 308px;
  height: 44px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  margin-top: 4px;
}

.hero__title .hl::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  animation: plate-reveal .28s ease-out both;
  animation-play-state: paused;
  animation-delay: var(--plate-delay, .9s);
}

.page-ready .hero__title .hl::before {
  animation-play-state: running;
}

@keyframes plate-reveal {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.hero__title .hl__t {
  position: relative;
  z-index: 1;
  margin-top: -4px;
}

.hero__title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: letter-slide-up .38s cubic-bezier(.25, .8, .35, 1) both;
  animation-play-state: paused;
}

.page-ready .hero__title .letter {
  animation-play-state: running;
}

@keyframes letter-slide-up {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero .topbar,
.hero .rule,
.hero__title,
.hero .selbox {
  position: relative;
  z-index: 1
}

.selbox {
  position: relative;
  width: 266px;
  height: 65px;
  margin: 20px auto 0;
  opacity: 0;
  transform: scale(.4);
  transform-origin: center;
  animation: selbox-pop .5s cubic-bezier(.25, .8, .35, 1) both;
  animation-play-state: paused;
  animation-delay: var(--selbox-delay, 1.6s);
}

.page-ready .selbox {
  animation-play-state: running;
}

@keyframes selbox-pop {
  0% { opacity: 0; transform: scale(.4); }
  100% { opacity: 1; transform: scale(1); }
}

.hero__sub {
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 251px;
  margin: 0;
  font-size: 14px;
  line-height: 16.8px;
  text-align: center;
  color: #fff
}

.selbox__box {
  position: absolute;
  inset: 4px;
  border: 1px solid #4399F8;
  pointer-events: none
}

.selbox__h {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #fff;
  border: 1px solid #4399F8;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2
}

.selbox__h--tl {
  left: 0;
  top: 0
}

.selbox__h--tr {
  right: 0;
  top: 0
}

.selbox__h--bl {
  left: 0;
  bottom: 0
}

.selbox__h--br {
  right: 0;
  bottom: 0
}

.selbox__h--tc {
  left: 50%;
  top: 0;
  transform: translateX(-50%)
}

.selbox__h--bc {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%)
}

.hero__amb {
  position: absolute;
  top: -36px;
  left: 260px;
  z-index: 0;
  pointer-events: none;
  width: 259px;
  height: 259px;
  border-radius: 50%;
  opacity: .75;
  background: radial-gradient(circle at 38% 32%, #FA494A 0%, #D12C2D 100%);
  box-shadow: 0 4px 20px rgba(250, 73, 74, .9);
  filter: blur(125px)
}

.hero__visual {
  position: relative;
  z-index: 1;
  height: 404px;
  margin: 22px -16px 0
}

.hero__glow {
  position: absolute;
  left: 150px;
  top: 206px;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 372px;
  height: 459px;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
      rgba(230, 66, 69, .95) 0%,
      rgba(226, 62, 66, .7) 30%,
      rgba(222, 58, 63, .35) 58%,
      rgba(222, 58, 63, 0) 82%);
}

.hero__glow-core {
  position: absolute;
  left: 150px;
  top: 208px;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 42% 38%, #FF9E88 0%, #FA494A 48%, transparent 78%);
  filter: blur(20px)
}

.hero__boy {
  position: absolute;
  left: 50%;
  bottom: -47px;
  transform: translateX(-50%);
  z-index: 1;
  width: 104%;
  max-width: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .35))
}

.hero__em {
  position: absolute;
  z-index: 2
}

.hero__em--money {
  width: 62px;
  right: 35px;
  top: 58px;
  animation: float-money 3.2s ease-in-out infinite;
  animation-play-state: paused;
}

.hero__em--palette {
  width: 32px;
  right: 112px;
  top: 114px;
  animation: float-palette 3.7s ease-in-out infinite;
  animation-delay: .4s;
  animation-play-state: paused;
}

.hero__em--brush {
  width: 22px;
  right: 136px;
  top: 98px;
  animation: float-brush 3.4s ease-in-out infinite;
  animation-delay: .8s;
  animation-play-state: paused;
}

.page-ready .hero__em--money,
.page-ready .hero__em--palette,
.page-ready .hero__em--brush {
  animation-play-state: running;
}

@keyframes float-money {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(3deg); }
}

@keyframes float-palette {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-4deg); }
}

@keyframes float-brush {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}

.hero>.cta {
  position: relative;
  z-index: 3;
  margin-top: -62px;
  animation: cta-slide-up 1s cubic-bezier(.25, .8, .35, 1) both;
  animation-play-state: paused;
  animation-delay: .15s;
}

.page-ready .hero>.cta {
  animation-play-state: running;
}

@keyframes cta-slide-up {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.tear {
  width: 100%;
  height: 34px;
  background-repeat: no-repeat;
  background-size: cover;
}

.tear--down {
  background-image: url('../img/tear-down.png')
}

.tear--up {
  background-image: url('../img/tear-up.png')
}

.program {
  position: relative;
  background: transparent;
  margin-top: -1px
}

.tear--down {
  margin-bottom: -2px;
  position: relative;
  z-index: 2
}

.program__inner {
  background: var(--light);
  padding: 2px var(--pad) 8px
}

.tear--up {
  margin-top: -2px;
  position: relative;
  z-index: 2;
  background-image: url('../img/tear-up-2.png')
}

.program .sec-title {
  margin: 32px 0 2px;
  line-height: 63%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s cubic-bezier(.25, .8, .35, 1), transform .6s cubic-bezier(.25, .8, .35, 1);
}

.program .sec-title.in-view {
  opacity: 1;
  transform: translateY(0);
}

.program .script--coral {
  font-size: 48px;
  display: inline-block;
  margin-top: -6px;
  margin-left: 30px;
}

.day {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .10);
  padding: 36px 22px 14px;
  margin-top: 36px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .5s cubic-bezier(.25, .8, .35, 1), transform .5s cubic-bezier(.25, .8, .35, 1);
}

.day.in-view {
  opacity: 1;
  transform: translateY(0);
}

.day:last-child {
  margin-bottom: 16px;
}

.pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  background: var(--coral);
  color: #fff;
  border-radius: 5px;
  padding: 0 14px;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}

.day .pill {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.5);
  transition: opacity .35s cubic-bezier(.25, .8, .35, 1) .2s, transform .35s cubic-bezier(.25, .8, .35, 1) .2s;
}

.day.in-view .pill {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pill__ic {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1)
}

.day__title,
.day__desc {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s cubic-bezier(.25, .8, .35, 1) .45s, transform .4s cubic-bezier(.25, .8, .35, 1) .45s;
}

.day.in-view .day__title,
.day.in-view .day__desc {
  opacity: 1;
  transform: translateY(0);
}

.day__title {
  font-size: 36px;
  line-height: 1;
  color: var(--dark);
  margin-top: 0
}

.day__desc-2 {
  max-width: 262px;
  margin: 0 auto;
}

.day__desc {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(0, 0, 0, .5);
  margin-top: 20px
}

.day__img {
  width: 100%;
  border-radius: 5px;
  margin-top: 30px;
  aspect-ratio: 330/184;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .45s cubic-bezier(.25, .8, .35, 1) .6s, transform .5s cubic-bezier(.25, .8, .35, 1) .6s;
}

.day.in-view .day__img {
  opacity: 1;
  transform: scale(1);
}

.forwhom {
  position: relative;
  background: var(--dark);
  margin-top: -31px;
}

.forwhom__hero {
  position: relative;
  height: 756px;
  overflow: hidden
}

.forwhom__bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 115.4%;
  max-width: none;
  height: 756px;
  object-fit: cover;
  object-position: top center
}

.forwhom__hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, transparent, var(--dark))
}

.forwhom__q {
  position: absolute;
  left: 36px;
  top: 265px;
  width: 34px;
  z-index: 2;
  left: 120px;
  opacity: 0;
  transition: opacity .5s cubic-bezier(.25, .8, .35, 1);
  animation: float-question 3.6s ease-in-out infinite;
  animation-play-state: paused;
}

.forwhom__q.in-view {
  opacity: 1;
  animation-play-state: running;
}

@keyframes float-question {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-4deg); }
}

.forwhom__title {
  position: absolute;
  left: 0;
  right: 0;
  top: 104px;
  z-index: 2;
  line-height: 80%;
  color: var(--dark);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s cubic-bezier(.25, .8, .35, 1), transform .6s cubic-bezier(.25, .8, .35, 1);
}

.forwhom__title.in-view {
  opacity: 1;
  transform: translateY(0);
}

.forwhom__title .script {
  font-size: 64px;
  display: inline-block;
  margin-top: -8px
}

.forwhom__cards {
  position: relative;
  padding: 0 var(--pad) 8px;
  margin-top: -125px;
  z-index: 3
}

.who {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .10);
  min-height: 381px;
  padding: 26px 24px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .5s cubic-bezier(.25, .8, .35, 1), transform .5s cubic-bezier(.25, .8, .35, 1);
}

.who.in-view {
  opacity: 1;
  transform: translateY(0);
}

.who:last-child .who__desc {
  max-width: 49%;
}

.who__num {
  position: absolute;
  right: 24px;
  top: 22px;
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(0, 0, 0, .25);
}

.who__title {
  font-size: 48px;
  line-height: .98;
  color: #000;
  max-width: 78%;
  position: relative;
  z-index: 2
}

.who__desc {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(0, 0, 0, .5);
  max-width: 44%;
  margin-top: 16px;
  position: relative;
  z-index: 2
}

.who__kaws {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s cubic-bezier(.25, .8, .35, 1) .2s, transform 1.8s cubic-bezier(.25, .8, .35, 1) .2s;
}

.who.in-view .who__kaws {
  opacity: 1;
}

.who__kaws--1 {
  width: 214px;
  right: 0;
  bottom: -4px;
  transform: scale(1.08);
}

.who.in-view .who__kaws--1 {
  transform: scale(1);
}

.who__kaws--2 {
  width: 360px;
  left: 50%;
  transform: translateX(-50%) scale(1.08);
  bottom: 0
}

.who.in-view .who__kaws--2 {
  transform: translateX(-50%) scale(1);
}

.who__kaws--3 {
  width: 199px;
  right: 0;
  bottom: 0;
  transform: scale(1.08);
}

.who.in-view .who__kaws--3 {
  transform: scale(1);
}

.who__kaws--4 {
  width: 344px;
  left: 53%;
  transform: translateX(-50%) scale(1.08);
  bottom: 0
}

.who.in-view .who__kaws--4 {
  transform: translateX(-50%) scale(1);
}

.who__kaws--5 {
  width: 185px;
  right: 0;
  bottom: 0;
  transform: scale(1.08);
}

.who.in-view .who__kaws--5 {
  transform: scale(1);
}

.who__desc {
  max-width: 48%
}

.forwhom__cards .who:nth-child(1) .who__desc {
  max-width: 58%;
}

.forwhom__cards .who:nth-child(4) .who__desc {
  max-width: 58%;
}

.who--wide .who__desc {
  max-width: 49%
}

.who--wide .who__desc:nth-child(2) {
  max-width: 48%
}

.after {
  position: relative;
  
  background: var(--dark);
  padding: 34px var(--pad) 28px
}

.after__amb {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  width: 277px;
  height: 116px;
  border-radius: 50%;
  background: #fff;
  filter: blur(125px);
  width: 120px;
  height: 60px;
}

.after__title {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: 32px;
  line-height: .52;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s cubic-bezier(.25, .8, .35, 1), transform .6s cubic-bezier(.25, .8, .35, 1);
}

.after__title.in-view {
  opacity: 1;
  transform: translateY(0);
}

.after__title .script {
  font-size: 64px;
  display: inline-block;
  line-height: 50%;
}

.result {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(160deg, var(--card-d1), var(--card-d2));
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  padding: 20px 18px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .5s cubic-bezier(.25, .8, .35, 1), transform .5s cubic-bezier(.25, .8, .35, 1);
}

.result.in-view {
  opacity: 1;
  transform: translateY(0);
}

.result__ic {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(110% 130% at 50% 50%, var(--coral), var(--coral-2));
  box-shadow: 0 3px 18px 1px rgba(250, 73, 74, .75),
    inset 0 0 8px rgba(255, 255, 255, .4),
    inset 0 -8px 10px -6px rgba(255, 255, 255, .25)
}

.result__ic img {
  width: 26px;
  height: 26px
}

.result__title {
  font-family: var(--f-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.18;
  color: #fff
}

.result__desc {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, .5);
  margin-top: 10px;
  max-width: 247px;
}

.author {
  position: relative;
  background: var(--dark);
  padding: 40px var(--pad) 0;
  overflow: hidden
}

.author__title {
  position: relative;
  color: #fff;
  z-index: 4;
  line-height: 30%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s cubic-bezier(.25, .8, .35, 1), transform .6s cubic-bezier(.25, .8, .35, 1);
}

.author__title.in-view {
  opacity: 1;
  transform: translateY(0);
}

.author__title .script {
  font-size: 64px;
  display: inline-block;
  z-index: 2;
  position: relative;
  line-height: 88%;
}

.author__badge {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-left: 4px;
  margin-top: -9px;
}

.script--coral-2 {
  margin-left: 30px;
}

.author__stage {
  position: relative;
  z-index: 2;
  height: 400px;
}

.author__glow {
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  
  background: radial-gradient(circle at 42% 38%, #FF7A74 0%, #F0525A 48%, #DF5B72 100%);
  box-shadow: 0 4px 46px 16px rgba(223, 91, 114, .8);
  filter: blur(62px);
  background-image: url('../img/Glow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity .45s cubic-bezier(.25, .8, .35, 1) .7s;
}

.author__stage.in-view .author__glow {
  opacity: 1;
}

.author__glow-core {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  width: 243px;
  height: 243px;
  border-radius: 50%;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 38% 32%, #FA494A 0%, #D12C2D 100%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .45s cubic-bezier(.25, .8, .35, 1) .7s;
}

.author__stage.in-view .author__glow-core {
  opacity: 1;
}

.author__photo {
  position: relative;
  width: 300px;
  margin: 22px auto 0;
  z-index: 4;
  

  position: absolute;
  top: 130px;
  
  left: 50%;
  transform: translate(-50%, 0) scale(1.08);
  opacity: 0;
  transition: opacity 1s cubic-bezier(.25, .8, .35, 1) .35s, transform 1.6s cubic-bezier(.25, .8, .35, 1) .35s;
}

.author__photo.in-view {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.author__photo img:last-child {
  width: 100%;
  border-radius: 1px
}

.author__pin {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 44px;
  z-index: 5;
  opacity: 0;
  transform: scale(.4);
  transition: opacity .4s cubic-bezier(.25, .8, .35, 1) .8s, transform .4s cubic-bezier(.25, .8, .35, 1) .8s;
}

.author__photo.in-view .author__pin {
  opacity: 1;
  transform: scale(1);
}

.author__panel {
  position: relative;
  z-index: 3;
  background: var(--light);
  margin: -135px -16px 0;
  padding: 120px 26px 10px 40px;
  border-radius: 0
}

.author__tear {
  width: auto;
  margin: -1px -16px 0;
  height: 34px;
  position: relative;
  z-index: 2
}

.bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s cubic-bezier(.25, .8, .35, 1), transform .5s cubic-bezier(.25, .8, .35, 1);
}

.bullet.in-view {
  opacity: 1;
  transform: translateY(0);
}

.author__panel .bullet:nth-child(3) {
  align-items: center;
}

.author__panel .bullet:last-child {
  margin-bottom: 0;
  align-items: center;
}

.bullet__ic {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(110% 130% at 50% 50%, var(--coral), var(--coral-2));
  box-shadow: 0 3px 16px 1px rgba(250, 73, 74, .6),
    inset 0 0 8px rgba(255, 255, 255, .4)
}

.bullet__ic img {
  width: 26px;
  height: 26px
}

.bullet__text {
  font-size: 14px;
  line-height: 1.2;
  color: var(--dark);
  max-width: 239px
}

.bullet__text b {
  font-weight: 700
}

.offer {
  position: relative;
  background: var(--dark);
  padding: 42px var(--pad) 32px;
  text-align: center
}

.offer__amb {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  width: 277px;
  height: 116px;
  border-radius: 50%;
  background: #fff;
  filter: blur(125px)
}

.offer__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  line-height: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s cubic-bezier(.25, .8, .35, 1), transform .6s cubic-bezier(.25, .8, .35, 1);
}

.offer__head.in-view {
  opacity: 1;
  transform: translateY(0);
}

.offer__l1 {
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  transform: translateX(-48px)
}

.offer__script {
  font-size: 64px;
  margin: -14px 0 -22px;
  transform: translateX(-4px);
  position: relative;
  z-index: 2;
  line-height: 90%;
  transform: translate(1px, 2px);
}

.offer__l2 {
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  transform: translateX(54px);
  line-height: 80%;

}

.offer__l3 {
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  margin-top: 2px
}

.offer__money {
  display: inline-block;
  width: 34px;
  vertical-align: -4px;
  margin-left: 2px
}

.price {
  display: flex;
  gap: 10px;

}

.price-wrapper {
  background: linear-gradient(180deg, var(--card-d1), var(--card-d2));
  border-radius: 10px;
  padding: 10px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .5s cubic-bezier(.25, .8, .35, 1) .1s, transform .5s cubic-bezier(.25, .8, .35, 1) .1s;
}

.price-wrapper.in-view {
  opacity: 1;
  transform: translateY(0);
}

.price__box {
  flex: 1;
  min-height: 99px;
  
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000207;
  gap: 6px
}

.price__label {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--muted)
}

.price__old {
  font-size: 36px;
  color: var(--muted);
  position: relative
}

.price__old::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 3px;
  background: var(--muted);
  transform: rotate(-8deg)
}

.price__new {
  font-size: 36px;
  color: #fff
}

.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #000207;
  border-radius: 10px;
  padding: 14px 0;
  margin-top: 14px
}

.timer__unit {
  font-size: 36px;
  color: var(--coral);
  min-width: 56px;
  text-align: center
}

.timer__sep {
  font-size: 36px;
  color: var(--coral);
  font-family: var(--f-display)
}

.offer .cta {
  margin-top: 14px
}

.manager {
  background: var(--dark);
  padding: 0 var(--pad) 28px
}

.manager__card {
  background: #fff;
  border-radius: 10px;
  padding: 26px 24px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .10);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .5s cubic-bezier(.25, .8, .35, 1), transform .5s cubic-bezier(.25, .8, .35, 1);
}

.manager__card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.manager__title {
  font-size: 48px;
  color: var(--dark)
}

.manager__sub {
  font-size: 14px;
  color: rgba(0, 0, 0, .5);
  margin-top: 8px
}

.manager__img {
  width: 255px;
  margin: 16px auto 0
}

.manager .btn--dark {
  color: #fff;
  position: relative;
  background: radial-gradient(68.24% 50% at 50% 50%, #474747 0%, #1f1f1f 100%);
  z-index: 2
}

.pay-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* окремий шар — менше репейнту сторінки під час відкриття */
  transform: translateZ(0);
}

.pay-sheet[hidden] {
  display: none;
}

.pay-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 2, 7, 0.65);
  opacity: 0;
  transition: opacity .22s ease;
  /* без blur — blur на iOS дуже дорогий */
}

.pay-sheet__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  max-height: min(92dvh, 92vh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: linear-gradient(180deg, var(--card-d1), var(--card-d2));
  border-radius: 18px 18px 0 0;
  padding: 24px 18px calc(22px + env(safe-area-inset-bottom, 0px));
  transform: translate3d(0, 110%, 0);
  transition: transform .26s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  contain: layout style;
}

.pay-sheet.is-open .pay-sheet__backdrop {
  opacity: 1;
}

.pay-sheet.is-open .pay-sheet__panel {
  transform: translate3d(0, 0, 0);
}

.pay-sheet__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #000207;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-sheet__eyebrow {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 243, 246, 0.45);
  margin: 0 0 10px;
  text-align: center;
}

.pay-sheet__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  padding-right: 0;
  margin: 0;
  text-align: center;
}

.pay-sheet__title .script {
  display: inline-block;
  font-size: 0.78em;
  text-transform: none;
  line-height: 1;
}

.pay-sheet__sub {
  margin: 12px auto 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(237, 243, 246, 0.62);
  max-width: 28em;
  text-align: center;
}

.pay-sheet__price {
  margin: 28px 0 0;
  text-align: center;
}

.pay-sheet__price-label {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 243, 246, 0.45);
}

.pay-sheet__price-value {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 52px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--coral);
}

.pay-sheet__price-cur {
  font-family: var(--f-body);
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(237, 243, 246, 0.72);
  vertical-align: 0.35em;
  margin-left: 2px;
}

.pay-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pay-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pay-step[hidden] {
  display: none;
}

.pay-review__lead {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.4;
  color: rgba(237, 243, 246, 0.78);
  text-align: center;
}

.pay-review {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pay-review__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pay-review__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pay-review__row dt {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.pay-review__row dd {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  word-break: break-word;
}

.pay-review__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-review__edit {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(237, 243, 246, 0.72);
  font-family: var(--f-body);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 8px;
}

.pay-review__edit:hover,
.pay-review__edit:focus-visible {
  color: #fff;
}

.pay-methods {
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.pay-methods__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pay-method {
  position: relative;
  display: block;
  cursor: pointer;
}

.pay-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pay-method__face {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 2, 7, 0.55);
  color: #fff;
  font-family: var(--f-body);
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.pay-method__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.pay-method__name {
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
}

.pay-method__hint {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.pay-method__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.pay-method__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  line-height: 0;
}

.pay-method__icon svg {
  display: block;
  height: 100%;
  width: auto;
  vertical-align: middle;
}

.pay-method__icon--card {
  height: 18px;
}

.pay-method__icon--gpay,
.pay-method__icon--apay {
  height: 22px;
  width: 22px;
}

.pay-method input:focus-visible + .pay-method__face {
  border-color: rgba(250, 73, 74, 0.55);
  box-shadow: 0 0 0 3px rgba(250, 73, 74, 0.12);
}

.pay-method input:checked + .pay-method__face {
  border-color: rgba(250, 73, 74, 0.8);
  background: rgba(250, 73, 74, 0.1);
  box-shadow: inset 0 0 0 1px rgba(250, 73, 74, 0.2);
}

.pay-field {
  display: block;
  text-align: left;
}

.pay-field__label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pay-field__input {
  width: 100%;
  height: 52px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #000207;
  color: #fff;
  font-family: var(--f-body);
  font-size: 16px; 
  line-height: 1.2;
  padding: 0 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.pay-field__input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.pay-field__input:focus {
  border-color: rgba(250, 73, 74, 0.55);
  box-shadow: 0 0 0 3px rgba(250, 73, 74, 0.12);
}

.pay-field.is-invalid .pay-field__input {
  border-color: var(--coral);
}

.pay-field__err {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--coral);
}

.pay-form__submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  font-family: var(--f-body);
}

.pay-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.pay-form__hint {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(237, 243, 246, 0.4);
  text-align: center;
  margin-top: 2px;
}

.pay-form__hint a {
  color: rgba(237, 243, 246, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

html.pay-sheet-open,
html.pay-sheet-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

html.pay-sheet-open .sticky-cta {
  visibility: hidden;
  pointer-events: none;
}

.footer {
  background: var(--dark);
  padding: 26px 25px 40px;
  font-size: 14px;
  color: #fff
}

.footer__row {
  display: flex;
  justify-content: space-between;
  opacity: .5;
  margin-bottom: 10px
}

.footer__row a {
  color: rgba(255, 255, 255, .85)
}

.footer__ig {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  gap: 5px;
}

.footer__ig-icon {
  display: block;
  flex-shrink: 0;
}

.footer__rule {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, .18);
  margin: 20px 0
}

.footer__row--legal a {
  text-decoration: underline;
  text-underline-offset: 2px
}

.footer__copy {
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  margin-top: 16px
}

@media (min-width:440px) {
  body {
    background: #08080c
  }
}

.tear--down-2 {
  z-index: 2;
  position: absolute;
  top: -20px;
  left: 0;
}

/* iPhone / touch: менше GPU-роботи під час скролу й відкриття шиту */
@media (hover: none), (max-width: 480px) {
  .hero__em--money,
  .hero__em--palette,
  .hero__em--brush,
  .forwhom__q {
    animation: none !important;
  }

  .hero__amb,
  .after__amb,
  .offer__amb {
    filter: blur(40px) !important;
    opacity: 0.5;
  }

  .author__glow {
    filter: blur(28px) !important;
  }

  .hero__glow-core,
  .author__glow-core {
    filter: blur(10px) !important;
  }

  .hero__boy {
    filter: none;
  }

  .program,
  .forwhom,
  .after,
  .author,
  .offer,
  .manager {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }

  .hero__title .letter {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hl {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero .selbox {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__cta,
  .topbar {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .pay-sheet__backdrop,
  .pay-sheet__panel {
    transition: none !important;
  }
}