        /* Modern Typography System */
        :root {
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Space Grotesk', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }
        
        /* Override base font */
        body {
            font-family: var(--font-primary);
        }
        
        /* 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;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.6;
            background: 
                radial-gradient(circle at 20% 50%, #00B8D4 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, #0066CC 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, #7B61FF 0%, transparent 50%);
            filter: blur(40px);
            animation: meshFloat 20s ease-in-out infinite;
        }
        
        @keyframes meshFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(-20px, -20px) rotate(1deg) scale(1.05); }
            50% { transform: translate(20px, -10px) rotate(-1deg) scale(1.02); }
            75% { transform: translate(-10px, 20px) rotate(0.5deg) scale(1.03); }
        }
        
        /* Floating particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float-up 15s linear infinite;
        }
        
        @keyframes float-up {
            from {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            to {
                transform: translateY(-100px) translateX(50px);
                opacity: 0;
            }
        }
        
        .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;
        }
        
        /* Animated gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, #00B8D4 50%, #ffffff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .hero-content .tagline {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.8;
            color: #B8BCC8;
            font-weight: 400;
            letter-spacing: -0.01em;
            line-height: 1.6;
        }
        
        /* Modern pill-shaped tags */
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
        }
        
        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .tag-pill:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .tag-pill i {
            color: #00B8D4;
            font-size: 0.75rem;
        }
        
        /* Modern buttons with glow effect */
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            text-align: center;
            align-items: center;
            justify-content: left;
        }
        
        .btn-glow {
            padding: 0.875rem 2rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: none;
            letter-spacing: -0.01em;
        }
        
        .btn-glow-primary {
            background: linear-gradient(135deg, #00B8D4 0%, #0066CC 100%);
            color: white;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 184, 212, 0.3);
        }
        
        .btn-glow-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 184, 212, 0.4);
            color: white;
        }
        
        .btn-glow-secondary {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .btn-glow-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            color: white;
        }
        
        /* Interactive 3D Dashboard Preview */
        .hero-visual {
            position: relative;
            perspective: 1500px;
        }
        
        .dashboard-3d {
            position: relative;
            transform-style: preserve-3d;
            animation: float3d 6s ease-in-out infinite;
        }
        
        @keyframes float3d {
            0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0); }
            50% { transform: rotateY(10deg) rotateX(-5deg) translateY(-20px); }
        }
        
        .dashboard-frame {
            background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .dashboard-frame::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #00B8D4, #0066CC, #7B61FF);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.5;
            animation: borderGlow 3s ease-in-out infinite;
        }
        
        @keyframes borderGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }
        
        .dashboard-content {
            background: #0a0e27;
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated data visualization */
        .data-viz {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .data-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .data-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: dataShimmer 3s ease-in-out infinite;
        }
        
        @keyframes dataShimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .data-value {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: #00B8D4;
            margin-bottom: 0.25rem;
        }
        
        .data-label {
            font-size: 0.75rem;
            color: #B8BCC8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Modern Bento Grid Section */
        .features-bento {
            padding: 6rem 0;
            background: var(--light-color);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        
        .section-header p {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Bento Grid Layout */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 120px;
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .bento-item {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .bento-item:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Different sizes for bento items */
        .bento-large {
            grid-column: span 8;
            grid-row: span 3;
        }
        
        .bento-medium {
            grid-column: span 4;
            grid-row: span 3;
        }
        
        .bento-small {
            grid-column: span 4;
            grid-row: span 2;
        }
        
        .bento-wide {
            grid-column: span 6;
            grid-row: span 2;
        }
        
        .bento-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #00B8D4 0%, #0066CC 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        
        .bento-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }
        
        .bento-description {
            color: var(--text-light);
            line-height: 1.5;
            font-size: 0.95rem;
        }
        
        /* Animated metrics inside bento items */
        .bento-metric {
            margin-top: auto;
            padding-top: 1.5rem;
        }

        .bento-tall {
            grid-row: span 2;
        }
        
        .metric-value {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #00B8D4, #0066CC);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .metric-label {
            font-size: 0.875rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Interactive Feature Cards */
        .workflow-modern {
            padding: 6rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .workflow-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e5e5e5, transparent);
        }
        
        .workflow-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .workflow-card {
            position: relative;
            background: var(--light-color);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s ease;
            cursor: pointer;
            overflow: hidden;
        }
        
        .workflow-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(0, 184, 212, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .workflow-card:hover::before {
            opacity: 1;
        }
        
        .workflow-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .workflow-number {
            font-family: var(--font-mono);
            font-size: 0.875rem;
            font-weight: 600;
            color: #00B8D4;
            margin-bottom: 1rem;
        }
        
        .workflow-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        
        .workflow-card p {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* Animated progress indicator */
        .workflow-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #e5e5e5;
            overflow: hidden;
        }
        
        .workflow-progress-bar {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #00B8D4, #0066CC);
            animation: progressSlide 2s ease-in-out infinite;
        }
        
        .workflow-card:hover .workflow-progress-bar {
            animation-play-state: running;
        }
        
        @keyframes progressSlide {
            to { left: 100%; }
        }
        
        /* Tech Stack with animated icons */
        .tech-modern {
            padding: 6rem 0;
            background: #0A0E27;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .tech-modern h2, .tech-modern h3, .tech-modern p {
            color: white;
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .tech-item {
            text-align: center;
            position: relative;
        }
        
        .tech-icon-wrapper {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
        }
        
        .tech-icon-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #00B8D4, #0066CC);
            border-radius: 30px;
            opacity: 0.2;
            transform: rotate(-6deg);
            transition: all 0.4s ease;
        }
        
        .tech-item:hover .tech-icon-bg {
            transform: rotate(6deg) scale(1.1);
            opacity: 0.3;
        }
        
        .tech-icon-inner {
            position: relative;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            font-size: 2.5rem;
            color: #00B8D4;
            transition: all 0.4s ease;
        }
        
        .tech-item:hover .tech-icon-inner {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        
        .tech-item h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }
        
        .tech-item p {
            color: #B8BCC8;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Final CTA with animated background */
        .cta-modern {
            background: linear-gradient(135deg, #0066CC 0%, #00B8D4 40%);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .cta-modern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: ctaRotate 20s linear infinite;
        }
        
        @keyframes ctaRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        
        .cta-content p {
            font-size: 1.25rem;
            color: white;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Dark mode adjustments */
        html.dark-mode-enabled .features-bento {
            background: #1a1a1a;
        }
        
        html.dark-mode-enabled .bento-item {
            background: #1e1e1e;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        html.dark-mode-enabled .workflow-modern {
            background: #121212;
        }
        
        html.dark-mode-enabled .workflow-card {
            background: #1e1e1e;
        }
        
        html.dark-mode-enabled .workflow-progress {
            background: #333;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .bento-tall {
                grid-row: span 1;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .bento-grid {
                grid-template-columns: repeat(6, 1fr);
                grid-auto-rows: 100px;
            }
            
            .bento-large, .bento-medium {
                grid-column: span 6;
            }
            
            .bento-small, .bento-wide {
                grid-column: span 3;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .bento-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
            }
            
            .bento-large, .bento-medium, .bento-small, .bento-wide, .bento-tall {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .hero-tags {
                justify-content: center;
            }
            
            .nav-menu.active {
                background-color: white !important;
            }
            
            .nav-menu.active a {
                color: var(--dark-color) !important;
                text-shadow: none !important;
            }
        }

        .video-3d-wrapper {
            position: relative;
            transform-style: preserve-3d;
            animation: float3d 6s ease-in-out infinite;
        }

        .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-upcoming-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #7B61FF 0%, #5b41dfe8 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;
}

/* Ensure the bento item has relative positioning */
.bento-item {
    position: relative; /* This should already exist, but ensure it's there */
}

.highlight-gradient {
    background: linear-gradient(135deg, #0066CC 0%, #00B8D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.pricing-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    /* Mobile responsive for pricing tag */
    .hero-cta {
        flex-wrap: wrap;
    }
    
    .pricing-tag {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 1rem;
    }
}

.pricing-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.pricing-tag i {
    color: #00B8D4;
}