::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #041527; }
::-webkit-scrollbar-thumb { background: #003e5c; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #008ba3; }

html { background-color: #041527; }

.glass {
  background: rgba(4, 21, 39, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.glass-card {
  background: linear-gradient(135deg, rgba(0, 62, 92, 0.4) 0%, rgba(4, 21, 39, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 139, 163, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glow-text { text-shadow: 0 0 10px rgba(0, 229, 255, 0.5); }

.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* MARQUEE (infinite horizontal scroll) */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll linear infinite;
  animation-duration: var(--marquee-speed, 40s);
}
.marquee-reverse .marquee-track {
  animation-direction: reverse;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: rgba(245, 245, 220, 0.9);
  white-space: nowrap;
}
.marquee-item .sep {
  color: rgba(0, 229, 255, 0.4);
  font-size: 1.4em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Reveal fallback (before GSAP loads / reduced motion) */
[data-reveal], [data-stagger] > * {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* Hover glow for interactive cards */
.hover-glow:hover {
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
