*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #0a0f1a;
            --bg-secondary: #0f172a;
            --bg-card: rgba(15, 23, 42, 0.8);
            --cyan: #00ffc8;
            --cyan-dim: rgba(0, 255, 200, 0.1);
            --violet: #8b5cf6;
            --violet-dim: rgba(139, 92, 246, 0.1);
            --emerald: #10b981;
            --amber: #f59e0b;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border: rgba(148, 163, 184, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .pub-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .pub-link:visited {
            color: inherit;
        }
        .pub-link:focus-visible .pub-item {
            outline: 2px solid var(--accent-color);
            outline-offset: 4px;
        }
        .cta-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-bottom: 2rem;
        }
        /* Background Effects */
        .bg-gradient {
            position: fixed;
            inset: 0;
            background: 
                radial-gradient(ellipse at top, rgba(0, 200, 150, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
            pointer-events: none;
            z-index: -2;
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
            animation: float linear infinite;
            filter: blur(1px);
        }

        @keyframes float {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) scale(1); opacity: 0; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.25rem 2rem;
            transition: all 0.4s ease;
        }

        nav.scrolled {
            background: rgba(10, 15, 26, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 255, 200, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            position: relative;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
            color: var(--cyan);
            animation: spin 20s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes photon-pulse {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.3); }
        }

        .photon-pulse {
            animation: photon-pulse 2s ease-in-out infinite;
        }

        /* Click photon effect */
        .click-photon {
            position: fixed;
            pointer-events: none;
            border-radius: 50%;
            z-index: 9999;
            animation: photon-burst 0.8s ease-out forwards;
        }

        @keyframes photon-burst {
            0% {
                transform: scale(0) translate(-50%, -50%);
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
            100% {
                transform: scale(1) translate(-50%, -50%);
                opacity: 0;
            }
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 300;
            letter-spacing: 0.2em;
            color: var(--text-primary);
        }

        .logo-text span {
            color: var(--cyan);
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--cyan), var(--violet));
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--cyan);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.625rem 1.5rem;
            background: linear-gradient(135deg, rgba(0, 255, 200, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(0, 255, 200, 0.3);
            border-radius: 50px;
            color: var(--cyan);
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            border-color: var(--cyan);
            box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 6rem 2rem;
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--cyan-dim);
            border: 1px solid rgba(0, 255, 200, 0.3);
            border-radius: 50px;
            color: var(--cyan);
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 200;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 .gradient-text {
            display: block;
            margin-top: 0.5rem;
            font-weight: 300;
            background: linear-gradient(135deg, var(--cyan), var(--violet), var(--cyan));
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-shift 4s linear infinite;
        }

        @keyframes gradient-shift {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            border: none;
            border-radius: 50px;
            color: var(--bg-primary);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 255, 200, 0.3);
        }

        .btn-primary svg {
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: transparent;
            border: 1px solid var(--text-muted);
            border-radius: 50px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            border-color: rgba(0, 255, 200, 0.5);
            color: var(--cyan);
        }

        /* DNA Helix */
        .dna-helix {
            position: absolute;
            right: 3%;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 1;
        }

        .dna-helix svg {
            width: 220px;
            height: 550px;
            overflow: visible;
        }

        .dna-nucleotide {
            filter: drop-shadow(0 0 4px currentColor);
        }

        .dna-bond {
            stroke-linecap: round;
            opacity: 0.4;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        .scroll-indicator .mouse {
            width: 24px;
            height: 40px;
            border: 2px solid var(--text-muted);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .scroll-indicator .wheel {
            width: 4px;
            height: 10px;
            background: var(--cyan);
            border-radius: 2px;
            animation: scroll-wheel 1.5s ease-in-out infinite;
        }

        @keyframes scroll-wheel {
            0%, 100% { opacity: 1; transform: translateY(0); }
            50% { opacity: 0.3; transform: translateY(6px); }
        }

        /* Sections Common */
        section {
            padding: 8rem 2rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: inline-block;
            color: var(--cyan);
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 200;
        }

        .section-title span {
            color: var(--cyan);
        }

        /* Research Section */
        .research-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .research-card {
            padding: 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 1.25rem;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .research-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(0, 255, 200, 0.3);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .research-card.cyan:hover { border-color: var(--cyan); box-shadow: 0 25px 50px rgba(0, 255, 200, 0.1); }
        .research-card.violet:hover { border-color: var(--violet); box-shadow: 0 25px 50px rgba(139, 92, 246, 0.1); }
        .research-card.emerald:hover { border-color: var(--emerald); box-shadow: 0 25px 50px rgba(16, 185, 129, 0.1); }
        .research-card.amber:hover { border-color: var(--amber); box-shadow: 0 25px 50px rgba(245, 158, 11, 0.1); }

        .research-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.25rem;
            transition: transform 0.3s ease;
        }

        .research-card:hover .research-icon {
            transform: scale(1.15);
        }

        .research-icon.cyan { color: var(--cyan); }
        .research-icon.violet { color: var(--violet); }
        .research-icon.emerald { color: var(--emerald); }
        .research-icon.amber { color: var(--amber); }

        .research-card h3 {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .research-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Product Section */
        #produits {
            position: relative;
        }

        .product-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 255, 200, 0.08) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
            pointer-events: none;
            filter: blur(60px);
        }

        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .product-card {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 15, 26, 0.95));
            border: 1px solid rgba(100, 116, 139, 0.2);
            border-radius: 1.5rem;
            overflow: hidden;
            backdrop-filter: blur(20px);
        }

        .product-main {
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        @media (max-width: 900px) {
            .product-main {
                grid-template-columns: 1fr;
            }
        }

        .product-info .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 0.875rem;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 50px;
            color: var(--emerald);
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .status-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--emerald);
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        .product-info h3 {
            font-size: 1.75rem;
            font-weight: 300;
            margin-bottom: 1.25rem;
            line-height: 1.3;
        }

        .product-info > p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .product-info strong {
            color: var(--cyan);
            font-weight: 500;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .feature-item {
            padding: 1rem;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(100, 116, 139, 0.15);
            border-radius: 0.75rem;
        }

        .feature-item .label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.25rem;
        }

        .feature-item .value {
            color: var(--cyan);
            font-weight: 500;
        }

        .feature-item .detail {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* ChromoQ Panel */
        .chromoq-panel {
            background: rgba(30, 41, 59, 0.3);
            border: 1px solid rgba(100, 116, 139, 0.15);
            border-radius: 1rem;
            padding: 1.5rem;
        }

        .chromoq-panel h4 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
        }

        .chromoq-panel h4 svg {
            color: var(--violet);
        }

        .variant-card {
            padding: 1rem;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(100, 116, 139, 0.15);
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .variant-card:hover {
            border-color: rgba(0, 255, 200, 0.3);
            background: rgba(15, 23, 42, 0.8);
        }

        .variant-card:last-child {
            margin-bottom: 0;
        }

        .variant-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .variant-name {
            font-weight: 500;
        }

        .variant-status {
            font-size: 0.7rem;
            padding: 0.25rem 0.625rem;
            border-radius: 50px;
        }

        .variant-status.validated {
            background: rgba(16, 185, 129, 0.2);
            color: var(--emerald);
        }

        .variant-status.testing {
            background: rgba(245, 158, 11, 0.2);
            color: var(--amber);
        }

        .variant-status.dev {
            background: rgba(100, 116, 139, 0.2);
            color: var(--text-secondary);
        }

        .variant-specs {
            display: flex;
            gap: 1.5rem;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }

        .variant-specs .spec-label {
            color: var(--text-muted);
        }

        .variant-specs .emission { color: var(--cyan); }
        .variant-specs .efficiency { color: var(--violet); }

        .variant-bar {
            height: 4px;
            background: rgba(100, 116, 139, 0.2);
            border-radius: 2px;
            overflow: hidden;
        }

        .variant-bar-fill {
            height: 100%;
            border-radius: 2px;
            transition: width 0.5s ease;
        }

        .variant-bar-fill.blue { background: linear-gradient(90deg, #00d4ff, transparent); }
        .variant-bar-fill.green { background: linear-gradient(90deg, #00ff88, transparent); }
        .variant-bar-fill.orange { background: linear-gradient(90deg, #ff8800, transparent); }

        .doc-button {
            width: 100%;
            margin-top: 1.5rem;
            padding: 0.875rem;
            background: transparent;
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 0.75rem;
            color: var(--violet);
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .doc-button:hover {
            background: rgba(139, 92, 246, 0.1);
            border-color: var(--violet);
        }

        /* Stats Bar */
        .stats-bar {
            border-top: 1px solid rgba(100, 116, 139, 0.15);
            background: rgba(30, 41, 59, 0.3);
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 300;
            color: var(--cyan);
            animation: stat-pulse 2.5s ease-in-out infinite;
        }

        .stat-item:nth-child(1) .stat-value { animation-delay: 0s; }
        .stat-item:nth-child(2) .stat-value { animation-delay: 0.3s; }
        .stat-item:nth-child(3) .stat-value { animation-delay: 0.6s; }
        .stat-item:nth-child(4) .stat-value { animation-delay: 0.9s; }

        @keyframes stat-pulse {
            0%, 100% {
                opacity: 0.7;
                transform: scale(1);
                text-shadow: 0 0 10px rgba(0, 255, 200, 0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.08);
                text-shadow: 0 0 25px rgba(0, 255, 200, 0.6), 0 0 50px rgba(0, 255, 200, 0.3);
            }
        }

        .stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.25rem;
        }

        /* Publications */
        .publications-list {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Master Section */
        .master-section {
            position: relative;
        }

        .master-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .master-card {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(15, 23, 42, 0.9));
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 1.5rem;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .master-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
        }

        .master-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .master-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 0.875rem;
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 50px;
            color: var(--amber);
            font-size: 0.75rem;
            letter-spacing: 0.05em;
        }

        .master-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--amber);
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        .master-year {
            font-size: 0.875rem;
            color: var(--text-muted);
            padding: 0.25rem 0.75rem;
            background: rgba(100, 116, 139, 0.2);
            border-radius: 0.5rem;
        }

        .master-title {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.4;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .master-title .highlight {
            color: var(--cyan);
            font-weight: 500;
        }

        .master-problematic {
            background: rgba(30, 41, 59, 0.5);
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .problematic-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--amber);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .master-problematic p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }

        .master-problematic p:last-child {
            margin-bottom: 0;
        }

        .master-problematic strong {
            color: var(--text-primary);
        }

        .master-question {
            display: flex;
            gap: 1.25rem;
            background: linear-gradient(135deg, rgba(0, 255, 200, 0.08), rgba(139, 92, 246, 0.08));
            border: 1px solid rgba(0, 255, 200, 0.2);
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .question-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
        }

        .question-content {
            flex: 1;
        }

        .question-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .question-content p {
            color: var(--text-primary);
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 0;
        }

        .question-content strong {
            color: var(--cyan);
        }

        .master-approach {
            margin-bottom: 2rem;
        }

        .approach-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
            text-align: center;
        }

        .approach-grid {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .approach-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1.25rem 1.5rem;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--border);
            border-radius: 1rem;
            min-width: 140px;
            transition: all 0.3s ease;
        }

        .approach-item:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 255, 200, 0.3);
        }

        .approach-icon {
            width: 48px;
            height: 48px;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .approach-icon.cyan {
            background: rgba(0, 255, 200, 0.15);
            color: var(--cyan);
        }

        .approach-icon.violet {
            background: rgba(139, 92, 246, 0.15);
            color: var(--violet);
        }

        .approach-icon.emerald {
            background: rgba(16, 185, 129, 0.15);
            color: var(--emerald);
        }

        .approach-item span {
            font-weight: 500;
            color: var(--text-primary);
        }

        .approach-item small {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .approach-arrow {
            color: var(--text-muted);
            font-size: 1.5rem;
        }

        .master-impact {
            background: rgba(30, 41, 59, 0.3);
            border-radius: 1rem;
            padding: 1.5rem;
        }

        .impact-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            text-align: center;
        }

        .impact-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.75rem;
        }

        .impact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .impact-item:hover {
            background: rgba(15, 23, 42, 0.8);
            color: var(--text-primary);
        }

        .impact-icon {
            font-size: 1.25rem;
        }

        .master-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 4rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--amber), var(--violet));
            border-radius: 50px;
            color: var(--bg-primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .master-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
        }

        .master-cta svg {
            transition: transform 0.3s ease;
        }

        .master-cta:hover svg {
            transform: translateX(4px);
        }

        .nph-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            border-radius: 50px;
            color: var(--bg-primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nph-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 255, 200, 0.3);
        }

        .nph-cta svg {
            transition: transform 0.3s ease;
        }

        .nph-cta:hover svg {
            transform: translateX(4px);
        }

        @media (max-width: 600px) {
            .master-question {
                flex-direction: column;
                text-align: center;
            }

            .approach-arrow {
                transform: rotate(90deg);
            }
        }

        .pub-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid var(--border);
            border-radius: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .pub-item:hover {
            background: rgba(30, 41, 59, 0.5);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateX(8px);
        }

        .pub-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .pub-icon {
            width: 48px;
            height: 48px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--emerald);
        }

        .pub-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }

        .pub-title {
            font-weight: 500;
            margin-bottom: 0.25rem;
            transition: color 0.3s ease;
        }

        .pub-item:hover .pub-title {
            color: var(--emerald);
        }

        .pub-platform {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .pub-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pub-status {
            font-size: 0.75rem;
            padding: 0.375rem 0.875rem;
            border-radius: 50px;
        }

        .pub-status.available {
            background: rgba(16, 185, 129, 0.15);
            color: var(--emerald);
        }

        .pub-status.progress {
            background: rgba(245, 158, 11, 0.15);
            color: var(--amber);
        }

        .pub-arrow {
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .pub-item:hover .pub-arrow {
            color: var(--emerald);
            transform: translateX(4px);
        }

        /* Contact */
        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-logo svg {
            width: 24px;
            height: 24px;
            color: var(--cyan);
        }

        .footer-logo span {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--text-secondary);
            font-weight: 300;
            letter-spacing: 0.15em;
        }

        .footer-logo span em {
            color: var(--cyan);
            font-style: normal;
            font-weight: 500;
        }

        .footer-copy {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cyan), var(--violet), var(--cyan));
            z-index: 1001;
            transition: width 0.1s ease;
            box-shadow: 0 0 10px var(--cyan);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            border: none;
            border-radius: 50%;
            color: var(--bg-primary);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 200, 0.4);
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
        .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
        .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
        .animate-on-scroll.delay-4 { transition-delay: 0.4s; }

        /* ChromoQ Bars Animation */
        .variant-bar-fill {
            width: 0 !important;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .variant-bar-fill.animated {
            width: var(--target-width) !important;
        }

        /* Typing Effect */
        .typing-text {
            display: inline;
        }

        .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 1em;
            background: var(--cyan);
            margin-left: 4px;
            animation: blink 0.8s infinite;
            vertical-align: text-bottom;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Tooltips */
        .tooltip-trigger {
            position: relative;
            cursor: help;
            border-bottom: 1px dotted var(--cyan);
        }

        .tooltip-trigger::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: var(--bg-secondary);
            border: 1px solid var(--cyan);
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            font-size: 0.8rem;
            color: var(--text-secondary);
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 200, 0.1);
            max-width: 280px;
            white-space: normal;
            text-align: center;
            line-height: 1.5;
        }

        .tooltip-trigger::before {
            content: '';
            position: absolute;
            bottom: calc(100% + 4px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            border: 6px solid transparent;
            border-top-color: var(--cyan);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 101;
        }

        .tooltip-trigger:hover::after,
        .tooltip-trigger:hover::before {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Active Nav Link */
        .nav-links a.active {
            color: var(--cyan);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        /* Easter Egg - Photon Rain */
        .photon-rain {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            border-radius: 50%;
            animation: rain-fall linear forwards;
        }

        @keyframes rain-fall {
            0% {
                transform: translateY(-100vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Parallax DNA */
        .dna-helix {
            transition: transform 0.1s ease-out;
        }

        /* Modals */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            overflow-y: auto;
            padding: 2rem;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            max-width: 700px;
            margin: 2rem auto;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 1.5rem;
            padding: 2.5rem;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 0.5rem;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--cyan);
        }

        .modal-title {
            font-size: 1.75rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .modal-subtitle {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .modal-section {
            margin-bottom: 1.75rem;
        }

        .modal-section h3 {
            font-size: 1rem;
            font-weight: 500;
            color: var(--cyan);
            margin-bottom: 0.75rem;
        }

        .modal-section p, .modal-section li {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .modal-section ul {
            list-style: none;
            padding-left: 0;
        }

        .modal-section li {
            padding-left: 1.25rem;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .modal-section li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--cyan);
        }

        .modal-section a {
            color: var(--cyan);
            text-decoration: none;
        }

        .modal-section a:hover {
            text-decoration: underline;
        }

        /* Contact Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .form-group input,
        .form-group textarea {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 0.875rem 1rem;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(0, 255, 200, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        @media (max-width: 500px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .form-submit {
            margin-top: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            border: none;
            border-radius: 50px;
            color: var(--bg-primary);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 200, 0.3);
        }

        .form-note {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 0.5rem;
        }

        .form-note a {
            color: var(--cyan);
            text-decoration: none;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .form-success.active {
            display: block;
        }

        .form-success svg {
            width: 64px;
            height: 64px;
            color: var(--emerald);
            margin-bottom: 1rem;
        }

        .form-success h3 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .form-success p {
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 15, 26, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid rgba(0, 255, 200, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-cta {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .product-main {
                padding: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .stats-bar {
                gap: 2rem;
                padding: 1.5rem;
            }

            .pub-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .pub-right {
                width: 100%;
                justify-content: space-between;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }