@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --nexum-blue-950: #020617;
    --nexum-blue-900: #0f172a;
    --nexum-blue-800: #1e293b;
    --nexum-amber: #f59e0b;
    --nexum-gold: #fbbf24;
    --nexum-slate-50: #f8fafc;
    --nexum-slate-100: #f1f5f9;
    --nexum-slate-200: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--nexum-blue-950);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.font-display {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Premium Shadows */
.shadow-premium {
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
}

.shadow-premium-hover:hover {
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Gradients */
.bg-gradient-premium {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

.text-gradient-gold {
    background: linear-gradient(to right, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Component Enhancements */
.nav-link-hover {
    position: relative;
}

.nav-link-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nexum-blue-900);
    transition: width 0.3s ease;
}

.nav-link-hover:hover::after {
    width: 100%;
}

.btn-premium {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium:hover {
    transform: translateY(-2px);
}