:root{--bg: #fafafa;--bg-surface: #fff;--bg-hover: #f5f5f5;--bg-active: #e3f2fd;--bg-code: #f5f5f5;--bg-pre: #2d2d2d;--bg-card: #fff;--bg-highlighted: #fff8e1;--bg-atom-active: #fff3e0;--bg-role-user: #e3f2fd;--bg-role-assistant: #f3e5f5;--bg-role-tool: #dcedc8;--text: #222;--text-secondary: #666;--text-muted: #888;--text-pre: #f8f8f2;--border: #e0e0e0;--border-light: #ddd;--color-user: #1976d2;--color-assistant: #7b1fa2;--color-tool: #558b2f;--color-atom: #e65100;--color-tab-active: #1976d2;--atom-highlight-bg: rgba(255, 167, 38, .3);--atom-highlight-hover: rgba(255, 167, 38, .4);--overlay: rgba(0, 0, 0, .3)}@media (prefers-color-scheme: dark){:root{--bg: #1a1a1a;--bg-surface: #242424;--bg-hover: #333;--bg-active: #1a3a5c;--bg-code: #333;--bg-pre: #1e1e1e;--bg-card: #2a2a2a;--bg-highlighted: #3e2723;--bg-atom-active: #3e2723;--bg-role-user: #1a3a5c;--bg-role-assistant: #3a1a4a;--bg-role-tool: #2a3a1a;--text: #e0e0e0;--text-secondary: #aaa;--text-muted: #777;--text-pre: #f8f8f2;--border: #333;--border-light: #444;--color-user: #64b5f6;--color-assistant: #ce93d8;--color-tool: #aed581;--color-atom: #ff9800;--color-tab-active: #64b5f6;--atom-highlight-bg: rgba(255, 167, 38, .2);--atom-highlight-hover: rgba(255, 167, 38, .35);--overlay: rgba(0, 0, 0, .5)}}*{box-sizing:border-box;margin:0;padding:0}body{font-family:system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--text);height:100vh;overflow:hidden}.layout{display:grid;grid-template-columns:260px 1fr;height:100vh;overflow-x:hidden}.sidebar{background:var(--bg-surface);border-right:1px solid var(--border);display:flex;flex-direction:column;overflow:hidden}.sidebar-header{padding:1.5rem 1rem 1rem;border-bottom:1px solid var(--border)}.sidebar-header h1{font-size:1.25rem;font-weight:600;margin-bottom:.25rem}.sidebar-header .corpus-label{font-size:.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.05em}.sidebar-tabs{display:flex;border-bottom:1px solid var(--border)}.sidebar-tab{flex:1;padding:.75rem .5rem;background:none;border:none;font-size:.75rem;font-weight:500;color:var(--text-secondary);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-1px}.sidebar-tab:hover{color:var(--text)}.sidebar-tab.active{color:var(--color-tab-active);border-bottom-color:var(--color-tab-active)}.sidebar-content{flex:1;overflow-y:auto;padding:.5rem}.conversation-item{padding:.75rem;border-radius:6px;cursor:pointer;margin-bottom:2px;transition:background .1s}.conversation-item:hover{background:var(--bg-hover)}.conversation-item.active{background:var(--bg-active)}.conversation-item .title{font-size:.9rem;font-weight:500}.atom-item{padding:.6rem .75rem;border-radius:6px;cursor:pointer;margin-bottom:4px;transition:background .1s;display:flex;align-items:baseline;gap:.5rem}.atom-item:hover{background:var(--bg-hover)}.atom-item.active{background:var(--bg-atom-active)}.atom-item .term{font-size:.95rem;font-weight:600;color:var(--color-atom)}.atom-item .count{font-size:.7rem;color:var(--text-muted)}.atom-item .source{font-size:.7rem;color:var(--text-muted);margin-left:auto}.atoms-header{font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.03em;color:var(--text-muted);padding:.75rem .75rem .5rem}.sidebar-footer{padding:1rem;border-top:1px solid var(--border);font-size:.75rem;color:var(--text-muted)}.reader{overflow-y:auto;overflow-x:hidden;padding:2rem 3rem}.corpus{max-width:700px}.conversation-section{padding-bottom:2rem}.reader-inner{max-width:700px}.reader-header{margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid var(--border)}.reader-header h1{font-size:1.75rem;font-weight:600;margin-bottom:.75rem}.reader-meta{display:flex;gap:1.5rem;font-size:.85rem;color:var(--text-secondary)}.reader-meta span{display:flex;align-items:center;gap:.35rem}.turn{margin-bottom:2.5rem}.turn-header{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}.turn-role{font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;flex-shrink:0}.turn-role.user{color:var(--color-user)}.turn-role.assistant{color:var(--color-assistant)}.turn-role.tool{color:var(--color-tool)}.turn-rule{flex:1;height:1px}.turn.user-turn .turn-rule{background:linear-gradient(to right,var(--color-user),transparent)}.turn.assistant-turn .turn-rule{background:linear-gradient(to right,var(--color-assistant),transparent)}.turn.tool-turn .turn-rule{background:linear-gradient(to right,var(--color-tool),transparent)}.turn-content{font-size:1rem;line-height:1.7}.turn-content p{margin-bottom:1rem}.turn-content p:last-child{margin-bottom:0}.turn-content h1,.turn-content h2,.turn-content h3{margin-top:1.5rem;margin-bottom:.75rem;font-weight:600}.turn-content h1{font-size:1.4rem}.turn-content h2{font-size:1.2rem}.turn-content h3{font-size:1.1rem}.turn-content strong{font-weight:600}.turn-content em{font-style:italic}.turn-content ul,.turn-content ol{margin-bottom:1rem;padding-left:1.5rem}.turn-content li{margin-bottom:.35rem}.turn-content code{font-family:SF Mono,Consolas,monospace;font-size:.9em;background:var(--bg-code);padding:.15em .4em;border-radius:3px}.turn-content pre{background:var(--bg-pre);color:var(--text-pre);padding:1rem;border-radius:6px;overflow-x:auto;margin-bottom:1rem;font-size:.85rem;line-height:1.5}.turn-content pre code{background:none;padding:0;color:inherit}.turn-content blockquote{border-left:3px solid var(--border-light);padding-left:1rem;color:var(--text-secondary);margin-bottom:1rem}.turn-content table{width:100%;border-collapse:collapse;margin-bottom:1rem;font-size:.9rem}.turn-content th,.turn-content td{border:1px solid var(--border-light);padding:.5rem .75rem;text-align:left}.turn-content th{background:var(--bg-hover);font-weight:600}.turn-content hr{border:none;border-top:1px solid var(--border);margin:1.5rem 0}.atom-highlight{background:linear-gradient(to bottom,transparent 60%,var(--atom-highlight-bg) 60%);cursor:pointer;transition:background .15s}.atom-highlight:hover{background:var(--atom-highlight-hover)}.turn[data-turn]{padding:1rem;margin-left:-1rem;margin-right:-1rem;border-radius:8px;transition:background .15s}.turn[data-turn].highlighted{background:var(--bg-highlighted)}.occurrence-card{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:1.25rem;margin-bottom:1rem;cursor:pointer;transition:border-color .15s,box-shadow .15s}.occurrence-card:hover{border-color:var(--border-light);box-shadow:0 2px 8px #0000000d}.occurrence-card .source{font-size:.75rem;color:var(--text-secondary);margin-bottom:.75rem;display:flex;align-items:center;gap:.5rem}.occurrence-card .source .role-icon{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:6px;flex-shrink:0}.occurrence-card .source .role-icon.user{color:var(--color-user);background:var(--bg-role-user)}.occurrence-card .source .role-icon.assistant{color:var(--color-assistant);background:var(--bg-role-assistant)}.occurrence-card .source .role-icon.tool{color:var(--color-tool);background:var(--bg-role-tool)}.occurrence-card .source .role-icon .icon{width:16px;height:16px}.occurrence-card .source .conv-title{flex:1}.occurrence-card .source .scale-label{color:var(--text-muted);font-size:.7rem}.occurrence-card .text{font-size:.95rem;line-height:1.6}.occurrence-card .text p{margin:0 0 .75rem}.occurrence-card .text p:last-child{margin-bottom:0}.occurrence-card .text code{font-size:.85em;background:var(--bg-code);padding:.15em .4em;border-radius:3px}.occurrence-card .text pre{background:var(--bg-pre);color:var(--text-pre);padding:.75rem;border-radius:6px;overflow-x:auto;margin:.5rem 0;font-size:.8rem}.occurrence-card .text pre code{background:none;padding:0;color:inherit}.occurrence-card .text ul,.occurrence-card .text ol{margin:.5rem 0;padding-left:1.5rem}.occurrence-card .text strong{font-weight:600}.occurrence-card .text blockquote{border-left:3px solid var(--border-light);padding-left:1rem;color:var(--text-secondary);margin:.5rem 0}.empty-state{display:flex;align-items:center;justify-content:center;height:100%;color:var(--text-muted);font-size:.9rem}.mobile-header,.menu-toggle,.menu-overlay{display:none}@media (max-width: 900px){.layout{grid-template-columns:1fr}.mobile-header{display:flex;align-items:center;gap:.75rem;position:fixed;top:0;left:0;right:0;height:3rem;padding:0 .75rem;background:var(--bg-surface);border-bottom:1px solid var(--border);z-index:100;transform:translateY(0);transition:transform .2s ease-out}.mobile-header.hidden{transform:translateY(-100%)}.mobile-header-title{font-size:1rem;font-weight:600}.menu-toggle{display:flex;align-items:center;justify-content:center;background:none;border:none;padding:.25rem;cursor:pointer;color:var(--text);border-radius:4px}.menu-toggle:hover{background:var(--bg-hover)}.menu-overlay{display:block;position:fixed;top:0;right:0;bottom:0;left:0;background:var(--overlay);z-index:199}.sidebar{position:fixed;top:0;left:0;bottom:0;width:280px;z-index:200;transform:translate(-100%);transition:transform .2s ease-out}.sidebar.open{transform:translate(0)}.reader{padding:3.5rem 1rem 1rem}.reader-inner,.corpus{max-width:100%}.turn{padding-left:0;padding-right:0}.turn-content pre,.turn-content table{max-width:calc(100vw - 3rem)}.turn-content{overflow-wrap:break-word;word-break:break-word}}
