.landing-page {
  --lp-bg: #0E0F0F;
  --lp-accent: #C8FE02;
  --lp-muted: #888888;
  --lp-header-h: 80px;
  --lp-frame: 1440;
  --lp-gutter: clamp(65px, calc(65px + (100vw - 1440px) * 0.1), 130px);
  background: var(--lp-bg);
}

.landing-page .nav {
  padding: 0;
  border-bottom: 1px solid var(--border-default);
  background: var(--lp-bg);
}
.landing-page .nav.scrolled {
  padding: 0;
  background: rgba(14, 15, 15, 0.88);
}
.landing-page .nav__inner {
  height: var(--lp-header-h);
  max-width: none;
  padding: 0 var(--lp-gutter);
}
.landing-page .nav__logo img {
  width: 128px;
  height: 34px;
}
.landing-page .nav__links {
  gap: 30px;
}
.lp-nav__group {
  display: flex;
  align-items: center;
  gap: 25px;
}
.landing-page .lp-nav__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.7px;
  text-transform: none;
  color: var(--text-primary);
}
.landing-page .lp-nav__cta {
  min-width: 186px;
  height: 40px;
  padding: 0 25px;
  justify-content: center;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.45px;
  color: #0A0A0A;
}

.lp-hero {
  position: relative;
  min-height: max(901px, 100svh);
  padding-top: var(--lp-header-h);
  overflow: hidden;
  isolation: isolate;
}

.lp-hero__glow {
  position: absolute;
  top: -17px;
  right: 4.5%;
  left: auto;
  width: min(55%, 900px);
  height: 772px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(closest-side,
      rgba(146, 160, 155, 0.26) 0%,
      rgba(112, 126, 122, 0.16) 42%,
      rgba(70, 80, 78, 0.07) 66%,
      rgba(14, 15, 15, 0) 82%);
  filter: blur(80px);
}

.lp-hero__media {
  position: absolute;
  top: max(123px, 50% - 393px);
  right: 0;
  left: auto;
  width: clamp(980px, 66%, 1420px);
  height: auto;
  aspect-ratio: 1258 / 787;
  z-index: 2;
}
.lp-hero__stage {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%),
    linear-gradient(0deg, transparent 0%, #000 9%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%),
    linear-gradient(0deg, transparent 0%, #000 9%);
  mask-composite: intersect;
}
.lp-hero__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  will-change: opacity;
}
.lp-hero__shot.is-active {
  opacity: 1;
}

.lp-hero__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 223px;
  height: 901px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(270deg, #0C0D0D 0%, #0E0F0F 100%);
  filter: blur(6.05px);
}

.lp-hero__inner {
  position: relative;
  z-index: 4;
  padding: 0 var(--lp-gutter);
}

.lp-breadcrumbs {
  padding-top: 30px;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  color: var(--lp-muted);
}
.lp-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.lp-breadcrumbs li + li::before {
  content: '/';
  margin: 0 4px;
  color: var(--lp-muted);
}
.lp-breadcrumbs a {
  color: var(--lp-muted);
  transition: color var(--duration-fast) ease;
}
.lp-breadcrumbs a:hover {
  color: var(--text-primary);
}
.lp-breadcrumbs [aria-current='page'] {
  color: var(--text-primary);
}

.lp-hero__content {
  position: relative;
  padding-top: 30px;
  max-width: 1126px;
}

.lp-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 106px;
  line-height: 96px;
  letter-spacing: normal;
  color: var(--text-primary);
}
.lp-hero__title-accent {
  display: block;
  color: var(--lp-accent);
}

.lp-hero__lead {
  margin-top: 30px;
  max-width: 720px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.lp-hero__terms {
  margin-top: 40px;
}
.lp-terms__row {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 36px;
}
.lp-terms__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 35.2px;
  letter-spacing: -0.64px;
  color: var(--text-primary);
}
.lp-terms__divider {
  width: 1px;
  height: 32px;
  background: var(--lp-muted);
}
.lp-terms__note {
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.lp-hero__cta {
  margin-top: 40px;
}
.landing-page .lp-hero__cta .btn-primary {
  width: 345px;
  max-width: 100%;
  height: 54px;
  padding: 0 18px;
  justify-content: center;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.45px;
}
.lp-hero__cta-note {
  margin-top: 10px;
  max-width: 353px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 18.85px;
  color: rgba(255, 255, 255, 0.56);
}


@media (max-width: 1439px) {
  .lp-hero__glow {
    height: 86%;
  }
  .lp-hero__scrim {
    width: 15.5%;
    height: 100%;
  }
}

@media (max-width: 1279px) {
  .lp-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-bottom: clamp(48px, 6vw, 80px);
  }
  .lp-hero__inner {
    order: 1;
  }
  .lp-hero__media {
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: clamp(40px, 5vw, 64px);
  }
  .lp-hero__scrim {
    display: none;
  }
  .lp-hero__glow {
    top: -8%;
    left: 30%;
    width: 80%;
    height: 60%;
  }
  .lp-hero__title {
    font-size: clamp(44px, 7.4vw, 92px);
    line-height: 0.92;
  }
  .lp-hero__lead {
    font-size: clamp(17px, 1.9vw, 22px);
    line-height: 1.35;
    max-width: 60ch;
  }
  .lp-hero__lead br {
    display: none;
  }
  .lp-hero__inner {
    padding: 0 var(--container-padding);
  }
  .landing-page .nav__inner {
    padding: 0 var(--container-padding);
  }
}

@media (max-width: 768px) {
  .landing-page .nav__inner {
    height: 64px;
  }
  .landing-page .nav__logo img {
    width: 110px;
    height: 29px;
  }
  .lp-hero {
    padding-top: 64px;
  }
  .lp-breadcrumbs {
    padding-top: 20px;
  }
  .lp-hero__content {
    padding-top: 22px;
  }
  .lp-terms__value {
    font-size: clamp(24px, 6.4vw, 32px);
    line-height: 1.1;
  }
  .lp-terms__row {
    gap: clamp(16px, 4vw, 30px);
  }
  .lp-terms__note {
    font-size: 17px;
  }
  .landing-page .lp-hero__cta .btn-primary {
    width: 100%;
    padding: 0 14px;
  }
  .lp-hero__cta-note {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .landing-page {
    --lp-gutter: 18px;
  }

  .lp-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }
  .lp-hero__inner {
    display: contents;
  }
  .lp-hero__content {
    display: contents;
  }
  .lp-breadcrumbs,
  .lp-hero__title,
  .lp-hero__lead,
  .lp-hero__terms,
  .lp-hero__cta {
    padding-left: var(--lp-gutter);
    padding-right: var(--lp-gutter);
  }
  .landing-page .nav__inner {
    padding: 0 var(--lp-gutter);
  }
  .lp-breadcrumbs  { order: 1; }
  .lp-hero__title  { order: 2; margin-top: 18px; }
  .lp-hero__lead   { order: 3; }
  .lp-hero__media  { order: 4; }
  .lp-hero__terms  { order: 5; }
  .lp-hero__cta    { order: 6; }

  .lp-hero__media {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 118%;
    max-width: none;
    margin-top: clamp(6px, 2vw, 14px);
    margin-bottom: clamp(-26px, -5vw, -14px);
    margin-left: -17%;
    margin-right: -6%;
    aspect-ratio: 1258 / 660;
  }
  .lp-hero__stage {
    -webkit-mask-image: linear-gradient(0deg, transparent 0%, #000 22%);
    -webkit-mask-composite: source-over;
    mask-image: linear-gradient(0deg, transparent 0%, #000 22%);
    mask-composite: add;
  }
  .lp-hero__shot {
    object-fit: cover;
    object-position: 47% 44%;
  }
  .lp-hero__glow {
    top: 26%;
    left: 22%;
    width: 92%;
    height: 34%;
  }

  .lp-hero__terms {
    margin-top: clamp(20px, 5vw, 30px);
  }
  .lp-hero__cta {
    margin-top: clamp(20px, 5vw, 28px);
  }

}

@media (max-width: 359px) {
  .lp-hero__media {
    width: 112%;
    margin-left: -5%;
    margin-right: -7%;
  }
}

@media (max-width: 374px) {
  .landing-page .lp-hero__cta .btn-primary {
    padding: 0 12px;
    gap: 8px;
    font-size: 13.5px;
  }
  .lp-terms__row {
    height: auto;
    flex-wrap: wrap;
    gap: 6px 14px;
  }
  .lp-terms__divider {
    display: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  .lp-hero__shot {
    transition: none;
  }
}

.lp-works {
  --work-active-w: 798px;
  --work-closed-w: 254px;
  --work-h: calc((100vw - var(--lp-gutter) * 2) * 0.3434 + 101px);
  --work-ease: cubic-bezier(0.65, 0, 0.2, 1);
  --work-dur: 820ms;
  position: relative;
  background: var(--lp-bg);
  padding: 50px 0 89px;
  scroll-margin-top: var(--lp-header-h);
}
.lp-works__inner {
  padding: 0 var(--lp-gutter);
}

.lp-works__head {
  display: grid;
  grid-template-columns: minmax(0, 726px) minmax(0, 560px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 2vw, 80px);
  min-height: 124px;
}
.lp-works__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 65px;
  line-height: 59px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.lp-works__title-accent {
  display: block;
  color: var(--lp-accent);
}
.lp-works__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.lp-works__accordion {
  position: relative;
  margin-top: 50px;
  height: var(--work-h);
  border: 1px solid var(--border-default);
  overflow: hidden;
}

.lp-works__accordion {
  display: flex;
}
.lp-work {
  position: relative;
  height: 100%;
  flex: 0 0 var(--work-closed-w);
  border-right: 1px solid var(--border-default);
  overflow: hidden;
  background: var(--lp-bg);
  transition: flex-basis var(--work-dur) var(--work-ease);
  will-change: flex-basis;
}
.lp-work:last-child {
  border-right: 0;
}
.lp-work.is-active {
  flex-basis: var(--work-active-w);
}

.lp-work__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: bottom var(--work-dur) var(--work-ease);
}
.lp-work__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease-in-out, transform 480ms var(--work-ease);
}
.lp-work__img--site {
  object-position: left top;
  opacity: 0;
}
.lp-work__img--preview {
  object-position: center;
  opacity: 1;
}
.lp-work.is-active .lp-work__img--site {
  opacity: 1;
}
.lp-work.is-active .lp-work__img--preview {
  opacity: 0;
}
.lp-work.is-active .lp-work__media {
  bottom: 100px;
}
.lp-work.is-closing .lp-work__img--preview,
.lp-work.is-closing .lp-work__img--site {
  transition-delay: 0ms;
}

.lp-work__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 230px;
  background: linear-gradient(180deg, rgba(14, 15, 15, 0) 0%, rgba(14, 15, 15, 0.2) 38%, #0E0F0F 100%);
  transition: opacity 450ms var(--work-ease);
}
.lp-work.is-active .lp-work__scrim {
  opacity: 0;
}

.lp-work__line {
  position: absolute;
  left: 0;
  bottom: 99px;
  height: 2px;
  width: calc(var(--work-active-w) - 2px);
  background: var(--lp-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  opacity: 0;
  transition: transform 420ms var(--work-ease), opacity 160ms linear;
}
.lp-work.is-active .lp-work__line {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 320ms, 320ms;
}

.lp-work__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 99px;
  padding: 0 30px;
}
.lp-work:not(.is-active) .lp-work__bar {
  align-items: flex-end;
  padding: 0 20px 20px;
  min-height: 0;
}

.lp-work__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  transition: transform 280ms var(--work-ease);
}
.lp-work__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 20px;
  color: var(--text-primary);
  white-space: nowrap;
}
.lp-work.is-active .lp-work__name {
  font-size: 32px;
}
.lp-work__cat {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  transition: color 280ms ease;
}
.lp-work.is-active .lp-work__cat {
  line-height: 14px;
  white-space: nowrap;
}
.lp-work:not(.is-active) .lp-work__cat {
  max-width: 174px;
  min-height: 30px;
}

