
        /* Critical CSS - Simple, Clean Design */
        :root {
            --neural-black: #000;
            --neural-white: #fff;
            --neural-purple: #3c1361;
            --neural-orange: #d97706;
            --neural-soft-blue: #74EEDD;
            --neural-light-grey: #9ca3af;
            --neural-dark-grey: #374151;
            --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --section-padding: clamp(4rem, 8vw, 8rem);
            --container-padding: clamp(1rem, 4vw, 2rem);
        }

        /* Inline Text Links - Natural internal navigation */
        .inline-text-link {
            color: inherit;
            text-decoration: underline;
            text-decoration-color: rgba(217, 119, 6, 0.3);
            text-underline-offset: 2px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .inline-text-link:hover {
            text-decoration-color: rgba(217, 119, 6, 0.8);
            color: rgba(217, 119, 6, 0.9);
        }
        
        /* Subtle glow on hover */
        .inline-text-link:hover::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.5), transparent);
            animation: linkGlow 0.5s ease;
        }
        
        @keyframes linkGlow {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* For light text areas in FAQ */
        .faq-answer-content .inline-text-link {
            text-decoration-color: rgba(116, 238, 221, 0.3);
        }
        
        .faq-answer-content .inline-text-link:hover {
            color: rgba(116, 238, 221, 0.9);
            text-decoration-color: rgba(116, 238, 221, 0.8);
        }

        body {
            background: var(--neural-black);
            color: var(--neural-white);
            font-family: var(--font-primary);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            line-height: 1.6;
            
            -moz-osx-font-smoothing: grayscale;
        }

        /* HEADER: React Mount Point Optimization */
        #header-root {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            min-height: var(--header-height);
            contain: layout style;
        }

        main {
        }

        /* Simple Hero Section - Matches Services Pages */
        .hero-section {
            position: relative;
            min-height: 100vh;
            width: 100vw;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(60, 19, 97, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(217, 119, 6, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(116, 238, 221, 0.2) 0%, transparent 70%),
                linear-gradient(135deg, #000 0%, #0a0a0a 100%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
            background-size: 40px 40px;
            
        }

            66% { transform: translate(2px, -1px); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-block;
            background: #000;
            color: var(--neural-white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            font-family: var(--font-mono);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            
        }

        .hero-mini-badge {
            display: inline-block;
            background: rgba(116, 238, 221, 0.1);
            color: var(--neural-soft-blue);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: capitalize;
            border: 1px solid rgba(116, 238, 221, 0.2);
            transition: all 0.3s ease;
            
        }

        .hero-mini-badge:hover {
            background: rgba(116, 238, 221, 0.2);
            border-color: rgba(116, 238, 221, 0.4);
            transform: translateY(-1px);
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 200;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: #000;

            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 300;
            color: var(--neural-orange);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-description {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: #000;
            color: var(--neural-white);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            
        }

        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual-element {
            width: 400px;
            height: 400px;
            background: 
                radial-gradient(circle at 30% 30%, rgba(60, 19, 97, 0.6) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(217, 119, 6, 0.4) 0%, transparent 70%),
                conic-gradient(from 45deg, rgba(116, 238, 221, 0.3), rgba(60, 19, 97, 0.3), rgba(217, 119, 6, 0.3), rgba(116, 238, 221, 0.3));
            border-radius: 50%;
            position: relative;
            
            display: flex;
            align-items: center;
            justify-content: center;
        }

        }

        .hero-visual-element::before {
            content: '';
            position: absolute;
            inset: 20px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
            border: 2px solid rgba(116, 238, 221, 0.3);
            z-index: 1;
        }

        .hero-visual-icon {
            width: 200px;
            height: 200px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            font-weight: 700;
            color: white;
            position: relative;
            z-index: 2;
            letter-spacing: 0.1em;
        }

        /* Team Avatar Styles */
        .team-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(217, 119, 6, 0.3);
            transition: all 0.3s ease;
        }

        .team-avatar:hover {
            border-color: rgba(217, 119, 6, 0.6);
            transform: scale(1.05);
        }

        .team-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Full width content sections */
        .neural-container {
            max-width: 1600px !important; /* Increased from 1200px */
            margin: 0 auto;
            padding: 0 3rem;
        }
        
        /* Leadership team section - wider cards */
        .neural-grid--3 {
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* Company values section - narrower grid for better readability */
        .neural-grid--4 {
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Values section specific container width */
        .neural-grid--2 {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* More compact cards for values section */
        .neural-card {
            padding: 2rem;
        }
        
        /* Neural thoughts section - wider quote */
        blockquote {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem;
            font-size: 1.5rem;
            line-height: 1.8;
        }

        /* Section title styles moved to /assets/css/components/faq.css */

        /* FAQ Section styles moved to /assets/css/components/faq.css */

        /* Mobile & Touch Optimizations */
        @media (max-width: 768px) {
            :root {
                --section-padding: clamp(3rem, 6vw, 6rem);
                --container-padding: clamp(1rem, 3vw, 1.5rem);
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                padding: 0 var(--container-padding);
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .hero-visual {
                height: 300px;
            }
            
            .hero-visual-element {
                width: 250px;
                height: 250px;
            }
            
            .hero-visual-icon {
                width: 120px;
                height: 120px;
                font-size: 2.5rem;
                font-weight: 700;
                letter-spacing: 0.1em;
            }
            
            .hero-badge {
                font-size: 0.75rem;
                padding: 0.625rem 1.25rem;
            }
            
            .hero-cta {
                padding: 0.875rem 1.75rem;
                font-size: 1rem;
                /* Enhanced touch target */
                min-height: 48px;
                min-width: 120px;
            }
            
            /* Team-specific mobile optimizations */
            .neural-grid--3 {
                grid-template-columns: 1fr;
                gap: 2rem;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .team-avatar {
                width: 100px;
                height: 100px;
                margin: 0 auto 1rem;
                /* Enhanced touch target for mobile */
                min-width: 100px;
                min-height: 100px;
            }
            
            .neural-card {
                padding: 1.5rem;
                text-align: center;
                /* Better touch interaction */
                min-height: auto;
            }
            
            .neural-h3 {
                font-size: 1.25rem;
                margin-bottom: 0.5rem;
            }
            
            .neural-body-sm {
                font-size: 0.875rem;
                margin-bottom: 1rem;
            }
            
            .neural-body {
                font-size: 0.95rem;
                line-height: 1.6;
                text-align: left;
            }
            
            /* Neural thoughts section mobile optimization */
            blockquote {
                font-size: 1.1rem !important;
                line-height: 1.6 !important;
                padding: 1.5rem !important;
                margin: 0 !important;
            }
            
            /* Section title responsive styles in /assets/css/components/faq.css */
            
            /* FAQ mobile styles moved to /assets/css/components/faq.css
            
            /* Company values mobile layout */
            .neural-grid--4 {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .neural-grid--4 .neural-card {
                padding: 1rem;
                text-align: center;
            }
            
            .neural-grid--4 .neural-h4 {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }
            
            .neural-grid--4 .neural-body-sm {
                font-size: 0.85rem;
                line-height: 1.5;
            }
            
            /* Improve readability on mobile */
            .neural-body,
            .neural-body-lg {
                line-height: 1.7;
            }
            
            /* Prevent text overflow */
            h1, h2, h3, h4 {
                word-wrap: break-word;
                hyphens: auto;
            }
            
            /* Enhanced spacing for mobile */
            .neural-section {
                padding: var(--section-padding) 0;
            }
            
            .neural-container {
                padding: 0 var(--container-padding);
            }
            
            /* Better mobile margins */
            .neural-mb-xl {
                margin-bottom: 2rem;
            }
            
            .neural-mb-lg {
                margin-bottom: 1.5rem;
            }
            
            .neural-mb-md {
                margin-bottom: 1rem;
            }
            
            .neural-mb-sm {
                margin-bottom: 0.75rem;
            }
        }
        
        /* Tablet Optimizations */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-content {
                gap: 3rem;
            }
            
            .hero-visual {
                height: 400px;
            }
            
            .hero-visual-element {
                width: 300px;
                height: 300px;
            }
            
            /* Maintain wider layout on tablets */
            .neural-container {
                max-width: 100%;
                padding: 0 2rem;
            }
            
            /* Team grid optimization for tablet */
            .neural-grid--3 {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
                max-width: 900px;
                margin: 0 auto;
            }
            
            .neural-grid--3 .neural-card:last-child {
                grid-column: 1 / -1;
                max-width: 450px;
                margin: 0 auto;
            }
            
            .team-avatar {
                width: 110px;
                height: 110px;
            }
            
            .neural-card {
                padding: 2rem;
            }
            
            /* Company values tablet layout */
            .neural-grid--4 {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            /* Neural thoughts section tablet optimization */
            blockquote {
                font-size: 1.3rem;
                line-height: 1.7;
                padding: 2rem;
            }
            
            /* Section title tablet styles in /assets/css/components/faq.css */
        }
        
        /* High DPI Display Optimizations */
        @media (
            }
        }
        
        /* Small Mobile Phones (≤ 480px) */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            
            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .hero-visual {
                height: 250px;
            }
            
            .hero-visual-element {
                width: 200px;
                height: 200px;
            }
            
            .hero-visual-icon {
                width: 100px;
                height: 100px;
                font-size: 2rem;
                font-weight: 700;
                letter-spacing: 0.1em;
            }
            
            .team-avatar {
                width: 80px;
                height: 80px;
            }
            
            .neural-card {
                padding: 1.25rem;
                margin-bottom: 1.5rem;
            }
            
            .neural-h3 {
                font-size: 1.1rem;
            }
            
            .neural-body {
                font-size: 0.9rem;
            }
            
            /* Section title mobile styles in /assets/css/components/faq.css */
            
            blockquote {
                font-size: 1rem !important;
                padding: 1.25rem !important;
            }
            
            .neural-grid--4 {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        /* Touch-specific optimizations */
        @media (hover: none) and (pointer: coarse) {
            .hero-cta {
                padding: 1rem 2rem;
                min-height: 50px;
            }
            
            .neural-card {
                /* Disable hover effects on touch devices */
                transform: none !important;
            }
            
            .team-avatar {
                /* Larger touch targets */
                min-width: 100px;
                min-height: 100px;
            }
            
            /* FAQ mobile styles moved to /assets/css/components/faq.css
        }
        
        /* Accessibility: Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            * {

                transition: all 0.3s ease;
            }
            
            .hero-visual-element,
            .hero-grid {
                
            }
            
            .team-avatar {
                transform: none !important;
            }
        }
        
        /* Landscape orientation optimization for mobile */
        @media (max-width: 1024px) and (orientation: landscape) {
            .hero-section {
                min-height: 100vh;
                padding: 2rem 0;
            }
            
            .hero-content {
                gap: 2rem;
                align-items: center;
            }
            
            .hero-visual {
                height: 250px;
            }
            
            .hero-visual-element {
                width: 200px;
                height: 200px;
            }
            
            .neural-section {
                padding: 3rem 0;
            }
        }
        
        /* Enhanced focus states for keyboard navigation */
        @media (prefers-reduced-motion: no-preference) {
            .hero-cta:focus-visible {
                outline: 3px solid var(--neural-orange);
                outline-offset: 2px;
                
            }
            
            .neural-card:focus-within {
                border-color: rgba(217, 119, 6, 0.4);
                
            }
        }
        
        /* Print styles for accessibility */
        @media print {
            .hero-visual-element,
            .hero-background,
            .hero-grid {
                display: none !important;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: left;
            }
            
            .team-avatar {
                print-color-adjust: exact;
            }
            
            .neural-card {
                break-inside: avoid;
                page-break-inside: avoid;
            }
        }
        
        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            body {
                background: var(--neural-black);
                color: var(--neural-white);
            }
        }
    