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

html {
    scroll-behavior: smooth;
    background-color: #050505;
}

/* Glassmorphism Components */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 242, 255, 0.15);
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00F2FF 0%, #00dbe7 50%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFE29F 0%, #d1a054 50%, #8A733E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
.animate-scroll-bounce {
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes sweep {
    0% { transform: skewX(-12deg) translateX(-150%); }
    100% { transform: skewX(-12deg) translateX(250%); }
}
@keyframes scanner {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.animate-sweep { animation: sweep 6s ease-in-out infinite; }
.animate-scanner { animation: scanner 10s linear infinite; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes logo-reveal {
    from { clip-path: inset(0 100% 0 0); transform: translateX(-20px); }
    to { clip-path: inset(0 0 0 0); transform: translateX(0); }
}
.animate-logo-m { 
    animation: logo-reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards; 
}

.liquid-neon-text {
    background: linear-gradient(90deg, #00f2ff, #0072ff, #00f2ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: liquid-flow 4s linear infinite;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    display: inline-block;
}

@keyframes liquid-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Premium Breathing Glow */
@keyframes premium-glow {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.1), 0 0 60px rgba(0, 102, 255, 0.05), 0 0 15px rgba(0, 255, 128, 0.02);
        border-color: rgba(255, 255, 255, 0.03);
    }
    50% { 
        box-shadow: 0 0 50px rgba(0, 242, 255, 0.3), 0 0 100px rgba(0, 102, 255, 0.15), 0 0 30px rgba(0, 255, 128, 0.1);
        border-color: rgba(0, 242, 255, 0.2);
    }
}
.animate-premium-glow {
    animation: premium-glow 5s ease-in-out infinite;
}

/* Process Card Scroll Glow */
.card-lit {
    background: rgba(0, 242, 255, 0.04) !important;
    border-color: rgba(0, 242, 255, 0.25) !important;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.12), inset 0 0 30px rgba(0, 242, 255, 0.04);
}
.card-lit .card-number {
    color: rgba(0, 242, 255, 0.08) !important;
}

/* Process Card slide-from-left animation */
.process-card {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.8s ease,
                border-color 0.8s ease,
                box-shadow 0.8s ease;
}
.process-card.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Optimization for better mobile tap targets — only standalone CTAs */
header a, footer a {
    min-height: 32px;
}

/* Header compact state when scrolling up mid-page — ghost/invisible */
#nav-container.nav-compact {
    background: rgba(5, 5, 5, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: none !important;
    opacity: 0.5;
}
/* Header at-top state */
#nav-container.nav-at-top {
    background: rgba(5, 5, 5, 0.92) !important;
    border-color: rgba(0, 242, 255, 0.2) !important;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.08), 0 20px 50px rgba(0,0,0,0.5) !important;
    opacity: 1;
}
/* Hover glow override — fully readable on hover */
#nav-container.nav-compact:hover {
    background: rgba(5, 5, 5, 0.92) !important;
    border-color: rgba(0, 242, 255, 0.55) !important;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.2), 0 20px 50px rgba(0,0,0,0.5) !important;
    opacity: 1;
}
#nav-container.nav-at-top:hover {
    border-color: rgba(0, 242, 255, 0.55) !important;
    background: rgba(0, 242, 255, 0.06) !important;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.2), 0 20px 50px rgba(0,0,0,0.5) !important;
}
#nav-container {
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, opacity 1.4s ease !important;
}