.lp-work.is-active .lp-work__copy {
  animation: lpWorkCopyIn 300ms var(--work-ease) 360ms both;
}
@keyframes lpWorkCopyIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lp-work.is-closing .lp-work__copy,
.lp-work.is-closing .lp-work__link {
  animation: lpWorkCopyOut 180ms linear both;
}
.lp-work.is-closing .lp-work__line {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms linear, transform 180ms var(--work-ease);
  transition-delay: 0ms;
}
@keyframes lpWorkCopyOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.lp-work__link {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  width: 164px;
  height: 40px;
  background: #FFFFFF;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.45px;
  color: #0A0A0A;
  white-space: nowrap;
  transition: background 280ms ease, transform 280ms var(--work-ease);
}
.lp-work.is-active .lp-work__link {
  display: inline-flex;
  animation: lpWorkCopyIn 300ms var(--work-ease) 440ms both;
}
.lp-work.is-closing .lp-work__link {
  display: inline-flex;
  pointer-events: none;
}
.lp-work__link:hover {
  background: var(--lp-accent);
  transform: translateY(-2px);
}
.lp-work__link-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #0A0A0A;
  flex-shrink: 0;
}

.lp-work__open {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lp-work.is-active .lp-work__open {
  display: none;
}
.lp-work.is-closing .lp-work__open {
  animation: lpWorkFadeIn 240ms linear 400ms both;
}
@keyframes lpWorkFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lp-work__open svg {
  width: 30px;
  height: 30px;
  overflow: visible;
  transition: transform 250ms var(--work-ease), filter 250ms ease;
}
.lp-work__open circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1;
  transition: stroke 250ms ease;
}
.lp-work__open path {
  stroke: #FFFFFF;
  stroke-width: 1.4;
  stroke-linecap: round;
  fill: none;
  transition: stroke 250ms ease;
}

@media (hover: hover) {
  .lp-work:not(.is-active) {
    cursor: pointer;
  }
  .lp-work:not(.is-active):hover .lp-work__img--preview {
    transform: scale(1.025);
  }
  .lp-work:not(.is-active):hover .lp-work__scrim {
    opacity: 0.88;
  }
  .lp-work:not(.is-active):hover .lp-work__copy {
    transform: translateY(-2px);
  }
  .lp-work:not(.is-active):hover .lp-work__cat {
    color: #A0A0A0;
  }
  .lp-work:not(.is-active):hover .lp-work__open svg {
    transform: scale(1.0667);
    filter: drop-shadow(0 0 6px rgba(200, 254, 2, 0.25));
  }
  .lp-work:not(.is-active):hover .lp-work__open circle,
  .lp-work__open:focus-visible circle {
    stroke: var(--lp-accent);
  }
  .lp-work:not(.is-active):hover .lp-work__open path,
  .lp-work__open:focus-visible path {
    stroke: var(--lp-accent);
  }
  .lp-work.is-active:hover .lp-work__img--site {
    transform: scale(1.01);
    transition-duration: 560ms;
  }
}

.lp-works__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  margin-top: 30px;
}
.lp-works__dot {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  cursor: pointer;
  transition:
    width 470ms var(--work-ease),
    background-color 470ms ease,
    transform 250ms var(--work-ease);
}
.lp-works__dot.is-active {
  width: 52px;
  background: var(--lp-accent);
}
.lp-works__dot-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
@media (hover: hover) {
  .lp-works__dot:not(.is-active):hover {
    background: var(--lp-accent);
    transform: scale(1.2);
  }
}

