
/* ===== GRID PATTERN ===== */
.bg-grid-pattern {
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ===== PULSE SLOW ===== */
@keyframes pulse-slow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.animate-pulse-slow {
  animation: pulse-slow 4s ease-in-out infinite;
}

/* ===== SCROLL CONTAINER ===== */
.scroll-mask {
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  overflow: hidden;
}

.scroll-track {
  display: flex;
  width: fit-content;
}

/* ===== FAST SCROLL ANIMATIONS ===== */
@keyframes scroll-fast {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes scroll-fast-reverse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

.scroll-content-fast {
  display: flex;
  animation: scroll-fast 15s linear infinite;
}

.scroll-content-fast-reverse {
  display: flex;
  animation: scroll-fast-reverse 15s linear infinite;
}

.scroll-track:hover .scroll-content-fast,
.scroll-track:hover .scroll-content-fast-reverse {
  animation-play-state: paused;
}

/* ===== LOGO ITEMS ===== */
.logo-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 2.5rem;
  margin: 0 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.logo-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
  transform: rotate(45deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
}

.logo-item:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 30px rgba(139, 92, 246, 0.2),
    0 0 40px rgba(139, 92, 246, 0.1),
    inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.logo-item:hover::before {
  opacity: 1;
}

.logo-item img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0.8) saturate(0.9);
  transition: all 0.4s ease;
}

.logo-item:hover img {
  filter: brightness(1.1) saturate(1.1);
  transform: scale(1.1);
}

.logo-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
}

.logo-item:hover span {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* ===== STAT CARDS ===== */
.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center bottom, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.stat-card:hover .stat-glow {
  opacity: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat-number.highlight {
  color: #22c55e;
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .logo-item {
    min-width: 140px;
    padding: 1.25rem 2rem;
  }
  
  .logo-item img {
    height: 2.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .floating-orb {
    transform: scale(0.6);
  }
}


