:root{--font-family:"Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--primary:#6a47d1;--primary-hover:#7857db;--primary-soft:#6a47d11a;--sidebar-bg:#0f1729;--sidebar-hover:#182543;--sidebar-text:#b8cce0;--sidebar-active:#f8fafc;--bg-main:#f8fafc;--bg-card:#fff;--text-main:#0f1729;--text-soft:#65758b;--text-muted:#94a3b8;--border:#e1e7ef;--shadow-sm:0 1px 2px 0 #0000000d;--shadow-md:0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;--shadow-lg:0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;--radius-sm:8px;--radius-md:12px;--radius-lg:16px;--radius-full:9999px;--transition:.2s cubic-bezier(.4, 0, .2, 1)}*{box-sizing:border-box;margin:0;padding:0}a{color:inherit;text-decoration:none}body{font-family:var(--font-family);background-color:var(--bg-main);color:var(--text-main);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#root{min-height:100vh}.app-container{min-height:100vh;display:flex}.app-shell{min-width:0}.main-content{transition:padding var(--transition);flex-grow:1;padding:2rem}@media (width<=768px){.sidebar{width:88px}.sidebar:not(.collapsed){width:220px}.main-content{padding:1rem}.header{padding:0 1rem}.header-right{gap:.75rem}}h1,h2,h3,h4{color:var(--text-main);font-weight:600}p{line-height:1.6}.card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);transition:transform var(--transition), box-shadow var(--transition);padding:1.5rem}.card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.btn{border-radius:var(--radius-md);cursor:pointer;transition:var(--transition);border:none;align-items:center;gap:.5rem;padding:.6rem 1.2rem;font-family:inherit;font-weight:500;text-decoration:none;display:inline-flex}.btn-primary{background:var(--primary);color:#fff}.btn-primary:hover{background:var(--primary-hover)}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.animate-fade-in{animation:.4s forwards fadeIn}.lang-switcher{gap:.5rem;display:flex}.sidebar{background:var(--sidebar-bg);width:260px;color:var(--sidebar-text);height:100vh;transition:width var(--transition);flex-direction:column;display:flex;position:sticky;top:0}.sidebar.collapsed{width:88px}.sidebar-header{color:#fff;border-bottom:1px solid #ffffff0d;justify-content:space-between;align-items:center;gap:.75rem;padding:1.5rem;font-size:1.25rem;font-weight:700;display:flex}.sidebar-brand{align-items:center;min-width:0;display:flex;overflow:hidden}.sidebar-brand-full,.sidebar-brand-compact{white-space:nowrap;transition:opacity var(--transition), transform var(--transition), width var(--transition)}.sidebar-brand-compact,.sidebar.collapsed .sidebar-brand-full{opacity:0;width:0;transform:translate(-8px)}.sidebar.collapsed .sidebar-brand-compact{opacity:1;width:auto;transform:translate(0)}.sidebar-toggle,.header-toggle{border-radius:var(--radius-md);cursor:pointer;transition:var(--transition);border:1px solid #0000;justify-content:center;align-items:center;display:inline-flex}.sidebar-toggle{color:#fff;background:#ffffff14;flex-shrink:0;width:36px;height:36px}.sidebar-toggle:hover{background:#ffffff29}.sidebar-nav{flex-grow:1;padding:1rem}.nav-item{border-radius:var(--radius-md);transition:var(--transition);cursor:pointer;align-items:center;gap:.75rem;margin-bottom:.25rem;padding:.75rem 1rem;display:flex}.nav-label{white-space:nowrap;transition:opacity var(--transition), width var(--transition);overflow:hidden}.sidebar.collapsed .nav-item{justify-content:center;padding-inline:.75rem}.sidebar.collapsed .nav-label{opacity:0;width:0}.nav-item:hover{background:var(--sidebar-hover);color:#fff}.nav-item.active{background:var(--primary);color:#fff}.sidebar-footer{border-top:1px solid #ffffff0d;padding:1rem}.header{border-bottom:1px solid var(--border);z-index:10;-webkit-app-region:drag;background:#fff;justify-content:space-between;align-items:center;height:64px;padding:0 2rem;display:flex;position:sticky;top:0}.header-left{-webkit-app-region:no-drag;min-width:0}.header-right{-webkit-app-region:no-drag;align-items:center;gap:1.5rem;display:flex}.header-toggle{width:36px;height:36px;color:var(--text-soft);border-color:var(--border);background:#fff;position:absolute;left:8px}.header-toggle:hover{color:var(--text-main);background:var(--bg-main)}.window-controls{align-items:center;gap:.5rem;margin-left:.25rem;display:flex}.window-control-button{border:1px solid var(--border);width:34px;height:34px;color:var(--text-soft);cursor:pointer;transition:var(--transition);background:#fff;border-radius:10px;justify-content:center;align-items:center;font-family:inherit;display:inline-flex}.window-control-button:hover{background:var(--bg-main);color:var(--text-main)}.window-control-button-close:hover{color:#dc2626;background:#fee2e2;border-color:#fecaca}.flex-center{justify-content:center;align-items:center;display:flex}.gap-2{gap:.5rem}.chat-container{border:1px solid var(--border);border-radius:var(--radius-lg);height:calc(100vh - 160px);box-shadow:var(--shadow-sm);background:#fff;margin-top:1rem;display:flex;overflow:hidden}.chat-sidebar{border-right:1px solid var(--border);flex-direction:column;width:320px;display:flex}.chat-list{flex-grow:1;overflow-y:auto}.chat-item{cursor:pointer;transition:var(--transition);border-bottom:1px solid var(--border);gap:1rem;padding:1rem;display:flex}.chat-item:hover{background:var(--bg-main)}.chat-item.active{background:var(--primary-soft);border-left:4px solid var(--primary)}.chat-window{background:var(--bg-main);flex-direction:column;flex-grow:1;display:flex}.chat-messages{flex-direction:column;flex-grow:1;gap:1rem;padding:1.5rem;display:flex;overflow-y:auto}.message-bubble{border-radius:var(--radius-lg);max-width:70%;padding:.8rem 1.2rem;font-size:.95rem;position:relative}.message-sent{background:var(--primary);color:#fff;border-bottom-right-radius:4px;align-self:flex-end}.message-received{color:var(--text-main);box-shadow:var(--shadow-sm);background:#fff;border-bottom-left-radius:4px;align-self:flex-start}.chat-input-area{border-top:1px solid var(--border);background:#fff;align-items:center;gap:1rem;padding:1rem 1.5rem;display:flex}.avatar{background:var(--border);width:44px;height:44px;color:var(--text-soft);border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;font-weight:600;display:flex;position:relative}.status-dot{border:2px solid #fff;border-radius:50%;width:12px;height:12px;position:absolute;bottom:0;right:0}.status-online{background:#10b981}.status-offline{background:#cbd5e1}.table-row-hover:hover{background-color:var(--bg-main);transition:var(--transition)}.table th{color:var(--text-soft);text-transform:uppercase;letter-spacing:.025em;font-size:.8rem;font-weight:600}.table td{vertical-align:middle}.form-control:focus{border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-soft)}.marketing-page{background:radial-gradient(circle at 0 0,#7b5cff2e,#0000 30%),radial-gradient(circle at 100% 0,#1da1f22e,#0000 28%),linear-gradient(#f5f7ff 0%,#eef3ff 52%,#fff 100%);min-height:100vh;padding:2rem}.hero-shell{grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);align-items:stretch;gap:1.5rem;max-width:1240px;margin:0 auto 2rem;display:grid}.hero-copy,.hero-panel-card,.login-card,.feature-card,.login-copy{-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);background:#ffffffc7;border:1px solid #ffffffa6;box-shadow:0 30px 80px #51628c24}.hero-copy{border-radius:32px;padding:3rem}.hero-badge{color:#4c3bbf;background:#7b5cff1a;border-radius:9999px;align-items:center;gap:.5rem;margin-bottom:1.25rem;padding:.45rem .85rem;font-size:.85rem;font-weight:600;display:inline-flex}.hero-title{letter-spacing:-.04em;max-width:11ch;margin-bottom:1rem;font-size:clamp(2.4rem,5vw,4.8rem);line-height:1.05}.hero-description{color:var(--text-soft);max-width:62ch;margin-bottom:1.75rem;font-size:1.05rem}.hero-actions{flex-wrap:wrap;gap:.85rem;margin-bottom:1.5rem;display:flex}.hero-secondary-btn{color:var(--text-main);background:#ffffffe0;border:1px solid #7b5cff2e}.hero-benefits{gap:.65rem;display:grid}.hero-benefit-item{color:var(--text-main);align-items:center;gap:.6rem;font-weight:500;display:flex}.hero-benefit-item svg{color:#16a34a;flex-shrink:0}.hero-panel{display:flex}.hero-panel-card{color:#fff;background:linear-gradient(160deg,#151d3bf5,#35437feb);border-radius:32px;flex-direction:column;justify-content:center;width:100%;padding:1.5rem;display:flex}.hero-panel-top{justify-content:space-between;align-items:center;gap:1rem;margin-bottom:1.5rem;display:flex}.hero-panel-kicker{letter-spacing:.08em;text-transform:uppercase;opacity:.75;margin-bottom:.35rem;font-size:.8rem}.hero-panel-heading{font-size:2rem;font-weight:700}.hero-panel-icon{background:#ffffff1f;border-radius:20px;justify-content:center;align-items:center;width:64px;height:64px;display:inline-flex}.hero-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;display:grid}.hero-stat-box{background:#ffffff14;border:1px solid #ffffff14;border-radius:20px;padding:1rem}.hero-stat-box strong{font-size:1.15rem;display:block}.hero-stat-label{opacity:.72;margin-bottom:.35rem;font-size:.8rem;display:block}.feature-section,.login-section{max-width:1240px;margin:0 auto}.feature-section{grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin-bottom:1.5rem;display:grid}.feature-card{border-radius:24px;padding:1.35rem}.feature-card h3{margin-bottom:.55rem;font-size:1.05rem}.feature-card p{color:var(--text-soft);font-size:.92rem}.feature-icon{color:#5b48d1;background:#7b5cff1c;border-radius:16px;justify-content:center;align-items:center;width:48px;height:48px;margin-bottom:1rem;display:inline-flex}.login-section{grid-template-columns:minmax(0,1fr) minmax(320px,420px);align-items:start;gap:1.25rem;display:grid}.login-copy{border-radius:32px;padding:2rem}.login-copy h2{margin-bottom:.75rem;font-size:2rem}.login-copy p{color:var(--text-soft);max-width:52ch}.login-card{border-radius:28px;padding:1.5rem}.login-field{margin-bottom:1rem;display:block}.login-field span{margin-bottom:.45rem;font-size:.9rem;font-weight:600;display:block}.login-field input{border:1px solid var(--border);width:100%;font:inherit;background:#ffffffeb;border-radius:16px;outline:none;padding:.95rem 1rem}.login-field input:focus{border-color:var(--primary);box-shadow:0 0 0 4px #7b5cff1f}.login-error{color:#be123c;background:#fff1f2;border-radius:16px;margin-bottom:1rem;padding:.8rem 1rem;font-size:.9rem}.login-submit{justify-content:center;width:100%;padding:.95rem 1.2rem}@media (width<=1024px){.hero-shell,.login-section,.feature-section{grid-template-columns:1fr}}@media (width<=768px){.marketing-page{padding:1rem}.hero-copy,.hero-panel-card,.login-card,.login-copy{border-radius:24px;padding:1.25rem}.hero-title{max-width:none}.hero-stats-grid{grid-template-columns:1fr}}