.js-enabled .lp-works:not(.is-revealed) [data-works-reveal],
.js-enabled .lp-works:not(.is-revealed) .lp-work,
.js-enabled .lp-works:not(.is-revealed) .lp-works__dots {
  opacity: 0;
}
.lp-works.is-revealed [data-works-reveal] {
  animation: lpWorksRise 680ms var(--work-ease) both;
}
.lp-works.is-revealed [data-works-reveal='lead'] {
  animation-delay: 90ms;
  --works-rise: 12px;
}
.lp-works.is-revealed .lp-work {
  animation: lpWorksFade 620ms var(--work-ease) both;
  animation-delay: calc(180ms + var(--work-order) * 70ms);
}
.lp-works.is-revealed .lp-works__dots {
  animation: lpWorksFade 520ms var(--work-ease) 430ms both;
}
@keyframes lpWorksRise {
  from { opacity: 0; transform: translateY(var(--works-rise, 18px)); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpWorksFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (max-width: 1439px) {
  .lp-works {
    --work-active-w: 60.9%;
    --work-closed-w: 19.4%;
  }
  .lp-works__title {
    font-size: clamp(34px, 4.5vw, 65px);
    line-height: 0.91;
  }
  .lp-works__lead {
    font-size: clamp(17px, 1.7vw, 24px);
    line-height: 1.3;
  }
  .lp-work.is-active .lp-work__name {
    font-size: clamp(22px, 2.2vw, 32px);
  }
  .lp-work__line {
    width: 100%;
  }
  .lp-work__bar {
    padding: 0 20px;
  }
}

@media (max-width: 1023px) {
  .lp-works__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lp-works__lead {
    max-width: 560px;
  }
  .lp-works__lead br {
    display: none;
  }
  .lp-works {
    padding: clamp(48px, 9vw, 80px) 0;
  }
  .lp-works__accordion {
    position: static;
    height: auto;
    border: 0;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .lp-work,
  .lp-work.is-active {
    position: relative;
    flex: 0 0 auto;
    order: 0;
    width: 100%;
    height: auto;
    transform: none;
    border: 1px solid var(--border-default);
    transition: none;
  }
  .lp-work__media {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10;
  }
  .lp-work.is-active .lp-work__media {
    bottom: auto;
  }
  .lp-work .lp-work__img--site {
    opacity: 1;
    transition-delay: 0ms;
  }
  .lp-work .lp-work__img--preview,
  .lp-work__scrim {
    opacity: 0;
  }
  .lp-work__line {
    position: relative;
    bottom: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }
  .lp-work__bar {
    position: relative;
    flex-wrap: wrap;
    gap: 16px;
    min-height: 0;
    padding: 20px;
  }
  .lp-work:not(.is-active) .lp-work__bar {
    align-items: center;
    padding: 20px;
  }
  .lp-work .lp-work__name {
    font-size: 22px;
    white-space: normal;
  }
  .lp-work.is-active .lp-work__name {
    font-size: 22px;
  }
  .lp-work .lp-work__cat,
  .lp-work:not(.is-active) .lp-work__cat {
    max-width: none;
    white-space: normal;
  }
  .lp-work .lp-work__link {
    display: inline-flex;
    animation: none;
  }
  .lp-work .lp-work__open {
    display: none;
  }
  .lp-work .lp-work__copy {
    animation: none;
  }
  .lp-works__dots {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-work,
  .lp-work__img,
  .lp-work__line,
  .lp-work__scrim,
  .lp-works__dot,
  .lp-work__media {
    transition-duration: 1ms;
  }
  .lp-works.is-revealed [data-works-reveal],
  .lp-works.is-revealed .lp-work,
  .lp-works.is-revealed .lp-works__dots,
  .lp-work.is-active .lp-work__copy,
  .lp-work.is-active .lp-work__link {
    animation-duration: 1ms;
    animation-delay: 0ms;
  }
}


.lp-steps {
  --step-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --step-dur: 850ms;
  --step-h: 875px;
  --steps-count: 6;
  position: relative;
  background: var(--lp-bg);
  height: max(var(--step-h), 100svh);
}

.lp-steps__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: var(--step-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--lp-header-h);
}
.lp-steps__inner {
  position: relative;
  width: 100%;
  height: var(--step-h);
  max-height: 100svh;
  padding: 50px var(--lp-gutter) 50px;
  display: flex;
  flex-direction: column;
}

.lp-steps__title {
  flex: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 65px;
  line-height: 59px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.lp-steps__title-accent {
  display: block;
  color: var(--lp-accent);
}

.lp-steps__stage {
  position: relative;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 490px 800px;
  justify-content: space-between;
  gap: 20px;
  align-content: start;
  padding-top: 56px;
  min-height: 0;
}

.lp-steps__copy {
  position: relative;
  width: 490px;
  max-width: 100%;
}

.lp-steps__counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
  height: 34px;
  margin-bottom: 30px;
}
.lp-steps__counter-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  color: var(--lp-accent);
  will-change: transform, opacity, filter;
}
.lp-steps__counter-num.is-out-down { animation: lpNumOutDown 380ms var(--step-ease) both; }
.lp-steps__counter-num.is-in-down  { animation: lpNumInDown 420ms var(--step-ease) both; }
.lp-steps__counter-num.is-out-up   { animation: lpNumOutUp 380ms var(--step-ease) both; }
.lp-steps__counter-num.is-in-up    { animation: lpNumInUp 420ms var(--step-ease) both; }
@keyframes lpNumOutDown {
  to { transform: translateY(-22px); opacity: 0; filter: blur(3px); }
}
@keyframes lpNumInDown {
  from { transform: translateY(22px); opacity: 0; filter: blur(3px); }
  to   { transform: translateY(0); opacity: 1; filter: blur(0); }
}
@keyframes lpNumOutUp {
  to { transform: translateY(22px); opacity: 0; filter: blur(3px); }
}
@keyframes lpNumInUp {
  from { transform: translateY(-22px); opacity: 0; filter: blur(3px); }
  to   { transform: translateY(0); opacity: 1; filter: blur(0); }
}
.lp-steps__counter-total {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 18px;
  color: var(--lp-muted);
}

.lp-steps__panels {
  position: relative;
  min-height: 340px;
}
.lp-step {
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}
.lp-step.is-active {
  position: relative;
  visibility: visible;
  pointer-events: auto;
}

.lp-step__title {
  margin-bottom: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  color: var(--text-primary);
}
.lp-step__title span {
  display: block;
  overflow: hidden;
}
.lp-step__title span > i {
  display: block;
  font-style: inherit;
  will-change: transform, opacity;
}

.lp-step__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  will-change: transform, opacity, filter;
}

.lp-step.is-entering .lp-step__title span > i {
  animation: lpLineIn 500ms var(--step-ease) both;
  animation-delay: calc(var(--line-i, 0) * 55ms);
}
.lp-step.is-entering .lp-step__text {
  animation: lpTextIn 560ms var(--step-ease) 90ms both;
}
.lp-steps.is-up .lp-step.is-entering .lp-step__title span > i {
  animation-name: lpLineInUp;
}
.lp-steps.is-up .lp-step.is-entering .lp-step__text {
  animation-name: lpTextInUp;
}
@keyframes lpLineIn {
  from { transform: translateY(105%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes lpLineInUp {
  from { transform: translateY(-105%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes lpTextIn {
  from { transform: translateY(18px); opacity: 0; filter: blur(4px); }
  to   { transform: translateY(0); opacity: 1; filter: blur(0); }
}
@keyframes lpTextInUp {
  from { transform: translateY(-18px); opacity: 0; filter: blur(4px); }
  to   { transform: translateY(0); opacity: 1; filter: blur(0); }
}

.lp-step__extra {
  margin-top: 30px;
  width: 490px;
  max-width: 100%;
}
.lp-step.is-entering .lp-step__extra {
  animation: lpExtraIn 520ms var(--step-ease) 320ms both;
}
@keyframes lpExtraIn {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.lp-step__extra h4 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: var(--lp-accent);
}
.lp-step__extra p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: var(--lp-muted);
}

.lp-steps__media {
  position: relative;
  justify-self: end;
  width: 800px;
  max-width: 100%;
}

.lp-steps__status {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 34px;
  opacity: 0;
  pointer-events: none;
  font-family: var(--font-heading);
  color: var(--text-primary);
}
.lp-steps__status.is-visible {
  opacity: 1;
  animation: lpStatusIn 420ms var(--step-ease) both;
}
@keyframes lpStatusIn {
  from { transform: translateY(8px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.lp-steps__status-url {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
}
.lp-steps__status-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--lp-accent);
}
.lp-steps__status.is-visible .lp-steps__status-dot {
  animation: lpStatusPulse 480ms var(--step-ease) 320ms 1 both;
}
@keyframes lpStatusPulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.lp-steps__status-label {
  font-weight: 600;
  font-size: 20px;
  line-height: 34px;
}

.lp-steps__frames {
  position: relative;
  width: 100%;
  aspect-ratio: 800 / 500;
}
.lp-steps__frames {
  transform-origin: 0 0;
  transform: translate(var(--frames-tx, 0), var(--frames-ty, 0))
             scale(var(--frames-sx, 1), var(--frames-sy, 1));
  transition: transform var(--step-dur) var(--step-ease);
}
.lp-steps.is-wide .lp-steps__frames {
  --frames-tx: -8.625%;
  --frames-ty: -11.125%;
  --frames-sx: 1.08625;
  --frames-sy: 1.228;
}

.lp-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity, filter;
}
.lp-frame.is-active {
  opacity: 1;
  visibility: visible;
}
.lp-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.lp-frame.is-entering {
  animation: lpFrameIn var(--step-dur) var(--step-ease) both;
}
.lp-frame.is-leaving {
  animation: lpFrameOut 620ms var(--step-ease) both;
}
.lp-steps.is-up .lp-frame.is-entering { animation-name: lpFrameInUp; }
.lp-steps.is-up .lp-frame.is-leaving  { animation-name: lpFrameOutUp; }

@keyframes lpFrameIn {
  from {
    opacity: 0; transform: translateY(20px) scale(1.025); filter: blur(6px);
    -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 0%);
    mask-image: linear-gradient(0deg, #000 0%, transparent 0%);
  }
  60% {
    -webkit-mask-image: linear-gradient(0deg, #000 100%, transparent 140%);
    mask-image: linear-gradient(0deg, #000 100%, transparent 140%);
  }
  to {
    opacity: 1; transform: translateY(0) scale(1); filter: blur(0);
    -webkit-mask-image: linear-gradient(0deg, #000 200%, transparent 240%);
    mask-image: linear-gradient(0deg, #000 200%, transparent 240%);
  }
}
@keyframes lpFrameInUp {
  from {
    opacity: 0; transform: translateY(-20px) scale(1.025); filter: blur(6px);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 0%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 0%);
  }
  to {
    opacity: 1; transform: translateY(0) scale(1); filter: blur(0);
    -webkit-mask-image: linear-gradient(180deg, #000 200%, transparent 240%);
    mask-image: linear-gradient(180deg, #000 200%, transparent 240%);
  }
}
@keyframes lpFrameOut {
  from { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  to   { opacity: 0.2; transform: translateY(-12px) scale(0.985); filter: blur(4px); }
}
@keyframes lpFrameOutUp {
  from { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  to   { opacity: 0.2; transform: translateY(12px) scale(0.985); filter: blur(4px); }
}

.lp-steps__frames::after {
  content: '';
  position: absolute;
  inset-inline: -4%;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, var(--lp-accent) 0 2px, transparent 2px);
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  z-index: 3;
}
.lp-steps.is-transition .lp-steps__frames::after {
  animation: lpEdgeSweep var(--step-dur) var(--step-ease) both;
}
.lp-steps.is-transition.is-up .lp-steps__frames::after {
  animation-name: lpEdgeSweepUp;
}
@keyframes lpEdgeSweep {
  0%   { transform: translateY(100%); opacity: 0; }
  25%  { opacity: 0.5; }
  100% { transform: translateY(-2%); opacity: 0; }
}
@keyframes lpEdgeSweepUp {
  0%   { transform: translateY(0); opacity: 0; }
  25%  { opacity: 0.5; }
  100% { transform: translateY(102%); opacity: 0; }
}

.lp-frame--seo img { display: none; }
.lp-seo {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 4px;
}
.lp-seo__group { margin-bottom: 34px; }
.lp-seo__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--lp-muted);
  margin-bottom: 12px;
}
.lp-seo__value {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
}
.lp-seo__value--title { font-size: 40px; line-height: 40px; }
.lp-seo__value--desc  { font-size: 25px; line-height: 40px; max-width: 560px; }
.lp-seo__rule {
  display: block;
  width: var(--rule-w, 390px);
  max-width: 100%;
  height: 3px;
  margin: 6px 0 0 4px;
  background: var(--lp-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.lp-seo__arrow {
  align-self: start;
  margin: 6px 0 6px calc(529px / 2 - 8px);
  opacity: 0;
  overflow: visible;
}
.lp-seo__snippet { margin-top: 6px; }

.lp-seo__arrow-line,
.lp-seo__arrow-head {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-seo__arrow-line {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.lp-seo__arrow-head {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
}
.lp-frame--seo.is-active .lp-seo__arrow-line {
  animation: lpArrowLine 3600ms var(--step-ease) infinite both;
}
.lp-frame--seo.is-active .lp-seo__arrow-head {
  animation: lpArrowHead 3600ms var(--step-ease) infinite both;
}
@keyframes lpArrowLine {
  0%   { stroke-dashoffset: 48; }
  22%  { stroke-dashoffset: 0; }
  88%  { stroke-dashoffset: 0; opacity: 1; }
  96%  { stroke-dashoffset: 0; opacity: 0; }
  97%  { stroke-dashoffset: 48; opacity: 0; }
  100% { stroke-dashoffset: 48; opacity: 1; }
}
@keyframes lpArrowHead {
  0%,  20% { stroke-dashoffset: 24; }
  32%      { stroke-dashoffset: 0; }
  88%      { stroke-dashoffset: 0; opacity: 1; }
  96%      { stroke-dashoffset: 0; opacity: 0; }
  97%      { stroke-dashoffset: 24; opacity: 0; }
  100%     { stroke-dashoffset: 24; opacity: 1; }
}
.lp-seo__snippet-title {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 30px;
  color: #8BB4DD;
  margin-top: 10px;
}
.lp-seo__snippet-url {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 17px;
  color: var(--text-primary);
}
.lp-seo__snippet-desc {
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #C5C5C6;
}

.lp-frame--seo.is-entering [data-seo-part],
.lp-frame--seo.is-entering .lp-seo__arrow {
  animation: lpSeoPart 420ms var(--step-ease) both;
}
.lp-frame--seo.is-entering [data-seo-part='1'] { animation-delay: 120ms; }
.lp-frame--seo.is-entering [data-seo-part='2'] { animation-delay: 260ms; }
.lp-frame--seo.is-entering .lp-seo__arrow      { animation-delay: 400ms; }
.lp-frame--seo.is-entering [data-seo-part='3'] { animation-delay: 480ms; }
@keyframes lpSeoPart {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-frame--seo.is-active .lp-seo__rule {
  animation: lpRuleDraw 420ms var(--step-ease) both;
}
.lp-frame--seo.is-active [data-seo-part='1'] .lp-seo__rule { animation-delay: 260ms; }
.lp-frame--seo.is-active [data-seo-part='2'] .lp-seo__rule { animation-delay: 400ms; }
@keyframes lpRuleDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.lp-frame--seo.is-active .lp-seo__arrow { opacity: 1; }

.lp-steps__nav {
  flex: none;
  margin-top: auto;
  padding-top: 24px;
}
.lp-steps__nav > .lp-steps__track { margin-bottom: 9px; }
.lp-steps__track {
  position: relative;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--lp-muted);
  overflow: hidden;
}
.lp-steps__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: calc(100% / var(--steps-count));
  border-radius: var(--radius-pill);
  background: var(--lp-accent);
  transform: translateX(calc(var(--bar-i, 0) * 100%));
  transition: transform 700ms var(--step-ease);
}
.lp-steps__tabs {
  display: grid;
  grid-template-columns: repeat(var(--steps-count), 1fr);
  margin-top: 9px;
}
.lp-steps__tab {
  position: relative;
  padding: 0 0 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--lp-muted);
  text-align: left;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: color 300ms ease, transform 220ms var(--step-ease);
}
.lp-steps__tab.is-active {
  color: var(--lp-accent);
}
@media (hover: hover) {
  .lp-steps__tab:not(.is-active):hover {
    color: #B8B8B8;
    transform: translateY(-2px);
  }
}
.lp-steps__tab:focus-visible {
  outline: 2px solid var(--lp-accent);
  outline-offset: 4px;
}

.js-enabled .lp-steps:not(.is-revealed) .lp-steps__title,
.js-enabled .lp-steps:not(.is-revealed) .lp-steps__copy,
.js-enabled .lp-steps:not(.is-revealed) .lp-steps__media,
.js-enabled .lp-steps:not(.is-revealed) .lp-steps__nav {
  opacity: 0;
}
.lp-steps.is-revealed .lp-steps__title { animation: lpStepsRise 650ms var(--step-ease) both; }
.lp-steps.is-revealed .lp-steps__copy  { animation: lpStepsRise 650ms var(--step-ease) 100ms both; }
.lp-steps.is-revealed .lp-steps__media { animation: lpStepsFade 800ms var(--step-ease) 150ms both; }
.lp-steps.is-revealed .lp-steps__nav   { animation: lpStepsFade 520ms var(--step-ease) 420ms both; }
@keyframes lpStepsRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpStepsFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (max-width: 1439px) {
  .lp-steps {
    --step-h: min(875px, 96svh);
  }
  .lp-steps__title {
    font-size: clamp(34px, 4.5vw, 65px);
    line-height: 0.91;
  }
  .lp-steps__stage {
    grid-template-columns: minmax(0, 37.4%) minmax(0, 61.07%);
    gap: 1.53%;
  }
  .lp-steps__copy { width: 100%; }
  .lp-step__title { font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; }
  .lp-step__text  { font-size: clamp(16px, 1.6vw, 24px); line-height: 1.35; }
  .lp-steps__tab  { font-size: clamp(12px, 1.2vw, 18px); }
  .lp-steps__status-url { font-size: clamp(22px, 2.4vw, 34px); }
  .lp-seo__value--title { font-size: clamp(26px, 2.8vw, 40px); line-height: 1.1; }
  .lp-seo__value--desc  { font-size: clamp(17px, 1.8vw, 25px); line-height: 1.3; }
  .lp-seo__group { margin-bottom: clamp(16px, 2.4vw, 34px); }
}

@media (max-width: 1023px) {
  .lp-steps {
    height: auto;
    padding: clamp(48px, 9vw, 80px) 0;
  }
  .lp-steps__pin {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .lp-steps__inner {
    height: auto;
    max-height: none;
    padding: 0 var(--lp-gutter);
  }
  .lp-steps__stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-top: 32px;
  }
  .lp-steps__copy,
  .lp-steps__panels,
  .lp-step {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }
  .lp-step {
    position: relative;
    visibility: visible;
    pointer-events: auto;
    padding-bottom: 40px;
  }
  .lp-step::before {
    content: '0' counter(lp-step-i) ' /06';
    counter-increment: lp-step-i;
    display: block;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--lp-accent);
  }
  .lp-steps__panels { counter-reset: lp-step-i; }
  .lp-step__title span > i { animation: none !important; }
  .lp-steps__counter,
  .lp-steps__nav,
  .lp-steps__status { display: none; }
  .lp-steps__media {
    display: none;
  }
  .lp-step .lp-frame {
    position: relative;
    inset: auto;
    display: block;
    opacity: 1;
    visibility: visible;
    width: 100%;
    margin: 0 0 20px;
    aspect-ratio: 800 / 500;
    animation: none !important;
  }
  .lp-step .lp-frame--wide { aspect-ratio: 869 / 614; }
  .lp-step .lp-frame--seo {
    aspect-ratio: auto;
    padding: 20px;
    border: 1px solid var(--border-default);
  }
  .lp-step .lp-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .lp-step__extra { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-steps *,
  .lp-steps *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
  }
}


.lp-pulse {
  --pulse-frame-h: min(1090px, calc(100svh - var(--lp-header-h)));
  --pulse-k: 1;
  --pulse-kw: 1;
  --card-x: 65px;
  --card-y: 300px;
  --card-w: 1310px;
  --card-h: 728px;
  position: relative;
  background: var(--lp-bg);
}

.lp-pulse__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: var(--pulse-frame-h);
  overflow: hidden;
  padding-top: var(--lp-header-h);
}
.lp-pulse__inner {
  position: relative;
  width: 100%;
  height: var(--pulse-frame-h);
  padding: 0 var(--lp-gutter);
}

.lp-pulse__head {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 726px) minmax(0, 515px);
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  height: calc(124px * var(--pulse-k));
  padding-top: calc(50px * var(--pulse-k));
  background: var(--lp-bg);
}
.lp-pulse__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 65px;
  line-height: 59px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.lp-pulse__title-accent {
  display: block;
  color: var(--lp-accent);
}
.lp-pulse__lead {
  margin-top: 36px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}
.lp-pulse__head::before {
  content: '';
  position: absolute;
  left: calc(var(--lp-gutter) * -1);
  right: calc(var(--lp-gutter) * -1);
  top: calc(var(--lp-header-h) * -1 - 20px);
  height: var(--pulse-band-h, 200px);
  background: var(--lp-bg);
  z-index: -1;
}

.lp-pulse__stack {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(var(--card-y) * var(--pulse-k));
  width: calc(var(--card-w) * var(--pulse-k));
  height: calc(var(--card-h) * var(--pulse-k));
  z-index: 2;
}

.lp-card {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--border-default);
  border-radius: 15px;
  background: #1B1B1B;
  overflow: hidden;
  box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.06);
  transform-origin: 50% 50%;
  transform:
    translate3d(var(--cx, 0px), var(--cy, 0px), 0)
    rotate(var(--rot, 0deg))
    scale(var(--sx, 1), var(--sy, 1));
  will-change: transform;
}
.lp-card--solid {
  background: #1B1B1B;
}

.lp-card__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 1310px;
  height: 728px;
  padding: 30px 50px;
  transform:
    scale(calc(var(--pulse-kw, 1) / var(--sx, 1)), calc(var(--pulse-kw, 1) / var(--sy, 1)));
  transform-origin: 0 0;
  opacity: var(--content, 1);
}

.lp-card__head {
  height: 172px;
}
.lp-card__head--tall {
  height: 198px;
}
.lp-card__kicker {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--lp-accent);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  text-transform: uppercase;
}
.lp-card__title {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  color: var(--text-primary);
}
.lp-card__text {
  margin-top: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: var(--text-primary);
}

.lp-card__media {
  margin-top: 20px;
  height: 476px;
}
.lp-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 15px;
}
.lp-card__media--pair,
.lp-card__media--split {
  display: grid;
  gap: 30px;
}
.lp-card__media--pair {
  grid-template-columns: 1fr 1fr;
}
.lp-card__media--split {
  grid-template-columns: 760fr 420fr;
  height: 450px;
  margin-top: 20px;
}
.lp-card__media--split img:last-child {
  object-position: left top;
}

.lp-card__guides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.lp-card__guides figure {
  margin: 0;
}
.lp-card__guides img {
  display: block;
  width: 100%;
  height: 202px;
  object-fit: contain;
  object-position: left top;
}
.lp-card__guides figcaption {
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--lp-muted);
}
.lp-card__steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  list-style: none;
  padding: 0;
}
.lp-card__steps li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-card__step-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  color: var(--lp-accent);
}
.lp-card__step-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  color: var(--text-primary);
  white-space: nowrap;
}
.lp-card__step-line {
  flex: 1 1 0;
  min-width: 12px;
  max-width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.lp-card__step-logo {
  flex: none;
  margin-left: 0;
}
.lp-card__step-logo img {
  display: block;
  width: auto;
  height: 126px;
}

.lp-card__warranty {
  display: grid;
  grid-template-columns: 847fr 337fr;
  gap: 26px;
  align-items: center;
  margin-top: 55px;
  height: 388px;
}
.lp-card__warranty img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 15px;
}
.lp-warranty__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--text-primary);
}
.lp-warranty__date,
.lp-warranty__year {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 60px;
  line-height: 55px;
}
.lp-warranty__date {
  margin-top: 20px;
  color: var(--lp-accent);
}
.lp-warranty__year {
  margin-top: 5px;
  color: var(--text-primary);
}
.lp-warranty__note {
  margin-top: 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #919497;
}
.lp-warranty__hint {
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: var(--text-primary);
}

