:root {
            --brickline-red: #A32020;
            --brickline-dark: #231F20;
            --white: #ffffff;
            --soft-grey: #f6f7f9;
            --muted: #6b7280;
            --stroke: rgba(0,0,0,0.10);
            --shadow: 0 18px 50px rgba(0,0,0,0.08);
        }

        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            color: var(--brickline-dark); 
            background: var(--white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, .banner-title { font-family: 'Outfit', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; }

        /* --- Navigation --- */
        .navbar { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); padding: 15px 0; border-bottom: 1px solid var(--stroke); }
        .nav-link { font-family: 'DM Sans', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; color: var(--brickline-dark) !important; transition: 0.3s; }
        .nav-link:hover, .dropdown-item:hover { color: var(--brickline-red) !important; }
        
        .dropdown-menu { border: none; box-shadow: var(--shadow); border-radius: 12px; padding: 15px; border-top: 4px solid var(--brickline-red); }
        .dropdown-item { font-family: 'DM Sans', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; padding: 10px 15px; border-radius: 6px; }
        
        /* Desktop Hover Logic */
        @media (min-width: 992px) {
            .nav-item.dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
        }

        .btn-nav { background: var(--brickline-red); color: white !important; border-radius: 4px; padding: 10px 24px; font-weight: 800; text-transform: uppercase; font-size: 0.75rem; transition: 0.3s; border: 2px solid var(--brickline-red); text-decoration: none; }
        .btn-nav:hover { background: transparent; color: var(--brickline-red) !important; }

        /* --- Banner --- */
        .banner-header {
            position: relative;
            height: 580px;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            margin-top: 80px;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }
        
        .banner-title { 
            font-size: clamp(2.5rem, 6vw, 4.2rem); 
            line-height: 1;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .breadcrumb-wrap { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px; color: var(--brickline-red); margin-bottom: 15px; display: block; }

        /* --- Sections --- */
        .section-padding { padding: 100px 0; }
        .kicker { color: var(--brickline-red); text-transform: uppercase; font-weight: 800; letter-spacing: 5px; font-size: 0.75rem; margin-bottom: 20px; display: block; }

        .roadmap-container { position: relative; padding-left: 60px; }
        .roadmap-container::before {
            content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
            width: 2px; background: linear-gradient(to bottom, var(--brickline-red) 0%, #eee 100%);
        }
        .roadmap-step { position: relative; margin-bottom: 50px; }
        .roadmap-step::after {
            content: ''; position: absolute; left: -47px; top: 6px;
            width: 16px; height: 16px; background: var(--brickline-red);
            border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 4px rgba(163, 32, 32, 0.1);
        }

        /* --- Cards --- */
        .mosaic-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: var(--brickline-dark);
            height: 480px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 45px;
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(255,255,255,0.1);
            text-decoration: none;
            margin-bottom: 24px;
        }
        .mosaic-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1); filter: grayscale(30%); }
        .mosaic-card:hover .mosaic-bg { opacity: 0.8; filter: grayscale(0%); transform: scale(1.08); }
        .mosaic-content { position: relative; z-index: 2; color: white; }
        .mosaic-card h3 { font-family: 'Outfit'; font-weight: 900; font-size: 1.75rem; margin-bottom: 10px; text-transform: uppercase; }
        .learn-more { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; color: #fff; margin-top: 15px; display: block; opacity: 0.8; }
        
        /* --- Footer --- */
        .main-footer { background: linear-gradient(180deg, #231F20 0%, #0f0d0e 100%); color: #fff; padding: 80px 0 0; }
        .footer-top { padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-title { font-family: 'Space Grotesk'; font-weight: 900; text-transform: uppercase; font-size: 1rem; letter-spacing: 1.5px; margin-bottom: 25px; }
        .footer-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; font-size: 0.9rem; }
        .footer-link:hover { color: #fff; padding-left: 5px; }

        @media (max-width: 991px) {
            .banner-header { height: 450px; clip-path: none; margin-top: 70px; }
            .section-padding { padding: 70px 0; }
        }


        .mosaic-card:focus,
        .mosaic-card:focus-visible,
        .btn-nav:focus,
        .btn-nav:focus-visible,
        .navbar-toggler:focus,
        .navbar-toggler:focus-visible {
            outline: none;
            box-shadow: none;
        }
