/* --- GLOBAL UI OVERHAUL (V3) --- */

/* 1. Technical Typography System */
.tech-mono {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    opacity: 0.8;
}

/* Force specific elements to use the Tech Mono font */
.hero-subtitle,
.section-desc,
.hero-badge,
.insight-label,
.footer-desc {
    font-family: 'Space Grotesk', sans-serif !important;
}

/* 2. Floating Navigation (Glass Pill) - DESKTOP ONLY */
@media (min-width: 992px) {
    .header {
        width: 90%;
        max-width: 1200px;
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(10, 10, 20, 0.7);
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .header.scrolled {
        background: rgba(10, 10, 20, 0.9);
        top: 10px;
        width: 95%;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }
}

/* 3. Holographic Card Upgrade (Global) */
.glass-card,
.feature-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(12px);
}

.glass-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.5);
    /* Primary Glow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Scanline Effect */
.glass-card::after,
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.glass-card:hover::after,
.feature-card:hover::after {
    transform: translateX(100%);
}

/* 4. Interactive Footer (Big Type) */
.footer {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-big {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    font-family: var(--font-display);
    letter-spacing: -0.05em;
    text-align: center;
    line-height: 0.8;
    margin-top: 40px;
    margin-bottom: -20px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* Hover link tweak */
.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}