.lp-pulse__caption {
  position: absolute;
  left: 50%;
  margin-left: calc(var(--card-w) * var(--pulse-k) / -2);
  top: calc((var(--card-y) + var(--card-h) + 20px) * var(--pulse-k));
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

@media (max-width: 1439px) {
  .lp-pulse {
    --pulse-frame-h: min(1098px, 96svh);
  }
  .lp-pulse__title {
    font-size: clamp(34px, 4.5vw, 65px);
    line-height: 0.91;
  }
  .lp-pulse__lead {
    margin-top: clamp(8px, 2vw, 36px);
    font-size: clamp(17px, 1.7vw, 24px);
    line-height: 1.3;
  }
  .lp-card__title { font-size: clamp(30px, 4.2vw, 60px); line-height: 1.02; }
  .lp-card__text  { font-size: clamp(15px, 1.7vw, 24px); line-height: 1.25; }
  .lp-card__step-text,
  .lp-card__step-num { font-size: clamp(14px, 1.7vw, 24px); }
  .lp-warranty__date,
  .lp-warranty__year { font-size: clamp(32px, 4.2vw, 60px); line-height: 1; }
  .lp-warranty__hint { font-size: clamp(15px, 1.7vw, 24px); line-height: 1.2; }
}

@media (max-width: 1023px) {
  .lp-pulse {
    height: auto !important;
    padding: clamp(48px, 9vw, 80px) 0;
  }
  .lp-pulse__pin {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-top: 0;
  }
  .lp-pulse__inner {
    height: auto;
    max-height: none;
    padding: 0 var(--lp-gutter);
  }
  .lp-pulse__head {
    grid-template-columns: 1fr;
    height: auto;
    padding-top: 0;
    gap: 16px;
  }
  .lp-pulse__head::before { display: none; }
  .lp-pulse__stack {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .lp-card {
    position: relative;
    width: 100%;
    height: auto;
    transform: none !important;
  }
  .lp-card__body {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    transform: none;
    padding: clamp(20px, 3.4vw, 50px);
  }
  .lp-card__head,
  .lp-card__head--tall { height: auto; }
  .lp-card__text br { display: none; }
  .lp-card__media,
  .lp-card__media--split { height: auto; }
  .lp-card__media img {
    height: auto;
    aspect-ratio: 1210 / 476;
  }
  .lp-card__media--pair,
  .lp-card__media--split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-card__media--pair img { aspect-ratio: 590 / 476; }
  .lp-card__media--split img { aspect-ratio: 760 / 450; }
  .lp-card__guides { grid-template-columns: 1fr; gap: 20px; }
  .lp-card__guides img { height: auto; aspect-ratio: 590 / 202; }
  .lp-card__steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
  }
  .lp-card__step-line { display: none; }
  .lp-card__step-text { white-space: normal; }
  .lp-card__step-logo { margin-left: 0; }
  .lp-card__warranty {
    grid-template-columns: 1fr;
    height: auto;
    margin-top: 28px;
    gap: 20px;
  }
  .lp-card__warranty img { height: auto; aspect-ratio: 847 / 388; }
  .lp-pulse__caption {
    position: static;
    margin-top: 20px;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-card { transition: none; }
}


.lp-price {
  --price-frame-h: 1098px;
  --price-k: 1;
  position: relative;
  background: var(--lp-bg);
}

.lp-price__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: var(--price-frame-h);
  overflow: hidden;
  padding-top: var(--lp-header-h);
}
.lp-price__inner {
  position: relative;
  width: 100%;
  height: var(--price-frame-h);
  padding: 0 var(--lp-gutter);
}

.lp-price__title {
  padding-top: calc(50px * var(--price-k));
  width: 726px;
  max-width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 65px;
  line-height: 59px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.lp-price__title-accent {
  display: block;
  color: var(--lp-accent);
}

.lp-price__grid {
  display: grid;
  grid-template-columns: 632fr 628fr;
  gap: 50px;
  margin-top: calc(110px * var(--price-k));
}

.lp-price__aside {
  min-width: 0;
}
.lp-price__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  color: var(--aside-color, var(--text-primary));
  transition: color 120ms linear;
}
.lp-price__sum {
  margin-top: 13px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 110px;
  line-height: 110px;
  color: var(--text-primary);
}
.lp-price__copy {
  margin-top: 30px;
  width: 632px;
  max-width: 100%;
}
.lp-price__copy p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--aside-color, var(--text-primary));
  transition: color 120ms linear;
}
.lp-price__copy p + p {
  margin-top: 30px;
}
.lp-price__note {
  margin-top: 80px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: var(--lp-muted);
}

