@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap');

:root {
    --primary-brand: #00E676;
    /* Neon/Spring Green */
    --hover-brand: #00C853;
    --dark-brand: #009624;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

body {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(33, 37, 41, 0.95);
    /* Dark by default for top nav */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Bottom Nav */
.bottom-nav {
    height: 70px;
    /* Taller for better touch */
    background: rgba(255, 255, 255, 0.95);
    /* Light glass for bottom */
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link-mobile {
    color: #8c8c8c;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 0;
}

.nav-link-mobile i {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 2px;
}

.nav-link-mobile.active {
    color: var(--dark-brand);
    font-weight: 700;
}

.nav-link-mobile.active i {
    color: var(--primary-brand);
    transform: translateY(-2px);
}

/* Existing Utilities */
.bg-brand {
    background-color: var(--primary-brand) !important;
}

.text-brand {
    color: var(--primary-brand) !important;
}

.text-brand-dark {
    color: var(--dark-brand) !important;
}

.btn-brand {
    background-color: var(--primary-brand);
    color: white;
    border: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-brand:hover {
    background-color: var(--hover-brand);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.4);
}

.nav-link {
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-brand) !important;
}

/* Landing Page 2.0 - Cyber Hero */
.hero-section {
    background-color: #0f1110;
    background-image:
        radial-gradient(at 100% 0%, rgba(0, 230, 118, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 0%, rgba(30, 30, 30, 1) 0px, transparent 50%),
        linear-gradient(to bottom, #0f1110 0%, #1a1a1a 100%);
    position: relative;
    color: white;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    pointer-events: none;
}

/* Stats Ticker */
.stat-item {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-brand);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Bento Grid Features */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    .bento-span-2 {
        grid-column: span 2;
    }

    .bento-row-2 {
        grid-row: span 2;
    }
}

.bento-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-brand);
}

.icon-box-lg {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--dark-brand);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}