@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
* { font-family: 'Plus Jakarta Sans', sans-serif; }
body { background-color: #000000; -webkit-font-smoothing: antialiased; }

.nav-link {
    position: relative;
    transition: 0.3s;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #E30613;
    transition: 0.3s;
}
.nav-link:hover { color: #E30613; }
.nav-link:hover::after { width: 100%; }

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(227, 6, 19, 0.4);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(227, 6, 19, 0.15);
}

.reference-card {
    transition: all 0.3s ease;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #1a1a1a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #E30613; }

.reveal-up { opacity: 0; transform: translateY(60px); }
.reveal-left { opacity: 0; transform: translateX(-80px); }
.reveal-right { opacity: 0; transform: translateX(80px); }
.hero-content { opacity: 0; transform: translateY(40px); }

.nav-scrolled {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}
.nav-scrolled #nav-inner { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.nav-scrolled #nav-logo { height: 2.5rem !important; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.75rem; }
}
