/* Custom CSS Variables */
:root {
  --background: oklch(0.08 0.01 264);
  --foreground: oklch(0.98 0.01 264);
  --card: oklch(0.12 0.02 264);
  --card-foreground: oklch(0.98 0.01 264);
  --primary: oklch(0.65 0.25 264);
  --primary-foreground: oklch(0.98 0.01 264);
  --secondary: oklch(0.18 0.02 264);
  --muted-foreground: oklch(0.58 0.01 264);
  --accent: oklch(0.55 0.28 180);
  --border: oklch(0.22 0.02 264);
  --custom-border: #e5e7eb38;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Custom Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
  50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.8); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}

.bg-card {
  background-color: var(--card);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.border-border {
  border-color: var(--border);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Card hover effects */
.feature-card {
  transition: all 0.5s ease;
}

.feature-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-4px);
}

/* Button styles */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: rgba(99, 102, 241, 0.9);
  transform: translateY(-2px);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, var(--foreground), var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Enhanced stat cards */
.stat-card {
  transition: all 0.5s ease;
  position: relative;
}


/* Pulse animation variations */
@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pulse-fast {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

.animate-pulse-fast {
  animation: pulse-fast 1.5s ease-in-out infinite;
}

/* Testimonial cards */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(34, 197, 94, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover .text-primary\/50 {
  color: rgb(99 102 241 / 0.8);
  transform: scale(1.1);
}

.testimonial-card:hover .text-muted-foreground {
  color: rgb(99 102 241 / 0.9);
}

/* Smooth transitions for testimonial elements */
.testimonial-card svg {
  transition: all 0.3s ease;
}

.testimonial-card .text-primary\/50 {
  transition: all 0.3s ease;
}

.testimonial-card .text-muted-foreground {
  transition: all 0.3s ease;
}

.testimonial-card .font-semibold {
  transition: all 0.3s ease;
}

.testimonial-card:hover .font-semibold {
  color: rgb(99 102 241 / 1);
}

/* Scroll animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
  transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
  transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
  transition-delay: 0.5s;
}

.scroll-animate-delay-6 {
  transition-delay: 0.6s;
}

/* Slide animations */
.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.scroll-slide-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.scroll-slide-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale animations */
.scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}

.scroll-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Fade animations */
.scroll-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.scroll-fade.animate-in {
  opacity: 1;
}

/* Custom Border Color Utility */
.border-custom {
  border-color: var(--custom-border);
}
video {
  background-color: var(--card);
  border-radius: inherit;
}

iframe {
  border: none;
  border-radius: inherit;
}
