/* ==========================================================================
   HOMEPAGE SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* Hero Glow Ambience */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Labs Section Grid Spacing */
.labs-section {
    position: relative;
}

/* Latest Videos Section */
.latest-videos-section {
    position: relative;
}

/* Products Section */
.products-section {
    position: relative;
}

/* Founder Section Card Refinement */
.founder-card__content {
    flex-grow: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }

    .hero__metrics {
        gap: 20px;
    }

    .hero__metric-divider {
        display: none;
    }
}
