body, a, button, input, textarea, label, [data-accordion-target] {
            cursor: none !important;
        }
        body {
            background-color: #000000;
            color: #FFFFFF;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        
        /* -------------------------------------------------------------
           [ KERNEL OS - AI COGNITIVE STYLES ]
        ------------------------------------------------------------- */
        .cursor-glow {
            position: fixed;
            top: 0; left: 0;
            width: 30px; height: 30px;
            background: rgba(255, 138, 0, 0.15);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 40px 15px rgba(255, 138, 0, 0.1);
            mix-blend-mode: screen;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
        }
        .cursor-dot {
            position: fixed;
            top: 0; left: 0;
            width: 4px; height: 4px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
            mix-blend-mode: difference;
        }

        .glass-panel {
            background: rgba(11, 11, 11, 0.65);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(42, 42, 42, 0.3);
        }

        .smart-card-container {
            position: relative;
            overflow: hidden;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease;
        }
        .smart-card-container::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,138,0,0.8), transparent);
            transition: left 0s;
        }
        .smart-card-container.pulse-active::before {
            animation: cardEdgePulse 2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @keyframes cardEdgePulse {
            0% { left: -100%; top: 0; width: 50%; height: 1px; }
            25% { left: 100%; top: 0; width: 50%; height: 1px; }
            26% { left: 100%; top: 0; width: 1px; height: 50%; }
            50% { left: 100%; top: 100%; width: 1px; height: 50%; }
            51% { left: 100%; top: 100%; width: 50%; height: 1px; }
            75% { left: -50%; top: 100%; width: 50%; height: 1px; }
            76% { left: 0; top: 100%; width: 1px; height: 50%; }
            100% { left: 0; top: -50%; width: 1px; height: 50%; }
        }

        .ai-word-glow {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }
        .ai-word-glow.active {
            color: #FF8A00;
            text-shadow: 0 0 12px rgba(255, 138, 0, 0.6);
        }

        .ai-scanner {
            position: fixed;
            top: -10vh;
            left: 0;
            width: 100vw;
            height: 5vh;
            background: linear-gradient(to bottom, transparent, rgba(255, 138, 0, 0.03), transparent);
            border-bottom: 1px solid rgba(255, 138, 0, 0.1);
            z-index: 99990;
            pointer-events: none;
            opacity: 0;
            transform: translateY(0);
        }

        .ai-hud {
            position: fixed;
            font-family: 'Michroma', sans-serif;
            font-size: 8px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(168, 168, 168, 0.4);
            pointer-events: none;
            z-index: 99990;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .ai-hud-item span.status { color: rgba(255, 138, 0, 0.6); }

        .thought-engine-msg {
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(0.95);
            font-family: 'Michroma', sans-serif;
            font-size: 10px;
            letter-spacing: 0.3em;
            color: #FF8A00;
            text-transform: uppercase;
            pointer-events: none;
            z-index: 99995;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            text-shadow: 0 0 20px rgba(255, 138, 0, 0.4);
        }
        .thought-engine-msg.active {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .reveal-element {
            opacity: 0;
            transform: translateY(20px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-element.active {
            opacity: 1;
            transform: translateY(0);
        }

        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: #000000; }
        ::-webkit-scrollbar-thumb { background: #1A1A1A; border-radius: 2px; }
        ::-webkit-scrollbar-thumb:hover { background: #FF8A00; }
        
        .form-input {
            width: 100%;
            background: rgba(17, 17, 17, 0.8);
            border: 1px solid rgba(42, 42, 42, 0.8);
            color: white;
            padding: 12px 16px;
            font-size: 12px;
            outline: none;
            transition: all 0.3s ease;
        }
        .form-input:focus {
            border-color: #FF8A00;
            box-shadow: 0 0 10px rgba(255, 138, 0, 0.1);
        }