/* Manifesto Page Animations */

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -250% 0;
  }
  100% {
    background-position: 250% 0;
  }
}

.animate-gradient-shift {
  animation: gradient-shift 8s ease infinite;
}

.animate-shimmer {
  animation: shimmer 3s linear infinite;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Account for header when scrolling to anchors */
#waitlist-top {
  scroll-margin-top: 2rem;
}
