* {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        body {
            background: #050505;
            color: #fff;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden
        }

        /* NAV */
        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 5, 5, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 0 2rem;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #fff;
            font-weight: 700;
            font-size: 1rem
        }

        .nav-brand img {
            height: 24px
        }

        .nav-tabs {
            display: flex;
            gap: 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 3px;
            margin: 0 1.5rem
        }

        .nav-tab {
            padding: 6px 18px;
            border-radius: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #94a3b8;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            background: none;
            text-decoration: none
        }

        .nav-tab:hover {
            color: #fff
        }

        .nav-tab.active {
            background: rgba(0, 255, 136, 0.12);
            color: #00FF88
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .nav-right a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 500;
            transition: color 0.2s
        }

        .nav-right a:hover {
            color: #fff
        }

        .nav-cta {
            background: #00FF88 !important;
            color: #000 !important;
            padding: 6px 16px !important;
            border-radius: 6px !important;
            font-weight: 700 !important
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px
        }

        .hamburger span {
            width: 20px;
            height: 2px;
            background: #fff;
            border-radius: 1px
        }

        @media(max-width:768px) {
            .hamburger {
                display: flex
            }

            .nav-tabs,
            .nav-right {
                display: none
            }

            .nav-tabs.open,
            .nav-right.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                background: rgba(5, 5, 5, 0.97);
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06)
            }
        }

        /* KERNEL DEMO BAR */
        .kernel-bar {
            margin-top: 56px;
            background: rgba(0, 255, 136, 0.03);
            border-bottom: 1px solid rgba(0, 255, 136, 0.08);
            position: relative;
            height: 80px;
            overflow: hidden
        }

        .kernel-stats {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding: 8px 1rem;
            z-index: 2
        }

        .k-stat {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            color: #94a3b8
        }

        .k-stat strong {
            color: #00FF88;
            font-weight: 700;
            font-size: 0.85rem
        }

        .k-stat .pulse {
            width: 6px;
            height: 6px;
            background: #00FF88;
            border-radius: 50%;
            box-shadow: 0 0 6px #00FF88;
            animation: blink 2s infinite
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.3
            }
        }

        #kernel-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1
        }

        /* MAIN LAYOUT */
        .main-layout {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 1.5rem;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 1.5rem;
            min-height: calc(100vh - 136px)
        }

        @media(max-width:900px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
        }

        /* FEED COLUMN */
        .feed-col {
            display: flex;
            flex-direction: column;
            gap: 0
        }

        .feed-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            margin-bottom: 1rem
        }

        .feed-header h2 {
            font-size: 1.1rem;
            font-weight: 700
        }

        .feed-header .live-dot {
            width: 8px;
            height: 8px;
            background: #00FF88;
            border-radius: 50%;
            box-shadow: 0 0 6px #00FF88;
            animation: blink 2s infinite;
            display: inline-block;
            margin-right: 6px
        }

        /* Feed Items */
        .feed-item {
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            margin-bottom: 0.75rem;
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.3s;
            cursor: default
        }

        .feed-item:hover {
            border-color: rgba(0, 255, 136, 0.15);
            background: rgba(255, 255, 255, 0.03)
        }

        .feed-item-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px
        }

        .feed-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(0, 255, 136, 0.12);
            color: #00FF88;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0
        }

        .feed-avatar.system {
            background: rgba(0, 255, 136, 0.2)
        }

        .feed-avatar.trial {
            background: rgba(192, 132, 252, 0.15);
            color: #C084FC
        }

        .feed-company {
            font-weight: 600;
            font-size: 0.9rem
        }

        .feed-product {
            font-size: 0.75rem;
            color: #64748b;
            font-weight: 400
        }

        .feed-time {
            font-size: 0.7rem;
            color: #475569;
            margin-left: auto
        }

        .feed-msg {
            font-size: 0.88rem;
            line-height: 1.5;
            color: #e2e8f0;
            margin-bottom: 8px
        }

        .feed-metrics {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .feed-metric {
            padding: 4px 10px;
            background: rgba(0, 255, 136, 0.06);
            border: 1px solid rgba(0, 255, 136, 0.1);
            border-radius: 6px;
            font-size: 0.75rem;
            color: #00FF88;
            font-weight: 600
        }

        .feed-type-badge {
            font-size: 0.65rem;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px
        }

        .badge-trial {
            background: rgba(192, 132, 252, 0.12);
            color: #C084FC
        }

        .badge-efficiency {
            background: rgba(0, 217, 255, 0.1);
            color: #00D9FF
        }

        .badge-broadcast {
            background: rgba(0, 255, 136, 0.1);
            color: #00FF88
        }

        .feed-empty {
            text-align: center;
            padding: 3rem;
            color: #475569;
            font-size: 0.9rem
        }

        /* SIDEBAR */
        .sidebar-col {
            display: flex;
            flex-direction: column;
            gap: 1rem
        }

        .sidebar-card {
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            overflow: hidden
        }

        .sidebar-card-header {
            padding: 0.75rem 1rem;
            font-weight: 700;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .sidebar-card-header a {
            font-size: 0.75rem;
            color: #00FF88;
            text-decoration: none;
            font-weight: 600
        }

        /* Mini Product Cards */
        .mini-product {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: background 0.2s
        }

        .mini-product:hover {
            background: rgba(255, 255, 255, 0.03)
        }

        .mini-product:last-child {
            border-bottom: none
        }

        .mini-product .mp-icon {
            font-size: 1.3rem;
            flex-shrink: 0
        }

        .mini-product .mp-info {
            flex: 1;
            min-width: 0
        }

        .mini-product .mp-name {
            font-weight: 600;
            font-size: 0.82rem
        }

        .mini-product .mp-desc {
            font-size: 0.7rem;
            color: #64748b;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis
        }

        .mini-product .mp-price {
            font-weight: 700;
            font-size: 0.8rem;
            color: #00FF88;
            flex-shrink: 0
        }

        .mini-product .mp-trial {
            font-size: 0.65rem;
            color: #C084FC;
            padding: 2px 8px;
            background: rgba(192, 132, 252, 0.1);
            border-radius: 4px;
            cursor: pointer;
            border: none;
            font-weight: 600;
            flex-shrink: 0
        }

        .mini-product .mp-trial:hover {
            background: rgba(192, 132, 252, 0.2)
        }

        /* Network Stats Widget */
        .net-stat-row {
            padding: 0.6rem 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.82rem
        }

        .net-stat-row:last-child {
            border-bottom: none
        }

        .net-stat-label {
            color: #94a3b8
        }

        .net-stat-val {
            font-weight: 700;
            color: #00FF88
        }

        /* HOW GHOST TRIALS WORK */
        .how-section {
            padding: 0.75rem 1rem
        }

        .how-step-mini {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04)
        }

        .how-step-mini:last-child {
            border-bottom: none
        }

        .how-num {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(0, 255, 136, 0.1);
            color: #00FF88;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0
        }

        .how-text {
            font-size: 0.78rem;
            color: #cbd5e1;
            line-height: 1.4
        }

        .how-text strong {
            color: #fff
        }

        /* FULL STORE VIEW (hidden by default) */
        .store-full {
            display: none
        }

        .store-full.active {
            display: block
        }

        .featured-product {
            border: 1px solid rgba(0, 255, 136, 0.15);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.04), rgba(0, 0, 0, 0));
            position: relative;
            overflow: hidden
        }

        .featured-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0, 255, 136, 0.15);
            color: #00FF88;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700
        }

        .featured-left {
            flex: 1
        }

        .featured-left h2 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            margin-top: 1.5rem
        }

        .featured-left .tagline {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 1rem
        }

        .featured-left p {
            color: #cbd5e1;
            font-size: 0.88rem;
            line-height: 1.6;
            margin-bottom: 1rem
        }

        .featured-benchmarks {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem
        }

        .fb-item {
            text-align: center
        }

        .fb-val {
            font-size: 1.4rem;
            font-weight: 800;
            color: #00FF88
        }

        .fb-label {
            font-size: 0.7rem;
            color: #94a3b8
        }

        .featured-right {
            text-align: center;
            min-width: 180px
        }

        .featured-price {
            font-size: 2rem;
            font-weight: 800
        }

        .featured-price span {
            font-size: 0.9rem;
            color: #94a3b8;
            font-weight: 400
        }

        .featured-tax {
            font-size: 0.75rem;
            color: #f59e0b;
            margin: 0.5rem 0
        }

        .featured-cta {
            display: flex;
            flex-direction: column;
            gap: 8px
        }

        .btn-buy {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            border: none;
            transition: all 0.2s
        }

        .btn-ghost {
            background: rgba(192, 132, 252, 0.12);
            color: #C084FC;
            border: 1px solid rgba(192, 132, 252, 0.3)
        }

        .btn-ghost:hover {
            background: rgba(192, 132, 252, 0.2)
        }

        .btn-license {
            background: #00FF88;
            color: #000
        }

        .btn-license:hover {
            background: #00E67A
        }

        .section-label {
            font-weight: 700;
            margin: 1.5rem 0 1rem;
            font-size: 0.9rem;
            color: #94a3b8
        }

        .store-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1rem
        }

        .product-card {
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(10px)
        }

        .product-card.visible {
            opacity: 1;
            transform: translateY(0)
        }

        .product-card:hover {
            border-color: rgba(0, 255, 136, 0.2);
            transform: translateY(-2px)
        }

        .product-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-bottom: 0.5rem
        }

        .badge-scada {
            background: rgba(245, 158, 11, 0.12);
            color: #F59E0B
        }

        .badge-crm {
            background: rgba(59, 130, 246, 0.12);
            color: #3B82F6
        }

        .badge-flag {
            background: rgba(0, 255, 136, 0.12);
            color: #00FF88
        }

        .badge-bank {
            background: rgba(0, 102, 255, 0.12);
            color: #0066FF
        }

        .product-icon {
            font-size: 1.8rem;
            margin: 0.5rem 0
        }

        .product-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem
        }

        .product-desc {
            font-size: 0.82rem;
            color: #94a3b8;
            line-height: 1.5;
            margin-bottom: 0.75rem
        }

        .product-benchmarks {
            display: flex;
            gap: 1rem;
            margin-bottom: 0.75rem
        }

        .bench-item {
            text-align: center
        }

        .bench-val {
            font-weight: 800;
            color: #00FF88;
            font-size: 0.95rem
        }

        .bench-label {
            font-size: 0.65rem;
            color: #64748b
        }

        .product-price {
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 4px
        }

        .product-price span {
            font-size: 0.75rem;
            color: #94a3b8;
            font-weight: 400
        }

        .product-tax {
            font-size: 0.7rem;
            color: #f59e0b;
            margin-bottom: 0.75rem
        }

        .card-actions {
            display: flex;
            gap: 6px
        }

        .card-actions .btn-buy {
            flex: 1;
            font-size: 0.8rem;
            padding: 8px
        }

        @media(max-width:640px) {
            .featured-product {
                flex-direction: column
            }

            .featured-right {
                width: 100%
            }
        }

        /* FOOTER */
        .site-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2rem
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem
        }

        .footer-brand {
            font-weight: 700;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px
        }

        .footer-links-row {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap
        }

        .footer-links-row a {
            color: #475569;
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.2s
        }

        .footer-links-row a:hover {
            color: #fff
        }

        .footer-copy {
            width: 100%;
            text-align: center;
            color: #1e293b;
            font-size: 0.75rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.03)
        }

        /* TOAST */
        #toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #00FF88;
            color: #000;
            padding: 12px 24px;
            border-radius: 8px;
            display: none;
            font-weight: bold;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            z-index: 9999;
            font-size: 0.9rem
        }

        /* AI CHAT WIDGET */
        .chat-fab {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #00FF88, #00D9FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
            z-index: 9998;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            font-size: 1.4rem
        }

        .chat-fab:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(0, 255, 136, 0.45)
        }

        .chat-panel {
            position: fixed;
            bottom: 90px;
            right: 24px;
            width: 360px;
            max-height: 480px;
            background: #0f172a;
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            z-index: 9998;
            display: none;
            flex-direction: column;
            overflow: hidden
        }

        .chat-panel.open {
            display: flex
        }

        .chat-panel-header {
            padding: 1rem 1.25rem;
            background: rgba(0, 255, 136, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            gap: 10px
        }

        .chat-panel-header .ai-dot {
            width: 8px;
            height: 8px;
            background: #00FF88;
            border-radius: 50%;
            box-shadow: 0 0 6px #00FF88;
            animation: blink 2s infinite
        }

        .chat-panel-header h4 {
            margin: 0;
            font-size: 0.9rem;
            font-weight: 700
        }

        .chat-panel-header span {
            font-size: 0.7rem;
            color: #64748b;
            margin-left: auto
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            min-height: 200px;
            max-height: 320px
        }

        .chat-msg {
            padding: 10px 14px;
            border-radius: 12px;
            font-size: 0.85rem;
            line-height: 1.5;
            max-width: 85%
        }

        .chat-msg.ai {
            background: rgba(0, 255, 136, 0.08);
            border: 1px solid rgba(0, 255, 136, 0.15);
            align-self: flex-start;
            color: #d1fae5
        }

        .chat-msg.user {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            align-self: flex-end;
            color: #e2e8f0
        }

        .chat-input-row {
            padding: 0.75rem 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            gap: 8px
        }

        .chat-input-row input {
            flex: 1;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 0.85rem;
            outline: none
        }

        .chat-input-row input:focus {
            border-color: #00FF88
        }

        .chat-input-row button {
            padding: 10px 16px;
            background: #00FF88;
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            font-size: 0.85rem
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(8px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(192, 132, 252, 0.6)
            }

            70% {
                box-shadow: 0 0 0 12px rgba(192, 132, 252, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(192, 132, 252, 0)
            }
        }