/* Progressive motion layer: the page remains fully visible without JavaScript. */
::selection {
  background: var(--lime);
  color: var(--black);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  inset: 68px 0 auto;
  z-index: 80;
  height: 3px;
  pointer-events: none;
}

.scroll-progress__fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(216, 255, 71, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress__fill {
    animation: scrollProgress 1ms linear both;
    animation-timeline: scroll(root block);
  }
}

@keyframes scrollProgress {
  to {
    transform: scaleX(1);
  }
}

.nav {
  transition:
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.nav.is-scrolled {
  background: rgba(43, 43, 245, 0.9);
  box-shadow: 0 12px 38px rgba(10, 10, 15, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
}

.mark i {
  display: inline-block;
  transform-origin: center;
}

.hero,
.offer,
.cta {
  --pointer-x: 50%;
  --pointer-y: 50%;
  isolation: isolate;
}

.hero::after,
.offer::after,
.cta::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: radial-gradient(
    circle 310px at var(--pointer-x) var(--pointer-y),
    rgba(216, 255, 71, 0.13),
    transparent 68%
  );
  opacity: 0.8;
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-ambient span {
  position: absolute;
  display: block;
  border: 1px solid rgba(216, 255, 71, 0.33);
  border-radius: 50%;
  will-change: transform;
}

.hero-ambient span:nth-child(1) {
  top: -19vw;
  right: -11vw;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  animation: orbitFloat 13s ease-in-out infinite alternate;
}

.hero-ambient span:nth-child(2) {
  right: 31%;
  bottom: -120px;
  width: 240px;
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbitSpin 24s linear infinite;
}

.hero-ambient span:nth-child(3) {
  top: 18%;
  left: 48%;
  width: 11px;
  height: 11px;
  border: 0;
  background: var(--lime);
  box-shadow:
    70px 36px 0 rgba(216, 255, 71, 0.68),
    -44px 105px 0 rgba(216, 255, 71, 0.4),
    94px 170px 0 rgba(216, 255, 71, 0.28);
  animation: signalDrift 5s ease-in-out infinite alternate;
}

@keyframes orbitFloat {
  to {
    transform: translate3d(-24px, 18px, 0) scale(1.04);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes signalDrift {
  to {
    transform: translate3d(12px, -18px, 0);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-line {
  display: block;
}

.kinetic-slot {
  position: relative;
  display: inline-block;
  width: 8.6ch;
  white-space: nowrap;
  vertical-align: baseline;
}

.hero h1 mark {
  position: relative;
  display: inline-flex;
  width: 100%;
  align-items: baseline;
  overflow: hidden;
  isolation: isolate;
}

[data-kinetic-word] {
  display: inline-block;
  min-width: 7.75ch;
}

[data-kinetic-word]::after {
  display: inline-block;
  width: 0.075em;
  height: 0.78em;
  margin-left: 0.055em;
  background: currentColor;
  content: "";
  transform: translateY(0.055em);
  animation: cursorBlink 780ms steps(1, end) infinite;
}

[data-kinetic-word].is-scrambling {
  animation: wordSignal 90ms steps(2, end) infinite;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

@keyframes wordSignal {
  50% {
    opacity: 0.78;
    transform: translateY(-0.025em);
  }
}

.hero h1 mark::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(-115%) skewX(-18deg);
}

.motion-loaded .hero h1 mark::after {
  animation: highlightSweep 900ms 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes highlightSweep {
  50% {
    transform: translateX(0) skewX(-18deg);
  }
  100% {
    transform: translateX(115%) skewX(-18deg);
  }
}

.hero-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: rgba(10, 10, 15, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-flow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--disp);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-flow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(216, 255, 71, 0.55);
  animation: flowPulse 2.1s ease-out infinite;
}

.hero-flow span:nth-of-type(2) i {
  animation-delay: 320ms;
}

.hero-flow span:nth-of-type(3) i {
  animation-delay: 640ms;
}

.hero-flow b {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

@keyframes flowPulse {
  55%,
  100% {
    box-shadow: 0 0 0 7px rgba(216, 255, 71, 0);
  }
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(43, 43, 245, 0.38);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  70%,
  100% {
    box-shadow: 0 0 0 8px rgba(43, 43, 245, 0);
  }
}

.catch {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  position: relative;
  z-index: 3;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translate3d(0, var(--lift), 0);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease-out,
    box-shadow 240ms ease;
  will-change: transform;
}

.catch::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(216, 255, 71, 0.7);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 220ms ease;
}

.catch:hover {
  --lift: -5px;
  box-shadow: 0 38px 76px -32px rgba(10, 10, 15, 0.68);
}

.catch:hover::before {
  opacity: 1;
}

.catch h2,
.catch form,
.catch > p,
.catch .kicker {
  transform: translateZ(18px);
}

.motion-ready .hero-line,
.motion-ready .hero-lede,
.motion-ready .hero-flow,
.motion-ready .microproof {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.motion-ready .catch {
  opacity: 0;
  translate: 0 30px;
}

.motion-loaded .hero-line,
.motion-loaded .hero-lede,
.motion-loaded .hero-flow,
.motion-loaded .microproof {
  animation: heroEnter 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-loaded .hero-line:nth-child(2) {
  animation-delay: 90ms;
}

.motion-loaded .hero-lede {
  animation-delay: 180ms;
}

.motion-loaded .hero-flow {
  animation-delay: 270ms;
}

.motion-loaded .microproof {
  animation-delay: 360ms;
}

.motion-loaded .catch {
  animation: cardEnter 820ms 190ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cardEnter {
  to {
    opacity: 1;
    translate: 0 0;
  }
}

/* Content defaults to visible; only a successfully initialized motion layer hides it. */
.rv {
  opacity: 1;
  transform: none;
}

.motion-ready .rv {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.988);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.motion-ready .rv.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .rv > .pain,
.motion-ready .rv > .sitem,
.motion-ready .rv > .qcard,
.motion-ready .rv > .tmember,
.motion-ready .rv > .step,
.motion-ready .rv > .tier {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.motion-ready .rv.in > .pain,
.motion-ready .rv.in > .sitem,
.motion-ready .rv.in > .qcard,
.motion-ready .rv.in > .tmember,
.motion-ready .rv.in > .step,
.motion-ready .rv.in > .tier {
  animation: staggerEnter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .rv.in > :nth-child(2) {
  animation-delay: 70ms;
}

.motion-ready .rv.in > :nth-child(3) {
  animation-delay: 140ms;
}

.motion-ready .rv.in > :nth-child(4) {
  animation-delay: 210ms;
}

.motion-ready .rv.in > :nth-child(5) {
  animation-delay: 280ms;
}

.motion-ready .rv.in > :nth-child(6) {
  animation-delay: 350ms;
}

@keyframes staggerEnter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.pain,
.sitem,
.qcard,
.tmember,
.step,
.tier,
.ctaband,
.logos li {
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

.sitem,
.pain,
.qcard,
.step,
.tier {
  position: relative;
  overflow: hidden;
}

.sitem::after,
.pain::after,
.step::after,
.tier::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tier::after {
  background: var(--lime);
}

.sitem:hover::after,
.pain:hover::after,
.step:hover::after,
.tier:hover::after {
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .pain:hover,
  .qcard:hover,
  .step:hover,
  .tier:hover {
    z-index: 2;
    transform: translate3d(0, -7px, 0);
    box-shadow: 0 24px 48px -30px rgba(10, 10, 15, 0.42);
  }

  .sitem:hover {
    z-index: 2;
    transform: scale(0.985);
  }

  .tmember:hover {
    transform: translate3d(0, -8px, 0);
  }

  .tmember:hover .tface::before {
    transform: scale(1.1) rotate(2deg);
  }

  .logos li:hover {
    transform: translate3d(0, -3px, 0) rotate(-1deg);
    border-color: var(--blue);
  }
}

.tface::before {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.logoslot {
  box-shadow: 0 0 0 0 rgba(216, 255, 71, 0.2);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.case.in .logoslot {
  animation: metricGlow 2.8s 800ms ease-in-out infinite;
}

@keyframes metricGlow {
  50% {
    box-shadow: 0 0 0 13px rgba(216, 255, 71, 0);
    transform: scale(1.025);
  }
}

.lk-name.is-counting {
  font-variant-numeric: tabular-nums;
}

.steps {
  position: relative;
}

.steps::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
}

.steps.in::before {
  animation: processLine 1.1s 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes processLine {
  to {
    transform: scaleX(1);
  }
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.34), transparent 75%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.btn:hover::before {
  transform: translateX(130%);
}

.button-ripple {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: buttonRipple 620ms ease-out;
}

@keyframes buttonRipple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

input,
select,
textarea {
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 4px rgba(43, 43, 245, 0.1);
  transform: translate3d(0, -1px, 0);
}

summary::after {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  transform-origin: top left;
  animation: answerEnter 240ms ease both;
}

@keyframes answerEnter {
  from {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
  }
}

.strip-track:hover {
  animation-play-state: paused;
}

@media (max-width: 700px) {
  .hero-ambient span:nth-child(2),
  .hero-ambient span:nth-child(3) {
    display: none;
  }

  .hero-flow {
    border-radius: 12px;
  }

  .hero-flow b {
    display: none;
  }

  .hero-flow span {
    flex: 1 1 auto;
  }

  .scroll-progress {
    inset-block-start: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ambient,
  .scroll-progress {
    display: none;
  }

  .motion-ready .hero-line,
  .motion-ready .hero-lede,
  .motion-ready .hero-flow,
  .motion-ready .microproof,
  .motion-ready .catch,
  .motion-ready .rv,
  .motion-ready .rv > * {
    opacity: 1;
    translate: none;
    transform: none;
  }

  .catch,
  .catch:hover {
    --lift: 0px;
    transform: none;
  }

  .strip-track,
  .live-dot,
  .hero-flow i,
  .logoslot,
  .steps::before,
  details p,
  [data-kinetic-word],
  [data-kinetic-word]::after {
    animation: none;
  }
}
