/* sAIfy widget */
            #saify { position: fixed; bottom: 24px; right: 24px; width: 360px; max-width: calc(100vw - 32px); background: #151B33; border: 1px solid rgba(3,255,158,0.3); border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); z-index: 9999; display: none; flex-direction: column; overflow: hidden; max-height: 520px; }
            #saify.open { display: flex; }
            #saify-trigger { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; background: #03FF9E; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 9998; box-shadow: 0 0 26px rgba(3,255,158,0.45); transition: transform 0.25s; }
            #saify-trigger:hover { transform: scale(1.08); }
            @media (max-width: 640px) {
              #saify { bottom: 16px; right: 16px; left: 16px; width: auto; max-width: calc(100vw - 32px); max-height: 80vh; }
              #saify-trigger { bottom: 16px; right: 16px; width: 50px; height: 50px; }
            }

            /* ===================== sAIfy chat ===================== */
            .saify-row { display: flex; }
            .saify-msg-bot, .saify-msg-user { max-width: 88%; padding: 10px 14px; border-radius: 16px; font-size: 14px; line-height: 1.5; }
            .saify-msg-bot { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); color: #e2e8f0; border-bottom-left-radius: 4px; }
            .saify-msg-user { background: rgba(3,255,158,0.12); border: 1px solid rgba(3,255,158,0.25); color: #d1fae5; border-bottom-right-radius: 4px; margin-left: auto; }
            .saify-opt { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; padding: 10px 14px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: #cbd5e1; font-size: 13.5px; transition: all .2s; cursor: pointer; }
            .saify-opt:hover { border-color: rgba(3,255,158,0.4); color: #fff; background: rgba(3,255,158,0.06); }
            .saify-opt.primary { background: #03FF9E; color: #0B1124; font-weight: 700; border-color: #03FF9E; }
            .saify-opt.primary:hover { background: #02d483; color: #0B1124; }
            .saify-card { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 14px; text-decoration: none; cursor: pointer; }
            .saify-typing span { display: inline-block; width: 6px; height: 6px; margin: 0 1px; border-radius: 50%; background: #64748b; animation: saify-blink 1.2s infinite; }
            .saify-typing span:nth-child(2) { animation-delay: .2s; }
            .saify-typing span:nth-child(3) { animation-delay: .4s; }
            @keyframes saify-blink { 0%,60%,100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
            .saify-hero-panel { display: flex; flex-direction: column; height: 540px; max-height: 76vh; }
            .saify-scroll { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
            .saify-scroll::-webkit-scrollbar { width: 6px; }
            .saify-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
            .saify-inputbar { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
            .saify-inputbar input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 10px 14px; color: #fff; font-size: 14px; outline: none; }
            .saify-inputbar input:focus { border-color: rgba(3,255,158,0.4); }

            /* ===== finder / command-palette ===== */
            .saify-search { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-top: 1px solid rgba(255,255,255,0.07); position: relative; }
            .saify-search::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%; background: linear-gradient(90deg, transparent, rgba(3,255,158,0.35), transparent); opacity: 0; transition: opacity .3s; }
            .saify-search:focus-within::after { opacity: 1; }
            .saify-search > i { color: #03FF9E; flex-shrink: 0; }
            .saify-search input { flex: 1; background: transparent; border: 0; outline: 0; color: #fff; font-size: 15px; }
            .saify-search input::placeholder { color: #64748b; }
            .saify-go { width: 36px; height: 36px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: rgba(3,255,158,0.12); color: #03FF9E; cursor: pointer; border: 1px solid rgba(3,255,158,0.25); flex-shrink: 0; transition: all .2s; }
            .saify-go:hover { background: #03FF9E; color: #0B1124; }
            .saify-step { animation: stepIn .42s cubic-bezier(.16,1,.3,1); }
            @keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
            .saify-prompt { color: #fff; font-size: 15px; font-weight: 600; line-height: 1.45; margin: 2px 0 16px; }
            .saify-hint { color: #64748b; font-size: 12px; margin: -8px 0 4px; }
            .saify-back { display: inline-flex; align-items: center; gap: 5px; color: #94a3b8; font-size: 12px; background: none; border: 0; cursor: pointer; margin-bottom: 12px; padding: 0; }
            .saify-back:hover { color: #03FF9E; }
            .saify-list { display: flex; flex-direction: column; gap: 8px; }
            .saify-row-opt { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 13px 14px; border-radius: 14px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: all .2s; }
            .saify-row-opt:hover { background: rgba(3,255,158,0.06); border-color: rgba(3,255,158,0.35); transform: translateX(3px); }
            .saify-row-opt.primary { background: rgba(3,255,158,0.08); border-color: rgba(3,255,158,0.35); }
            .saify-ic { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); color: #03FF9E; flex-shrink: 0; }
            .saify-row-opt.primary .saify-ic { background: #03FF9E; color: #0B1124; }
            .saify-row-label { flex: 1; color: #e2e8f0; font-size: 13.5px; font-weight: 500; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
            .saify-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #03FF9E; background: rgba(3,255,158,0.12); padding: 2px 7px; border-radius: 999px; }
            .saify-arrow { color: #475569; transition: transform .2s, color .2s; flex-shrink: 0; }
            .saify-row-opt:hover .saify-arrow { color: #03FF9E; transform: translateX(3px); }
            .saify-featured { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 14px; border-radius: 16px; margin-bottom: 14px; cursor: pointer; background: linear-gradient(135deg, rgba(3,255,158,0.1), rgba(37,99,235,0.08)); border: 1px solid rgba(3,255,158,0.3); transition: all .2s; }
            .saify-featured:hover { border-color: rgba(3,255,158,0.55); transform: translateY(-1px); }
            .saify-featured-ic { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(3,255,158,0.15); color: #03FF9E; flex-shrink: 0; }
            .saify-featured-body { flex: 1; display: flex; flex-direction: column; }
            .saify-featured-kicker { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: #03FF9E; font-weight: 700; }
            .saify-featured-title { color: #fff; font-weight: 700; font-size: 15px; }
            .saify-reset { margin-top: 16px; background: none; border: 0; color: #64748b; font-size: 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
            .saify-reset:hover { color: #94a3b8; }
            .saify-loading { display: flex; align-items: center; gap: 8px; color: #64748b; font-size: 13px; padding: 8px 0; }
            .saify-loading span { width: 6px; height: 6px; border-radius: 50%; background: #03FF9E; display: inline-block; animation: saify-blink 1.2s infinite; }
            .saify-loading span:nth-child(2) { animation-delay: .2s; }
            .saify-loading span:nth-child(3) { animation-delay: .4s; }
            .saify-success { display: flex; justify-content: center; margin: 6px 0 16px; }
            .saify-success-ic { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(3,255,158,0.15); color: #03FF9E; border: 1px solid rgba(3,255,158,0.4); animation: popIn .45s cubic-bezier(.16,1,.3,1); }
            @keyframes popIn { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
            #chat-trigger, #sAIfy-widget { display: none !important; } /* neutraliza chat viejo */
