        /* Base Styles */
        body { font-feature-settings: "cv11", "ss01"; -webkit-font-smoothing: antialiased; }
        
        /* Typography Overrides */
        .font-serif { font-family: 'Playfair Display', serif; }
        .font-sans { font-family: 'Manrope', sans-serif; }

        /* Animations */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-100 { transition-delay: 100ms; }
        .delay-200 { transition-delay: 200ms; }
        .delay-300 { transition-delay: 300ms; }

        /* Card Hover Effects */
        .hover-card-zoom {
            overflow: hidden;
        }
        .hover-card-zoom img {
            transition: transform 0.7s ease-out;
        }
        .hover-card-zoom:hover img {
            transform: scale(1.05);
        }
        
        /* Custom Gradients */
        .hero-overlay {
            background: linear-gradient(180deg, rgba(5,28,44,0.4) 0%, rgba(5,28,44,0.8) 60%, #051C2C 100%);
        }
        
        .card-gradient {
            background: linear-gradient(to top, #051C2C 0%, rgba(5,28,44,0.5) 50%, transparent 100%);
        }

        /* Premium Button */
        .btn-premium {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .btn-premium::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: currentColor;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .btn-premium:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Keyframes for FadeInUp */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- MCKINSEY CINEMATIC HERO --- */
        .hero-cinematic {
            position: relative;
            background-color: #051C2C;
            overflow: hidden;
        }

        .mck-overlay {
            background: linear-gradient(90deg, rgba(5, 28, 44, 0.95) 0%, rgba(5, 28, 44, 0.8) 50%, rgba(5, 28, 44, 0.4) 100%);
        }

        .insight-card {
            background: rgba(255, 255, 255, 0.95);
            border-top: 4px solid #005FD8;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .insight-card:hover {
            transform: translateY(-5px);
        }

        .ticker-tape {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(5, 28, 44, 0.9);
            backdrop-filter: blur(10px);
        }

        /* Chart Animation */
        .chart-bar {
            animation: growBar 1.5s ease-out forwards;
            transform-origin: bottom;
            transform: scaleY(0);
        }
        @keyframes growBar {
            to { transform: scaleY(1); }
        }

        /* --- BENTO HERO GRID --- */
        .bento-grid-hero {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            perspective: 1000px;
            transform-style: preserve-3d;
        }
        
        .bento-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 0px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        /* Technical Grid Background - Lighter */
        .bento-card::before {
             content: "";
             position: absolute;
             inset: 0;
             background-image: 
                 linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                 linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
             background-size: 30px 30px;
             pointer-events: none;
             z-index: 0;
        }

        .bento-card:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-4px);
            box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.6);
            z-index: 10;
        }

        /* Corner Accents for Schematic Look */
        .corner-accent {
            position: absolute;
            width: 10px; height: 10px;
            border-color: rgba(255,255,255,0.3);
            border-style: solid;
            transition: all 0.3s ease;
            z-index: 2;
        }
        .corner-tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
        .corner-tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
        .corner-bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
        .corner-br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

        .bento-card:hover .corner-accent {
            border-color: #005FD8;
            width: 20px; height: 20px;
        }

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

        /* Premium Shimmer Animation */
        .shimmer-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
            transform: skewX(-20deg) translateX(-150%);
            animation: shimmer 6s infinite;
            pointer-events: none;
            z-index: 1;
        }
        @keyframes shimmer {
            0% { transform: skewX(-20deg) translateX(-150%); }
            20% { transform: skewX(-20deg) translateX(150%); }
            100% { transform: skewX(-20deg) translateX(150%); }
        }
        
        /* Data Visualization Elements */
        .data-bar {
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 0px;
            overflow: hidden;
        }
        .data-fill {
            height: 100%;
            border-radius: 0px;
            animation: fillBar 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            transform-origin: left;
            transform: scaleX(0);
        }
        @keyframes fillBar { to { transform: scaleX(1); } }

        .status-dot {
            height: 8px; width: 8px;
            border-radius: 50%;
            box-shadow: 0 0 10px currentColor;
            animation: pulse-glow 2s infinite;
        }
        @keyframes pulse-glow {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.9); }
        }

.startup-grid-overlay {
    background-image: linear-gradient(#051C2C 1px, transparent 1px), linear-gradient(90deg, #051C2C 1px, transparent 1px);
}

.startup-grid-overlay-60 {
    background-size: 60px 60px;
}

.startup-grid-overlay-40 {
    background-size: 40px 40px;
}