.lp-price__dots {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 20px;
}
.lp-price__dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  transition: none;
}

.lp-price__stage {
  position: relative;
  min-width: 0;
  height: calc(774px * var(--price-k));
  overflow: hidden;
}
.lp-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, var(--sy, 0px), 0);
  opacity: var(--so, 0);
  visibility: hidden;
  will-change: transform, opacity;
}
.lp-slide.is-live {
  visibility: visible;
}

.lp-slide [data-slide-part] {
  transform: translate3d(0, var(--py, 0px), 0);
  opacity: var(--po, 1);
}

.lp-slide__kicker {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--lp-accent);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  text-transform: uppercase;
}
.lp-slide__kicker--muted {
  color: var(--lp-muted);
  text-transform: none;
}
.lp-slide__title {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1px;
  color: var(--text-primary);
}
.lp-slide__text {
  margin-top: 30px;
}
.lp-slide__text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--text-primary);
}
.lp-slide__text p + p {
  margin-top: 20px;
}
.lp-slide__text strong {
  font-weight: 700;
  color: var(--text-primary);
}
.lp-slide__accent { font-weight: 500; }
.lp-slide__strong { font-weight: 700; }
.lp-slide__lead {
  font-weight: 700;
  font-size: 24px !important;
  line-height: 26px !important;
}

.lp-price__list {
  margin-top: 80px;
  list-style: none;
  padding: 0;
}
.lp-price__list li {
  display: flex;
  align-items: baseline;
  gap: 59px;
  min-height: 71px;
  padding: 10px 0 30px;
  border-bottom: 1px solid var(--border-default);
}
.lp-price__list li + li {
  margin-top: 30px;
}
.lp-price__num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 1px;
  color: var(--lp-accent);
}
.lp-price__name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 1px;
  color: var(--text-primary);
}
.lp-price__hint {
  margin-top: 40px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: var(--lp-muted);
}

