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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background: #0a0c08;
            color: #fff;
        }

        /* ============ PRELOADER ============ */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.6s ease-out;
        }

        .preloader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .preloader-text {
            font-family: 'JetBrains Mono', monospace;
            color: #00ff41;
            font-size: 18px;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .progress-bar {
            width: 200px;
            height: 3px;
            background: #1a1a1a;
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #00ff41, #00e5ff);
            width: 0%;
            animation: progress 2s ease-out forwards;
        }

        @keyframes progress {
            to {
                width: 100%;
            }
        }

        /* ============ TYPOGRAPHY ============ */
        h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 700;
            margin-bottom: 30px;
        }

        h3 {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* ============ MATRIX DIGITAL RAIN ============ */
        .matrix-rain {
            position: relative;
            min-height: 50vh;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .matrix-rain::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0, 255, 65, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .matrix-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .matrix-column {
            position: absolute;
            top: 0;
            font-family: 'JetBrains Mono', monospace;
            color: #00ff41;
            font-size: 14px;
            font-weight: 400;
            white-space: pre;
            letter-spacing: 2px;
            line-height: 1.4;
            animation: fall linear infinite;
            opacity: 0.5;
        }

        @keyframes fall {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100vh);
            }
        }

        .matrix-rain .content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .matrix-rain h2 {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(20px, 3vw, 36px);
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: none;
            animation: fadeInUp 0.8s ease-out 0.3s backwards;
        }

        /* ============ SECTIONS - FULL BLEED IMAGES ============ */
        section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

        section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* ============ BACKGROUND VIDEO ============ */
        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.6;
        }

        .hero .bg-video {
            opacity: 0.7;
        }

        .utopia .bg-video {
            opacity: 0.5;
        }

        /* Ensure text content stays above video */
        .hero .content,
        .cubicle .content,
        .utopia .content {
            position: relative;
            z-index: 2;
        }

        /* Ensure existing overlays sit above video but below text */

        
        /* ============ NAV BAR ============ */
        .nav-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            transition: background 0.3s ease;
        }

        .nav-logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .nav-logo .star { color: #4aff00; text-shadow: 0 0 10px #4aff0060; font-size: 18px; }
        .nav-logo .bos { color: #4aff00; text-shadow: 0 0 10px #4aff0060; }
        .nav-logo .sep { color: #1a3300; }
        .nav-logo .r { color: #00d4ff; text-shadow: 0 0 10px #00d4ff60; }
        .nav-logo .ai { color: #ff00aa; text-shadow: 0 0 10px #ff00aa60; }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-links a:hover { color: #4aff00; }

        .nav-cta {
            font-size: 10px !important;
            letter-spacing: 2px !important;
            color: #000 !important;
            background: #4aff00;
            padding: 8px 20px;
            border-radius: 4px;
        }

        .nav-login {
            color: #4aff00 !important;
            border: 1px solid rgba(74, 255, 0, 0.3);
            padding: 6px 16px;
            border-radius: 4px;
        }

        .nav-login:hover {
            border-color: #4aff00;
            background: rgba(74, 255, 0, 0.1);
        }

        .nav-cta:hover {
            background: #5fff20;
            box-shadow: 0 0 20px #4aff0050;
        }

        
        /* ============ SECTION TRANSITIONS ============ */
        .section-transition {
            height: 120px;
            position: relative;
            z-index: 5;
        }

        .transition-dark-to-matrix {
            background: linear-gradient(180deg, #050706 0%, #000000 100%);
            overflow: hidden;
        }

        .transition-dark-to-matrix::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 65, 0.03) 2px,
                rgba(0, 255, 65, 0.03) 4px
            );
            animation: scanlines 8s linear infinite;
        }

        .transition-matrix-to-light {
            background: linear-gradient(180deg, 
                #000000 0%, 
                #0a0808 15%,
                #1a1510 35%,
                #2a2518 55%,
                #3a3a4a 75%,
                #5a5a6a 100%
            );
        }

        .transition-to-bright {
            background: linear-gradient(180deg, 
                #5a5a6a 0%, 
                #8a8a7a 30%,
                #b5b098 60%,
                #d4c9ba 80%,
                #f0ede5 100%
            );
        }

        @keyframes scanlines {
            from { transform: translateY(0); }
            to { transform: translateY(100px); }
        }

        /* Old computer CRT effect for matrix rain */
        .matrix-rain::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: transparent;
            pointer-events: none;
            z-index: 2;
            animation: crt-flicker 0.1s infinite;
        }

        @keyframes crt-flicker {
            0% { opacity: 0.9; }
            50% { opacity: 1; }
            100% { opacity: 0.9; }
        }

        /* CRT screen glow on matrix section */
        .matrix-rain {
            box-shadow: none;
        }

        /* ============ HERO SECTION ============ */
        .hero {
            background: linear-gradient(135deg, #0a0c08 0%, #0d1108 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            background-image: url('../assets/images/bg-hero.png');
            background-attachment: fixed;
        }

        .hero::after {
            background: radial-gradient(ellipse at center, rgba(10, 12, 8, 0.4) 0%, rgba(10, 12, 8, 0.7) 100%);
        }

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

        .hero h1 {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(22px, 3vw, 38px);
            font-weight: 700;
            color: #4aff00;
            text-shadow: 0 0 10px rgba(74, 255, 0, 0.3);
            animation: fadeInDown 0.8s ease-out;
        }

        .hero .subtitle {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            text-shadow: none;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .hl-green {
            color: #4aff00;
            font-weight: 700;
        }

        .hl-blue {
            color: #00d4ff;
            font-weight: 700;
        }

        .hl-pink {
            color: #ff00aa;
            font-weight: 700;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .scroll-indicator svg {
            width: 24px;
            height: 24px;
            stroke: #00ff88;
            stroke-width: 2;
            fill: none;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                opacity: 0.3;
                transform: translateY(0);
            }
            50% {
                opacity: 1;
                transform: translateY(10px);
            }
        }

        /* ============ CUBICLE SECTION ============ */
        .cubicle {
            background: #050706;
            position: relative;
            overflow: hidden;
        }

        .cubicle::before {
            background-image: url('../assets/images/bg-cubicle.png');
        }

        .cubicle::after {
            background: linear-gradient(135deg, rgba(5, 7, 6, 0.6) 0%, rgba(5, 7, 6, 0.8) 100%);
        }

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

        .cubicle h2 {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(14px, 1.8vw, 22px);
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
            text-shadow: none;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ============ PILLS SECTION (THE CHOICE) ============ */
        .choice {
            background: #0a0808;
            position: relative;
            overflow: hidden;
        }

        .choice::before {
            background-image: url('../assets/images/bg-pills.png');
        }

        .choice::after {
            background: linear-gradient(180deg, rgba(10, 8, 8, 0.5) 0%, rgba(10, 8, 8, 0.8) 100%);
        }

        .choice .content {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1000px;
            padding: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .choice .pill-option {
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
        }

        .choice .pill-option:nth-child(2) {
            animation-delay: 0.5s;
        }

        .choice .pill-option h3 {
            font-family: 'JetBrains Mono', monospace;
            font-size: 22px;
            margin-bottom: 20px;
        }

        .choice .pill-option.blue h3 {
            color: #00e5ff;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
        }

        .choice .pill-option.red h3 {
            animation: redPillBlink 2s ease-in-out infinite;
        }

        .red-pill-btn {
            display: inline-block;
            margin-top: 24px;
            padding: 14px 40px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            background: #ff0000;
            border: none;
            border-radius: 6px;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
        }

        .red-pill-btn:hover {
            background: #ff2020;
            box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
            transform: translateY(-3px);
        }

        @keyframes redPillBlink {
            0%, 100% {
                color: #ff0000;
                text-shadow: 0 0 20px #ff0000, 0 0 40px #ff000080;
            }
            50% { 
                color: #ff4444; 
                text-shadow: 0 0 40px #ff0000, 0 0 80px #ff0000, 0 0 120px #ff000060; 
            }
        }

        .choice .pill-option.red h3-REPLACED {
            color: #ff0000;
            text-shadow: 0 0 20px #ff0000;
        }

        .choice .pill-option p {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .choice .content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* ============ AWAKENING SECTION ============ */
        .awaken {
            background: linear-gradient(135deg, #1a1a24 0%, #2a2840 100%);
            position: relative;
        }

        .awaken::before {
            background-image: url('../assets/images/bg-awaken.png');
        }

        .awaken::after {
            background: linear-gradient(180deg, rgba(26, 26, 36, 0.3) 0%, rgba(26, 26, 36, 0.6) 100%);
        }

        .awaken .content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .awaken h2 {
            font-size: clamp(40px, 7vw, 72px);
            color: #fff;
            text-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
            opacity: 0;
            animation: fadeInScale 1s ease-out 0.3s forwards;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        
        /* Control panel styling for awakening section */
        .control-panel {
            text-align: center;
        }

        .control-title {
            font-family: 'JetBrains Mono', monospace !important;
            font-size: clamp(28px, 5vw, 56px) !important;
            color: #4aff00 !important;
            text-shadow: 0 0 30px rgba(74, 255, 0, 0.4) !important;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .cursor-blink {
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {
            50% { opacity: 0; }
        }

        .control-subtitle {
            font-family: 'JetBrains Mono', monospace;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .deploy-btn {
            display: inline-block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 20px;
            color: #000;
            background: #4aff00;
            padding: 16px 48px;
            letter-spacing: 2px;
            border: none;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .deploy-btn:hover {
            background: #5fff20;
            box-shadow: 0 0 30px #4aff0060;
            transform: translateY(-2px);
        }

        .control-meta {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .control-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: rgba(74, 255, 0, 0.3);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* ============ AGENTS SECTION ============ */
        .agents {
            background: #0a0c08;
            min-height: auto;
            padding: 120px 40px;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .agents-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .agents-header h2 {
            font-size: clamp(40px, 6vw, 60px);
            margin-bottom: 20px;
            color: #4aff00;
            text-shadow: 0 0 30px rgba(74, 255, 0, 0.3);
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: 2px;
        }

        .agents-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
        }

        .agents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .agent-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .agent-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        }

        .agent-card.coo { animation-delay: 0.1s; }
        .agent-card.cmo { animation-delay: 0.2s; }
        .agent-card.cto { animation-delay: 0.3s; }
        .agent-card.cfo { animation-delay: 0.4s; }
        .agent-card.cro { animation-delay: 0.5s; }
        .agent-card.cgo { animation-delay: 0.6s; }

        .agent-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 900;
            margin: 0 auto 20px;
            color: #fff;
        }

        .agent-card.coo .agent-icon { background: rgba(0, 229, 255, 0.2); color: #00e5ff; }
        .agent-card.cmo .agent-icon { background: rgba(255, 61, 138, 0.2); color: #ff0000; }
        .agent-card.cto .agent-icon { background: rgba(0, 255, 136, 0.2); color: #00ff88; }
        .agent-card.cfo .agent-icon { background: rgba(255, 138, 0, 0.2); color: #ff8a00; }
        .agent-card.cro .agent-icon { background: rgba(74, 255, 0, 0.2); color: #4aff00; }
        .agent-card.cgo .agent-icon { background: rgba(0, 255, 136, 0.2); color: #00ff88; }

        .agent-card h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .agent-card .agent-count {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 15px;
        }

        .agent-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* ============ UTOPIA SECTION ============ */
        .utopia {
            background: linear-gradient(135deg, #3a3a4a 0%, #5a5a6a 100%);
            position: relative;
            overflow: hidden;
        }

        .utopia::before {
            background-image: url('../assets/images/bg-utopia.png');
        }

        .utopia::after {
            background: linear-gradient(180deg, rgba(58, 58, 74, 0.3) 0%, rgba(58, 58, 74, 0.6) 100%);
        }

        .utopia .content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .utopia h2 {
            font-size: clamp(40px, 7vw, 72px);
            color: #fff;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        /* ============ HOW IT WORKS ============ */
        .how-it-works {
            background: linear-gradient(135deg, #d4c9ba 0%, #e8dcc8 100%);
            min-height: auto;
            padding: 120px 40px;
            flex-direction: column;
        }

        .how-it-works h2 {
            text-align: center;
            margin-bottom: 80px;
            color: #1a1a1a;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step {
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .step:nth-child(1) { animation-delay: 0.2s; }
        .step:nth-child(2) { animation-delay: 0.4s; }
        .step:nth-child(3) { animation-delay: 0.6s; }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #4aff00; color: #000;
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            font-weight: 900;
            margin-bottom: 30px;
            color: #000;
        }

        .step h3 {
            margin-bottom: 15px;
            font-size: 24px;
            color: #1a1a1a;
        }

        .step p {
            font-size: 16px;
            color: rgba(0, 0, 0, 0.6);
            line-height: 1.6;
        }

        /* ============ PRICING ============ */
        .pricing {
            background: linear-gradient(135deg, #e8dcc8 0%, #f0ede5 100%);
            min-height: auto;
            padding: 120px 40px;
            flex-direction: column;
        }

        .pricing h2 {
            text-align: center;
            margin-bottom: 80px;
            color: #1a1a1a;
        }

        /* ── Billing Toggle ── */
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        .pricing-toggle span {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            letter-spacing: 1px;
            color: rgba(0, 0, 0, 0.4);
            transition: color 0.3s ease;
        }

        .pricing-toggle span.active {
            color: #1a1a1a;
            font-weight: 700;
        }

        .toggle-switch {
            width: 56px;
            height: 30px;
            background: rgba(0, 0, 0, 0.15);
            border-radius: 30px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s ease;
            border: none;
            padding: 0;
        }

        .toggle-switch.yearly {
            background: #4aff00;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: #fff;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .toggle-switch.yearly::after {
            transform: translateX(26px);
        }

        .save-badge {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            background: #4aff00;
            color: #000;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
            position: relative;
        }

        .price-card.featured {
            transform: scale(1.05);
            border-color: #2a8c00;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 8px 40px rgba(74, 255, 0, 0.15);
        }

        .featured-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #4aff00;
            color: #000;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 4px 16px;
            border-radius: 20px;
        }

        .price-card:nth-child(1) { animation-delay: 0.1s; }
        .price-card:nth-child(2) { animation-delay: 0.2s; }
        .price-card:nth-child(3) { animation-delay: 0.3s; }
        .price-card:nth-child(4) { animation-delay: 0.4s; }

        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .price {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .price-currency {
            font-size: 20px;
            color: #1a1a1a;
        }

        .price-period {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.5);
            margin-bottom: 8px;
        }

        .price-annual {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: #2a8c00;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
            display: none;
        }

        .price-features {
            text-align: left;
            margin-bottom: 30px;
            list-style: none;
        }

        .price-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 14px;
            color: rgba(0, 0, 0, 0.7);
        }

        .price-features li:last-child {
            border-bottom: none;
        }

        .price-features li::before {
            content: '✓ ';
            color: #2a8c00;
            font-weight: 700;
            margin-right: 10px;
        }

        .cta-button {
            display: inline-block;
            padding: 14px 40px;
            background: #4aff00; color: #000;
            color: #000;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            margin-top: 20px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(74, 255, 0, 0.4);
        }

        /* ============ UTOPIA HQ ============ */
        /* ============ FINAL CTA ============ */
        .final-cta {
            background: linear-gradient(135deg, #f0ede5 0%, #faf8f3 100%);
            min-height: auto;
            padding: 120px 40px;
        }

        .final-cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .final-cta-logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            letter-spacing: 3px;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.1s forwards;
        }

        .final-cta-logo .star { color: #4aff00; text-shadow: 0 0 15px #4aff0060; }
        .final-cta-logo .bos { color: #4aff00; text-shadow: 0 0 15px #4aff0060; }
        .final-cta-logo .sep { color: #999; }
        .final-cta-logo .r { color: #00d4ff; text-shadow: 0 0 15px #00d4ff60; }
        .final-cta-logo .ai { color: #ff00aa; text-shadow: 0 0 15px #ff00aa60; }

        .final-cta h2 {
            color: #1a1a1a;
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
        }

        .final-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }

        .primary-button {
            padding: 16px 48px;
            background: #4aff00; color: #000;
            color: #fff;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .primary-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(74, 255, 0, 0.4);
        }

        .secondary-button {
            padding: 16px 48px;
            background: transparent;
            color: #1a1a1a;
            font-weight: 600;
            border: 2px solid #1a1a1a;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .secondary-button:hover {
            background: #1a1a1a;
            color: #fff;
        }

        
        /* agents section now uses video background — light text */

        .agent-card h3 {
            color: #1a1a1a;
        }

        .agent-card p {
            color: rgba(0, 0, 0, 0.7) !important;
        }

        .agent-card .agent-count {
            color: #0a7a00;
        }

        .how-it-works h2 {
            color: #1a1a1a;
        }

        .step h3 {
            color: #1a1a1a !important;
        }

        .step p {
            color: rgba(0, 0, 0, 0.7) !important;
        }

        .step-number {
            background: #4aff00 !important;
            color: #000 !important;
        }

        .pricing h2 {
            color: #1a1a1a;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.8) !important;
            border: 1px solid rgba(0, 0, 0, 0.1) !important;
        }

        .price-card h3,
        .price {
            color: #1a1a1a !important;
        }

        .price-features li {
            color: rgba(0, 0, 0, 0.7) !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        }

        .price-card.featured {
            border-color: #4aff00 !important;
            background: rgba(74, 255, 0, 0.05) !important;
        }

        
        /* ============ ROBOT CARDS ============ */
        .robots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .robot-card {
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
            padding: 0;
            border-radius: 12px;
            background: rgba(200, 190, 175, 0.9);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .robot-card[data-role="coo"] { border-top: 2px solid #00c8e0; }
        .robot-card[data-role="cmo"] { border-top: 2px solid #e0308a; }
        .robot-card[data-role="cto"] { border-top: 2px solid #00cc6a; }
        .robot-card[data-role="cfo"] { border-top: 2px solid #e08a00; }
        .robot-card[data-role="cro"] { border-top: 2px solid #e03040; }
        .robot-card[data-role="cgo"] { border-top: 2px solid #9040e0; }

        .robot-card:hover {
            transform: translateY(-8px);
            background: rgba(210, 200, 185, 0.95);
        }

        .robot-card[data-role="coo"]:hover { box-shadow: 0 15px 40px rgba(0, 200, 224, 0.15); }
        .robot-card[data-role="cmo"]:hover { box-shadow: 0 15px 40px rgba(224, 48, 138, 0.15); }
        .robot-card[data-role="cto"]:hover { box-shadow: 0 15px 40px rgba(0, 204, 106, 0.15); }
        .robot-card[data-role="cfo"]:hover { box-shadow: 0 15px 40px rgba(224, 138, 0, 0.15); }
        .robot-card[data-role="cro"]:hover { box-shadow: 0 15px 40px rgba(224, 48, 64, 0.15); }
        .robot-card[data-role="cgo"]:hover { box-shadow: 0 15px 40px rgba(144, 64, 224, 0.15); }

        /* Card header: avatar + title */
        .card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 18px 12px;
        }

        .robot-avatar {
            display: none;
        }

        .card-title {
            flex: 1;
        }

        .robot-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 3px;
            transition: all 0.3s ease;
        }

        .robot-card[data-role="coo"] .robot-label { color: #00c8e0; }
        .robot-card[data-role="cmo"] .robot-label { color: #e0308a; }
        .robot-card[data-role="cto"] .robot-label { color: #00cc6a; }
        .robot-card[data-role="cfo"] .robot-label { color: #e08a00; }
        .robot-card[data-role="cro"] .robot-label { color: #e03040; }
        .robot-card[data-role="cgo"] .robot-label { color: #9040e0; }

        .card-title h3 {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 500;
            color: rgba(0, 0, 0, 0.45);
            margin: 2px 0 0;
            letter-spacing: 0.5px;
        }

        /* Terminal output area */
        .card-terminal {
            margin: 0 12px 12px;
            border-radius: 8px;
            background: rgba(15, 15, 20, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .terminal-bar {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .terminal-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .terminal-dot.red { background: #ff5f56; }
        .terminal-dot.yellow { background: #ffbd2e; }
        .terminal-dot.green { background: #27c93f; }

        .terminal-title {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.25);
            margin-left: 8px;
        }

        .terminal-body {
            padding: 12px 14px;
        }

        .term-line {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.8;
            margin: 0;
        }

        .term-line.success {
            color: rgba(74, 255, 0, 0.7);
        }

        .term-line .check {
            color: #4aff00;
            font-weight: 700;
        }

        /* Hover: terminal lines light up */
        .robot-card:hover .term-line {
            color: rgba(255, 255, 255, 0.75);
        }

        .robot-card:hover .term-line.success {
            color: #4aff00;
        }

        @media (max-width: 900px) {
            .robots-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 550px) {
            .robots-grid {
                grid-template-columns: 1fr;
            }
        }

        
        .cubicle h2 {
            color: rgba(255, 255, 255, 0.7) !important;
            text-shadow: none;
            font-family: 'JetBrains Mono', monospace;
        }

        /* ============ FOOTER ============ */
        footer {
            background: linear-gradient(135deg, #f5f2ec 0%, #faf8f4 100%);
            padding: 80px 40px 40px;
            color: rgba(0, 0, 0, 0.6);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-brand .footer-tagline {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.5);
            line-height: 1.6;
            margin-top: 10px;
        }

        .footer-brand .footer-slogan {
            font-size: 13px;
            color: rgba(0, 0, 0, 0.4);
            margin-top: 16px;
            font-style: italic;
        }

        footer h4 {
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'JetBrains Mono', monospace;
        }

        footer a {
            color: rgba(0, 0, 0, 0.55);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        footer a:hover {
            color: #0a7a00;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 13px;
            color: rgba(0, 0, 0, 0.4);
        }

        .footer-logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .footer-star {
            color: #4aff00;
            text-shadow: 0 0 10px #4aff0060;
            font-size: 18px;
        }

        .footer-links-group ul,
        footer ul {
            list-style: none;
            padding: 0;
        }

        footer li {
            margin-bottom: 10px;
        }

        .footer-contact p {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.55);
            margin-bottom: 4px;
        }

        .footer-contact-links {
            margin-top: 12px;
        }

        .footer-contact-links a {
            color: rgba(0, 0, 0, 0.55);
        }

        @media (max-width: 900px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

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

        /* ============ ANIMATIONS ============ */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1100px) {
            .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            section {
                min-height: auto;
                padding: 60px 20px;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }

            .agents {
                padding: 60px 20px;
            }

            .agents-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .how-it-works {
                padding: 60px 20px;
            }

            .steps {
                gap: 30px;
            }

            .pricing {
                padding: 60px 20px;
            }

            .pricing-cards {
                grid-template-columns: 1fr !important;
            }

            .nav-links {
                display: none;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .price-card.featured:hover {
                transform: translateY(-10px);
            }

            .final-cta {
                padding: 60px 20px;
            }

            .final-cta-buttons {
                flex-direction: column;
            }

            .primary-button,
            .secondary-button {
                width: 100%;
            }
        }
    