        /* Modern Typography */
        :root {
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Space Grotesk', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }
        
        /* Modern Hero Section with Animated Background */
        .product-hero {
            background: #0A0E27;
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        
        /* Animated gradient mesh background */
        .hero-background {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        
        .gradient-mesh {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 184, 212, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 102, 204, 0.2) 0%, transparent 50%);
            animation: meshMove 20s ease-in-out infinite;
        }
        
        @keyframes meshMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-10%, -10%) rotate(120deg); }
            66% { transform: translate(5%, -5%) rotate(240deg); }
        }
        
        /* Floating particles */
        .particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            background: rgba(0, 184, 212, 0.6);
            border-radius: 50%;
            animation: float 20s infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }
        
        /* Hero Content */
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: white;
            letter-spacing: -0.02em;
        }
        
        .hero-text h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            color: white;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }
        
        .hero-text h1 span {
            background: linear-gradient(135deg, #0066CC 0%, #00B8D4 50%, #0066CC 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.6;
        }
        
        /* Animated Stats Cards */
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .stat-card-hero {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 1.5rem 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card-hero::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #0066CC, #00B8D4, #0066CC);
            border-radius: 20px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }
        
        .stat-card-hero:hover::before {
            opacity: 1;
        }
        
        .stat-card-hero:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .stat-value {
            font-family: var(--font-mono);
            font-size: 2.5rem;
            font-weight: 700;
            color: #00B8D4;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* CTA Buttons with Glow Effect */
        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn-glow {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-glow-primary {
            background: linear-gradient(135deg, #0066CC, #004D99);
            color: white;
            box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
        }
        
        .btn-glow-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 102, 204, 0.5);
        }
        
        .btn-glow-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-glow-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        /* 3D Video Frame */
        .hero-visual {
            position: relative;
            perspective: 1500px;
        }
        
        .video-3d-wrapper {
            position: relative;
            transform-style: preserve-3d;
            animation: float3d 6s ease-in-out infinite;
        }
        
        @keyframes float3d {
            0%, 100% { transform: rotateY(-5deg) rotateX(5deg); }
            50% { transform: rotateY(5deg) rotateX(-5deg); }
        }

        .video-3d-wrapper-img {
            position: relative;
            transform-style: preserve-3d;
            animation: float3d-img 6s ease-in-out infinite;
        }
        
        @keyframes float3d-img {
            0%, 100% { transform: rotateY(5deg) rotateX(-5deg); }
            50% { transform: rotateY(-5deg) rotateX(5deg); }
        }
        
        .video-frame {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 0.2rem;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(0, 184, 212, 0.1);
        }
        
        /* Bento Grid Features Section */
        .features-bento {
            padding: 6rem 0;
            background: #f8f9fa;
        }
        
        html.dark-mode-enabled .features-bento {
            background: #0a0a0a;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        
        .section-header p {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 200px;
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .bento-item {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        html.dark-mode-enabled .bento-item {
            background: #1a1a1a;
            border-color: rgba(255, 255, 255, 0.05);
        }
        
        .bento-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Bento grid sizes */
        .bento-large {
            grid-column: span 3;
            grid-row: span 2;
        }
        
        .bento-wide {
            grid-column: span 3;
        }
        
        .bento-tall {
            grid-row: span 2;
        }
        
        .bento-small {
            grid-column: span 2;
        }
        
        .bento-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0066CC, #00B8D4);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .bento-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .bento-description {
            color: var(--text-light);
            line-height: 1.6;
            flex-grow: 1;
        }
        
        /* Animated background pattern for some bento items */
        .bento-pattern {
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background-image: 
                radial-gradient(circle at 2px 2px, rgba(0, 102, 204, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: patternMove 20s linear infinite;
            z-index: 0;
        }
        
        @keyframes patternMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(20px, 20px); }
        }
        
        /* Workflow Visualization */
        .workflow-section {
            padding: 6rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        html.dark-mode-enabled .workflow-section {
            background: #1a1a1a;
        }
        
        .workflow-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .workflow-path {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #0066CC 0%, #00B8D4 100%);
            z-index: 1;
        }
        
        .workflow-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .workflow-step {
            text-align: center;
            position: relative;
        }
        
        .step-icon-modern {
            width: 120px;
            height: 120px;
            background: white;
            border: 3px solid transparent;
            background-image: linear-gradient(white, white), 
                              linear-gradient(135deg, #0066CC, #00B8D4);
            background-origin: border-box;
            background-clip: content-box, border-box;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #0066CC;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }
        
        html.dark-mode-enabled .step-icon-modern {
            background-image: linear-gradient(#1a1a1a, #1a1a1a), 
                              linear-gradient(135deg, #0066CC, #00B8D4);
        }
        
        .workflow-step:hover .step-icon-modern {
            transform: scale(1.1) rotate(5deg);
        }
        
        .step-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .step-description {
            color: var(--text-light);
            max-width: 200px;
            margin: 0 auto;
        }
        
        /* Interactive Comparison */
        .comparison-interactive {
            padding: 6rem 0;
            background: #f8f9fa;
        }
        
        html.dark-mode-enabled .comparison-interactive {
            background: #121212;
        }
        
        .comparison-toggle {
            max-width: 1000px;
            margin: 3rem auto;
            position: relative;
        }
        
        .toggle-container {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
        }
        
        .toggle-switch {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            padding: 0.5rem;
            display: flex;
            position: relative;
        }
        
        .toggle-option {
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }
        
        .toggle-slider {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            width: 50%;
            height: calc(100% - 1rem);
            background: linear-gradient(135deg, #dc3545, #c82333);
            border-radius: 50px;
            transition: all 0.3s ease;
            z-index: 1;
        }
        
        .toggle-switch.with-blackline .toggle-slider {
            transform: translateX(100%);
            background: linear-gradient(135deg, #28a745, #218838);
        }
        
        .comparison-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .comparison-visual {
            position: relative;
            height: 400px;
        }
        
        .comparison-bars {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
            height: 100%;
        }
        
        .bar {
            width: 60px;
            background: linear-gradient(to top, #0066CC, #00B8D4);
            border-radius: 10px 10px 0 0;
            transition: all 0.6s ease;
            position: relative;
        }
        
        .bar-label {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9rem;
            color: var(--text-light);
            white-space: nowrap;
        }
        
        .bar-value {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-mono);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* Tech Stack Marquee */
        .tech-stack {
            padding: 4rem 0;
            background: white;
            overflow: hidden;
        }
        
        html.dark-mode-enabled .tech-stack {
            background: #1a1a1a;
        }
        
        .marquee {
            display: flex;
            gap: 4rem;
            animation: marquee 20s linear infinite;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .tech-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 50px;
            white-space: nowrap;
        }
        
        html.dark-mode-enabled .tech-item {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .tech-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0066CC, #00B8D4);
            border-radius: 12px;
            color: white;
        }
        
        /* Modern CTA Section */
        .cta-modern {
            padding: 6rem 0;
            background: #0a0a0a;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        
        .cta-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .bento-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .bento-large {
                grid-column: span 2;
            }
            
            .bento-wide {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: auto;
            }
            
            .bento-large,
            .bento-wide,
            .bento-small {
                grid-column: span 2;
            }
            
            .bento-tall {
                grid-row: span 1;
            }
            
            .workflow-steps {
                flex-direction: column;
                gap: 3rem;
            }
            
            .workflow-path {
                display: none;
            }
            
            .comparison-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-text h1 {
                font-size: 3rem;
            }
            
            .hero-stats {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            
            .stat-card-hero {
                width: 100%;
                max-width: 300px;
            }
            
            .bento-grid {
                grid-template-columns: 1fr;
            }
            
            .bento-large,
            .bento-wide,
            .bento-small,
            .bento-tall {
                grid-column: span 1;
                grid-row: span 1;
            }
        }
        
        /* Dark mode specific adjustments */
        html.dark-mode-enabled .workflow-section,
        html.dark-mode-enabled .tech-stack {
            color: #f0f0f0;
        }
        
        html.dark-mode-enabled .section-header h2,
        html.dark-mode-enabled .bento-title,
        html.dark-mode-enabled .step-title {
            color: #f0f0f0;
        }
        
        html.dark-mode-enabled .bento-description,
        html.dark-mode-enabled .step-description {
            color: #aaa;
        }

        .bento-upcoming-tag {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: linear-gradient(135deg, #7B61FF 0%, #5B41DF 100%);
            color: white;
            padding: 0.375rem 0.875rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            box-shadow: 0 2px 8px rgba(123, 97, 255, 0.3);
        }
        
        .bento-upcoming-tag i {
            font-size: 0.75rem;
        }

        .highlight-gradient {
            background: linear-gradient(135deg, #0066CC 0%, #00B8D4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }