    /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 14px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000000;
            color: #171717;
            line-height: 1.5;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Import all MLS styles from globals.css */
        
        /* MLS CSS Variables */
        :root {
            --mls-font-size: 14px;
            --mls-background: #000000;
            --mls-foreground: #171717;
            --mls-card: #ffffff;
            --mls-card-foreground: #171717;
            --mls-primary: #030213;
            --mls-primary-foreground: #ffffff;
            --mls-secondary: #f1f5f9;
            --mls-secondary-foreground: #030213;
            --mls-muted: #ececf0;
            --mls-muted-foreground: #717182;
            --mls-accent: #e9ebef;
            --mls-accent-foreground: #030213;
            --mls-border: rgba(0, 0, 0, 0.1);
            --mls-radius: 0.625rem;
        }

        /* MLS Reset and base styles - scoped to avoid conflicts */
        .mls-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       .mls-container {
            font-size: var(--mls-font-size);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--mls-background);
            color: var(--mls-foreground);
            line-height: 1.5;
            /* Background image properties - ADD YOUR LOCAL IMAGE URL HERE */
            /* Example: background-image: url('path/to/your/image.svg'); */
            background-image: url('/images/sec2v1.svg');
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: scroll;
        }

        /* MLS Fluid Typography - scoped */
        .mls-container .mls-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            color: white;
        }

        .mls-container .mls-heading-large {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 700;
            line-height: 1.2;
            color: #111827;
            margin: 0 0 0.5rem 0;
        }

        .mls-container .mls-heading-small {
            font-size: clamp(0.875rem, 2vw, 1rem);
            font-weight: 700;
            line-height: 1.2;
            color: #111827;
            margin: 0 0 0.5rem 0;
        }

        .mls-container .mls-paragraph {
            font-size: clamp(0.75rem, 1.8vw, 0.875rem);
            font-weight: 400;
            line-height: 1.5;
            color: #6b7280;
            margin: 0.25rem 0 0 0;
        }

        .mls-container .mls-text-large {
            font-size: clamp(2rem, 5vw, 3rem);
        }

        /* Override paragraph font size when inside mls-text-large container */
        .mls-container .mls-text-large .mls-paragraph {
            font-size: clamp(1rem, 2.2vw, 1.375rem);
        }

        /* MLS Main container utilities */
        .mls-fullscreen {
            min-height: 100vh;
        }

        .mls-flex {
            display: flex;
        }

        .mls-items-center {
            align-items: center;
        }

        .mls-justify-center {
            justify-content: center;
        }

        /* MLS Section styles with fluid spacing */
        .mls-section {
            background: transparent;
            padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
            position: relative;
            z-index: 2;
        }

        /* Move overlay to the container level - REMOVED to eliminate gray border effect */
        /* The dark overlay was causing visual border artifacts */

        .mls-container > * {
            position: relative;
            z-index: 2;
        }

        /* Mobile fallback for background-attachment: fixed issues */
        @media (max-width: 768px) {
            .mls-container {
                background-attachment: scroll !important;
            }
        }

        .mls-max-width {
            max-width: 80rem;
            margin: 0 auto;
        }

        .mls-grid {
            display: grid;
        }

        .mls-grid-two-cols {
            grid-template-columns: 1fr 1fr;
        }

        .mls-gap-large {
            gap: clamp(2rem, 6vw, 4rem);
        }

        .mls-space-y-6 > * + * {
            margin-top: 1.5rem;
        }

        .mls-space-y-4 > * + * {
            margin-top: 1rem;
        }

        /* MLS Text styles */
        .mls-text-white {
            color: white;
        }

        .mls-text-gray-light {
            color: #d1d5db;
        }

        .mls-leading-relaxed {
            line-height: 1.625;
        }

        .mls-leading-tight {
            line-height: 1.25;
        }

        /* MLS Title container */
        .mls-title-container {
            min-height: 120px;
            display: flex;
            align-items: center;
        }

        /* MLS Oval Tab for MYLCMA */
        .mls-oval-tab {
            background: white;
            color: black;
            padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
            border-radius: clamp(25px, 6vw, 40px);
            font-size: clamp(1.5rem, 3.5vw, 2.25rem);
            font-weight: 700;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        /* Only apply hover effects on devices that can hover (non-touch devices) */
        @media (hover: hover) and (pointer: fine) {
            .mls-oval-tab:hover {
                transform: scale(1.05);
                box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
            }
        }

        /* MLS Cards container with fluid sizing */
        .mls-cards-container {
            width: 100%;
            max-width: clamp(600px, 90vw, 900px);
            font-family: 'Inter', sans-serif;
        }

        .mls-cards-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: clamp(1rem, 3vw, 1.5rem);
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
        }

        .mls-right-cards {
            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 3vw, 1.5rem);
        }

        .mls-left-cards {
            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 3vw, 1.5rem);
        }

        /* MLS Card styles with fluid padding */
        .mls-card {
            background: white;
            border-radius: clamp(0.5rem, 2vw, 0.75rem);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            padding: clamp(1.5rem, 4vw, 2rem);
            cursor: pointer;
            position: relative;
            z-index: 10;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* FIXED: Hide cards smoothly when overlay is shown */
        .mls-card.hidden {
            opacity: 0;
            transform: scale(0.85);
            filter: blur(1px);
            z-index: 1;
            pointer-events: none;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .mls-card-large {
            padding: clamp(1.5rem, 4vw, 2rem);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* Compact variant for hallucination card */
        .mls-card-large.mls-card-compact {
            padding: clamp(1.25rem, 3vw, 1.75rem);
            justify-content: flex-start;
            align-items: flex-start;
        }

        .mls-card-small {
            padding: clamp(1rem, 3vw, 1.5rem);
            flex: 1;
        }

        .mls-card-bottom {
            padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
        }

        /* Only apply hover effects on devices that can hover (non-touch devices) */
        @media (hover: hover) and (pointer: fine) {
            .mls-card:hover {
                box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            }
        }

        /* Touch device interactions - add visual feedback for taps */
        @media (hover: none) and (pointer: coarse) {
            .mls-card {
                -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
            }
            
            .mls-card:active {
                transform: scale(0.98);
                transition: transform 0.1s ease;
            }
        }

        /* MLS Card content with fluid icon sizing */
        .mls-card-icon {
            width: clamp(1.5rem, 4vw, 2rem);
            height: clamp(1.5rem, 4vw, 2rem);
            fill: #6b7280;
            margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
            transition: transform 0.3s ease;
        }

        .mls-card-icon-small {
            width: clamp(1.25rem, 3vw, 1.5rem);
            height: clamp(1.25rem, 3vw, 1.5rem);
            fill: #6b7280;
            transition: transform 0.3s ease;
        }

        /* Only apply hover effects to icons on devices that can hover */
        @media (hover: hover) and (pointer: fine) {
            .mls-card:hover .mls-card-icon,
            .mls-card:hover .mls-card-icon-small {
                transform: scale(1.1) rotate(5deg);
            }
        }

        .mls-card-title-flex {
            display: flex;
            align-items: center;
            gap: clamp(0.5rem, 2vw, 0.75rem);
        }

        /* MLS Animations */
        .mls-animate-in {
            opacity: 0;
            transform: translateY(20px);
            animation: mls-slideInUp 0.8s ease-out forwards;
        }

        .mls-animate-delay-1 {
            animation-delay: 0.1s;
        }

        .mls-animate-delay-2 {
            animation-delay: 0.2s;
        }

        .mls-animate-delay-3 {
            animation-delay: 0.3s;
        }

        .mls-animate-delay-4 {
            animation-delay: 0.4s;
        }

        .mls-animate-delay-5 {
            animation-delay: 0.5s;
        }

        @keyframes mls-slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mls-title-animate {
            opacity: 0;
            transform: translateX(-50px) scale(0.95);
            animation: mls-titleIn 0.8s ease-out 0.2s forwards;
        }

        @keyframes mls-titleIn {
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .mls-text-animate {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            filter: blur(4px);
            animation: mls-textIn 0.6s ease-out forwards;
        }

        .mls-text-animate:nth-child(1) { animation-delay: 0.6s; }
        .mls-text-animate:nth-child(2) { animation-delay: 0.8s; }
        .mls-text-animate:nth-child(3) { animation-delay: 1.0s; }

        @keyframes mls-textIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .mls-cards-animate {
            opacity: 0;
            transform: translateX(50px) scale(0.95);
            animation: mls-cardsIn 0.8s ease-out 0.5s forwards;
        }

        @keyframes mls-cardsIn {
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        /* Adaptive text contrast system for background-aware text */
        .mls-adaptive-text {
            color: #000000;
            mix-blend-mode: difference;
            text-shadow: 
                0 0 1px rgba(255, 255, 255, 0.5),
                0 0 2px rgba(0, 0, 0, 0.5),
                0 0 3px rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        /* Enhanced adaptive text with stronger contrast */
        .mls-adaptive-text-strong {
            color: #000000;
            mix-blend-mode: difference;
            text-shadow: 
                0 0 1px rgba(255, 255, 255, 0.8),
                0 0 2px rgba(0, 0, 0, 0.8),
                0 0 4px rgba(255, 255, 255, 0.5),
                0 0 6px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        /* Hover state for adaptive text */
        @media (hover: hover) and (pointer: fine) {
            .mls-adaptive-text:hover,
            .mls-adaptive-text-strong:hover {
                color: #ffffff;
                mix-blend-mode: difference;
                text-shadow: 
                    0 0 2px rgba(0, 0, 0, 0.8),
                    0 0 4px rgba(255, 255, 255, 0.8),
                    0 0 6px rgba(0, 0, 0, 0.5),
                    0 0 8px rgba(255, 255, 255, 0.3);
            }
        }

        /* Active/clicked state for adaptive text */
        .mls-adaptive-text.active,
        .mls-adaptive-text-strong.active {
            color: #ffffff;
            mix-blend-mode: difference;
            text-shadow: 
                0 0 2px rgba(0, 0, 0, 0.9),
                0 0 4px rgba(255, 255, 255, 0.9),
                0 0 6px rgba(0, 0, 0, 0.6),
                0 0 8px rgba(255, 255, 255, 0.4);
        }

        /* Touch interactions for adaptive text */
        @media (hover: none) and (pointer: coarse) {
            .mls-adaptive-text:active,
            .mls-adaptive-text-strong:active {
                color: #ffffff;
                mix-blend-mode: difference;
                text-shadow: 
                    0 0 2px rgba(0, 0, 0, 0.9),
                    0 0 4px rgba(255, 255, 255, 0.9),
                    0 0 6px rgba(0, 0, 0, 0.6);
            }
        }

        /* Fallback for browsers that don't support mix-blend-mode */
        @supports not (mix-blend-mode: difference) {
            .mls-adaptive-text,
            .mls-adaptive-text-strong {
                color: #d1d5db;
                text-shadow: 
                    0 0 1px rgba(0, 0, 0, 0.8),
                    0 0 2px rgba(0, 0, 0, 0.6),
                    0 0 3px rgba(0, 0, 0, 0.4);
            }
            
            .mls-adaptive-text:hover,
            .mls-adaptive-text-strong:hover,
            .mls-adaptive-text.active,
            .mls-adaptive-text-strong.active {
                color: #ffffff;
                text-shadow: 
                    0 0 2px rgba(0, 0, 0, 0.9),
                    0 0 4px rgba(0, 0, 0, 0.7),
                    0 0 6px rgba(0, 0, 0, 0.5);
            }
        }

        /* Overlay styling - FIXED for proper clicking functionality */
        .overlay {
            position: absolute;
            inset: 0;
            z-index: 1000;
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 25px 50px rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(1rem, 4vw, 2rem);
            opacity: 0;
            transform: scale(0.1);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.8);
            transform-origin: center center;
            pointer-events: none;
            cursor: pointer;
        }

        .overlay.visible {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }

        .overlay-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
            max-width: 28rem;
            width: 100%;
            padding: 1.5rem;
            pointer-events: none;
        }

        .overlay-icon {
            width: 4rem;
            height: 4rem;
            fill: #6b7280;
            flex-shrink: 0;
            pointer-events: none;
        }

        .overlay-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
            line-height: 1.2;
            pointer-events: none;
        }

        .overlay-description {
            font-size: 1.125rem;
            color: #374151;
            line-height: 1.625;
            pointer-events: none;
        }

        /* Enhanced Responsive Design with Multiple Breakpoints */

        /* Large screens (1024px+) - Default styles already applied */

        /* Medium-Large screens (900px - 1024px) */
        @media (max-width: 1024px) {
            .mls-cards-container {
                max-width: clamp(500px, 85vw, 800px);
            }
            
            .mls-title-container {
                min-height: clamp(80px, 15vw, 120px);
            }
        }

        /* Medium screens (768px - 900px) */
        @media (max-width: 900px) {
            .mls-grid-two-cols {
                grid-template-columns: 1fr;
                gap: clamp(1.5rem, 4vw, 2.5rem);
            }
            
            .mls-cards-container {
                max-width: clamp(450px, 90vw, 700px);
            }
            
            .mls-cards-grid {
                grid-template-columns: 1.2fr 1fr;
                gap: clamp(0.75rem, 2.5vw, 1.25rem);
            }
            
            /* Align cards to left on mobile to match text alignment */
            .mls-flex[style*="justify-content"] {
                justify-content: flex-start !important;
            }
        }

        /* Small-Medium screens (640px - 768px) */
        @media (max-width: 768px) {
            .mls-cards-grid {
                grid-template-columns: 1fr;
                gap: clamp(0.75rem, 2vw, 1rem);
            }
            
            .mls-right-cards {
                flex-direction: row;
                gap: clamp(0.75rem, 2vw, 1rem);
            }
            
            .mls-left-cards {
                flex-direction: row;
                gap: clamp(0.75rem, 2vw, 1rem);
                margin-bottom: clamp(0.75rem, 2vw, 1rem);
            }
            
            .mls-cards-container {
                max-width: clamp(400px, 95vw, 600px);
            }
            
            .mls-card-small {
                min-height: clamp(120px, 20vw, 160px);
            }
        }

        /* Small screens (550px - 640px) */
        @media (max-width: 640px) {
            .mls-right-cards {
                flex-direction: column;
                gap: clamp(0.75rem, 2vw, 1rem);
            }
            
            .mls-cards-container {
                max-width: clamp(350px, 95vw, 500px);
            }
            
            .mls-title-container {
                min-height: clamp(60px, 12vw, 100px);
            }
        }

        /* Extra Small screens (480px - 550px) */
        @media (max-width: 550px) {
            .mls-cards-grid {
                grid-template-columns: 1fr;
                gap: clamp(0.75rem, 2vw, 1rem);
            }
            
            .mls-right-cards {
                flex-direction: row;
                gap: clamp(0.75rem, 2vw, 1rem);
            }
            
            .mls-cards-container {
                max-width: clamp(320px, 95vw, 450px);
            }
            
            .mls-space-y-6 > * + * {
                margin-top: clamp(0.75rem, 3vw, 1.25rem);
            }
            
            .mls-space-y-4 > * + * {
                margin-top: clamp(0.5rem, 2vw, 0.75rem);
            }
        }

        /* Very Small screens (480px and below) */
        @media (max-width: 480px) {
            .mls-section {
                padding: clamp(1.5rem, 5vw, 2.5rem) clamp(0.75rem, 3vw, 1.5rem);
            }
            
            .mls-cards-container {
                max-width: clamp(280px, 95vw, 400px);
            }
            
            .mls-card {
                padding: clamp(1rem, 3vw, 1.5rem);
            }
            
            .mls-card-large {
                padding: clamp(1rem, 3vw, 1.5rem);
            }
            
            .mls-card-small {
                padding: clamp(0.875rem, 2.5vw, 1.25rem);
                min-height: clamp(100px, 18vw, 140px);
            }
            
            .mls-card-bottom {
                padding: clamp(1rem, 3vw, 1.5rem);
            }
            
            .mls-title-container {
                min-height: clamp(50px, 10vw, 80px);
            }
            
            .mls-card-icon {
                width: clamp(1.25rem, 3.5vw, 1.75rem);
                height: clamp(1.25rem, 3.5vw, 1.75rem);
            }
            
            .mls-card-icon-small {
                width: clamp(1rem, 3vw, 1.25rem);
                height: clamp(1rem, 3vw, 1.25rem);
            }
        }

        /* Scaling adjustments for very small screens */
        @media (max-width: 400px) {
            .mls-container {
                font-size: clamp(12px, 3.5vw, 14px);
            }
            
            .mls-cards-container {
                max-width: clamp(260px, 98vw, 350px);
            }
        }