
        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

        :root {
            --bg-color: #f0f0f5;
            --maroon: #711939;
            --green: #1a5629;
            --yellow: #f5b041;
            --orange: #e67e22;
            --purple: #8e44ad;
            --pink: #e84393;
            --text-dark: #2d2d2d;
            --radius: 14px;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-color);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
            /* Added to prevent scrolling on desktop */
        }

        .dashboard-wrapper {
            width: 100%;
            max-width: 1400px;
            padding: 2vw;
            box-sizing: border-box;
            overflow: hidden;
        }

        .bento-container {
            position: relative;
            width: 100%;
            min-width: 1000px;
            aspect-ratio: 16 / 9;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 12px;
            width: 100%;
            height: 100%;
            opacity: 60%;
        }

        /* =========================================
           ANIMATION KEYFRAMES
        ========================================= */

        @keyframes slideInFromLeft {
            0% {
                opacity: 0;
                transform: translateX(-60px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromRight {
            0% {
                opacity: 0;
                transform: translateX(60px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }


        /* =========================================
           GRID ITEMS
        ========================================= */

        .grid-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            background-color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

            animation-duration: 0.8s;
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-fill-mode: both;
        }


        /* =========================================
           ROW 1
        ========================================= */

        .grid-item:nth-child(1) {
            animation-name: slideInFromLeft;
            animation-delay: 0s;
        }

        .grid-item:nth-child(4) {
            animation-name: slideInFromRight;
            animation-delay: 0.2s;
        }

        .grid-item:nth-child(2) {
            animation-name: slideInFromLeft;
            animation-delay: 0.4s;
        }

        .grid-item:nth-child(3) {
            animation-name: slideInFromRight;
            animation-delay: 0.6s;
        }


        /* =========================================
           ROW 2
        ========================================= */

        .grid-item:nth-child(5) {
            animation-name: slideInFromLeft;
            animation-delay: 0.8s;
        }

        .grid-item:nth-child(8) {
            animation-name: slideInFromRight;
            animation-delay: 1s;
        }

        .grid-item:nth-child(6) {
            animation-name: slideInFromLeft;
            animation-delay: 1.2s;
        }

        .grid-item:nth-child(7) {
            animation-name: slideInFromRight;
            animation-delay: 1.4s;
        }


        /* =========================================
           ROW 3
        ========================================= */

        .grid-item:nth-child(9) {
            animation-name: slideInFromLeft;
            animation-delay: 1.6s;
        }

        .grid-item:nth-child(12) {
            animation-name: slideInFromRight;
            animation-delay: 1.8s;
        }

        .grid-item:nth-child(10) {
            animation-name: slideInFromLeft;
            animation-delay: 2s;
        }

        .grid-item:nth-child(11) {
            animation-name: slideInFromRight;
            animation-delay: 2.2s;
        }


        /* =========================================
           ROW 4
        ========================================= */

        .grid-item:nth-child(13) {
            animation-name: slideInFromLeft;
            animation-delay: 2.4s;
        }

        .grid-item:nth-child(16) {
            animation-name: slideInFromRight;
            animation-delay: 2.6s;
        }

        .grid-item:nth-child(14) {
            animation-name: slideInFromLeft;
            animation-delay: 2.8s;
        }

        .grid-item:nth-child(15) {
            animation-name: slideInFromRight;
            animation-delay: 3s;
        }


        /* =========================================
           GRID HOVER
        ========================================= */

        .grid-item:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            z-index: 5;
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .grid-item:hover img {
            transform: scale(1.08);
        }

        .grid-item.empty {
            background: transparent;
            box-shadow: none;
            pointer-events: none;
        }


        /* =========================================
           GRADIENTS
        ========================================= */

        .dark-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;

            background: linear-gradient(to right,
                    transparent 20%,
                    rgba(0, 0, 0, 0.9) 100%);

            pointer-events: none;
            z-index: 1;
        }

        .light-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;

            background: linear-gradient(to right,
                    transparent 10%,
                    rgba(255, 255, 255, 0.95) 90%);

            pointer-events: none;
            z-index: 1;
        }


        /* =========================================
           CONTENT OVERLAYS
        ========================================= */

        .content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;

            padding: 1.5vw;

            display: flex;
            flex-direction: column;

            pointer-events: none;
            z-index: 2;
        }

        .content-overlay.right {
            align-items: flex-end;
            text-align: right;
            justify-content: center;
        }

        .text-white {
            color: #fff;
        }

        .text-dark {
            color: var(--text-dark);
        }

        .text-yellow {
            color: var(--yellow);
        }

        .text-orange {
            color: var(--orange);
        }

        .text-purple {
            color: var(--purple);
        }

        .text-pink {
            color: var(--pink);
        }

        .content-overlay h3 {
            font-size: clamp(16px, 1.8vw, 26px);
            margin: 0;
            line-height: 1.2;
            font-weight: 800;
        }


        /* =========================================
           WHITE CARDS
        ========================================= */

        .card-white {
            padding: 1.5vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-white h4 {
            font-size: clamp(16px, 1.6vw, 24px);
            margin: 0 0 5px 0;
            color: var(--text-dark);
            font-weight: 800;
            line-height: 1.1;
        }

        .features {
            list-style: none;
            padding: 0;
            margin-top: 1vw;

            font-size: clamp(10px, 1vw, 14px);
            color: #555;
            font-weight: 600;
        }

        .features li {
            margin-bottom: 6px;
        }

        .icons {
            display: flex;
            flex-direction: column;
            gap: 8px;

            margin-top: 1vw;

            font-size: clamp(10px, 1vw, 14px);
            color: #555;
            font-weight: 600;
        }


        /* =========================================
           VIEW MORE BUTTON
        ========================================= */

        .btn-view-more {
            position: absolute;

            bottom: 15px;
            right: 15px;

            background-color: var(--green);
            color: white;

            border: none;

            padding: clamp(6px, 0.8vw, 12px) clamp(12px, 1.5vw, 24px);

            border-radius: 8px;

            font-weight: 700;
            font-size: clamp(12px, 1vw, 16px);

            cursor: pointer;
            pointer-events: auto;

            transition:
                transform 0.2s,
                background-color 0.2s,
                box-shadow 0.2s;

            z-index: 5;

            font-family: 'Outfit', sans-serif;
        }

        .btn-view-more:hover {
            transform: scale(1.05);

            background-color: #123d1d;

            box-shadow:
                0 4px 12px rgba(26, 86, 41, 0.4);
        }


        /* =================================================
           FOUNDER IMAGE
        ================================================= */


        /* =========================================
           TWO BOTTOM VIEW MORE BUTTONS - UPDATED DESIGN
        ========================================= */
        .bottom-view-btn {
            position: absolute;
            bottom: 80px;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            background: oklab(0.85 0.01 0.17);
            color: #ffffff;
            text-decoration: none;
            padding: 26px 45px;
            min-width: 220px;
            min-height: 98px;
            border-radius: 50px;
            border: none;
            box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
            pointer-events: auto;
            z-index: 50;
            white-space: normal;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .bottom-view-btn:hover {
            background: #b57104;
            transform: translateX(-50%) scale(1.08);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .bottom-view-btn.right-view-btn {
            background: #1a5629;
        }

        .bottom-view-btn.right-view-btn:hover {
            background: #143d21;
        }

        .bottom-view-btn .tags {
            font-size: 11px !important;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 !important;
            font-weight: 400 !important;
            line-height: 1.3;
            text-align: center;
        }

        @keyframes btnSlideInLeft {
            0% {
                opacity: 0;
                transform: translateX(calc(-50% - 100px));
            }

            100% {
                opacity: 1;
                transform: translateX(-50%);
            }
        }

        @keyframes btnSlideInRight {
            0% {
                opacity: 0;
                transform: translateX(calc(-50% + 100px));
            }

            100% {
                opacity: 1;
                transform: translateX(-50%);
            }
        }

        .left-view-btn {
            left: 25%;
            animation: btnSlideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.2s both;
        }

        .right-view-btn {
            left: 72%;
            animation: btnSlideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.2s both;
        }

        .founder-overlay {
            position: absolute;

            top: 16%;
            left: 18.5%;

            width: 27%;
            height: 55%;

            border-radius: 24px;
            overflow: hidden;

            box-shadow:
                0 15px 35px rgba(0, 0, 0, 0.3);

            /*
             * HIGHER Z-INDEX
             * Founder image stays ABOVE banner
             */
            z-index: 20;

            opacity: 0;

            transform: translateX(-60px);

            animation-name: founderImageIn;
            animation-duration: 0.8s;
            animation-delay: 3.2s;

            animation-timing-function:
                cubic-bezier(0.25, 0.46, 0.45, 0.94);

            animation-fill-mode: forwards;
        }


        /* Founder Image */

        .founder-overlay img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            display: block;
        }


        /* =================================================
           FOUNDER IMAGE ANIMATION
        ================================================= */

        @keyframes founderImageIn {

            0% {
                opacity: 0;
                transform: translateX(-60px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }

        }


        /* =================================================
           BANNER OVERLAY
           COMES FROM BEHIND FOUNDER IMAGE
        ================================================= */

        .banner-overlay {

            position: absolute;

            top: 35%;
            left: 44%;

            width: 33%;
            height: 34%;

            background-color: var(--maroon);

            border-radius: 20px;

            /*
             * LOWER THAN FOUNDER IMAGE
             *
             * Founder = z-index 20
             * Banner  = z-index 10
             */
            z-index: 10;

            display: flex;
            flex-direction: column;
            justify-content: center;

            padding: 2% 4%;

            color: white;

            box-shadow:
                0 15px 35px rgba(0, 0, 0, 0.25);

            /*
             * Start behind the founder image
             */
            opacity: 0;

            transform: translateX(-180px);

            animation-name: bannerBehindFounder;

            animation-duration: 2s;

            /*
             * Start after founder image
             */
            animation-delay: 3.7s;

            animation-timing-function:
                cubic-bezier(0.22, 1, 0.36, 1);

            animation-fill-mode: forwards;
        }


        /* =================================================
           BANNER ANIMATION
        ================================================= */

        @keyframes bannerBehindFounder {

            0% {
                opacity: 0;
                transform: translateX(-180px);
            }

            30% {
                opacity: 1;
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }

        }


        /* =================================================
           BANNER TEXT
        ================================================= */

        .banner-overlay .subtitle {

            font-size: clamp(14px, 1.2vw, 18px);

            margin: 0 0 2px 0;

            color: #e0d0d5;

            font-weight: 500;
        }

        .banner-overlay h2 {

            font-size: clamp(20px, 2.2vw, 36px);

            margin: 0 0 4px 0;

            font-weight: 800;
        }

        .banner-overlay h3 {

            font-size: clamp(18px, 1.6vw, 26px);

            margin: 0 0 4px 0;

            font-weight: 700;
        }

        .banner-overlay .tags {

            font-size: clamp(11px, 0.9vw, 14px);

            color: #d1b8c0;

            margin: 0;

            font-weight: 400;
        }


        /* =================================================
           OPTIONAL: BANNER HOVER
        ================================================= */

        .banner-overlay {
            transition:
                box-shadow 0.3s ease,
                transform 0.3s ease;
        }

        .banner-overlay:hover {
            box-shadow:
                0 20px 45px rgba(0, 0, 0, 0.35);
        }


        /* =================================================
           RESPONSIVE
        ================================================= */

        @media (max-width: 1024px) {
            .bento-container {
                min-width: 100%;
            }

            .founder-overlay {
                width: 35%;
                left: 10%;
            }

            .banner-overlay {
                width: 45%;
                left: 35%;
            }

            .left-view-btn {
                left: 30%;
            }

            .right-view-btn {
                left: 70%;
            }
        }

        @media (max-width: 768px) {

            html,
            body {
                height: auto;
                min-height: 100vh;
                overflow-x: hidden;
                overflow-y: auto;
                /* Disable flex centering on mobile so content isn't cut off at the top */
                display: block; 
            }

            .dashboard-wrapper {
                padding: 20px 10px;
                overflow: hidden;
            }

            .bento-container {
                min-width: 100%;
                aspect-ratio: auto;
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 24px;
            }

            /* Bento Grid */
            .bento-grid {
                order: 1;
                /* Appears first on mobile */
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: none;
                grid-auto-rows: 200px;
                height: auto;
                opacity: 0.8;
            }

            /* Founder Image */
            .founder-overlay {
                order: 2;
                /* Appears second */
                position: relative;
                width: 100%;
                height: 400px;
                top: auto;
                left: auto;
                margin: 0 auto;
                transform: none !important;
                animation: none !important;
                opacity: 1;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            }

            /* Banner Overlay */
            .banner-overlay {
                order: 3;
                /* Appears third */
                position: relative;
                width: 90%;
                height: auto;
                top: auto;
                left: auto;
                margin: -80px auto 0;
                /* Overlap with founder image */
                padding: 30px;
                text-align: center;
                align-items: center;
                transform: none !important;
                animation: none !important;
                opacity: 1;
                z-index: 30;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
            }

            /* Bottom Buttons */
            .left-view-btn {
                order: 4;
            }

            .right-view-btn {
                order: 5;
            }

            .bottom-view-btn {
                position: relative;
                bottom: auto;
                left: auto !important;
                transform: none !important;
                width: 100%;
                margin: 10px 0;
                animation: none !important;
                opacity: 1;
            }

            .bottom-view-btn:hover {
                transform: translateY(-4px) !important;
            }
        }

        @media (max-width: 480px) {
            .bento-grid {
                grid-template-columns: 1fr;
                /* Switch to 1 column for very small phones */
                grid-auto-rows: 220px;
            }

            .founder-overlay {
                height: 300px;
            }

            .banner-overlay {
                width: 95%;
                margin-top: -60px;
                padding: 20px;
            }

            .banner-overlay h2 {
                font-size: 24px;
            }

            .banner-overlay h3 {
                font-size: 16px;
            }
        }
