body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, .font-poppins {
  font-family: 'Poppins', sans-serif;
}

.glass-button {
  background: rgba(26, 115, 232, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 115, 232, 0.2);
  transition: all 0.3s ease;
}

.glass-button:hover {
  background: rgba(26, 115, 232, 0.2);
  transform: translateY(-2px);
}

.gradient-bg {
  background: linear-gradient(135deg, #0E1E3A 0%, #1A73E8 100%);
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal-stop {
  opacity: 1;
  transform: none;
}

.js .reveal-stop {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: opacity, transform;
}

.js .reveal-stop.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-bounce-slow { animation: bounce-slow 4s ease-in-out infinite; }

@keyframes stream-segment {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.animate-stream-segment {
  animation: stream-segment 2s linear infinite;
}

.animate-stream-segment-delayed {
  animation: stream-segment 2s linear infinite;
  animation-delay: 1s;
}

@keyframes float-bits {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-10px); opacity: 0.8; }
}

.animate-float-delayed-1 { animation: float-bits 3s ease-in-out infinite 0s; }
.animate-float-delayed-2 { animation: float-bits 4s ease-in-out infinite 1s; }
.animate-float-delayed-3 { animation: float-bits 3.5s ease-in-out infinite 2s; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.animate-scroll-left {
  animation: scroll-left 80s linear infinite;
}

.testimonial-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-bottom: 24px;
}

.testimonial-card {
  flex: 0 0 360px;
}

@media (max-width: 1023px) {
  .testimonial-card {
    flex-basis: 320px;
  }
}

@media (max-width: 639px) {
  .testimonial-card {
    flex-basis: 260px;
  }
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
