:root{--bg: #f3f4fb;--surface: #ffffff;--surface-raised: #ffffff;--surface-sunken: #eceefb;--border: #e4e6f3;--border-strong: #d3d6ec;--text: #171a2b;--text-muted: #6b6f8d;--text-faint: #9a9ec2;--brand-pink: #ff5a8a;--brand-purple: #7c5cfc;--brand-blue: #3d8bff;--brand-amber: #f5a623;--accent: #5b4cf5;--accent-strong: #4636e0;--accent-soft: #eeecff;--state-neutral: #9a9ec2;--state-neutral-soft: #eceefb;--state-dismissed: #17a673;--state-dismissed-soft: #e3f7ee;--state-flagged: #d98c00;--state-flagged-soft: #fdf1da;--state-accused: #e5484d;--state-accused-soft: #fde4e4;--shadow-card: 0 1px 2px rgba(23, 26, 43, .04), 0 8px 24px rgba(23, 26, 43, .06);--radius-lg: 20px;--radius-md: 14px;--radius-sm: 9px;color-scheme:light}@media (prefers-color-scheme: dark){:root:not([data-theme=light]){--bg: #0e0f1a;--surface: #171926;--surface-raised: #1c1e2d;--surface-sunken: #14151f;--border: #2a2c40;--border-strong: #383b57;--text: #f2f3fb;--text-muted: #9497b8;--text-faint: #6c6f8f;--accent: #8b7bff;--accent-strong: #a597ff;--accent-soft: #262244;--state-neutral: #6c6f8f;--state-neutral-soft: #21243a;--state-dismissed: #35d399;--state-dismissed-soft: #113429;--state-flagged: #ffb547;--state-flagged-soft: #3a2c11;--state-accused: #ff6b6f;--state-accused-soft: #3a1518;--shadow-card: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 28px rgba(0, 0, 0, .35);color-scheme:dark}}:root[data-theme=dark]{--bg: #0e0f1a;--surface: #171926;--surface-raised: #1c1e2d;--surface-sunken: #14151f;--border: #2a2c40;--border-strong: #383b57;--text: #f2f3fb;--text-muted: #9497b8;--text-faint: #6c6f8f;--accent: #8b7bff;--accent-strong: #a597ff;--accent-soft: #262244;--state-neutral: #6c6f8f;--state-neutral-soft: #21243a;--state-dismissed: #35d399;--state-dismissed-soft: #113429;--state-flagged: #ffb547;--state-flagged-soft: #3a2c11;--state-accused: #ff6b6f;--state-accused-soft: #3a1518;--shadow-card: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 28px rgba(0, 0, 0, .35);color-scheme:dark}*{box-sizing:border-box}html,body,#root{height:100%}body{margin:0;background:var(--bg);color:var(--text);font-family:-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased}button{font-family:inherit}.app-shell{display:flex;min-height:100vh}.sidebar{width:232px;flex-shrink:0;background:var(--surface);border-right:1px solid var(--border);padding:24px 16px;display:flex;flex-direction:column;gap:24px}.brand{display:flex;align-items:center;gap:10px;padding:0 8px}.brand-mark{width:26px;height:26px;flex-shrink:0}.brand-name{font-size:15px;font-weight:700;letter-spacing:-.01em}.brand-sub{font-size:10.5px;color:var(--text-faint);margin-top:-2px}.nav{display:flex;flex-direction:column;gap:2px}.nav-item{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:var(--radius-sm);color:var(--text-muted);font-size:13.5px;font-weight:500;background:transparent;border:none;cursor:pointer;text-align:left;width:100%}.nav-item:hover{background:var(--surface-sunken);color:var(--text)}.nav-item.active{background:var(--accent-soft);color:var(--accent-strong)}.nav-item .dot{width:6px;height:6px;border-radius:50%;background:currentColor;opacity:.5}.sidebar-footer{margin-top:auto;display:flex;flex-direction:column;gap:12px}.stage-tracker{display:flex;flex-direction:column;gap:6px;padding:12px;background:var(--surface-sunken);border-radius:var(--radius-md);font-size:11.5px;color:var(--text-muted)}.stage-tracker-row{display:flex;align-items:center;gap:8px}.stage-tracker-row .pip{width:7px;height:7px;border-radius:50%;background:var(--border-strong);flex-shrink:0}.stage-tracker-row.done .pip{background:var(--state-dismissed)}.stage-tracker-row.current .pip{background:var(--brand-blue);box-shadow:0 0 0 3px var(--accent-soft)}.stage-tracker-row.current{color:var(--text);font-weight:600}.main{flex:1;min-width:0;display:flex;flex-direction:column}.topbar{display:flex;align-items:center;justify-content:space-between;padding:20px 32px;gap:16px;flex-wrap:wrap}.topbar h1{font-size:22px;margin:0;letter-spacing:-.01em}.topbar-meta{font-size:12.5px;color:var(--text-faint);margin-top:2px}.topbar-right{display:flex;align-items:center;gap:16px;flex-wrap:wrap;justify-content:flex-end}.theme-toggle{display:flex;align-items:center;gap:8px;background:var(--surface);border:1px solid var(--border);border-radius:999px;padding:6px 10px;cursor:pointer}.theme-toggle .icon{font-size:13px;opacity:.6}.switch-track{width:34px;height:18px;border-radius:999px;background:var(--border-strong);position:relative;transition:background .15s ease}.switch-track.on{background:var(--brand-blue)}.switch-thumb{position:absolute;top:2px;left:2px;width:14px;height:14px;border-radius:50%;background:#fff;transition:transform .15s ease}.switch-track.on .switch-thumb{transform:translate(16px)}.content{flex:1;padding:0 32px 32px;overflow-y:auto}.card{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);box-shadow:var(--shadow-card)}.card-pad{padding:20px 22px}.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:24px}.stat-card{padding:18px 20px;border-radius:var(--radius-lg);background:var(--surface);border:1px solid var(--border);box-shadow:var(--shadow-card);display:flex;flex-direction:column;gap:10px}.stat-card-head{display:flex;align-items:center;justify-content:space-between}.stat-card-label{font-size:12.5px;color:var(--text-muted);font-weight:600}.stat-card-icon{width:30px;height:30px;border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:14px}.stat-card-value{font-size:27px;font-weight:700;letter-spacing:-.01em}.stat-card-hint{font-size:11.5px;color:var(--state-dismissed);font-weight:600}@media (max-width: 860px){.stat-grid{grid-template-columns:1fr}}.badge{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border-radius:999px;font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.02em}.badge:before{content:"";width:6px;height:6px;border-radius:50%;background:currentColor}.badge-neutral{background:var(--state-neutral-soft);color:var(--state-neutral)}.badge-dismissed{background:var(--state-dismissed-soft);color:var(--state-dismissed)}.badge-flagged{background:var(--state-flagged-soft);color:var(--state-flagged)}.badge-accused{background:var(--state-accused-soft);color:var(--state-accused)}.rest-screen{min-height:calc(100vh - 100px);display:flex;align-items:center;justify-content:center}.rest-panel{width:min(560px,92vw);text-align:center;display:flex;flex-direction:column;align-items:center;gap:18px}.rest-logo{width:56px;height:56px}.rest-title{font-size:26px;font-weight:700;letter-spacing:-.01em;margin:0}.rest-subtitle{font-size:14.5px;color:var(--text-muted);max-width:420px;line-height:1.5;margin:0}.dropzone{width:100%;border:2px dashed var(--border-strong);border-radius:var(--radius-lg);background:var(--surface);padding:48px 24px;display:flex;flex-direction:column;align-items:center;gap:12px;cursor:pointer;transition:border-color .15s ease,background .15s ease}.dropzone:hover,.dropzone.dragging{border-color:var(--accent);background:var(--accent-soft)}.dropzone-icon{width:44px;height:44px;border-radius:12px;background:var(--accent-soft);color:var(--accent-strong);display:flex;align-items:center;justify-content:center;font-size:20px}.dropzone-title{font-size:15px;font-weight:600}.dropzone-hint{font-size:12.5px;color:var(--text-faint)}.dropzone-error{color:var(--state-accused);font-size:13px;font-weight:600}.demo-chip-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}.demo-chip{border:1px solid var(--border);background:var(--surface);color:var(--text-muted);border-radius:999px;padding:6px 14px;font-size:12px;cursor:pointer}.demo-chip:hover{border-color:var(--accent);color:var(--accent-strong)}.running-banner{display:flex;align-items:center;gap:10px;margin-bottom:18px;font-size:13.5px;color:var(--text-muted)}.pulse-dot{width:9px;height:9px;border-radius:50%;background:var(--brand-blue);animation:pulse 1.1s ease-in-out infinite}@keyframes pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.75)}}.graph-card{padding:8px;margin-bottom:24px}.graph-legend{display:flex;gap:18px;flex-wrap:wrap;padding:12px 16px 0;font-size:12px;color:var(--text-muted)}.graph-legend-item{display:flex;align-items:center;gap:6px}.graph-legend-swatch{width:9px;height:9px;border-radius:50%}.graph-svg-wrap{width:100%;overflow:hidden}.graph-node-label{font-size:10.5px;fill:var(--text);font-weight:600}.graph-node-sublabel{font-size:9px;fill:var(--text-faint)}.graph-edge-amount{font-size:9.5px;fill:var(--text-muted);font-weight:600}.graph-node-circle{cursor:pointer;transition:opacity .4s ease,r .2s ease,fill .4s ease,stroke .4s ease,filter .15s ease}.graph-node-group:hover .graph-node-circle{filter:brightness(1.12)}.graph-node-group{transition:opacity .6s ease-out,transform .6s cubic-bezier(.16,1,.3,1)}@keyframes graph-node-pop{0%{opacity:0;transform:scale(0)}55%{opacity:1;transform:scale(1.18)}75%{transform:scale(.94)}to{opacity:1;transform:scale(1)}}.graph-node-group.is-climax{opacity:0;transform:scale(0)}.graph-node-group.is-climax.is-visible{animation:graph-node-pop .9s cubic-bezier(.22,1,.36,1) both}.graph-node-label,.graph-node-sublabel,.graph-node-glyph{transition:fill .4s ease}.graph-edge-path{fill:none;stroke-width:1.6;transition:opacity .4s ease,stroke .4s ease,stroke-dashoffset .4s ease-out}.graph-edge-path.is-climax{transition-duration:.4s,.4s,.75s}.graph-edge-label{transition:opacity .35s ease}.contrast-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:24px}@media (max-width: 860px){.contrast-grid{grid-template-columns:1fr}}.contrast-card{border-radius:var(--radius-lg);border:1px solid var(--border);background:var(--surface);box-shadow:var(--shadow-card);overflow:hidden}.contrast-head{padding:16px 20px;display:flex;align-items:center;justify-content:space-between;gap:6px 14px;flex-wrap:wrap;font-weight:700;font-size:13px;letter-spacing:.03em;text-transform:uppercase}.contrast-head.accused{background:var(--state-accused-soft);color:var(--state-accused)}.contrast-head.dismissed{background:var(--state-dismissed-soft);color:var(--state-dismissed)}.contrast-body{padding:4px 20px 18px}.contrast-row{padding:12px 0;border-bottom:1px solid var(--border)}.contrast-row:last-child{border-bottom:none}.contrast-row-label{font-size:11px;text-transform:uppercase;letter-spacing:.04em;color:var(--text-faint);font-weight:700;margin-bottom:4px}.contrast-row-value{font-size:13.5px;color:var(--text);line-height:1.45}.tool-pill-row{display:flex;flex-wrap:wrap;gap:6px}.tool-pill{font-size:11px;background:var(--surface-sunken);color:var(--text-muted);border-radius:6px;padding:3px 8px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace}.leads-toolbar{display:flex;align-items:center;gap:12px;margin-bottom:18px}.leads-search{flex:1;max-width:420px;position:relative}.leads-search input{width:100%;padding:10px 14px 10px 34px;border-radius:var(--radius-md);border:1px solid var(--border);background:var(--surface);color:var(--text);font-size:13.5px}.leads-search input:focus{outline:none;border-color:var(--accent)}.leads-search .search-icon{position:absolute;left:12px;top:50%;transform:translateY(-50%);color:var(--text-faint);font-size:13px;pointer-events:none}.leads-count{font-size:12.5px;color:var(--text-faint)}.leads-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(min(300px,100%),1fr));gap:14px}.lead-card{padding:16px 18px;border-radius:var(--radius-lg);border:1px solid var(--border);background:var(--surface);box-shadow:var(--shadow-card);display:flex;flex-direction:column;gap:10px}.lead-card-head{display:flex;align-items:flex-start;justify-content:space-between;flex-wrap:wrap;gap:8px}.lead-entity{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:12.5px;font-weight:700;color:var(--text)}.lead-entity-label{font-size:12px;color:var(--text-muted);margin-top:1px}.lead-field-label{font-size:10.5px;text-transform:uppercase;letter-spacing:.04em;color:var(--text-faint);font-weight:700;margin-bottom:2px}.lead-reason{font-size:12.5px;color:var(--text-muted);line-height:1.45}.empty-state{text-align:center;padding:60px 20px;color:var(--text-faint);font-size:13.5px}.section-title{font-size:15px;font-weight:700;margin:0 0 12px}.section-sub{font-size:12.5px;color:var(--text-faint);margin:-8px 0 14px}.btn{border-radius:999px;border:none;padding:9px 16px;font-size:13px;font-weight:600;cursor:pointer}.btn-primary{background:var(--accent);color:#fff}.btn-primary:hover{background:var(--accent-strong)}.btn-ghost{background:var(--surface-sunken);color:var(--text-muted)}.btn-ghost:hover{color:var(--text)}.drawer-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:#0a0b1459;z-index:40}.drawer{position:fixed;top:0;right:0;bottom:0;width:min(380px,92vw);background:var(--surface);border-left:1px solid var(--border);box-shadow:var(--shadow-card);z-index:41;padding:22px 22px 24px;overflow-y:auto}.drawer-close{position:absolute;top:16px;right:16px;background:var(--surface-sunken);border:none;border-radius:8px;width:28px;height:28px;cursor:pointer;color:var(--text-muted);font-size:14px}.drawer-title{font-size:17px;font-weight:700;margin:4px 30px 2px 0}.drawer-sub{font-size:12.5px;color:var(--text-faint);margin-bottom:16px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace}@media (max-width: 680px){.app-shell{flex-direction:column}.sidebar{width:100%;flex-direction:row;align-items:center;padding:12px 16px;gap:12px;overflow-x:auto;border-right:none;border-bottom:1px solid var(--border)}.brand-sub{display:none}.nav{flex-direction:row;flex-shrink:0}.nav-item{white-space:nowrap}.sidebar-footer{margin-top:0;flex-direction:row;flex-shrink:0;gap:8px}.stage-tracker{display:none}.topbar,.content{padding-left:16px;padding-right:16px}.stat-card-value{font-size:22px}}