.lp-price__figure {
  margin-top: 30px !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 60px !important;
  line-height: 50px !important;
  color: var(--lp-accent) !important;
}
.lp-slide__cta {
  margin-top: 36px;
  padding: 4px 4px 0;
}
.landing-page .lp-price__cta {
  width: 100%;
  max-width: 620px;
  height: 74px;
  padding: 0 24px;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.45px;
  transition: background 250ms ease, transform 250ms var(--ease-out);
}
@media (hover: hover) {
  .landing-page .lp-price__cta:hover {
    background: var(--lp-accent);
    transform: translateY(-2px);
  }
  .landing-page .lp-price__cta:hover .btn-dot {
    width: 9px;
    height: 9px;
  }
}
.lp-price__cta-note {
  margin-top: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--lp-muted);
}

@media (max-width: 1439px) {
  .lp-price__title {
    font-size: clamp(34px, 4.5vw, 65px);
    line-height: 0.91;
    width: auto;
  }
  .lp-price__sum { font-size: clamp(56px, 7.6vw, 110px); line-height: 1; }
  .lp-price__copy { width: 100%; }
  .lp-price__copy p,
  .lp-price__note { font-size: clamp(16px, 1.7vw, 24px); line-height: 1.3; }
  .lp-slide__title { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.3; }
  .lp-slide__text p { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.45; }
  .lp-price__name { font-size: clamp(20px, 2.1vw, 30px); }
  .lp-price__list li { gap: clamp(20px, 4vw, 59px); }
  .lp-price__hint { font-size: clamp(16px, 1.7vw, 24px); }
  .landing-page .lp-price__cta { font-size: clamp(16px, 1.7vw, 24px); height: 64px; }
}

@media (max-width: 1023px) {
  .lp-price {
    height: auto !important;
    padding: clamp(48px, 9vw, 80px) 0;
  }
  .lp-price__pin {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-top: 0;
  }
  .lp-price__inner {
    height: auto;
    padding: 0 var(--lp-gutter);
  }
  .lp-price__title { padding-top: 0; }
  .lp-price__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    margin-top: 32px;
  }
  .lp-price__note { margin-top: 40px; }
  .lp-price__dots { display: none; }
  .lp-price__stage {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .lp-slide {
    position: relative;
    visibility: visible;
    opacity: 1 !important;
    transform: none !important;
    min-width: 0;
  }
  .lp-slide [data-slide-part] {
    transform: none !important;
    opacity: 1 !important;
  }
  .lp-price__list { margin-top: 32px; }
  .lp-price__hint { display: none; }
  .landing-page .lp-price__cta {
    width: 100%;
    padding: 0 18px;
    gap: 9px;
    font-size: clamp(13px, 3.9vw, 15px);
    line-height: 20px;
    letter-spacing: 0.3px;
  }
  @media (max-width: 340px) {
    .landing-page .lp-price__cta {
      padding: 0 12px;
      gap: 7px;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-slide,
  .lp-slide [data-slide-part] {
    transition: none;
  }
}

.lp-pay {
  position: relative;
  background: var(--lp-bg);
  padding: 50px 0 60px;
}
.lp-pay__inner {
  padding: 0 var(--lp-gutter);
}

.lp-pay__head {
  display: grid;
  grid-template-columns: minmax(0, 726px) minmax(0, 209px);
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
.lp-pay__head-copy {
  min-width: 0;
}
.lp-pay__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 65px;
  line-height: 65px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.lp-pay__title-accent {
  display: block;
  color: var(--lp-accent);
}
.lp-pay__price {
  text-align: center;
}
.lp-pay__sum {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 120px;
  line-height: 120px;
  color: var(--text-primary);
}
.lp-pay__sum-note {
  margin-top: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-muted);
}

.lp-pay__lead {
  margin-top: 30px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.lp-pay__timeline {
  position: relative;
  height: 24px;
  margin-top: 50px;
  opacity: var(--pay-in, 1);
}
.lp-pay__track,
.lp-pay__progress {
  position: absolute;
  left: 0;
  top: 11px;
  height: 2px;
  border-radius: 2px;
}
.lp-pay__track {
  right: 0;
  background: var(--lp-muted);
}
.lp-pay__progress {
  width: var(--pay-w, 0px);
  background: var(--lp-accent);
}
.lp-pay__glow {
  position: absolute;
  top: 2px;
  left: 0;
  width: 40px;
  height: 20px;
  border-radius: 50%;
  background: var(--lp-accent);
  opacity: var(--pay-glow, 0);
  filter: blur(14px);
  transform: translateX(calc(var(--pay-w, 0px) - 20px));
  pointer-events: none;
}
.lp-pay__tick {
  position: absolute;
  top: 2px;
  left: var(--tick-x, 0);
  width: 1px;
  height: 20px;
  background: var(--lp-muted);
  transform-origin: 50% 50%;
  transition: background 220ms ease;
}
.lp-pay__tick.is-on {
  background: var(--lp-accent);
}
.lp-pay__tick.is-pulse {
  animation: lpTickPulse 190ms var(--ease-out);
}
@keyframes lpTickPulse {
  0%   { height: 20px; }
  50%  { height: 24px; }
  100% { height: 20px; }
}
[data-pay-tick="0"] { --tick-x: 0; }
[data-pay-tick="1"] { --tick-x: 26.72%; }
[data-pay-tick="2"] { --tick-x: 53.51%; }
[data-pay-tick="3"] { --tick-x: 80.61%; }

.lp-pay__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 255px));
  justify-content: space-between;
  gap: 96px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
  opacity: var(--pay-in, 1);
}
.lp-pay__steps {
  align-items: stretch;
}
.lp-pay__step {
  min-width: 0;
  display: grid;
  grid-template-rows:
    auto
    minmax(var(--pay-title-h, 68px), auto)
    minmax(var(--pay-desc-h, 90px), auto)
    1fr;
  transform: translateY(var(--step-y, 0px));
  transition: transform 280ms var(--ease-out);
}
.lp-pay__num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: var(--lp-muted);
  transition: color 280ms ease;
}
.lp-pay__step-title {
  margin-top: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-muted);
  transition: color 280ms ease;
}
.lp-pay__step-text {
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  transition: color 280ms ease;
}
.lp-pay__step.is-on .lp-pay__num { color: var(--lp-accent); }
.lp-pay__step.is-on .lp-pay__step-title,
.lp-pay__step.is-on .lp-pay__step-text { color: var(--text-primary); }

.lp-pay__result {
  align-self: start;
  margin-top: 24px;
  display: grid;
  gap: 6px;
  align-content: start;
}
.lp-pay__result > * {
  clip-path: inset(0 0 var(--reveal, 100%) 0);
  transform: translateY(var(--reveal-y, 6px));
  opacity: var(--reveal-o, 0);
}
.lp-pay__hint {
  min-height: var(--pay-hint-h, auto);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: var(--lp-accent);
}
.lp-pay__value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  color: var(--text-primary);
}
.lp-pay__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: var(--lp-muted);
}

.lp-pay__final {
  max-width: 1045px;
  margin-top: 70px;
}
.lp-pay__final-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: var(--text-primary);
}
.lp-pay__line {
  display: block;
  overflow: hidden;
}
.lp-pay__line > i {
  display: block;
  font-style: inherit;
  transform: translateY(var(--line-y, 16px));
  opacity: var(--line-o, 0);
}
.lp-pay__line b {
  font-weight: inherit;
  color: var(--lp-accent);
  opacity: var(--accent-o, 0);
  transition: opacity 260ms ease;
}
.lp-pay__cta-wrap {
  margin-top: 30px;
  padding: 4px 4px 0;
  transform: translateY(var(--cta-y, 14px));
  opacity: var(--cta-o, 0);
}
.landing-page .lp-pay__cta {
  height: 74px;
  padding: 25px 30px;
  gap: 10px;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.45px;
  transition: background 270ms ease, transform 270ms var(--ease-out);
}
@media (hover: hover) {
  .landing-page .lp-pay__cta:hover {
    background: var(--lp-accent);
    transform: translateY(-2px);
  }
  .landing-page .lp-pay__cta:hover .btn-dot {
    width: 9px;
    height: 9px;
  }
}
.lp-pay__note {
  margin-top: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  transform: translateY(var(--note-y, 10px));
  opacity: var(--note-o, 0);
}


@media (max-width: 1439px) {
  .lp-pay__steps { --pay-desc-h: 120px; --pay-title-h: 98px; --pay-hint-h: 40px; }
  .lp-pay__title { font-size: clamp(34px, 4.5vw, 65px); line-height: 1.02; }
  .lp-pay__sum { font-size: clamp(56px, 8.3vw, 120px); line-height: 1; }
  .lp-pay__sum-note,
  .lp-pay__lead { font-size: clamp(16px, 1.7vw, 24px); line-height: 1.3; }
  .lp-pay__steps { gap: clamp(24px, 6.6vw, 96px); }
  .lp-pay__step-title { font-size: clamp(18px, 1.7vw, 24px); line-height: 1.25; }
  .lp-pay__step-text,
  .lp-pay__num,
  .lp-pay__hint,
  .lp-pay__sub { font-size: clamp(14px, 1.25vw, 18px); line-height: 1.2; }
  .lp-pay__value { font-size: clamp(26px, 2.8vw, 40px); line-height: 1; }
  .lp-pay__final-title { font-size: clamp(26px, 3.5vw, 50px); line-height: 1.2; }
  .landing-page .lp-pay__cta { font-size: clamp(16px, 1.7vw, 24px); height: 64px; padding: 20px 26px; }
}

