:root {
            /* Colors */
            --color-bg-primary: #fbfbfd;
            --color-bg-card: #ffffff;
            --color-bg-dark: #0f172a;
            --color-text-primary: #0f172a;
            --color-text-secondary: #475569;
            --color-text-light: #cbd5e1;
            --color-accent-primary: #F93B8A; /* Pink */
            --color-accent-dark: #7234F5;    /* Purple */
            --color-accent-light: #F5E6FF;   /* Light Purple */
            --color-stroke: #e2e8f0;
            --color-gradient-start: #F93B8A;
            --color-gradient-end: #7234F5;

            /* Type & Spacing */
            --font-body: 'Inter', sans-serif;
            --h1-size: 4.6rem;
            --h2-size: 3rem;
            --h3-size: 1.8rem;
            --body-size: 1.125rem;

            --space-s: 10px;
            --space-m: 2px;
            --space-l: 30px;
            --space-xl: 40px;
            --space-xxl: 80px;
            --space-xxxl: 10px;

            --radius-s: 10px;
            --radius-m: 16px;
            --radius-l: 24px;
            --radius-xl: 36px;

            --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.03);
            --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.05);
            --shadow-glow: 0 10px 30px rgba(249, 59, 138, 0.3);
        }

        /* --- Resets & Base --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
            transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--color-bg-primary);
            color: var(--color-text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        h1, h2, h3 {
            line-height: 1.05;
            letter-spacing: -0.04em;
        }

        h1 {
            font-size: var(--h1-size);
            font-weight: 800;
        }

        h2 {
            font-size: var(--h2-size);
            font-weight: 800;
            margin-bottom: var(--space-l);
        }

        h3 {
            font-size: var(--h3-size);
            font-weight: 700;
            margin-bottom: var(--space-m);
        }

        p {
            font-size: var(--body-size);
            color: var(--color-text-secondary);
            margin-top: var(--space-m);
        }

        .text-gradient {
            background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section {
            padding: var(--space-xxxl) 0;
        }

        /* --- Buttons --- */
        .btn {
            padding: 14px 30px;
            border-radius: var(--radius-m);
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            white-space: nowrap;
        }

        .btn-solid {
            background: var(--color-accent-primary);
            color: white;
            box-shadow: var(--shadow-glow);
        }

        .btn-solid:hover {
            background: var(--color-accent-dark);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            color: var(--color-text-secondary);
            border: 1px solid var(--color-stroke);
            box-shadow: none;
        }

        .btn-ghost:hover {
            border-color: var(--color-accent-primary);
            color: var(--color-accent-primary);
        }

        /* --- Utility visibility --- */
        .desktop-only {
            display: block;
        }

        .mobile-only {
            display: none;
        }

        /* --- Header & Nav --- */
        .header {
            padding: var(--space-m) 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 1;
        }

        .logo-spill {
            background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-tagline {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--color-accent-dark);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            display: block;
            margin-top: 4px;
        }

        .nav-links {
            display: flex;
            gap: var(--space-xl);
            align-items: center;
        }

        .nav-item {
            position: relative;
            padding: 10px 0;
        }

        .nav-item-link {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .nav-item-link:hover {
            color: var(--color-accent-primary);
        }

        /* --- MEGA MENU STYLES (Desktop) --- */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 980px;
            background: var(--color-bg-card);
            border-radius: var(--radius-l);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--color-stroke);
            padding: var(--space-l);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 15;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: 2.2fr 1fr;
            gap: var(--space-l);
        }

        .mega-menu-column h4 {
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--color-accent-dark);
            margin-bottom: var(--space-m);
            padding-bottom: 5px;
            border-bottom: 1px solid var(--color-stroke);
        }

        .mega-sto-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-m);
        }

        .mega-sto-block {
            padding: 10px 12px;
            border-radius: var(--radius-s);
            border: 1px solid var(--color-stroke);
            background: #f8fafc;
        }

        .mega-sto-block h5 {
            font-size: 0.9rem;
            margin-bottom: 6px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--color-text-primary);
        }

        .mega-sto-block h5 i {
            color: var(--color-accent-primary);
        }

        .mega-link-list {
            margin: 0;
            padding-left: 0;
        }

        .mega-link-list li {
            margin-bottom: 4px;
            font-size: 0.8rem;
        }

        .mega-link-list a {
            color: var(--color-text-secondary);
        }

        .mega-link-list a:hover {
            color: var(--color-accent-primary);
        }

        .mega-menu-link {
            display: flex;
            gap: 15px;
            padding: 10px;
            border-radius: var(--radius-s);
            margin-bottom: 5px;
        }

        .mega-menu-link:hover {
            background: #f1f5f9;
        }

        .mega-menu-link h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin:0;
        }

        .mega-menu-link p {
            font-size: 0.8rem;
            margin: 2px 0 0 0;
            line-height: 1.4;
            color: var(--color-text-secondary);
        }

        /* --- MOBILE "NETFLIX" GRID FOR SERVICES --- */
        .mobile-services-grid {
            display: none;
        }

        .mobile-service-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 12px 12px;
            border: 1px solid var(--color-stroke);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 90px;
        }

        .mobile-service-card h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 4px;
        }

        .mobile-service-card p {
            font-size: 0.75rem;
            margin-top: 0;
            color: var(--color-text-secondary);
        }

        .mobile-service-card span.badge-pill {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-accent-dark);
        }

        /* Mobile Toggle */
        .mobile-nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--color-stroke);
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            color: var(--color-text-primary);
        }

        .mobile-nav-toggle:hover {
            border-color: var(--color-accent-primary);
            color: var(--color-accent-primary);
        }

        /* --- Hero --- */
        .hero {
            padding: 40px 0 var(--space-xxxl) 0;
            position: relative;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
        }

        .hero-badge-row {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .badge {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 99px;
            background: rgba(114, 52, 245, 0.06);
            color: var(--color-accent-dark);
            border: 1px solid rgba(114, 52, 245, 0.15);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .hero-stats-bar {
            display: flex;
            gap: var(--space-xl);
            margin-top: var(--space-xl);
            padding-top: var(--space-l);
            border-top: 1px solid var(--color-stroke);
        }

        .stat-item span {
            display: block;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--color-accent-primary);
            line-height: 1;
        }

        .stat-item small {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text-secondary);
        }

        /* --- Hero Visuals (Cards) --- */
        .core-models {
            background: white;
            padding: var(--space-l);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-medium);
            border: 1px solid var(--color-stroke);
            position: relative;
        }

        .core-models h3 {
            font-size: 0.9rem;
            text-transform: uppercase;
            color: var(--color-accent-dark);
            letter-spacing: 0.1em;
        }

        .model-card {
            padding: 15px;
            border-radius: var(--radius-m);
            background: #f8fafc;
            border: 1px solid var(--color-stroke);
            margin-bottom: 15px;
        }

        .model-header {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 10px;
        }

        .model-icon {
            width: 36px;
            height: 36px;
            background: var(--color-accent-light);
            color: var(--color-accent-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .model-header h4 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0;
        }

        .ltv-chart {
            height: 50px;
            width: 100%;
            background: rgba(0,0,0,0.03);
            margin-top: 10px;
            position: relative;
            border-radius: 4px;
            overflow: hidden;
        }

        .ltv-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
            clip-path: polygon(0% 100%, 15% 70%, 30% 80%, 45% 40%, 60% 50%, 75% 10%, 90% 25%, 100% 0%, 100% 100%);
            opacity: 0.8;
        }

        /* --- Bento Grid (Services) --- */
        .bento-section {
            background: var(--color-bg-dark);
            color: white;
            padding: var(--space-xxxl) 0;
        }

        .bento-section h2 {
            color: white;
        }

        .bento-section p {
            color: var(--color-text-light);
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 320px);
            gap: 20px;
        }

        .bento-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-l);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            position: relative;
        }

        .bento-item:hover {
            border-color: var(--color-accent-primary);
            background: rgba(255,255,255,0.06);
        }

        .bento-large {
            grid-column: span 2;
        }

        .bento-tall {
            grid-row: span 2;
        }

        .bento-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-accent-primary);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .bento-desc {
            color: var(--color-text-light);
            font-size: 0.95rem;
            margin-top: 10px;
        }

        .bento-item h3 {
            color: white;
        }

        .ai-terminal {
            background: #000;
            border-radius: 12px;
            padding: 20px;
            font-family: 'Courier New', monospace;
            font-size: 0.8rem;
            color: #33ff00;
            border: 1px solid #333;
            height: 100%;
            overflow: hidden;
            margin-top: 15px;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
        }

        .log-line {
            margin-bottom: 6px;
            opacity: 0.9;
            display: flex;
            gap: 8px;
        }

        .cursor {
            display: inline-block;
            width: 8px;
            height: 14px;
            background: #33ff00;
            animation: blink 1s infinite;
        }

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

        /* --- STO Section --- */
        .sto-section-header {
            max-width: 840px;
            margin-bottom: var(--space-xl);
        }

        .sto-tagline {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
            color: var(--color-accent-dark);
            margin-bottom: 10px;
        }

        .sto-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: var(--space-l);
        }

        .sto-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-l);
            padding: 24px;
            border: 1px solid var(--color-stroke);
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .sto-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sto-icon {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-accent-light);
            color: var(--color-accent-dark);
        }

        .sto-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0;
        }

        .sto-card p {
            font-size: 0.9rem;
            margin-top: 4px;
        }

        .sto-list {
            margin-top: 8px;
            padding-left: 18px;
        }

        .sto-list li {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin-bottom: 4px;
            list-style: disc;
            list-style-type: '— ';
            padding-left: 5px;
        }

        /* --- Founder Section --- */
        .founder-section {
            background: #ffffff;
        }

        .founder-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: var(--space-xl);
            align-items: center;
        }

        .founder-card {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            height: 500px;
            border-radius: var(--radius-l);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .founder-card .placeholder-img {
            font-size: 1.5rem;
            font-weight: 700;
            color: #475569;
        }

        .cred-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 25px;
        }

        .cred-badge {
            font-size: 0.8rem;
            padding: 6px 14px;
            border: 1px solid var(--color-stroke);
            border-radius: 6px;
            background: white;
            color: var(--color-text-secondary);
            font-weight: 500;
        }

        .cred-badge i {
            color: var(--color-accent-primary);
            margin-right: 4px;
        }

        /* --- Footer --- */
        .footer {
            background: #f8fafc;
            color: var(--color-text-primary);
            padding: 80px 0 40px;
            border-top: 1px solid var(--color-stroke);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer h5 {
            color: var(--color-text-primary);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer a {
            color: #64748b;
            display: block;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .footer a:hover {
            color: var(--color-accent-primary);
        }

        /* --- Responsive (Desktop → Tablet) --- */
        @media (max-width: 1024px) {
            :root {
                --h1-size: 3.5rem;
            }

            .bento-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

            .bento-large {
                grid-column: span 2;
            }

            .bento-tall {
                grid-row: span 1;
                min-height: 300px;
            }

            .mega-menu {
                width: 700px;
            }

            .mega-sto-grid {
                grid-template-columns: 1fr 1fr;
            }

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

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== MOBILE (<=768px) – NO MEGA MENU, NETFLIX GRID ===== */
        @media (max-width: 768px) {
            :root {
                --h1-size: 2.8rem;
                --h2-size: 2.2rem;
            }

            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: block;
            }

            .header .nav-content {
                align-items: center;
            }

            .header nav {
                position: relative;
                flex: 1;
                display: flex;
                justify-content: flex-end;
            }

            .header .nav-links {
                display: none !important;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: auto;
                background: #ffffff;
                flex-direction: column;
                padding: 12px 16px 14px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                align-items: stretch;
                z-index: 200;
                gap: 10px;
            }

            .header .nav-links.active {
                display: flex !important;
            }

            .header .nav-item {
                width: 100%;
            }

            .header .nav-item-link {
                width: 100%;
                justify-content: space-between;
                padding: 6px 4px;
                font-size: 0.95rem;
            }

            /* Book a Call full-width inside panel */
            .header .nav-item .btn {
                width: 100%;
                justify-content: center;
                box-sizing: border-box;
                margin-top: 4px;
            }

            .mobile-nav-toggle {
                display: block;
            }

            /* Kill mega menu on mobile completely */
            .header .nav-item.has-mega-menu .mega-menu {
                display: none !important;
            }

            .hero {
                padding-top: 20px;
                padding-bottom: 60px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .hero-text-content {
                order: 1;
            }

            .core-models {
                order: 2;
                padding: 16px;
                margin: 0;
                width: 100%;
            }

            .hero-stats-bar {
                flex-wrap: wrap;
                gap: 16px;
            }

            .bento-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .bento-large,
            .bento-tall {
                grid-column: span 1;
                grid-row: span 1;
                min-height: 280px;
            }

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

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

            .founder-card {
                height: 320px;
            }

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

            /* Netflix-style services grid inside mobile menu */
            .mobile-services-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
                margin-top: 6px;
            }
        }

        @media (max-width: 480px) {
            .mobile-services-grid {
                grid-template-columns: 1fr;
            }
        }

.breadcrumb {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    margin-top: 5px!important;
    margin-left: -20px!important;
}
