@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px var(--gold-glow); }
  50% { box-shadow: 0 0 22px rgba(194, 175, 150, 0.5); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: transform, opacity;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.kicker .dot {
  animation: glowPulse 2.6s var(--ease-soft) infinite;
}

.scroll-line {
  animation: scrollHint 2.4s var(--ease-soft) infinite;
}

.book {
  animation: floatY 6s ease-in-out infinite;
}

.logo .logo-img {
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.logo:hover .logo-img {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn::after {
  content: "";
  position: absolute;
}

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

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 140%;
}

.faq-q,
.nav-links a,
.footer-col a {
  transition: color 0.3s var(--ease);
}

.scroll-progress {
  transition: width 0.08s linear;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
