/* The moving copy is decorative; the real link keeps its URL and keyboard focus. */
.sticky-cta-suppressed { visibility: hidden; pointer-events: none; }
a.sticky-cta-in-flight { opacity: 0; transition: none; }
.sticky-cta-flight {
  position: fixed; inset: 0 auto auto 0; z-index: 40; box-sizing: border-box;
  display: block; overflow: hidden; pointer-events: none; user-select: none;
  border: 1px solid transparent; font-family: var(--sans); font-weight: 600;
  will-change: transform, width, height; contain: layout style;
}
.sticky-cta-flight-label {
  position: absolute; left: 50%; top: 50%; width: max-content;
  display: flex; align-items: center; justify-content: center;
  transform-origin: center; text-align: center;
}
@media (prefers-reduced-motion: reduce), print {
  .sticky-cta-flight { display: none; }
  a.sticky-cta-in-flight { opacity: 1; }
}
