:root{--bg: #08080e;--bg-surface: #0f0f1a;--bg-elevated: #171728;--bg-hover: #1f1f36;--accent: #8b5cf6;--accent-light: #a78bfa;--accent-dim: #6d28d9;--accent-glow: rgba(139, 92, 246, .3);--accent-subtle: rgba(139, 92, 246, .08);--red: #ef4444;--green: #22c55e;--blue: #60a5fa;--text: #eee8f5;--text-dim: #7c7599;--border: rgba(139, 92, 246, .12);--border-bright: rgba(139, 92, 246, .25);--radius: 10px;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;line-height:1.5;color-scheme:dark;-webkit-font-smoothing:antialiased}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html,body{height:100%;overflow:hidden;background:var(--bg);color:var(--text)}#root{height:100%}button{font-family:inherit}.app{display:flex;flex-direction:column;height:100vh;background:var(--bg)}.header{display:flex;align-items:center;justify-content:space-between;padding:0 1rem;height:52px;background:var(--bg-surface);border-bottom:1px solid var(--border);flex-shrink:0;z-index:10}.header-brand{display:flex;align-items:center;gap:.6rem}.brand-mark svg{width:30px;height:30px}.brand-info{display:flex;flex-direction:column;line-height:1.15}.brand-name{font-size:1rem;font-weight:800;color:var(--accent-light);letter-spacing:.01em}.brand-sub{font-size:.6rem;color:var(--text-dim);text-transform:uppercase;letter-spacing:.06em}.header-tabs{display:flex;gap:.25rem}.tab{display:flex;align-items:center;gap:.4rem;padding:.35rem .8rem;border-radius:7px;border:1px solid transparent;background:transparent;color:var(--text-dim);font-size:.78rem;font-weight:550;cursor:pointer;transition:all .15s}.tab svg{width:15px;height:15px}.tab:hover{background:var(--bg-elevated);color:var(--text)}.tab--active{background:var(--accent-subtle);color:var(--accent-light);border-color:var(--border)}.header-actions{display:flex;align-items:center;gap:.4rem}.header-logo-right{display:flex;align-items:center;gap:.45rem;margin-left:.5rem;padding-left:.5rem;border-left:1px solid var(--border)}.header-logo-right svg{width:28px;height:28px;flex-shrink:0}.header-logo-label{font-size:.82rem;font-weight:800;color:var(--accent-light);letter-spacing:.01em;white-space:nowrap}.btn-icon{width:32px;height:32px;border-radius:7px;border:1px solid var(--border);background:transparent;color:var(--text-dim);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s}.btn-icon svg{width:16px;height:16px}.btn-icon:hover{background:var(--bg-elevated);color:var(--accent-light);border-color:var(--border-bright)}.btn-speaker{width:auto;padding:0 .6rem;gap:.35rem}.btn-speaker--on{background:var(--accent-glow);border-color:var(--accent-dim);color:var(--accent-light);animation:pulse-glow 2s ease-in-out infinite}.speaker-label{font-size:.6rem;font-weight:700;letter-spacing:.08em;color:var(--accent-light)}.mic-header-btn--on{background:var(--accent-glow);border-color:var(--accent-dim);color:var(--accent-light);animation:pulse-glow 2s ease-in-out infinite}.btn-icon:disabled{opacity:.35;cursor:not-allowed}@keyframes pulse-glow{0%,to{box-shadow:0 0 0 0 var(--accent-glow)}50%{box-shadow:0 0 14px 2px var(--accent-glow)}}.nav-bar{display:flex;align-items:center;gap:.35rem;padding:.35rem .75rem;background:var(--bg-surface);border-bottom:1px solid var(--border);flex-shrink:0}.nav-btn{width:30px;height:30px;border-radius:6px;border:1px solid transparent;background:transparent;color:var(--text-dim);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s}.nav-btn svg{width:16px;height:16px}.nav-btn:hover{background:var(--bg-elevated);color:var(--accent-light)}.url-bar{flex:1;display:flex;align-items:center;gap:.5rem;padding:.25rem .6rem;background:var(--bg);border:1px solid var(--border);border-radius:7px;color:var(--text-dim)}.url-bar svg{width:13px;height:13px;flex-shrink:0}.url-input{flex:1;background:transparent;border:none;outline:none;color:var(--text);font-size:.78rem;font-family:SF Mono,Fira Code,Consolas,monospace}.url-input::placeholder{color:var(--text-dim)}.main{flex:1;display:flex;overflow:hidden}.sidebar{width:220px;flex-shrink:0;display:flex;flex-direction:column;gap:.6rem;padding:.6rem;background:var(--bg-surface);border-right:1px solid var(--border);overflow-y:auto}.mic-area{display:flex;flex-direction:column;align-items:center;gap:.35rem;padding:.3rem 0}.mic{position:relative;width:42px;height:42px;border-radius:50%;border:2px solid var(--border-bright);background:var(--bg-elevated);color:var(--accent-light);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s}.mic svg{width:18px;height:18px}.mic:hover{border-color:var(--accent);box-shadow:0 0 20px var(--accent-glow)}.mic--on{border-color:var(--accent);background:var(--accent-subtle);color:var(--accent-light)}.mic--on .mic-ring{position:absolute;top:-5px;right:-5px;bottom:-5px;left:-5px;border-radius:50%;border:2px solid var(--accent-glow);animation:ring-expand 1.4s ease-out infinite}.mic--off{opacity:.4;cursor:default}@keyframes ring-expand{0%{transform:scale(1);opacity:1}to{transform:scale(1.5);opacity:0}}.waves{display:flex;align-items:center;gap:3px;height:18px}.waves span{display:block;width:3px;background:var(--accent-light);border-radius:2px;animation:wave .9s ease-in-out infinite}.waves span:nth-child(1){height:6px;animation-delay:0s}.waves span:nth-child(2){height:12px;animation-delay:.08s}.waves span:nth-child(3){height:18px;animation-delay:.16s}.waves span:nth-child(4){height:12px;animation-delay:.24s}.waves span:nth-child(5){height:6px;animation-delay:.32s}@keyframes wave{0%,to{transform:scaleY(.35)}50%{transform:scaleY(1)}}.listen-label{font-size:.68rem;font-weight:700;color:var(--accent-light);text-transform:uppercase;letter-spacing:.1em}.interim-text{font-size:.78rem;color:var(--text-dim);font-style:italic;text-align:center;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.compat-note{font-size:.7rem;color:var(--text-dim);text-align:center;padding:.3rem .5rem;background:var(--accent-subtle);border-radius:6px;line-height:1.4}.status-box{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:.6rem}.status-head{display:flex;align-items:center;gap:.4rem;margin-bottom:.3rem}.dot{width:7px;height:7px;border-radius:50%;flex-shrink:0}.dot--info{background:var(--blue)}.dot--success{background:var(--green)}.dot--error{background:var(--red)}.dot--listening{background:var(--accent-light);animation:blink 1s infinite}.dot--speaking{background:var(--accent-light);animation:blink .7s infinite}@keyframes blink{0%,to{opacity:1}50%{opacity:.2}}.status-label{font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--text-dim)}.status-time{font-size:.6rem;color:var(--text-dim);margin-left:auto;opacity:.5}.status-msg{font-size:.78rem;color:var(--text);line-height:1.4}.status-heard{font-size:.7rem;color:var(--accent-dim);margin-top:.2rem;font-style:italic}.cmd-form{width:100%}.cmd-input-wrap{display:flex;align-items:center;gap:.4rem;padding:.3rem .5rem;background:var(--bg);border:1px solid var(--border);border-radius:8px}.cmd-input-wrap svg{width:13px;height:13px;color:var(--text-dim);flex-shrink:0}.cmd-input{flex:1;background:transparent;border:none;outline:none;color:var(--text);font-size:.75rem;min-width:0}.cmd-input::placeholder{color:var(--text-dim);font-style:italic}.cmd-send{width:26px;height:26px;border-radius:6px;border:1px solid var(--border);background:var(--accent-subtle);color:var(--accent-light);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s;flex-shrink:0}.cmd-send svg{width:13px;height:13px}.cmd-send:hover{background:var(--accent-glow);border-color:var(--accent-dim)}.cmd-list{flex:1;overflow-y:auto}.cmd-list-title{font-size:.6rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--text-dim);margin-bottom:.3rem}.cmd-item{padding:.25rem .4rem;background:var(--bg);border-radius:6px;border:1px solid transparent;margin-bottom:.15rem;transition:border-color .12s}.cmd-item:hover{border-color:var(--border)}.cmd-phrase{font-size:.67rem;font-family:SF Mono,Fira Code,Consolas,monospace;color:var(--accent-light);background:none;padding:0}.sidebar-hint{text-align:center;font-size:.62rem;color:var(--text-dim);padding-top:.3rem;border-top:1px solid var(--border)}.sidebar-hint kbd{display:inline-block;padding:.05rem .3rem;border-radius:4px;border:1px solid var(--border);background:var(--bg-elevated);font-size:.58rem;font-family:inherit;color:var(--accent-light)}.viewport{flex:1;display:flex;overflow:hidden;background:#fff}.frame{flex:1;border:none;width:100%;height:100%}.about-page{flex:1;overflow-y:auto;padding:2.5rem 2rem;max-width:900px;margin:0 auto;width:100%}.about-hero{text-align:center;margin-bottom:2.5rem}.about-logo-lg svg{width:80px;height:80px;margin-bottom:1rem}.about-title{font-size:2.2rem;font-weight:900;color:var(--accent-light);letter-spacing:-.02em}.about-subtitle{font-size:1rem;color:var(--text-dim);margin-top:.25rem}.about-version{font-size:.72rem;color:var(--text-dim);margin-top:.5rem;font-family:monospace;opacity:.6}.about-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin-bottom:2.5rem}.about-card{background:var(--bg-surface);border:1px solid var(--border);border-radius:12px;padding:1.25rem;transition:border-color .2s}.about-card:hover{border-color:var(--border-bright)}.about-card-icon{color:var(--accent-light);margin-bottom:.6rem}.about-card-icon svg{width:24px;height:24px}.about-card h3{font-size:.92rem;font-weight:700;color:var(--text);margin-bottom:.35rem}.about-card p{font-size:.78rem;color:var(--text-dim);line-height:1.5}.about-section{margin-bottom:2.5rem}.about-section h2{font-size:1.15rem;font-weight:700;color:var(--accent-light);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}.about-tech{font-size:.82rem;color:var(--text-dim);line-height:1.6}.about-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}.step{background:var(--bg-surface);border:1px solid var(--border);border-radius:12px;padding:1.25rem;position:relative}.step-num{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:var(--accent-subtle);border:1px solid var(--border-bright);color:var(--accent-light);font-size:.78rem;font-weight:700;margin-bottom:.75rem}.step h4{font-size:.88rem;font-weight:600;color:var(--text);margin-bottom:.3rem}.step p{font-size:.76rem;color:var(--text-dim);line-height:1.45}.cmd-table{display:flex;flex-direction:column;gap:.3rem}.cmd-row{display:flex;align-items:center;gap:1rem;padding:.5rem .75rem;background:var(--bg-surface);border:1px solid var(--border);border-radius:8px}.cmd-row code{font-size:.78rem;font-family:SF Mono,Fira Code,Consolas,monospace;color:var(--accent-light);white-space:nowrap;min-width:200px}.cmd-row span{font-size:.76rem;color:var(--text-dim)}.about-footer{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:1.5rem;color:var(--text-dim);font-size:.78rem;text-align:center;border-top:1px solid var(--border);margin-top:1rem}.about-footer svg{width:16px;height:16px;color:var(--accent-light)}.overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#08080ee0;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);z-index:100;display:flex;align-items:center;justify-content:center;padding:1rem;animation:fade-in .15s}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.modal{background:var(--bg-surface);border:1px solid var(--border-bright);border-radius:14px;max-width:520px;width:100%;max-height:80vh;overflow-y:auto;animation:slide-up .2s ease-out}@keyframes slide-up{0%{transform:translateY(10px);opacity:0}to{transform:translateY(0);opacity:1}}.modal-head{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.25rem 0}.modal-head h2{font-size:1.1rem;font-weight:700;color:var(--accent-light)}.modal-body{padding:1rem 1.25rem 1.25rem}.modal-section{margin-bottom:1.25rem}.modal-section:last-child{margin-bottom:0}.modal-section h3{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--text-dim);margin-bottom:.5rem;padding-bottom:.3rem;border-bottom:1px solid var(--border)}.modal-section dl{display:grid;gap:.3rem}.modal-section dt{font-size:.78rem;font-family:SF Mono,Fira Code,Consolas,monospace;color:var(--accent-light);margin-top:.3rem}.modal-section dd{font-size:.74rem;color:var(--text-dim);padding-left:.6rem}.mic-test-screen .mic-test-content{flex:1;display:flex;align-items:center;justify-content:center;padding:2rem}.mic-test-card{background:var(--bg-surface);border:1px solid var(--border-bright);border-radius:16px;padding:2.5rem 2rem;max-width:420px;width:100%;text-align:center}.mic-test-title{font-size:1.5rem;font-weight:800;color:var(--accent-light);margin-bottom:.5rem}.mic-test-desc{font-size:.85rem;color:var(--text-dim);margin-bottom:1.5rem;line-height:1.5}.mic-test-step{display:flex;flex-direction:column;align-items:center;gap:1rem}.mic-test-icon-big{width:64px;height:64px;color:var(--accent-light)}.mic-test-icon-big svg{width:100%;height:100%}.mic-test-icon-big.success{color:var(--green)}.mic-pulse{animation:mic-pulse-anim 1.2s ease-in-out infinite}@keyframes mic-pulse-anim{0%,to{transform:scale(1)}50%{transform:scale(1.12)}}.mic-level-wrap{display:flex;align-items:center;gap:3px;height:40px}.mic-level-bar{width:6px;height:100%;background:var(--accent-light);border-radius:3px;transition:opacity .1s,transform .1s}.mic-test-hint{font-size:.82rem;color:var(--text-dim)}.mic-test-interim{font-size:.82rem;color:var(--accent-light);font-style:italic}.mic-test-success-text{font-size:1.1rem;font-weight:700;color:var(--green)}.mic-test-heard{font-size:.82rem;color:var(--text-dim);font-style:italic}.mic-test-btn{padding:.6rem 1.5rem;border-radius:8px;font-size:.85rem;font-weight:600;cursor:pointer;border:1px solid var(--border);transition:all .15s}.mic-test-btn.primary{background:var(--accent);color:#fff;border-color:var(--accent)}.mic-test-btn.primary:hover{background:var(--accent-dim)}.mic-test-btn.secondary{background:transparent;color:var(--text-dim)}.mic-test-btn.secondary:hover{background:var(--bg-elevated);color:var(--text)}.mic-test-error{font-size:.78rem;color:var(--red);padding:.5rem;background:#ef444414;border-radius:8px}@media(max-width:768px){.main{flex-direction:column}.sidebar{width:100%;flex-direction:row;flex-wrap:wrap;gap:.5rem;padding:.5rem;border-right:none;border-bottom:1px solid var(--border);max-height:180px;overflow-y:auto}.mic-area{padding:0}.mic{width:42px;height:42px}.mic svg{width:18px;height:18px}.cmd-list,.sidebar-hint{display:none}.status-box{flex:1;min-width:0}.url-input{font-size:.72rem}.header-tabs .tab span{display:none}.about-page{padding:1.5rem 1rem}.about-grid{grid-template-columns:1fr}.cmd-row{flex-direction:column;align-items:flex-start;gap:.2rem}.cmd-row code{min-width:0}}@media(max-width:480px){.brand-sub{display:none}.nav-btn{width:26px;height:26px}.speaker-label,.header-logo-label{display:none}.header-logo-right{margin-left:.3rem;padding-left:.3rem}}
