html.landing-route.cc-scroll-locked,
html.landing-route.cc-scroll-locked body {
  overflow: hidden !important;
}

.cc-save-fly {
  position: fixed;
  z-index: 2000;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  color: var(--primary-color, #27b079);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition:
    transform 0.72s cubic-bezier(0.5, 0, 0.2, 1),
    opacity 0.72s ease-in;
  filter: drop-shadow(0 6px 14px rgba(var(--primary-color-rgb, 39, 176, 121), 0.45));
}
.cc-save-fly svg {
  width: 100%;
  height: 100%;
  display: block;
}

#landing-cta-btn {
  position: relative;
}

#landing-cta-btn.cc-cta-celebrate {
  animation: cc-cta-celebrate 0.62s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#landing-cta-btn.cc-cta-celebrate::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  border: 2px solid var(--primary-color, #27b079);
  opacity: 0;
  animation: cc-cta-ring 0.62s ease-out;
  pointer-events: none;
}

@keyframes cc-cta-celebrate {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.14);
  }
  70% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes cc-cta-ring {
  0% {
    opacity: 0.85;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc-save-fly {
    display: none;
  }
  #landing-cta-btn.cc-cta-celebrate,
  #landing-cta-btn.cc-cta-celebrate::after {
    animation: none;
  }
}
