        /* ===== THREE CANVAS ===== */
        #three-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
        }

        /* ===== ORBS ===== */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
            opacity: 0.4;
            transition: opacity 0.8s var(--ease-out);
        }
        .orb-1 {
            width: 550px;
            height: 550px;
            top: -10%;
            left: -10%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
        }
        .orb-2 {
            width: 650px;
            height: 650px;
            top: 40%;
            right: -15%;
            background: radial-gradient(circle, rgba(0, 240, 252, 0.12) 0%, transparent 70%);
        }
        body.light-theme .orb-1 {
            background: radial-gradient(circle, rgba(212, 135, 42, 0.15) 0%, transparent 70%);
        }
        body.light-theme .orb-2 {
            background: radial-gradient(circle, rgba(212, 135, 42, 0.10) 0%, transparent 70%);
        }

        /* ===== HERO ===== */
        .hero {
            text-align: center;
            min-height: 100vh;
            padding-top: 150px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            background: var(--cyan-dim);
            border: 1px solid rgba(0, 240, 252, 0.25);
            border-radius: 100px;
            font-family: var(--font-h);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--cyan);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(-20px);
            backdrop-filter: blur(16px);
            transition: background 0.6s, border-color 0.6s, color 0.6s;
        }
        .hero-badge .pulse-dot {
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            animation: pulse 1.2s infinite alternate;
            box-shadow: 0 0 8px var(--cyan);
            transition: background 0.6s, box-shadow 0.6s;
        }
        @keyframes pulse {
            0% {
                opacity: 0.4;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1.3);
            }
        }
        .hero h1 {
            font-family: var(--font-h);
            font-size: clamp(2.8rem, 5.8vw, 5.2rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            max-width: 1000px;
            margin: 0 auto 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            color: #ffffff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.9);
            transition: color 0.6s;
        }
        .text-gradient {
            background: linear-gradient(135deg, var(--cyan), #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: background 0.6s;
        }
        body.light-theme .text-gradient {
            background: linear-gradient(135deg, #ffe066, #ff8800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
        }
        .hero-sub {
            font-size: 1.18rem;
            color: rgba(255, 255, 255, 0.92);
            max-width: 680px;
            margin: 0 auto 2.8rem;
            opacity: 0;
            transform: translateY(30px);
            background: rgba(4, 6, 16, 0.72);
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(20px) saturate(160%);
            -webkit-backdrop-filter: blur(20px) saturate(160%);
            padding: 0.9rem 1.4rem;
            border-radius: 16px;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
            transition: color 0.6s, background 0.6s, border-color 0.6s;
        }
        .hero-ctas {
            display: flex;
            justify-content: center;
            gap: 1.4rem;
            margin-bottom: 4.5rem;
            opacity: 0;
            transform: translateY(20px);
        }
        .hero-metrics {
            display: flex;
            gap: 1.5rem;
            max-width: 880px;
            margin: 0 auto;
            width: 100%;
            opacity: 0;
            transform: scale(0.95);
        }
        .hero-metric {
            flex: 1;
            text-align: center;
            border-radius: 16px;
            padding: 1.2rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-heavy);
            transition: all 0.4s, background 0.6s, border-color 0.6s;
            backdrop-filter: blur(24px) saturate(180%);
        }
        .hero-metric:hover {
            border-color: var(--cyan);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 240, 252, 0.1);
        }
        body.light-theme .hero-metric:hover {
            border-color: #ffaa33;
            box-shadow: 0 10px 25px rgba(255, 170, 51, 0.15);
        }
        .hero-metric .val {
            font-family: var(--font-h);
            font-size: 2.3rem;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 0 16px var(--cyan), 0 2px 8px rgba(0, 0, 0, 0.9);
            transition: color 0.6s;
        }
        .hero-metric .lbl {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.88);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 4px;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
            transition: color 0.6s;
        }
        .scroll-hint {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            opacity: 0;
        }
        .scroll-hint span {
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-3);
            transition: color 0.6s;
        }
        .scroll-mouse {
            width: 16px;
            height: 26px;
            border: 1.5px solid var(--text-3);
            border-radius: 10px;
            position: relative;
            transition: border-color 0.6s;
        }
        .scroll-mouse::before {
            content: '';
            position: absolute;
            top: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 5px;
            background: var(--cyan);
            border-radius: 1px;
            animation: scrollWheel 1.5s infinite;
            transition: background 0.6s;
        }
        body.light-theme .scroll-mouse::before {
            background: #d4872a;
        }
        @keyframes scrollWheel {
            0% {
                top: 4px;
                opacity: 1;
            }
            100% {
                top: 14px;
                opacity: 0;
            }
        }

        /* ===== HORIZONTAL SECTION ===== */
        .horizontal-section {
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            position: relative;
        }
        .horizontal-track {
            display: flex;
            gap: 3rem;
            width: 300%;
            padding: 0 5vw;
            will-change: transform;
        }
        .proj-card {
            width: 70vw;
            max-width: 600px;
            flex-shrink: 0;
            height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .proj-card-num {
            font-family: var(--font-h);
            font-size: 4rem;
            font-weight: 800;
            color: var(--cyan);
            opacity: 0.3;
            line-height: 1;
            transition: color 0.6s;
        }
        body.light-theme .proj-card-num {
            color: #d4872a;
        }

        /* ===== INVENTORY ===== */
        .inventory-layout {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3.5rem;
            align-items: center;
        }
        .unit-filters {
            display: flex;
            gap: 8px;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .filter-pill {
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 0.82rem;
            color: var(--text-3);
            cursor: pointer;
            transition: all 0.4s, background 0.6s, border-color 0.6s, color 0.6s;
            backdrop-filter: blur(12px);
        }
        .filter-pill.active,
        .filter-pill:hover {
            background: var(--cyan);
            color: var(--bg-elevated);
            border-color: var(--cyan);
            box-shadow: 0 0 15px rgba(0, 240, 252, 0.3);
            font-weight: 700;
        }
        body.light-theme .filter-pill.active,
        body.light-theme .filter-pill:hover {
            background: #d4872a;
            border-color: #d4872a;
            color: #f2ede4;
            box-shadow: 0 0 15px rgba(212, 135, 42, 0.3);
        }
        .unit-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 6px;
        }
        .unit-cell {
            aspect-ratio: 1;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.68rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s var(--ease-out), border-color 0.6s, background 0.6s, color 0.6s;
            backdrop-filter: blur(8px);
            color: var(--text-2);
        }
        .unit-cell.avail {
            border-color: var(--green);
            color: var(--green);
            background: rgba(16, 185, 129, 0.04);
        }
        .unit-cell.hold {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(245, 158, 11, 0.04);
        }
        .unit-cell.sold {
            border-color: var(--red);
            color: var(--red);
            background: rgba(239, 68, 68, 0.04);
        }
        .unit-cell:hover {
            transform: scale(1.25);
            z-index: 10;
            box-shadow: 0 0 16px currentColor;
        }
        .unit-cell.dimmed {
            opacity: 0.15;
            transform: scale(0.9);
        }
        .inventory-legend {
            display: flex;
            gap: 1.8rem;
            margin-top: 1.5rem;
            border-top: 1px solid var(--border);
            padding-top: 1rem;
            transition: border-color 0.6s;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: var(--text-2);
            transition: color 0.6s;
        }
        .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        /* ===== LEADS ===== */
        .leads-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            align-items: center;
        }
        .leads-visual {
            background: linear-gradient(135deg, rgba(10, 12, 24, 0.85), rgba(4, 4, 12, 0.98));
            border: 1px solid var(--border);
            border-radius: 24px;
            height: 440px;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 0 30px rgba(0, 240, 252, 0.04);
            backdrop-filter: blur(28px);
            transition: background 0.6s, border-color 0.6s;
        }
        body.light-theme .leads-visual {
            background: linear-gradient(135deg, rgba(240, 235, 225, 0.85), rgba(230, 220, 210, 0.95));
        }
        .leads-panel-nodes {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 10;
        }
        .leads-svg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }
        @keyframes line-dash {
            to {
                stroke-dashoffset: -10;
            }
        }
        .lead-node {
            position: absolute;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--cyan);
            transition: all 0.4s var(--ease-out), border-color 0.6s, background 0.6s, color 0.6s;
            cursor: pointer;
            z-index: 10;
            transform: translate(-50%, -50%);
            backdrop-filter: blur(16px);
        }
        .lead-node:hover {
            border-color: var(--cyan);
            box-shadow: 0 0 25px rgba(0, 240, 252, 0.4);
            transform: translate(-50%, -50%) scale(1.15);
        }
        body.light-theme .lead-node {
            color: #d4872a;
            border-color: rgba(212, 135, 42, 0.3);
        }
        body.light-theme .lead-node:hover {
            border-color: #d4872a;
            box-shadow: 0 0 25px rgba(212, 135, 42, 0.3);
        }
        .lead-node.hub {
            width: 76px;
            height: 76px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border: none;
            font-size: 1.6rem;
            color: var(--bg-elevated);
            box-shadow: 0 0 35px rgba(0, 240, 252, 0.45);
        }
        body.light-theme .lead-node.hub {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            box-shadow: 0 0 35px rgba(212, 135, 42, 0.45);
            color: #f2ede4;
        }

        /* ===== VISITS ===== */
        .visits-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 3.5rem;
            align-items: center;
        }
        .visits-log {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }
        .visit-card {
            padding: 1.3rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s, border-color 0.6s, background 0.6s;
            backdrop-filter: blur(24px);
        }
        .visit-card:hover {
            border-color: var(--cyan);
            transform: translateX(6px);
        }
        body.light-theme .visit-card:hover {
            border-color: #d4872a;
        }
        .visit-meta {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .visit-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--cyan);
            border: 1px solid var(--border);
            transition: background 0.6s, border-color 0.6s, color 0.6s;
        }
        body.light-theme .visit-avatar {
            color: #d4872a;
        }
        .visit-details h5 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            transition: color 0.6s;
        }
        .visit-details p {
            font-size: 0.8rem;
            color: var(--text-3);
            transition: color 0.6s;
        }
        .visit-status {
            font-family: var(--font-h);
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 4px 12px;
            border-radius: 20px;
        }
        .visit-status.active {
            background: rgba(16, 185, 129, 0.12);
            color: var(--green);
            border: 1px solid rgba(16, 185, 129, 0.25);
        }
        .visit-status.pending {
            background: rgba(245, 158, 11, 0.12);
            color: var(--gold);
            border: 1px solid rgba(245, 158, 11, 0.25);
        }

        /* ===== FOLLOW-UP ===== */
        .follow-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3.5rem;
            align-items: center;
        }
        .follow-timeline {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
            position: relative;
        }
        .follow-timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: var(--border);
            transition: background 0.6s;
        }
        .follow-task {
            display: flex;
            gap: 1.6rem;
            position: relative;
        }
        .follow-bullet {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1.5px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: var(--text-3);
            z-index: 5;
            transition: all 0.4s, border-color 0.6s, background 0.6s, color 0.6s;
        }
        .follow-task.active .follow-bullet {
            border-color: var(--cyan);
            color: var(--cyan);
            box-shadow: 0 0 15px var(--cyan-dim);
        }
        body.light-theme .follow-task.active .follow-bullet {
            border-color: #d4872a;
            color: #d4872a;
            box-shadow: 0 0 15px rgba(212, 135, 42, 0.2);
        }
        .follow-content h5 {
            font-family: var(--font-h);
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 2px;
            color: var(--text);
            transition: color 0.6s;
        }
        .follow-content p {
            font-size: 0.85rem;
            color: var(--text-2);
            transition: color 0.6s;
        }

        /* ===== ANALYTICS ===== */
        .analytics-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: stretch;
        }
        .chart-frame {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(28px);
            transition: background 0.6s, border-color 0.6s;
        }
        .chart-title {
            font-family: var(--font-h);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            transition: color 0.6s;
        }
        .chart-wrapper {
            height: 190px;
            width: 100%;
            position: relative;
        }
        .chart-wrapper svg {
            width: 100%;
            height: 100%;
        }
        .agent-leaderboard {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 1.5rem;
        }
        .leaderboard-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--border);
            border-radius: 10px;
            transition: background 0.6s, border-color 0.6s;
            color: var(--text-2);
        }
        body.light-theme .leaderboard-row {
            background: rgba(0, 0, 0, 0.02);
        }
        .leaderboard-row .rank {
            font-weight: 800;
            color: var(--gold);
            transition: color 0.6s;
        }
        .leaderboard-row .deals {
            font-weight: 700;
            color: var(--cyan);
            transition: color 0.6s;
        }
        body.light-theme .leaderboard-row .deals {
            color: #d4872a;
        }

        /* ===== CUSTOMERS ===== */
        .customer-layout {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 3.5rem;
            align-items: center;
        }
        .customer-card {
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.2rem;
            position: relative;
            backdrop-filter: blur(28px);
            transition: background 0.6s, border-color 0.6s;
        }
        .customer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border);
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            transition: border-color 0.6s;
        }
        .customer-name h4 {
            font-family: var(--font-h);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            transition: color 0.6s;
        }
        .customer-name p {
            font-size: 0.82rem;
            color: var(--text-3);
            transition: color 0.6s;
        }
        .customer-timeline {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }
        .timeline-node {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--text-2);
            transition: color 0.6s;
        }
        .timeline-node span.date {
            color: var(--text-3);
            transition: color 0.6s;
        }
        .timeline-node span.status {
            color: var(--green);
            font-weight: 600;
            transition: color 0.6s;
        }

        /* ===== BUILDERS ===== */
        .builder-layout {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 3.5rem;
            align-items: center;
        }
        .builder-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.4rem;
        }
        .builder-card {
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.8rem;
            text-align: center;
            transition: all 0.4s, border-color 0.6s, background 0.6s;
            backdrop-filter: blur(24px);
        }
        .builder-card:hover {
            border-color: var(--cyan);
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(0, 240, 252, 0.1);
        }
        body.light-theme .builder-card:hover {
            border-color: #d4872a;
            box-shadow: 0 15px 30px rgba(212, 135, 42, 0.08);
        }
        .builder-card i {
            font-size: 1.8rem;
            color: var(--cyan);
            margin-bottom: 1rem;
            transition: color 0.6s;
        }
        body.light-theme .builder-card i {
            color: #d4872a;
        }
        .builder-card h4 {
            font-family: var(--font-h);
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text);
            transition: color 0.6s;
        }
        .builder-card p {
            font-size: 0.82rem;
            color: var(--text-2);
            transition: color 0.6s;
        }

        /* ===== ECOSYSTEM ===== */
        .ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem;
        }
        .eco-card {
            text-align: center;
        }
        .eco-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--cyan);
            margin: 0 auto 1.2rem;
            transition: all 0.4s var(--ease-out), border-color 0.6s, background 0.6s, color 0.6s;
            backdrop-filter: blur(16px);
        }
        body.light-theme .eco-icon {
            color: #d4872a;
        }
        .eco-card:hover .eco-icon {
            border-color: var(--cyan);
            box-shadow: 0 0 25px var(--cyan-dim);
            transform: scale(1.12) rotate(6deg);
        }
        body.light-theme .eco-card:hover .eco-icon {
            border-color: #d4872a;
            box-shadow: 0 0 25px rgba(212, 135, 42, 0.2);
        }
        .eco-card h4 {
            font-family: var(--font-h);
            font-weight: 600;
            font-size: 1.15rem;
            margin-bottom: 5px;
            color: var(--text);
            transition: color 0.6s;
        }
        .eco-card p {
            font-size: 0.85rem;
            color: var(--text-2);
            transition: color 0.6s;
        }

        /* ===== PIPELINE ===== */
        .pipeline-track {
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
            max-width: 920px;
            margin: 0 auto;
        }
        .pipeline-row {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.6rem;
            transition: all 0.4s, border-color 0.6s, background 0.6s;
            backdrop-filter: blur(24px);
        }
        .pipeline-row:hover {
            border-color: var(--cyan);
            box-shadow: 0 0 20px rgba(0, 240, 252, 0.08);
            transform: translateX(8px);
        }
        body.light-theme .pipeline-row:hover {
            border-color: #d4872a;
            box-shadow: 0 0 20px rgba(212, 135, 42, 0.06);
        }
        .pipeline-row .step-num {
            font-family: var(--font-h);
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--cyan);
            opacity: 0.4;
            width: 65px;
            text-align: center;
            transition: color 0.6s;
        }
        body.light-theme .pipeline-row .step-num {
            color: #d4872a;
        }
        .pipeline-row .step-text h4 {
            font-family: var(--font-h);
            font-weight: 600;
            font-size: 1.15rem;
            margin-bottom: 3px;
            color: var(--text);
            transition: color 0.6s;
        }
        .pipeline-row .step-text p {
            color: var(--text-2);
            font-size: 0.88rem;
            transition: color 0.6s;
        }
        .pipeline-row .step-icon {
            font-size: 2rem;
            color: var(--purple);
            opacity: 0.7;
            transition: color 0.6s;
        }
        body.light-theme .pipeline-row .step-icon {
            color: #b06a3a;
        }

        /* ===== PRICING ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            align-items: stretch;
        }
        .price-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.8rem;
            display: flex;
            flex-direction: column;
            transition: all 0.5s var(--ease-out), border-color 0.6s, background 0.6s;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(28px);
        }
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            opacity: 0;
            transition: opacity 0.4s, background 0.6s;
        }
        body.light-theme .price-card::before {
            background: linear-gradient(90deg, transparent, #d4872a, transparent);
        }
        .price-card:hover::before {
            opacity: 1;
        }
        .price-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
        }
        body.light-theme .price-card:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.10);
        }
        .price-card.featured {
            border-color: var(--border-active);
            background: linear-gradient(180deg, rgba(0, 240, 252, 0.03), var(--bg-card));
        }
        body.light-theme .price-card.featured {
            background: linear-gradient(180deg, rgba(212, 135, 42, 0.06), var(--bg-card));
            border-color: rgba(212, 135, 42, 0.4);
        }
        .price-card.featured::before {
            opacity: 1;
        }
        .price-tag {
            font-family: var(--font-h);
            font-size: 0.82rem;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 0.8rem;
            transition: color 0.6s;
        }
        body.light-theme .price-tag {
            color: #d4872a;
        }
        .price-amount {
            font-family: var(--font-h);
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text);
            transition: color 0.6s;
        }
        .price-amount span {
            font-size: 1rem;
            color: var(--text-3);
            font-weight: 400;
            transition: color 0.6s;
        }
        .price-desc {
            font-size: 0.9rem;
            color: var(--text-2);
            margin-bottom: 2rem;
            transition: color 0.6s;
        }
        .price-features {
            flex-grow: 1;
            margin-bottom: 2rem;
        }
        .price-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 0;
            font-size: 0.88rem;
            color: var(--text-2);
            transition: color 0.6s;
        }
        .price-features li i {
            color: var(--cyan);
            font-size: 0.8rem;
            transition: color 0.6s;
        }
        body.light-theme .price-features li i {
            color: #d4872a;
        }

        /* ===== CTA ===== */
        .cta-box {
            background: linear-gradient(135deg, rgba(14, 16, 32, 0.75), rgba(4, 4, 12, 0.98));
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 5.5rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            backdrop-filter: blur(32px);
            transition: background 0.6s, border-color 0.6s;
        }
        body.light-theme .cta-box {
            background: linear-gradient(135deg, rgba(32, 20, 10, 0.92), rgba(20, 12, 5, 0.98));
            border: 1px solid rgba(255, 170, 50, 0.4);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -25%;
            width: 150%;
            height: 200%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
            pointer-events: none;
            transition: background 0.6s;
        }
        body.light-theme .cta-box::before {
            background: radial-gradient(circle, rgba(255, 170, 50, 0.12) 0%, transparent 60%);
        }
        .cta-box h2 {
            font-family: var(--font-h);
            font-size: clamp(2.2rem, 4.2vw, 3.6rem);
            font-weight: 800;
            line-height: 1.12;
            max-width: 850px;
            margin: 0 auto 1.2rem;
            color: #ffffff;
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 0 30px var(--glow-color);
            transition: color 0.6s;
        }
        body.light-theme .cta-box h2 {
            color: #ffffff !important;
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 170, 51, 0.5) !important;
        }
        .cta-box p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.92);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
            max-width: 600px;
            margin: 0 auto 2.8rem;
            transition: color 0.6s;
        }
        body.light-theme .cta-box p {
            color: rgba(255, 255, 255, 0.92) !important;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9) !important;
        }
        body.light-theme .cta-box .btn-outline {
            color: #ffffff !important;
            border-color: rgba(255, 170, 50, 0.6) !important;
            background: rgba(255, 170, 50, 0.18) !important;
        }
        body.light-theme .cta-box .btn-outline:hover {
            background: rgba(255, 170, 50, 0.38) !important;
            color: #ffffff !important;
        }
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 1.4rem;
        }

            .hero-metrics {
            .unit-grid {
            .ecosystem-grid {
            .horizontal-section {
            .horizontal-track {
            .proj-card {
