.step-bullet {
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.step-bullet.animate-pulse {
  animation: pulse-color 0.5s ease-in-out forwards;
}

.step-bullet.is-complete {
  background-color: #e5f3f8;
}

.landing-hero-illustration {
  margin-top: clamp(0.5rem, 1.5vh, 1rem);
  max-width: 44rem;
  pointer-events: none;
  user-select: none;
  width: calc(100% + 6rem);
}

.landing-hero-illustration__image {
  display: block;
  height: auto;
  width: 100%;
}

@keyframes pulse-color {
  0% {
    background-color: transparent;
  }
  70% {
    background-color: #e5f3f8;
  }
  100% {
    background-color: transparent;
  }
}

@keyframes testimonial-bob {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.testimonial-card {
  animation: testimonial-bob 4s ease-in-out infinite;
}

.testimonial-card figure {
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(15, 23, 42, 0.04);
}

.testimonial-card:nth-child(1) { animation-delay: 0s; animation-duration: 4.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.5s; animation-duration: 3.6s; }
.testimonial-card:nth-child(3) { animation-delay: 1.1s; animation-duration: 4.6s; }
.testimonial-card:nth-child(4) { animation-delay: 0.3s; animation-duration: 3.9s; }
.testimonial-card:nth-child(5) { animation-delay: 0.8s; animation-duration: 4.4s; }
.testimonial-card:nth-child(6) { animation-delay: 1.4s; animation-duration: 3.7s; }
.testimonial-card:nth-child(7) { animation-delay: 0.2s; animation-duration: 4.5s; }
.testimonial-card:nth-child(8) { animation-delay: 1.6s; animation-duration: 3.5s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; animation-duration: 4.7s; }

@keyframes testimonial-wave-drift {
  0% {
    opacity: 0.22;
    stroke-dashoffset: 0;
  }

  50% {
    opacity: 0.62;
  }

  100% {
    opacity: 0.22;
    stroke-dashoffset: -180;
  }
}

.landing-testimonial-wave {
  height: clamp(4.5rem, 8vw, 7rem);
  margin-block: clamp(1rem, 2.5vw, 2rem) clamp(-3.5rem, -3.5vw, -2rem);
  overflow: hidden;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.landing-testimonial-wave__graphic {
  height: 100%;
  left: 50%;
  max-width: 52rem;
  overflow: visible;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
}

.landing-testimonial-wave__line,
.landing-testimonial-wave__glints {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.landing-testimonial-wave__line {
  opacity: 0.72;
  stroke: #e0e7ff;
  stroke-width: 1;
}

.landing-testimonial-wave__glints {
  animation: testimonial-wave-drift 16s linear infinite;
  stroke: #6366f1;
  stroke-dasharray: 1 17;
  stroke-linecap: round;
  stroke-width: 3;
}

.landing-testimonial-wave__glints--reverse {
  animation-direction: reverse;
  animation-duration: 20s;
  opacity: 0.18;
  stroke: #a5b4fc;
  stroke-width: 2.5;
}

@keyframes section-dot-float {
  0%, 100% {
    opacity: 0.25;
    transform: translate3d(0, 0, 0) scale(0.9);
  }

  50% {
    opacity: 0.8;
    transform: translate3d(var(--float-x), var(--float-y), 0) scale(1.15);
  }
}

.landing-section-dots {
  height: clamp(5rem, 10vw, 9rem);
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.landing-testimonials-section {
  padding-bottom: 3rem;
}

.landing-faq-section {
  padding-top: 3rem;
}

@media (min-width: 640px) {
  .landing-testimonials-section {
    padding-bottom: 4rem;
  }

  .landing-faq-section {
    padding-top: 4rem;
  }
}

.landing-section-dot {
  animation: section-dot-float var(--float-duration) ease-in-out var(--float-delay) infinite;
  background: var(--dot-color, #6366f1);
  border-radius: 50%;
  box-shadow: 0 0 12px color-mix(in srgb, var(--dot-color, #6366f1) 28%, transparent);
  height: var(--dot-size);
  left: var(--dot-left);
  opacity: 0.25;
  position: absolute;
  top: var(--dot-top);
  width: var(--dot-size);
}

.landing-section-dot:nth-child(1) { --dot-color: #818cf8; --dot-left: 4%; --dot-size: 5px; --dot-top: 62%; --float-delay: -1.2s; --float-duration: 7.4s; --float-x: 9px; --float-y: -15px; }
.landing-section-dot:nth-child(2) { --dot-color: #c7d2fe; --dot-left: 12%; --dot-size: 10px; --dot-top: 20%; --float-delay: -4.1s; --float-duration: 8.2s; --float-x: -7px; --float-y: 13px; }
.landing-section-dot:nth-child(3) { --dot-color: #4f46e5; --dot-left: 20%; --dot-size: 6px; --dot-top: 76%; --float-delay: -2.7s; --float-duration: 6.8s; --float-x: 12px; --float-y: -11px; }
.landing-section-dot:nth-child(4) { --dot-color: #a5b4fc; --dot-left: 29%; --dot-size: 8px; --dot-top: 38%; --float-delay: -5.3s; --float-duration: 9s; --float-x: -10px; --float-y: -16px; }
.landing-section-dot:nth-child(5) { --dot-color: #e0e7ff; --dot-left: 38%; --dot-size: 12px; --dot-top: 72%; --float-delay: -0.8s; --float-duration: 8.5s; --float-x: 8px; --float-y: 12px; }
.landing-section-dot:nth-child(6) { --dot-color: #6366f1; --dot-left: 48%; --dot-size: 6px; --dot-top: 24%; --float-delay: -3.6s; --float-duration: 7.2s; --float-x: -8px; --float-y: 17px; }
.landing-section-dot:nth-child(7) { --dot-color: #c7d2fe; --dot-left: 57%; --dot-size: 9px; --dot-top: 64%; --float-delay: -6.2s; --float-duration: 9.4s; --float-x: 11px; --float-y: -14px; }
.landing-section-dot:nth-child(8) { --dot-color: #4338ca; --dot-left: 66%; --dot-size: 5px; --dot-top: 16%; --float-delay: -1.9s; --float-duration: 6.6s; --float-x: -12px; --float-y: 10px; }
.landing-section-dot:nth-child(9) { --dot-color: #a5b4fc; --dot-left: 74%; --dot-size: 11px; --dot-top: 70%; --float-delay: -4.7s; --float-duration: 8.8s; --float-x: 7px; --float-y: -18px; }
.landing-section-dot:nth-child(10) { --dot-color: #818cf8; --dot-left: 83%; --dot-size: 7px; --dot-top: 34%; --float-delay: -2.2s; --float-duration: 7.8s; --float-x: -9px; --float-y: -12px; }
.landing-section-dot:nth-child(11) { --dot-color: #e0e7ff; --dot-left: 91%; --dot-size: 10px; --dot-top: 68%; --float-delay: -5.8s; --float-duration: 9.2s; --float-x: 10px; --float-y: 14px; }
.landing-section-dot:nth-child(12) { --dot-color: #4f46e5; --dot-left: 97%; --dot-size: 5px; --dot-top: 18%; --float-delay: -3.1s; --float-duration: 7s; --float-x: -13px; --float-y: 16px; }

.faq-row {
  opacity: 0.5;
  padding-block: 1.5rem;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer-wrap.open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

[data-faq-plus],
[data-faq-minus] {
  transition: transform 0.2s ease;
}

@keyframes flame-flicker {
  0%, 100% {
    opacity: 0.85;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}

.flame {
  animation: flame-flicker 0.15s ease-in-out infinite;
  transform-origin: 20px 58px;
}

@keyframes particle-burst {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy));
  }
}

.particle {
  animation: particle-burst 0.9s ease-out forwards;
  border-radius: 50%;
  height: 6px;
  pointer-events: none;
  position: absolute;
  width: 6px;
}

.landing-hero-preview {
  width: min(100%, 32rem);
}

.landing-hero-preview > div {
  width: 100%;
}

.landing-hero-carousel {
  aspect-ratio: 1054 / 1492;
  min-height: 24rem;
  overflow: visible;
  position: relative;
  width: 100%;
}

.landing-hero-slide {
  background: rgba(17, 24, 39, 0.05);
  border-radius: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.1);
  box-sizing: border-box;
  inset: 0;
  opacity: 0;
  padding: 0.5rem;
  pointer-events: none;
  position: absolute;
  transform: translateX(115vw);
  transition: opacity 180ms ease, transform 760ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.landing-hero-slide .template-preview {
  height: 100%;
  width: 100%;
}

.landing-hero-carousel:not(.is-ready) .landing-hero-slide:first-child,
.landing-hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.landing-hero-slide.is-exiting {
  opacity: 1;
  transform: translateX(115vw);
  z-index: 3;
}

.landing-firework-layer {
  height: 280px;
  left: 0;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.landing-register-scene {
  align-items: flex-end;
  display: flex;
  gap: 0;
  height: 110px;
  justify-content: center;
  position: relative;
}

.landing-register-fuse {
  margin: 0 2px 20px;
  overflow: visible;
}

.landing-register-rocket {
  height: 90px;
  margin-bottom: 0;
  position: relative;
  width: 40px;
}

#rocket-svg {
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: translateY(0) scale(1);
  transition: transform 1s cubic-bezier(0.3, 0.7, 0.4, 1), opacity 0.3s 0.7s;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .landing-testimonial-wave__glints {
    animation: none;
  }

  .landing-testimonial-wave__glints {
    opacity: 0.35;
  }

  .landing-section-dot {
    animation: none;
    opacity: 0.35;
  }

  .landing-hero-slide {
    transform: none;
    transition: none;
  }

  .landing-hero-slide.is-active {
    opacity: 1;
  }
}

@media (max-width: 639px) {
  .landing-hero-illustration {
    margin-left: auto;
    margin-right: auto;
    max-width: 30rem;
    width: 100%;
  }

  .landing-hero-preview {
    max-width: 13rem;
    width: 13rem;
  }

  .landing-hero-carousel {
    min-height: 16.8rem;
  }

  .landing-steps-image {
    height: 12rem;
  }
}

@media (min-width: 1024px) {
  .landing-hero-slide {
    border-radius: 1rem;
    padding: 1rem;
  }
}