@media (max-width: 1023px) {
  .lp-pay { padding: clamp(48px, 9vw, 80px) 0; }
  .lp-pay__head { grid-template-columns: 1fr; gap: 24px; }
  .lp-pay__price { text-align: left; }
  .lp-pay__timeline { display: none; }
  .lp-pay__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 32px;
  }
  .lp-pay__final { margin-top: 40px; }
}

@media (min-width: 601px) and (max-width: 1023px) {
  .lp-pay__step,
  .lp-pay__result > *,
  .lp-pay__line > i,
  .lp-pay__cta-wrap,
  .lp-pay__note {
    transform: none !important;
    opacity: 1 !important;
    clip-path: none !important;
  }
  .lp-pay__line b { opacity: 1 !important; }
  .lp-pay__step .lp-pay__num { color: var(--lp-accent); }
  .lp-pay__step .lp-pay__step-title,
  .lp-pay__step .lp-pay__step-text { color: var(--text-primary); }
}

@media (max-width: 600px) {
  .lp-pay__steps { grid-template-columns: minmax(0, 1fr); }
  .landing-page .lp-pay__cta { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-pay__step,
  .lp-pay__tick,
  .lp-pay__line b,
  .landing-page .lp-pay__cta {
    transition-duration: 1ms;
  }
  .lp-pay__tick.is-pulse { animation: none; }
}


.lp-faq {
  position: relative;
  background: var(--lp-bg);
  padding: 52px 0 0;
}
.lp-faq__inner {
  padding: 0 var(--lp-gutter);
}

.lp-faq__title {
  width: 740px;
  max-width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 65px;
  line-height: 65px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.lp-faq__title-accent {
  display: block;
  color: var(--lp-accent);
}
.lp-faq__lead {
  margin-top: 33px;
  width: 726px;
  max-width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.lp-faq__body {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  justify-content: start;
  gap: 0;
  margin-top: 50px;
  min-height: 554px;
}

.lp-faq__list {
  position: relative;
  padding-left: 30px;
}
.lp-faq__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 31px;
  border-radius: 3px;
  background: var(--lp-accent);
  opacity: var(--marker-o, 0);
  transform: translateY(var(--marker-y, 0px));
  transition:
    transform 420ms var(--ease-out),
    opacity 260ms ease;
}

.lp-faq__item {
  display: flex;
  align-items: baseline;
  gap: 63px;
  width: 100%;
  padding: 30px 0;
  border-bottom: 2px solid var(--border-default);
  text-align: left;
  cursor: pointer;
}
.lp-faq__item + .lp-faq__item {
  margin-top: 10px;
}
.lp-faq__num {
  flex: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  transition: color 260ms ease;
}
.lp-faq__q {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: var(--lp-muted);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  transition: color 260ms ease;
}
.lp-faq__item.is-active .lp-faq__num { color: var(--lp-accent); }
.lp-faq__item.is-active .lp-faq__q { color: var(--text-primary); }
.lp-faq__item:focus-visible {
  outline: 2px solid var(--lp-accent);
  outline-offset: 4px;
}

.lp-faq__pane {
  position: relative;
  min-width: 0;
}
.lp-faq__answer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: var(--answer-y, 0px);
  width: min(100%, 556px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.lp-faq__answer.is-active {
  opacity: 1;
  pointer-events: auto;
}
[data-faq-panel="0"] { --answer-y: 167px; }
[data-faq-panel="1"] { --answer-y: 132px; }
[data-faq-panel="2"] { --answer-y: 117px; }
[data-faq-panel="3"] { --answer-y: 32px; }
[data-faq-panel="4"] { --answer-y: 52px; }
[data-faq-panel="5"] { --answer-y: 52px; }
[data-faq-panel="6"] { --answer-y: 37px; }

.lp-faq__answer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  color: var(--text-primary);
}
.lp-faq__answer-title--intro {
  font-size: 45px;
  line-height: 45px;
}
.lp-faq__answer p {
  margin-top: 30px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
  color: var(--lp-muted);
}
.lp-faq__accent {
  color: var(--text-primary) !important;
}
.lp-faq__accent b {
  font-weight: 700;
  color: var(--lp-accent);
}

.lp-faq__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 153px;
  margin-top: 50px;
  border-top: 1px solid var(--border-default);
}
.lp-faq__cta-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  color: var(--text-primary);
}
.lp-faq__cta-text {
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-muted);
}
.lp-faq__cta-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 264px;
  min-height: 62px;
  padding: 20px 15px;
  border: 1px solid #FFFFFF;
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 20px;
  color: var(--text-primary);
  white-space: nowrap;
  transition: border-color 260ms ease, color 260ms ease;
}
@media (hover: hover) {
  .lp-faq__cta-btn:hover {
    border-color: var(--lp-accent);
    color: var(--lp-accent);
  }
}
.lp-faq__cta-btn:focus-visible {
  outline: 2px solid var(--lp-accent);
  outline-offset: 4px;
}

@media (max-width: 1439px) {
  .lp-faq__title { font-size: clamp(34px, 4.5vw, 65px); line-height: 1.02; width: auto; }
  .lp-faq__lead { font-size: clamp(16px, 1.7vw, 24px); line-height: 1.3; width: auto; }
  .lp-faq__q { font-size: clamp(17px, 1.7vw, 24px); line-height: 1.25; }
  .lp-faq__item { gap: clamp(20px, 4.4vw, 63px); padding: 22px 0; }
  .lp-faq__answer-title,
  .lp-faq__answer-title--intro { font-size: clamp(26px, 2.9vw, 40px); line-height: 1.1; }
  .lp-faq__answer p { font-size: clamp(16px, 1.6vw, 23px); line-height: 1.35; margin-top: 22px; }
  .lp-faq__cta-title { font-size: clamp(18px, 1.9vw, 26px); line-height: 1.2; }
  .lp-faq__cta-text { font-size: clamp(15px, 1.7vw, 24px); line-height: 1.3; }
  .lp-faq__cta-btn { font-size: clamp(16px, 1.7vw, 24px); min-width: 220px; min-height: 56px; }
}

@media (max-width: 1023px) {
  .lp-faq { padding: clamp(48px, 9vw, 80px) 0 0; }
  .lp-faq__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    margin-top: 32px;
    min-height: 0;
  }
  .lp-faq__pane {
    position: relative;
    min-height: 320px;
  }
  .lp-faq__answer {
    top: 0 !important;
  }
  .lp-faq__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-height: 0;
    padding: 32px 0;
    margin-top: 32px;
  }
  .lp-faq__cta-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-faq__marker,
  .lp-faq__answer,
  .lp-faq__num,
  .lp-faq__q {
    transition-duration: 1ms;
  }
}


.landing-page .footer-container {
  max-width: none;
  padding: 0 var(--lp-gutter);
}
.landing-page .footer-main {
  padding-left: 0;
  padding-right: 0;
}
.landing-page .footer-bottom {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .lp-faq__list {
    padding-left: 16px;
  }
  .lp-faq__marker {
    width: 4px;
  }
  .lp-faq__item {
    gap: 14px;
  }
}

@media (max-width: 1023px) {
  .lp-pulse__stack {
    gap: 20px;
  }

  .lp-shot {
    position: relative;
    display: block;
  }
  .lp-shot img {
    display: block;
    width: 100%;
  }
  .lp-zoom {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(14, 15, 15, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease;
  }
  .lp-zoom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
  }
  .lp-zoom:active {
    background: rgba(200, 254, 2, 0.16);
    border-color: rgba(200, 254, 2, 0.5);
  }
  .lp-zoom svg {
    width: 15px;
    height: 15px;
    display: block;
    pointer-events: none;
  }
  .lp-card__media img,
  .lp-card__guides figure img,
  .lp-card__warranty > img {
    cursor: zoom-in;
  }
}

@media (min-width: 1024px) {
  .lp-zoom {
    display: none;
  }
}

.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 8, 8, 0.94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms;
}
.lp-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lp-lightbox__viewport {
  width: 100%;
  height: 100%;
  overflow: auto;
  align-items: safe center;
  justify-content: safe center;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pinch-zoom pan-x pan-y;
}
.lp-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
  transform: scale(0.97);
  transition: transform 240ms var(--ease-out, ease);
}
.lp-lightbox.is-open .lp-lightbox__img { transform: scale(1); }
.lp-lightbox__img.is-wide {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.lp-lightbox__close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(20, 21, 21, 0.9);
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 200ms ease;
}
.lp-lightbox__close:active { background: rgba(200, 254, 2, 0.18); }
.lp-lightbox__close svg { width: 18px; height: 18px; pointer-events: none; }
.lp-lightbox__hint {
  position: absolute;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}
body.lp-lightbox-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .lp-lightbox,
  .lp-lightbox__img { transition: none; }
}

