.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-card {
    background: rgba(19, 24, 38, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-card--solid {
    background: #131826;
}

.text-glow {
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}
.ambient-glow {
    box-shadow: 0 0 40px -10px rgba(0, 102, 255, 0.3);
}
.glow-blue {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}
.glow-cyan {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}
.glow-success {
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.3);
}

.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
}
.brand-text-gradient {
    background-image: linear-gradient(135deg, #0066FF, #00E5FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.animate-float {
    animation: float-soft 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.2); }
    50%      { box-shadow: 0 0 40px rgba(0, 102, 255, 0.4); }
}
.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes hero-content-in {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-content-enter {
    animation: hero-content-in 0.7s ease-out forwards;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee-scroll 60s linear infinite;
}
.animate-marquee:hover {
    animation-play-state: paused;
}

html { scroll-behavior: smooth; }
