@import"https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Playfair+Display:wght@400;600&display=swap";*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}:root{--bg: #fdfbf8;--surface: #ffffff;--surface-hover: #f4efe4;--border: #e5dac8;--text: #2d2420;--text-muted: #6b5d52;--primary: #c9b56f;--primary-dim: rgba(201, 181, 111, .15);--user-bg: #f4efe4;--bot-bg: #ffffff;--green: #10b981;--amber: #f59e0b;--rose: #ef4444;--font-sans: "DM Sans", system-ui, -apple-system, sans-serif;--font-display: "Playfair Display", serif;--font: var(--font-sans);--mono: "JetBrains Mono", "Fira Code", monospace}body{font-family:var(--font);background:var(--bg);color:var(--text);height:100dvh;display:flex;flex-direction:column;-webkit-font-smoothing:antialiased}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:#d1d5db;border-radius:3px}::-webkit-scrollbar-thumb:hover{background:#9ca3af}.btn{padding:8px 16px;border-radius:8px;font-size:13px;cursor:pointer;border:none;font-family:var(--font);font-weight:500;transition:all .15s;display:inline-flex;align-items:center;justify-content:center;gap:8px}.btn:hover{opacity:.85}.btn-primary{background:var(--primary);color:var(--text)}.btn-ghost{background:transparent;border:1px solid var(--border);color:var(--text)}.btn-ghost:hover{background:var(--surface-hover)}input,select,textarea{font-family:var(--font)}.card{background:var(--surface);border:1px solid var(--border);border-radius:12px;box-shadow:0 1px 2px #00000005}.app-layout{display:flex;height:100dvh;width:100vw;overflow:hidden}.sidebar{width:260px;background:var(--bg);border-right:1px solid var(--border);display:flex;flex-direction:column;flex-shrink:0;padding:20px 12px}.sidebar-header{padding:0 12px;margin-bottom:32px;display:flex;align-items:center;gap:8px}.sidebar-logo{font-weight:700;font-size:18px;letter-spacing:-.5px}.sidebar-badge{background:#e5e7eb;color:#4b5563;font-size:10px;padding:2px 6px;border-radius:12px;font-weight:600}.nav-links{display:flex;flex-direction:column;gap:4px;flex:1}.nav-link{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:8px;color:var(--text-muted);text-decoration:none;font-size:14px;font-weight:500;transition:all .15s}.nav-link:hover{background:var(--primary-dim);color:var(--text)}.nav-link.active{background:var(--primary-dim);color:var(--text);font-weight:600}.nav-link svg{width:18px;height:18px}.sidebar-footer{margin-top:auto;padding:12px;display:flex;align-items:center;gap:12px}.user-avatar{width:32px;height:32px;border-radius:50%;background:#e5e7eb;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;color:#4b5563}.user-info{display:flex;flex-direction:column}.user-name{font-size:13px;font-weight:600}.user-role{font-size:11px;color:var(--text-muted)}.main-content{flex:1;display:flex;flex-direction:column;min-width:0;background:var(--bg)}.top-nav{height:60px;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;padding:0 24px;background:var(--surface);flex-shrink:0}.page-title{display:flex;align-items:center;gap:12px;font-size:16px;font-weight:600;font-family:var(--font-display);letter-spacing:.02em}.page-title svg{width:18px;height:18px;color:var(--text-muted)}.top-actions{display:flex;align-items:center;gap:12px}.page-content{flex:1;overflow-y:auto;padding:24px}.dashboard-grid{display:grid;gap:24px}.stat-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.stat-card{padding:20px}.stat-card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:12px}.stat-title{font-size:13px;color:var(--text-muted);font-weight:500}.stat-badge{background:var(--surface-hover);padding:2px 8px;border-radius:12px;font-size:11px;font-weight:600;display:flex;align-items:center;gap:4px}.stat-value{font-size:28px;font-weight:700;margin-bottom:12px;letter-spacing:-.5px}.stat-footer{font-size:12px;color:var(--text-muted);display:flex;flex-direction:column;gap:4px}.stat-footer-main{display:flex;align-items:center;gap:6px;color:var(--text);font-weight:500}.chart-card{padding:24px}.chart-header{margin-bottom:24px}.chart-title{font-size:15px;font-weight:600;margin-bottom:4px}.chart-subtitle{font-size:13px;color:var(--text-muted)}.playground-layout{display:grid;grid-template-columns:1fr 320px;gap:24px;height:calc(100vh - 108px)}.chat-container{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--border);border-radius:12px;overflow:hidden}.chat-messages{flex:1;overflow-y:auto;padding:24px;display:flex;flex-direction:column;gap:16px}.chat-input-area{padding:16px 24px;border-top:1px solid var(--border);display:flex;align-items:flex-end;gap:12px;background:var(--surface)}.msg-input{flex:1;background:var(--surface-hover);border:1px solid transparent;border-radius:12px;padding:12px 16px;font-size:14px;color:var(--text);outline:none;resize:none;min-height:44px;transition:all .15s}.msg-input:focus{background:var(--surface);border-color:var(--border);box-shadow:0 0 0 2px var(--primary-dim)}.icon-btn{width:44px;height:44px;border-radius:12px;background:var(--primary);color:var(--text);border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:opacity .15s;flex-shrink:0}.icon-btn:hover{opacity:.9}.icon-btn:disabled{opacity:.5;cursor:not-allowed}.clear-btn{width:44px;height:44px;border-radius:12px;background:var(--surface-hover);color:var(--text-muted);border:1px solid transparent;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .15s;flex-shrink:0}.clear-btn:hover{background:var(--surface);border-color:var(--border);color:var(--text)}.msg{max-width:80%;display:flex;flex-direction:column;gap:6px;animation:fadeIn .2s ease}.msg.user{align-self:flex-end;align-items:flex-end}.msg.assistant{align-self:flex-start;align-items:flex-start}.msg-bubble{padding:12px 16px;border-radius:16px;font-size:14px;line-height:1.6;white-space:pre-wrap;word-break:break-word}.msg.user .msg-bubble{background:var(--user-bg);border-bottom-right-radius:4px}.msg.assistant .msg-bubble{background:var(--bot-bg);border:1px solid var(--border);border-bottom-left-radius:4px;box-shadow:0 1px 2px #00000005}.msg-meta{font-size:11px;color:var(--text-muted);padding:0 4px}.debug-pane{background:var(--surface);border:1px solid var(--border);border-radius:12px;display:flex;flex-direction:column;overflow:hidden}.debug-header{padding:16px;border-bottom:1px solid var(--border);font-size:13px;font-weight:600;display:flex;justify-content:space-between;align-items:center}.debug-clear{background:none;border:none;color:var(--text-muted);font-size:12px;cursor:pointer}.debug-clear:hover{color:var(--rose)}.debug-log{flex:1;overflow-y:auto;padding:16px;font-family:var(--mono);font-size:11px}.debug-entry{margin-bottom:16px;border-left:2px solid var(--border);padding-left:12px}.debug-entry.tool{border-color:var(--amber)}.debug-entry.latency{border-color:var(--green)}.debug-entry.error{border-color:var(--rose)}.debug-entry .debug-time{font-size:10px;color:var(--text-muted);margin-bottom:4px}.debug-entry .debug-label{font-size:11px;font-weight:700;margin-bottom:6px}.debug-entry .debug-val{color:var(--text-muted);word-break:break-all;white-space:pre-wrap;line-height:1.5}.overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0006;display:none;align-items:center;justify-content:center;z-index:100;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.overlay.open{display:flex}.modal{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:24px;width:440px;max-width:94vw;box-shadow:0 10px 25px #0000001a}.modal h3{font-size:18px;font-weight:600;margin-bottom:20px;font-family:var(--font-display)}.field{margin-bottom:16px}.field label{display:block;font-size:12px;color:var(--text-muted);margin-bottom:8px;font-weight:500}.field input,.field select{width:100%;background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:10px 12px;font-size:14px}.field input:focus,.field select:focus{border-color:var(--primary);outline:none;box-shadow:0 0 0 2px var(--primary-dim)}.welcome{margin:auto;text-align:center;max-width:400px}.welcome .tooth{font-size:40px;margin-bottom:16px;display:block}.welcome h2{font-size:24px;font-family:var(--font-display);font-weight:600;margin-bottom:8px}.welcome p{font-size:14px;color:var(--text-muted);margin-bottom:24px;line-height:1.5}.chip{display:inline-block;background:var(--surface-hover);border:1px solid var(--border);padding:6px 12px;border-radius:20px;font-size:12px;font-weight:500;margin:4px;cursor:pointer;transition:all .15s}.chip:hover{background:var(--primary-dim);border-color:transparent}.typing-dot{display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--text-muted);animation:blink 1.2s infinite;margin-right:2px}.typing-dot:nth-child(2){animation-delay:.2s}.typing-dot:nth-child(3){animation-delay:.4s}@keyframes blink{0%,80%,to{opacity:.3}40%{opacity:1}}@keyframes fadeIn{0%{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}.login-page{height:100vh;width:100vw;display:flex;align-items:center;justify-content:center;background:var(--bg)}.login-card{background:var(--surface);border:1px solid var(--border);border-radius:16px;width:100%;max-width:400px;padding:32px;box-shadow:0 10px 25px #0000000d}.login-header{text-align:center;margin-bottom:24px}.login-logo{font-size:24px;font-weight:700;display:flex;align-items:center;justify-content:center;gap:8px;margin-bottom:12px}.login-header h2{font-size:22px;font-family:var(--font-display);font-weight:600;margin-bottom:8px}.login-header p{font-size:14px;color:var(--text-muted)}.login-form{display:flex;flex-direction:column;gap:16px}.login-btn{width:100%;margin-top:8px;padding:12px}.login-error{background:#ef44441a;color:var(--rose);padding:12px;border-radius:8px;font-size:13px;font-weight:500;text-align:center}