@media (max-width: 1023px) {
  .lp-price__list li {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .lp-price__row {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 64px;
    padding: 16px 0;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 180ms ease;
  }
  .lp-price__row:active {
    opacity: 0.6;
  }
  .lp-price__row:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: 3px;
  }
  .lp-price__row .lp-price__num {
    flex: none;
    font-size: 20px;
    line-height: 24px;
  }
  .lp-price__row .lp-price__name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 20px;
    line-height: 26px;
  }

  .lp-price__toggle {
    position: relative;
    flex: none;
    width: 22px;
    height: 22px;
  }
  .lp-price__toggle::before,
  .lp-price__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.75);
    transform: translate(-50%, -50%);
    transition: transform 320ms var(--ease-out, cubic-bezier(0.4, 0, 0.2, 1)),
                background-color 240ms ease;
  }
  .lp-price__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .lp-price__list li.is-open .lp-price__toggle::before,
  .lp-price__list li.is-open .lp-price__toggle::after {
    background: var(--lp-accent);
  }
  .lp-price__list li.is-open .lp-price__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .lp-price__panel {
    height: 0;
    overflow: hidden;
    transition: height 320ms var(--ease-out, cubic-bezier(0.4, 0, 0.2, 1));
  }
  .lp-price__panel .lp-slide__text {
    margin-top: 0;
    padding: 0 0 22px;
  }
  .lp-price__panel .lp-slide__text > :first-child {
    margin-top: 0;
  }
  .lp-price__panel .lp-slide__text p {
    font-size: 15px;
    line-height: 22px;
    color: var(--lp-muted);
  }
  .lp-price__panel .lp-slide__text p + p {
    margin-top: 12px;
  }
  .lp-price__panel .lp-slide__text .lp-slide__accent {
    color: rgba(255, 255, 255, 0.72);
  }
  .lp-price__panel .lp-slide__text .lp-slide__strong {
    color: var(--text-primary);
  }

  .lp-slide.is-folded {
    display: none;
  }
}

@media (max-width: 1023px) {
  .lp-pulse__lead br { display: none; }

  .lp-seo__arrow {
    margin: 10px auto 4px;
    align-self: center;
    opacity: 1;
  }
  .lp-seo__arrow-line {
    animation: lpArrowLine 3600ms var(--step-ease) infinite both;
  }
  .lp-seo__arrow-head {
    animation: lpArrowHead 3600ms var(--step-ease) infinite both;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  .lp-seo__arrow-line,
  .lp-seo__arrow-head {
    animation: none;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 600px) {
  .lp-pay__head {
    gap: 20px;
  }
  .lp-pay__title {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.12;
  }
  .lp-pay__lead {
    font-size: 15px;
    line-height: 1.45;
  }
  .lp-pay__lead br { display: none; }
  .lp-pay__sum {
    font-size: clamp(54px, 15vw, 68px);
    line-height: 1;
  }
  .lp-pay__sum-note {
    font-size: 14px;
    line-height: 1.35;
  }

  .lp-pay__timeline { display: none; }

  .lp-pay__steps {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 36px;
    padding-left: 30px;
  }
  .lp-pay__steps::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.16);
  }
  .lp-pay__steps::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    width: 2px;
    height: var(--pay-fill, 0%);
    border-radius: 2px;
    background: var(--lp-accent);
    transition: height 420ms cubic-bezier(0.33, 0, 0.2, 1);
  }

  .lp-pay__step {
    position: relative;
    display: block;
    grid-template-rows: none;
    padding: 0 0 34px;
  }
  .lp-pay__step:last-child { padding-bottom: 6px; }

  .lp-pay__step::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    margin-left: 0;
    border-radius: 50%;
    background: var(--lp-bg);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
    transition: box-shadow 320ms ease, transform 320ms var(--ease-out);
  }
  .lp-pay__step.is-on::before {
    box-shadow: inset 0 0 0 6px var(--lp-accent);
    transform: scale(1.12);
  }

  .lp-pay__step .lp-pay__num {
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.34);
    transition: color 320ms ease;
  }
  .lp-pay__step.is-on .lp-pay__num { color: var(--lp-accent); }

  .lp-pay__step .lp-pay__step-title {
    margin-top: 8px;
    font-size: 21px;
    line-height: 1.22;
    color: rgba(255, 255, 255, 0.4);
    transition: color 320ms ease;
  }
  .lp-pay__step.is-on .lp-pay__step-title { color: var(--text-primary); }
  .lp-pay__step-title br { display: none; }

  .lp-pay__step .lp-pay__step-text {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.28);
    transform: translateY(6px);
    opacity: 0;
    transition: color 320ms ease, transform 420ms var(--ease-out), opacity 380ms ease;
  }
  .lp-pay__step.is-on .lp-pay__step-text {
    color: var(--lp-muted);
    transform: translateY(0);
    opacity: 1;
  }
  .lp-pay__step.is-past .lp-pay__step-title { color: rgba(255, 255, 255, 0.74); }
  .lp-pay__step.is-past .lp-pay__step-text { color: rgba(255, 255, 255, 0.34); }

  .lp-pay__result {
    margin-top: 14px;
    gap: 2px;
  }
  .lp-pay__result > * {
    clip-path: none;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 420ms var(--ease-out), opacity 360ms ease;
  }
  .lp-pay__step.is-on .lp-pay__result > * {
    transform: translateY(0);
    opacity: 1;
  }
  .lp-pay__hint {
    min-height: 0;
    font-size: 14px;
    line-height: 18px;
  }
  .lp-pay__value {
    font-size: 34px;
    line-height: 1.1;
    transform-origin: left center;
  }
  .lp-pay__step .lp-pay__value {
    transform: translateY(8px) scale(0.88);
    filter: blur(3px);
    transition: transform 460ms var(--ease-out), opacity 380ms ease, filter 380ms ease;
  }
  .lp-pay__step.is-on .lp-pay__value {
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  .lp-pay__sub {
    font-size: 14px;
    line-height: 18px;
  }

  .lp-pay__final {
    margin-top: 12px;
  }
  .lp-pay__final-title {
    font-size: clamp(24px, 6.6vw, 30px);
    line-height: 1.22;
  }
  .lp-pay__line > i {
    transform: translateY(var(--line-y, 16px));
    opacity: var(--line-o, 0);
    transition: transform 420ms var(--ease-out), opacity 360ms ease;
  }
  .lp-pay__line b {
    opacity: var(--accent-o, 0);
    transition: opacity 360ms ease;
  }
  .lp-pay__cta-wrap {
    margin-top: 22px;
    transform: translateY(var(--cta-y, 14px));
    opacity: var(--cta-o, 0);
    transition: transform 380ms var(--ease-out), opacity 360ms ease;
  }
  .lp-pay__note {
    transform: translateY(var(--note-y, 10px));
    opacity: var(--note-o, 0);
    transition: transform 340ms var(--ease-out), opacity 320ms ease;
  }
  .landing-page .lp-pay__cta {
    width: 100%;
    justify-content: center;
    padding: 0 18px;
    font-size: clamp(14px, 4vw, 16px);
  }
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
  .lp-pay__steps::after { transition: none; }
  .lp-pay__step .lp-pay__step-text,
  .lp-pay__step .lp-pay__result > *,
  .lp-pay__step .lp-pay__value {
    transform: none;
    opacity: 1;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1023px) {
  .lp-faq__pane {
    display: none;
  }
  .lp-faq__list .lp-faq__item {
    border-bottom: none;
  }
  .lp-faq__marker {
    display: none;
  }
  .lp-faq__list {
    padding-left: 0;
  }
  .lp-faq__body {
    gap: 0;
  }

  .lp-faq__row {
    border-bottom: 1px solid var(--border-default);
  }
  .lp-faq__row + .lp-faq__row {
    margin-top: 0;
  }

  .lp-faq__list .lp-faq__item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    width: 100%;
    min-height: 64px;
    padding: 16px 0;
    border-bottom: none;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 180ms ease;
  }
  .lp-faq__list .lp-faq__item + .lp-faq__item {
    margin-top: 0;
  }
  .lp-faq__list .lp-faq__item:active {
    opacity: 0.6;
  }
  .lp-faq__num {
    flex: none;
    font-size: 18px;
    line-height: 24px;
  }
  .lp-faq__q {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 17px;
    line-height: 23px;
  }
  .lp-faq__row.is-open .lp-faq__q {
    color: var(--text-primary);
  }
  .lp-faq__num {
    transition: color 260ms ease;
  }
  .lp-faq__row.is-open .lp-faq__num {
    color: var(--lp-accent);
  }

  .lp-faq__toggle {
    position: relative;
    flex: none;
    width: 22px;
    height: 22px;
    align-self: flex-start;
    margin-top: 1px;
  }
  .lp-faq__toggle::before,
  .lp-faq__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.75);
    transform: translate(-50%, -50%);
    transition: transform 320ms var(--ease-out, cubic-bezier(0.4, 0, 0.2, 1)),
                background-color 240ms ease;
  }
  .lp-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .lp-faq__row.is-open .lp-faq__toggle::before,
  .lp-faq__row.is-open .lp-faq__toggle::after {
    background: var(--lp-accent);
  }
  .lp-faq__row.is-open .lp-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .lp-faq__drop {
    height: 0;
    overflow: hidden;
    transition: height 320ms var(--ease-out, cubic-bezier(0.4, 0, 0.2, 1));
  }
  .lp-faq__drop .lp-faq__answer {
    position: static;
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none;
    padding: 0 0 22px;
    pointer-events: auto;
  }
  .lp-faq__drop .lp-faq__answer-title {
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .lp-faq__drop .lp-faq__answer-title br { display: none; }
  .lp-faq__drop .lp-faq__answer p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
    color: var(--lp-muted);
  }
  .lp-faq__drop .lp-faq__answer p br { display: none; }
  .lp-faq__drop .lp-faq__accent {
    color: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  .lp-faq__drop,
  .lp-faq__toggle::before,
  .lp-faq__toggle::after {
    transition: none;
  }
}
