@import"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap";:root{--accent: #6366f1;--accent-light: #818cf8;--accent-dark: #4f46e5;--violet: #8b5cf6;--surface: #1e1e2e;--surface-2: #27273f;--surface-3: #313155;--border: #3b3b5c;--text: #e2e8f0;--text-muted: #94a3b8;--success: #22c55e;--error: #ef4444;--warning: #f59e0b;--radius: 12px;--font: "Inter", system-ui, sans-serif}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{font-size:16px}body{font-family:var(--font);background:var(--surface);color:var(--text);min-height:100dvh;line-height:1.6}#root{display:flex;flex-direction:column;min-height:100dvh}h1{font-size:1.75rem;font-weight:700}h2{font-size:1.375rem;font-weight:600}h3{font-size:1.125rem;font-weight:600}p{color:var(--text-muted)}.container{max-width:640px;margin:0 auto;padding:0 1rem;width:100%}.card{background:var(--surface-2);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.625rem 1.25rem;border-radius:8px;border:none;cursor:pointer;font-size:.9375rem;font-weight:600;transition:opacity .15s,transform .1s}.btn:active{transform:scale(.97)}.btn:disabled{opacity:.5;cursor:not-allowed;transform:none}.btn-primary{background:var(--accent);color:#fff}.btn-primary:hover:not(:disabled){background:var(--accent-dark)}.btn-secondary{background:var(--surface-3);color:var(--text)}.btn-secondary:hover:not(:disabled){background:var(--border)}.btn-danger{background:var(--error);color:#fff}input,textarea{background:var(--surface-3);border:1px solid var(--border);border-radius:8px;color:var(--text);font-size:.9375rem;padding:.625rem .875rem;width:100%;outline:none;transition:border-color .15s;font-family:var(--font)}input:focus,textarea:focus{border-color:var(--accent-light)}textarea{resize:vertical;min-height:120px}.hud{background:var(--surface-2);border-bottom:1px solid var(--border);padding:.625rem 1rem;display:flex;align-items:center;gap:1rem;position:sticky;top:0;z-index:10}.hud-level{background:var(--accent);color:#fff;border-radius:9999px;padding:.1rem .625rem;font-size:.8125rem;font-weight:700}.hud-xp{font-size:.875rem;color:var(--text-muted)}.hud-streak{font-size:.875rem}.hud-name{font-size:.875rem;font-weight:600;margin-left:auto}.xp-bar-wrap{flex:1;height:6px;background:var(--surface-3);border-radius:999px;overflow:hidden}.xp-bar-fill{height:100%;background:linear-gradient(90deg,var(--accent),var(--violet));border-radius:999px;transition:width .6s cubic-bezier(.22,1,.36,1)}.score-badge{display:inline-block;padding:.2rem .6rem;border-radius:6px;font-weight:700;font-size:.875rem}.score-badge.cleared{background:#22c55e26;color:var(--success)}.score-badge.failed{background:#ef444426;color:var(--error)}.ao-chips{display:flex;flex-wrap:wrap;gap:.4rem}.ao-chip{background:var(--surface-3);border:1px solid var(--border);border-radius:6px;font-size:.75rem;font-weight:600;padding:.2rem .5rem;color:var(--accent-light)}.mcq-options{display:flex;flex-direction:column;gap:.625rem}.mcq-option{background:var(--surface-3);border:1.5px solid var(--border);border-radius:10px;padding:.875rem 1rem;cursor:pointer;transition:border-color .15s,background .15s;text-align:left;color:var(--text);font-size:.9375rem}.mcq-option:hover:not(:disabled){border-color:var(--accent-light);background:var(--surface-3)}.mcq-option.selected{border-color:var(--accent);background:#6366f11a}.mcq-option:disabled{cursor:default}.map-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:.75rem}.cluster-node{background:var(--surface-2);border:1.5px solid var(--border);border-radius:var(--radius);padding:.875rem;cursor:pointer;transition:border-color .15s,box-shadow .15s;position:relative}.cluster-node:hover{border-color:var(--accent-light);box-shadow:0 0 0 3px #6366f126}.cluster-node.locked{opacity:.45;cursor:not-allowed}.cluster-node.cleared{border-color:var(--success)}.cluster-node.active{border-color:var(--accent)}.cluster-id{font-size:1.5rem;font-weight:800;color:var(--accent-light)}.cluster-name{font-size:.75rem;color:var(--text-muted);margin-top:.2rem}.cluster-badges{display:flex;gap:.3rem;margin-top:.4rem;flex-wrap:wrap}.cluster-badge{font-size:.65rem;background:var(--surface-3);border-radius:4px;padding:.15rem .35rem}.world-heading{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--text-muted);margin:1.25rem 0 .5rem}.feedback-panel{border-top:1px solid var(--border);margin-top:1.25rem;padding-top:1.25rem}.model-answer-box{background:#6366f112;border:1px solid rgba(99,102,241,.3);border-radius:8px;padding:.875rem;margin-top:.75rem;font-size:.9rem}@keyframes xpBurst{0%{opacity:1;transform:translateY(0) scale(1)}to{opacity:0;transform:translateY(-48px) scale(1.3)}}.xp-burst{position:fixed;top:60px;right:1rem;font-size:1.125rem;font-weight:800;color:var(--violet);pointer-events:none;animation:xpBurst 1.2s ease-out forwards;z-index:100}@keyframes levelUp{0%{opacity:0;transform:scale(.85)}15%{opacity:1;transform:scale(1.05)}85%{opacity:1;transform:scale(1)}to{opacity:0}}.levelup-banner{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background:linear-gradient(135deg,var(--accent-dark),var(--violet));color:#fff;padding:1rem 2rem;border-radius:16px;font-size:1.25rem;font-weight:800;text-align:center;pointer-events:none;animation:levelUp 2s ease-out forwards;z-index:200;box-shadow:0 8px 32px #6366f180}.login-wrap{display:flex;align-items:center;justify-content:center;min-height:100dvh;padding:1rem}.login-card{background:var(--surface-2);border:1px solid var(--border);border-radius:20px;padding:2rem;width:100%;max-width:400px}.login-logo{font-size:2.5rem;font-weight:900;color:var(--accent-light)}.login-tagline{color:var(--text-muted);font-size:.9rem;margin-bottom:1.5rem}.form-field{display:flex;flex-direction:column;gap:.375rem;margin-bottom:1rem}.form-label{font-size:.875rem;font-weight:600;color:var(--text-muted)}.form-error{color:var(--error);font-size:.8125rem}.portal-slot{background:var(--surface-2);border:1px dashed var(--border);border-radius:var(--radius);padding:.5rem .75rem;font-size:.8rem;color:var(--text-muted)}.portal-slot-key{font-weight:700;color:var(--accent-light)}.map-container{padding:.75rem .5rem 1rem;display:flex;flex-direction:column;gap:.5rem}.map-world-labels{display:flex;justify-content:space-around;padding:0 .5rem}.map-world-label{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--text-muted)}.map-world-label-1{color:var(--accent-light)}.map-world-label-2{color:var(--violet)}.map-world-dimmed{opacity:.4}.map-svg{width:100%;height:auto;max-height:80vh;display:block;overflow:visible}.node-visual.map-cluster-clickable{transition:transform .15s cubic-bezier(.34,1.56,.64,1)}.map-cluster-node:hover .node-visual.map-cluster-clickable{transform:scale(1.08)}.map-cluster-node:active .node-visual.map-cluster-clickable{transform:scale(.96)}.map-cluster-locked{pointer-events:none}@keyframes portalPulse{0%,to{opacity:1}50%{opacity:.55}}.portal-arc-available path:first-child{animation:portalPulse 2.4s ease-in-out infinite}@media (prefers-reduced-motion: reduce){.portal-arc-available path:first-child{animation:none}.node-visual.map-cluster-clickable{transition:none}}.map-tooltip{background:var(--surface-3);border:1px solid var(--border);border-radius:8px;padding:.5rem .625rem;font-size:.7rem;line-height:1.4;box-shadow:0 4px 16px #0006;pointer-events:none;-webkit-user-select:none;user-select:none}.map-tooltip-title{font-weight:700;color:var(--text);margin-bottom:.15rem}.map-tooltip-state{color:var(--accent-light);font-size:.65rem}.map-tooltip-lock{color:var(--warning);font-size:.65rem;margin-top:.15rem}.map-tooltip-prog{color:var(--text-muted);font-size:.65rem;margin-top:.15rem}.map-legend{display:flex;flex-wrap:wrap;gap:.6rem;align-items:center;padding:.25rem .5rem;font-size:.68rem;color:var(--text-muted);border-top:1px solid var(--border);margin-top:.25rem}.map-legend-title{font-weight:700;color:var(--text-muted)}.map-legend-item{white-space:nowrap}.map-legend-6m{color:var(--accent-light)}.map-legend-9m{color:var(--warning)}.map-legend-12m{color:var(--violet)}.portal-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0009;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:300;padding:1rem}.portal-modal-card{background:var(--surface-2);border:1px solid var(--border);border-radius:20px;width:100%;max-width:420px;box-shadow:0 16px 48px #00000080,0 0 64px #8b5cf61f;overflow:hidden;animation:modalIn .2s cubic-bezier(.34,1.56,.64,1) both}@keyframes modalIn{0%{opacity:0;transform:scale(.88) translateY(8px)}to{opacity:1;transform:scale(1) translateY(0)}}@media (prefers-reduced-motion: reduce){.portal-modal-card{animation:none}}.portal-modal-header{display:flex;align-items:center;gap:.875rem;padding:1.25rem 1.25rem 1rem;border-bottom:1px solid}.portal-modal-icon{font-size:1.75rem}.portal-modal-title{font-size:1.0625rem;font-weight:700;color:var(--text)}.portal-modal-subtitle{font-size:.8rem;font-weight:600;margin-top:.1rem}.portal-modal-close{margin-left:auto;padding:.25rem .625rem;font-size:.85rem}.portal-modal-body{padding:1.125rem 1.25rem;display:flex;flex-direction:column;gap:.875rem}.portal-modal-passbar{display:flex;align-items:center;gap:.5rem}.portal-modal-passbar-label{font-size:.8rem;font-weight:600;color:var(--text-muted);white-space:nowrap}.portal-modal-passbar-track{flex:1;height:6px;background:var(--surface-3);border-radius:999px;overflow:hidden}.portal-modal-passbar-fill{height:100%;border-radius:999px;transition:width .4s ease}.portal-modal-passbar-pct{font-size:.75rem;font-weight:700;color:var(--text-muted);white-space:nowrap}.portal-modal-deploys{font-size:.8rem;color:var(--text-muted)}.portal-modal-coming{display:flex;gap:.75rem;align-items:flex-start;background:#6366f114;border:1px solid rgba(99,102,241,.2);border-radius:10px;padding:.875rem}.portal-modal-coming-icon{font-size:1.5rem;flex-shrink:0}.portal-modal-coming strong{display:block;color:var(--text);font-size:.9rem;margin-bottom:.25rem}.portal-modal-coming p{font-size:.8rem;color:var(--text-muted);line-height:1.5;margin:0}.portal-modal-footer{padding:.875rem 1.25rem;border-top:1px solid var(--border);display:flex;justify-content:flex-end}@keyframes nodeGlow{0%,to{filter:drop-shadow(0 0 0 transparent)}50%{filter:drop-shadow(0 0 8px rgba(99,102,241,.4))}}.node-visual.map-cluster-clickable:not(.map-cluster-locked) circle{transition:filter .2s}.completion-panel{background:linear-gradient(135deg,#22c55e14,#8b5cf614);border:1.5px solid var(--success);border-radius:var(--radius);padding:1.75rem 1.25rem;text-align:center;margin:1.25rem 0}.completion-panel-emoji{font-size:2.5rem;margin-bottom:.5rem}.completion-panel-title{font-size:1.375rem;font-weight:800;color:var(--success);margin-bottom:.375rem}.completion-panel-subtitle{color:var(--text-muted);font-size:.9rem;margin-bottom:1.25rem}.completion-panel-actions{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap}.review-header{display:flex;align-items:center;gap:1rem;padding:.875rem 1rem;border-bottom:1px solid var(--border);position:sticky;top:0;background:var(--surface);z-index:5}.review-header-title{font-size:1.0625rem;font-weight:700;color:var(--text)}.review-question-group{background:var(--surface-2);border:1px solid var(--border);border-radius:var(--radius);margin-bottom:1rem;overflow:hidden}.review-question-stem{padding:.875rem 1rem;border-bottom:1px solid var(--border);font-size:.9375rem;color:var(--text);line-height:1.6;white-space:pre-wrap;background:#6366f10a}.review-attempt{padding:.75rem 1rem;border-bottom:1px solid var(--border)}.review-attempt:last-child{border-bottom:none}.review-attempt-header{display:flex;align-items:center;gap:.5rem;margin-bottom:.375rem;flex-wrap:wrap}.review-attempt-label{font-size:.75rem;font-weight:700;color:var(--text-muted)}.review-student-answer{background:var(--surface-3);border-radius:6px;padding:.5rem .75rem;font-size:.875rem;color:var(--text);margin-top:.375rem;white-space:pre-wrap;line-height:1.5}.review-model-answer{background:#6366f112;border:1px solid rgba(99,102,241,.2);border-radius:6px;padding:.625rem .875rem;margin-top:.625rem;font-size:.875rem;color:var(--text)}.review-model-answer-label{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--accent-light);margin-bottom:.2rem}.review-empty{padding:2rem;text-align:center;color:var(--text-muted)}.review-body{padding:1rem;max-width:680px;margin:0 auto}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.gap-2{gap:.5rem}.flex{display:flex}.items-center{align-items:center}.justify-between{justify-content:space-between}.flex-col{flex-direction:column}.w-full{width:100%}.text-sm{font-size:.875rem}.text-xs{font-size:.75rem}.font-bold{font-weight:700}.text-muted{color:var(--text-muted)}.text-accent{color:var(--accent-light)}.text-success{color:var(--success)}.text-error{color:var(--error)}.btn-study{min-width:2.75rem;padding-left:.75rem;padding-right:.75rem;font-size:1.15rem;line-height:1}.btn-study:disabled{opacity:.45;cursor:not-allowed}.study-drawer{position:fixed;top:0;right:0;bottom:0;width:40%;min-width:360px;max-width:560px;background:var(--surface-2);border-left:1px solid var(--surface-3);box-shadow:-8px 0 32px #00000059;display:flex;flex-direction:column;z-index:900;animation:study-drawer-in .18s ease-out}@keyframes study-drawer-in{0%{transform:translate(24px);opacity:0}to{transform:translate(0);opacity:1}}.study-drawer-h{display:flex;align-items:center;justify-content:space-between;padding:.875rem 1rem;border-bottom:1px solid var(--surface-3);background:var(--surface)}.study-drawer-title{font-weight:700;color:var(--text);font-size:1rem}.study-drawer-close{background:transparent;border:none;color:var(--text-muted);font-size:1.25rem;cursor:pointer;padding:.25rem .5rem;border-radius:4px}.study-drawer-close:hover{color:var(--text);background:var(--surface-3)}.study-drawer-body{flex:1;overflow-y:auto;padding:1rem}.study-concept{border:1px solid var(--surface-3);border-radius:8px;margin-bottom:.75rem;background:var(--surface)}.study-concept-header{width:100%;display:flex;align-items:center;gap:.5rem;background:transparent;border:none;color:var(--text);padding:.75rem .875rem;cursor:pointer;text-align:left;font-size:.95rem;border-radius:8px}.study-concept-header:hover{background:var(--surface-3)}.study-concept-code{font-weight:700;color:var(--accent-light);min-width:2.25rem}.study-concept-title{flex:1;color:var(--text)}.study-concept-chevron{color:var(--text-muted);font-size:.85rem}.study-concept-body{padding:.25rem .875rem .875rem;border-top:1px solid var(--surface-3)}.study-section{margin-top:.875rem}.study-section:first-child{margin-top:.5rem}.study-section-h{font-size:.78rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--accent-light);margin:0 0 .375rem}.study-paragraph{color:var(--text);line-height:1.55;margin:0;white-space:pre-wrap}.study-list{color:var(--text);line-height:1.55;margin:0;padding-left:1.25rem}.study-list li{margin-bottom:.25rem}.study-worked{color:var(--text);line-height:1.55;margin:0;padding-left:1.25rem}.study-worked li{margin-bottom:.625rem}.study-worked-prompt{font-weight:600;margin-bottom:.25rem}.study-worked-solution{color:var(--text-muted)}.study-worked-body{color:var(--text)}.study-link{color:var(--accent-light);word-break:break-all}.study-loading{display:flex;justify-content:center;padding:2rem 0}.study-empty{color:var(--text-muted);font-style:italic;text-align:center;padding:1.5rem 0;margin:0}.study-error{color:var(--text);text-align:center;padding:1.5rem .5rem}.study-error p{margin:0 0 .75rem;color:var(--text-muted)}.study-missing{margin-top:.75rem;padding-top:.75rem;border-top:1px dashed var(--surface-3);color:var(--text-muted);font-size:.78rem;font-style:italic}@media (max-width: 900px){.study-drawer{width:100%;max-width:100%;min-width:0;border-left:none}}.study-sme-notes{background:#ffc84014;border-left:3px solid rgba(255,200,64,.55);padding:.625rem .75rem;margin-left:-.25rem;border-radius:0 4px 4px 0}.study-sme-notes .study-section-h{color:#ffc840f2}.terminal-root{--term-bg: #000000;--term-fg: #e8e8e8;--term-dim: #888888;--term-warn: #ff5577;--term-accent: #ffd86b;--term-portal: #7fd1ff;--term-good: #7fe0a8;--term-muted: #555555;position:fixed;top:0;right:0;bottom:0;left:0;width:100vw;height:100dvh;background:var(--term-bg);color:var(--term-fg);font-family:JetBrains Mono,ui-monospace,Menlo,Consolas,monospace;font-size:14px;line-height:1.45;overflow-y:auto;overflow-x:hidden;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}@media (min-width: 720px){.terminal-root{font-size:15px}}.tm-frame{display:flex;flex-direction:column;min-height:100dvh;padding:.75rem;box-sizing:border-box;gap:.5rem}.tm-frame__header,.tm-frame__keybar{white-space:pre-wrap;color:var(--term-fg)}.tm-frame__header{font-weight:500;border-bottom:1px dashed var(--term-dim);padding-bottom:.35rem;display:flex;flex-wrap:wrap;gap:.35rem 1rem;justify-content:space-between;align-items:baseline}.tm-frame__title{letter-spacing:.05em}.tm-frame__meta{color:var(--term-dim);font-size:.85em}.tm-frame__body{flex:1 1 auto;padding:.75rem .25rem 1rem;max-width:880px;width:100%;margin:0 auto}.tm-frame__keybar{border-top:1px dashed var(--term-dim);padding-top:.4rem;display:flex;flex-wrap:wrap;gap:.4rem 1rem;font-size:.9em}.tm-key{background:transparent;border:none;color:var(--term-fg);font-family:inherit;font-size:inherit;padding:.25rem .4rem;cursor:pointer;border-radius:2px;white-space:nowrap}.tm-key:hover:not(:disabled),.tm-key:focus-visible{background:var(--term-dim);color:var(--term-bg);outline:none}.tm-key:disabled{color:var(--term-muted);cursor:not-allowed}.tm-key__bracket{color:var(--term-accent);font-weight:700}.tm-key__bracket--portal{color:var(--term-portal)}.tm-section{margin-bottom:1.1rem}.tm-h1{font-size:1.05em;font-weight:700;letter-spacing:.05em;margin:0 0 .6rem;color:var(--term-fg)}.tm-prompt{color:var(--term-accent);margin-right:.4rem}.tm-text{white-space:pre-wrap}.tm-text--warn{color:var(--term-warn)}.tm-text--dim{color:var(--term-dim)}.tm-text--accent{color:var(--term-accent)}.tm-text--portal{color:var(--term-portal)}.tm-cluster-row{display:flex;gap:.5rem;align-items:baseline;margin:.15rem 0}.tm-cluster-row--cleared{color:var(--term-dim)}.tm-cluster-row__key{color:var(--term-accent);font-weight:700;min-width:3.5em}.tm-cluster-row__name{flex:1}.tm-cluster-row__status{color:var(--term-dim);font-size:.9em}.tm-cluster-row button.tm-cluster-row__hit{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;font:inherit;text-align:left;display:flex;flex:1;cursor:pointer;padding:.15rem .25rem;border-radius:2px;gap:.5rem}.tm-cluster-row button.tm-cluster-row__hit:hover,.tm-cluster-row button.tm-cluster-row__hit:focus-visible{background:var(--term-dim);color:var(--term-bg);outline:none}.tm-cluster-row button.tm-cluster-row__hit:hover .tm-cluster-row__status,.tm-cluster-row button.tm-cluster-row__hit:focus-visible .tm-cluster-row__status{color:var(--term-bg)}.tm-cluster-row button.tm-cluster-row__hit:disabled{cursor:default}.tm-portal-row .tm-cluster-row__key{color:var(--term-portal)}.tm-ascii-title{font-family:inherit;white-space:pre;line-height:1.05;font-size:.42em;color:var(--term-fg);text-align:left;display:block;width:fit-content;max-width:100%;margin:.4rem auto .6rem;overflow:visible}@media (min-width: 480px){.tm-ascii-title{font-size:.55em}}@media (min-width: 720px){.tm-ascii-title{font-size:.7em}}@media (min-width: 960px){.tm-ascii-title{font-size:.8em}}.tm-input-line{display:flex;align-items:baseline;gap:.5rem;border-bottom:1px solid var(--term-dim);padding:.3rem 0}.tm-input-line input{background:transparent;border:none;color:var(--term-fg);font:inherit;flex:1;outline:none;caret-color:var(--term-fg)}.tm-textarea-wrap{border:1px solid var(--term-dim);padding:.4rem .6rem;margin-top:.25rem;background:transparent;position:relative}.tm-textarea-wrap textarea{width:100%;background:transparent;border:none;color:var(--term-fg);font:inherit;outline:none;resize:vertical;min-height:6em;caret-color:var(--term-fg)}.tm-textarea-wrap__count{position:absolute;right:.5rem;bottom:.3rem;font-size:.8em;color:var(--term-muted);pointer-events:none}.tm-caret{display:inline-block;width:.6ch;background:var(--term-fg);color:var(--term-fg);animation:tm-blink 1.06s steps(2,start) infinite}@keyframes tm-blink{to{visibility:hidden}}.tm-mcq-option{display:flex;align-items:baseline;gap:.6rem;width:100%;background:transparent;border:none;color:var(--term-fg);font:inherit;text-align:left;padding:.3rem .5rem;cursor:pointer;border-radius:2px}.tm-mcq-option:hover,.tm-mcq-option:focus-visible{background:var(--term-dim);color:var(--term-bg);outline:none}.tm-mcq-option__key{color:var(--term-accent);font-weight:700}.tm-dots{letter-spacing:.2em}.tm-dots--low{color:var(--term-warn)}.tm-pbar{display:inline-block;letter-spacing:0;color:var(--term-fg)}.tm-pbar__empty{color:var(--term-muted)}.tm-feedback-correct{color:var(--term-good);font-weight:700}.tm-feedback-wrong{color:var(--term-warn);font-weight:700}.tm-feedback-body{margin-top:.6rem;color:var(--term-fg);white-space:pre-wrap}.tm-feedback-model{margin-top:.7rem;padding:.4rem .6rem;border-left:2px solid var(--term-accent);color:var(--term-fg);white-space:pre-wrap}.tm-narrative{white-space:pre-wrap;max-width:64ch;margin:1.5rem auto;color:var(--term-fg);line-height:1.7}.tm-narrative__sub{margin-top:1.2rem;color:var(--term-dim);font-size:.9em}.tm-narrative__unlock{margin-top:.5rem;color:var(--term-accent)}.tm-narrative__unlock--portal{color:var(--term-portal)}.tm-battle-anim{display:flex;flex-direction:column;align-items:flex-start;gap:.35rem;margin:.6rem 0 .8rem;min-height:4em}.tm-battle-anim__frame{margin:0;padding:0;font-family:inherit;font-size:1.1em;line-height:1.15;color:var(--term-accent);white-space:pre;letter-spacing:0}.tm-battle-anim__label{color:var(--term-dim);font-size:.95em;letter-spacing:.04em}.tm-battle-anim--error{color:var(--term-warn);font-weight:500}.tm-loading,.tm-empty{text-align:center;padding:2rem 1rem;color:var(--term-dim)}.terminal-root .study-drawer{background:var(--term-bg);border-left:1px dashed var(--term-dim);box-shadow:none;width:44%;min-width:360px;max-width:620px;font-family:inherit;color:var(--term-fg)}.terminal-root .study-drawer-h{background:var(--term-bg);border-bottom:1px dashed var(--term-dim);padding:.55rem .85rem}.terminal-root .study-drawer-title{color:var(--term-fg);font-weight:500;letter-spacing:.05em;font-size:.95rem;text-transform:uppercase}.terminal-root .study-drawer-title:before{content:"> ";color:var(--term-accent);font-weight:700}.terminal-root .study-drawer-close{background:transparent;border:none;color:var(--term-fg);font-family:inherit;font-size:inherit;padding:.2rem .5rem;border-radius:2px;cursor:pointer}.terminal-root .study-drawer-close:before{content:"[";color:var(--term-accent);font-weight:700;margin-right:.05em}.terminal-root .study-drawer-close:after{content:"]";color:var(--term-accent);font-weight:700;margin-left:.05em}.terminal-root .study-drawer-close:hover,.terminal-root .study-drawer-close:focus-visible{background:var(--term-dim);color:var(--term-bg);outline:none}.terminal-root .study-drawer-close:hover:before,.terminal-root .study-drawer-close:hover:after,.terminal-root .study-drawer-close:focus-visible:before,.terminal-root .study-drawer-close:focus-visible:after{color:var(--term-bg)}.terminal-root .study-drawer-body{background:var(--term-bg);padding:.75rem .85rem 1rem}.terminal-root .study-concept{background:transparent;border:none;border-radius:0;margin:0;padding:.45rem 0 .6rem}.terminal-root .study-concept+.study-concept{border-top:1px dashed var(--term-dim);margin-top:.45rem;padding-top:.7rem}.terminal-root .study-concept-header{background:transparent;color:var(--term-accent);border:none;border-radius:2px;padding:.25rem .35rem;font:inherit;text-align:left;letter-spacing:.03em}.terminal-root .study-concept-header:hover,.terminal-root .study-concept-header:focus-visible{background:var(--term-dim);color:var(--term-bg);outline:none}.terminal-root .study-concept-header:hover .study-concept-code,.terminal-root .study-concept-header:hover .study-concept-title,.terminal-root .study-concept-header:hover .study-concept-chevron,.terminal-root .study-concept-header:focus-visible .study-concept-code,.terminal-root .study-concept-header:focus-visible .study-concept-title,.terminal-root .study-concept-header:focus-visible .study-concept-chevron{color:var(--term-bg)}.terminal-root .study-concept-code{color:var(--term-accent);font-weight:700;min-width:2.5em}.terminal-root .study-concept-title{color:var(--term-fg)}.terminal-root .study-concept-chevron{color:var(--term-dim);font-size:.9em}.terminal-root .study-concept-body{border-top:none;padding:.35rem .35rem .25rem .85rem}.terminal-root .study-section{margin-top:.85rem}.terminal-root .study-section:first-child{margin-top:.4rem}.terminal-root .study-section-h{color:var(--term-dim);font-weight:500;letter-spacing:.06em;font-size:.78rem;margin:0 0 .3rem;text-transform:uppercase}.terminal-root .study-paragraph{color:var(--term-fg);line-height:1.5;white-space:pre-wrap}.terminal-root .study-list,.terminal-root .study-worked{list-style:none;padding-left:0;margin:0;color:var(--term-fg)}.terminal-root .study-list li,.terminal-root .study-worked li{position:relative;padding-left:1.4em;margin-bottom:.3rem;line-height:1.5}.terminal-root .study-list li:before{content:"-";position:absolute;left:.25em;color:var(--term-dim)}.terminal-root .study-worked{counter-reset:worked}.terminal-root .study-worked li{counter-increment:worked}.terminal-root .study-worked li:before{content:counter(worked) ".";position:absolute;left:0;color:var(--term-dim);font-weight:700;min-width:1.2em}.terminal-root .study-worked-prompt{color:var(--term-fg);font-weight:700;margin-bottom:.2rem}.terminal-root .study-worked-solution{color:var(--term-fg)}.terminal-root .study-worked-solution strong{color:var(--term-accent);font-weight:700}.terminal-root .study-worked-body{color:var(--term-fg)}.terminal-root .study-link{color:var(--term-portal);text-decoration:underline;word-break:break-all}.terminal-root .study-link:hover{background:var(--term-portal);color:var(--term-bg);text-decoration:none}.terminal-root .study-loading{color:var(--term-dim);padding:1.5rem 0}.terminal-root .study-empty{color:var(--term-dim);font-style:normal;text-align:left;padding:1rem .35rem}.terminal-root .study-empty:before{content:"> ";color:var(--term-accent)}.terminal-root .study-error{color:var(--term-fg);text-align:left;padding:1rem .35rem}.terminal-root .study-error p{color:var(--term-warn);margin:0 0 .6rem}.terminal-root .study-error p:before{content:"> ";color:var(--term-warn)}.terminal-root .study-error .btn{background:transparent;border:1px dashed var(--term-dim);color:var(--term-fg);font-family:inherit;padding:.25rem .6rem;cursor:pointer;border-radius:2px}.terminal-root .study-error .btn:hover{background:var(--term-dim);color:var(--term-bg)}.terminal-root .study-missing{border-top:1px dashed var(--term-dim);color:var(--term-muted);font-style:normal;margin-top:.85rem;padding-top:.6rem;font-size:.82rem}.terminal-root .study-missing:before{content:"! ";color:var(--term-warn)}.terminal-root .study-sme-notes{background:#ffd86b0d;border-left:2px solid var(--term-accent);border-radius:0;padding:.5rem .7rem;margin-left:-.15rem}.terminal-root .study-sme-notes .study-section-h{color:var(--term-accent);font-weight:700}@media (max-width: 900px){.terminal-root .study-drawer{width:100%;max-width:100%;min-width:0;border-left:none}}.review-root{--bg: #0f141c;--panel: #161d28;--panel-2: #1d2533;--border: #2a3445;--text: #e6ebf2;--muted: #97a3b6;--accent: #3b82f6;--green: #2f9e6e;--red: #d4584f;--amber: #c9923a;--font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;--mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;font-family:var(--font);background:var(--bg);color:var(--text);font-size:13px;line-height:1.45;height:100vh;width:100%;overflow:hidden}.review-root *{box-sizing:border-box}.review-root button{font:inherit;cursor:pointer;border:1px solid var(--border);background:var(--panel-2);color:var(--text);border-radius:6px;padding:6px 12px}.review-root button:hover{border-color:var(--accent)}.review-root button:disabled{opacity:.45;cursor:not-allowed}.review-root button.primary{background:var(--accent);border-color:var(--accent);color:#fff}.review-root button.danger{background:var(--red);border-color:var(--red);color:#fff}.review-root button.ghost{background:transparent}.review-root button.sm{padding:3px 8px;font-size:12px}.review-root input,.review-root textarea,.review-root select{font:inherit;background:var(--bg);color:var(--text);border:1px solid var(--border);border-radius:6px;padding:6px 8px;width:100%}.review-root textarea{resize:vertical;min-height:48px;font-family:var(--font)}.review-root label{display:block;color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.04em;margin:8px 0 3px}.review-root .app-shell{display:grid;grid-template-rows:auto 1fr;height:100vh}.review-root .topbar{display:flex;align-items:center;gap:12px;padding:8px 16px;background:var(--panel);border-bottom:1px solid var(--border)}.review-root .topbar h1{font-size:14px;margin:0;font-weight:600}.review-root .topbar .spacer{flex:1}.review-root .topbar .who{color:var(--muted);font-size:12px}.review-root .main-grid{display:grid;grid-template-columns:270px 1fr;height:100%;min-height:0}.review-root .rail{background:var(--panel);border-right:1px solid var(--border);overflow-y:auto}.review-root .rail-section-title{padding:10px 12px 4px;color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.05em}.review-root .cluster-row{display:flex;align-items:center;gap:6px;width:100%;text-align:left;border:none;border-bottom:1px solid var(--border);border-radius:0;background:transparent;padding:8px 12px}.review-root .cluster-row:hover{background:var(--panel-2)}.review-root .cluster-row.active{background:var(--panel-2);border-left:3px solid var(--accent)}.review-root .cluster-row .cid{font-weight:700;width:18px}.review-root .cluster-row .meta{flex:1;color:var(--muted);font-size:11px}.review-root .concept-row{display:flex;align-items:center;gap:6px;width:100%;text-align:left;border:none;border-radius:0;background:transparent;padding:6px 12px 6px 22px;border-bottom:1px solid var(--border)}.review-root .concept-row:hover{background:var(--panel-2)}.review-root .concept-row.active{background:var(--accent);color:#fff}.review-root .concept-row .code{font-family:var(--mono);font-weight:600}.review-root .detail{overflow-y:auto;padding:16px 20px}.review-root .card{background:var(--panel);border:1px solid var(--border);border-radius:8px;padding:14px 16px;margin-bottom:14px}.review-root .card h2{font-size:13px;margin:0 0 8px;text-transform:uppercase;letter-spacing:.04em;color:var(--muted)}.review-root .field-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.review-root .row-list{display:flex;flex-direction:column;gap:6px}.review-root .inline-row{display:flex;gap:6px;align-items:flex-start}.review-root .chip{display:inline-block;padding:1px 7px;border-radius:999px;font-size:11px;border:1px solid var(--border)}.review-root .chip.genuine{color:#7fd1a8;border-color:#2f6f53}.review-root .chip.synthetic{color:#d8b06a;border-color:#6f5a2f}.review-root .chip.approved{color:#8fe0b6;border-color:var(--green)}.review-root .chip.pending{color:#d8c08a;border-color:var(--amber)}.review-root .chip.rejected{color:#e89a93;border-color:var(--red)}.review-root .chip.draft{color:var(--muted)}.review-root .chip.active{color:#8fb8e0;border-color:var(--accent)}.review-root .chip.edited{color:#e0a0e0;border-color:#7a4a7a}.review-root .tmpl{border:1px solid var(--border);border-radius:6px;margin-bottom:8px}.review-root .tmpl>summary{padding:8px 10px;cursor:pointer;display:flex;gap:8px;align-items:center;list-style:none}.review-root .tmpl>summary::-webkit-details-marker{display:none}.review-root .tmpl .tmpl-body{padding:8px 12px;border-top:1px solid var(--border)}.review-root .err{color:#e89a93;font-size:12px;margin-top:8px}.review-root .ok{color:#8fe0b6;font-size:12px}.review-root .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:#0009;display:grid;place-items:center;z-index:50}.review-root .modal{width:560px;max-width:92vw;max-height:86vh;overflow-y:auto;background:var(--panel);border:1px solid var(--border);border-radius:10px;padding:18px 20px}.review-root .modal h2{margin-top:0}.review-root .plan-row{display:flex;justify-content:space-between;gap:8px;padding:4px 0;border-bottom:1px solid var(--border);font-size:12px}.review-root .plan-row .lbl{font-family:var(--mono)}.review-root .toast{position:fixed;right:16px;bottom:16px;background:var(--panel-2);border:1px solid var(--border);border-radius:8px;padding:10px 14px;z-index:60;max-width:380px}.review-root .toast.success{border-color:var(--green)}.review-root .toast.error{border-color:var(--red)}.review-root .muted{color:var(--muted)}.review-root .toolbar{display:flex;gap:8px;margin-bottom:12px;align-items:center}.review-root .spinner{color:var(--muted);padding:24px}.review-root .row-actions{display:flex;gap:6px;align-items:center;flex-wrap:wrap}.review-root hr.sep{border:none;border-top:1px solid var(--border);margin:12px 0}.review-root .portal-row{display:flex;gap:8px;align-items:center;width:100%;padding:7px 12px;background:none;border:none;text-align:left;cursor:pointer;color:inherit}.review-root .portal-row:hover{background:var(--panel-2)}.review-root .portal-row.active{background:var(--panel-2);border-left:3px solid var(--accent)}.review-root .portal-row .cid{font-weight:700;white-space:nowrap}.review-root .portal-row .meta{flex:1;color:var(--muted);font-size:11px}.review-root .question-editor .question-header{margin-bottom:8px}.review-root .chip.source{color:#9aa6c0}.review-root .read-view .question-stem{font-size:14px;line-height:1.5}.review-root .mark-scheme-table{width:100%;border-collapse:collapse;font-size:12px;margin:6px 0}.review-root .mark-scheme-table th,.review-root .mark-scheme-table td{border:1px solid var(--border);padding:5px 8px;text-align:left;vertical-align:top}.review-root .mark-scheme-table th{color:var(--muted);font-weight:600;background:var(--panel-2)}.review-root .mcq-options{padding-left:22px}.review-root .mcq-options li{margin:3px 0}.review-root .mcq-options li.correct{color:#8fe0b6}.review-root .model-answer{margin-top:8px}.review-root .model-answer>summary{cursor:pointer;color:var(--muted);font-size:12px}.review-root .edit-form{display:flex;flex-direction:column;gap:4px}.review-root .ai-bar{border-bottom:1px solid var(--border);padding-bottom:8px}.review-root .self-grade{border:1px solid var(--border);border-radius:6px;padding:8px 10px;margin-bottom:10px;font-size:13px}.review-root .self-grade.ok{border-color:var(--green)}.review-root .self-grade.err{border-color:var(--red);color:#e89a93}.review-root .suggestions{display:flex;flex-direction:column;gap:8px;margin-bottom:10px}.review-root .suggestion-diff{border:1px solid #7a4a7a;border-radius:6px;padding:8px 10px}.review-root .suggestion-diff .diff-current{background:var(--panel-2);border-radius:4px;padding:6px;font-size:12px}.review-root .suggestion-diff .diff-suggested{background:#8fe0b614;border:1px solid #2f6f53;border-radius:4px;padding:6px;font-size:12px}.admin-root{--bg: #0f141c;--panel: #161d28;--panel-2: #1d2533;--border: #2a3445;--text: #e6ebf2;--muted: #97a3b6;--accent: #3b82f6;--green: #2f9e6e;--red: #d4584f;--amber: #c9923a;--font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;--mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;font-family:var(--font);background:var(--bg);color:var(--text);font-size:13px;line-height:1.45;height:100vh;width:100%;overflow:hidden}.admin-root *{box-sizing:border-box}.admin-root button{font:inherit;cursor:pointer;border:1px solid var(--border);background:var(--panel-2);color:var(--text);border-radius:6px;padding:6px 12px}.admin-root button:hover{border-color:var(--accent)}.admin-root button:disabled{opacity:.45;cursor:not-allowed}.admin-root button.primary{background:var(--accent);border-color:var(--accent);color:#fff}.admin-root button.danger{background:var(--red);border-color:var(--red);color:#fff}.admin-root button.ghost{background:transparent}.admin-root button.sm{padding:3px 8px;font-size:12px}.admin-root input,.admin-root textarea,.admin-root select{font:inherit;background:var(--bg);color:var(--text);border:1px solid var(--border);border-radius:6px;padding:6px 8px;width:100%}.admin-root textarea{resize:vertical;min-height:96px;font-family:var(--mono);font-size:12px}.admin-root label{display:block;color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.04em;margin:8px 0 3px}.admin-root .app-shell{display:grid;grid-template-rows:auto 1fr;height:100vh}.admin-root .topbar{display:flex;align-items:center;gap:12px;padding:8px 16px;background:var(--panel);border-bottom:1px solid var(--border)}.admin-root .topbar h1{font-size:14px;margin:0;font-weight:600}.admin-root .topbar .spacer{flex:1}.admin-root .topbar .who{color:var(--muted);font-size:12px}.admin-root .main-grid{display:grid;grid-template-columns:220px 1fr;height:100%;min-height:0}.admin-root .rail{background:var(--panel);border-right:1px solid var(--border);overflow-y:auto}.admin-root .rail-section-title{padding:10px 12px 4px;color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.05em}.admin-root .nav-row{display:flex;align-items:center;gap:8px;width:100%;text-align:left;border:none;border-bottom:1px solid var(--border);border-radius:0;background:transparent;padding:10px 14px;color:var(--text)}.admin-root .nav-row:hover{background:var(--panel-2)}.admin-root .nav-row.active{background:var(--panel-2);border-left:3px solid var(--accent)}.admin-root .detail{overflow-y:auto;padding:16px 20px}.admin-root .card{background:var(--panel);border:1px solid var(--border);border-radius:8px;padding:14px 16px;margin-bottom:14px}.admin-root .card h2{font-size:13px;margin:0 0 8px;text-transform:uppercase;letter-spacing:.04em;color:var(--muted)}.admin-root .toolbar{display:flex;gap:8px;margin-bottom:12px;align-items:center;flex-wrap:wrap}.admin-root .toolbar .spacer{flex:1}.admin-root .tab-row{display:flex;gap:0;border-bottom:1px solid var(--border);margin-bottom:12px}.admin-root .tab-row .tab{border:none;border-bottom:2px solid transparent;border-radius:0;background:transparent;padding:7px 14px;color:var(--muted)}.admin-root .tab-row .tab:hover{color:var(--text)}.admin-root .tab-row .tab.active{color:var(--text);border-bottom-color:var(--accent)}.admin-root table.users-table{width:100%;border-collapse:collapse;font-size:12px}.admin-root table.users-table th,.admin-root table.users-table td{border-bottom:1px solid var(--border);padding:6px 8px;text-align:left;vertical-align:middle}.admin-root table.users-table th{color:var(--muted);font-weight:600;background:var(--panel-2)}.admin-root table.users-table td.email{font-family:var(--mono)}.admin-root table.users-table td .row-actions{display:flex;gap:4px;flex-wrap:wrap}.admin-root .chip{display:inline-block;padding:1px 7px;border-radius:999px;font-size:11px;border:1px solid var(--border)}.admin-root .chip.role-admin{color:#8fb8e0;border-color:var(--accent)}.admin-root .chip.role-sme{color:#d8b06a;border-color:#6f5a2f}.admin-root .chip.role-student{color:var(--muted)}.admin-root .chip.active-yes{color:#8fe0b6;border-color:var(--green)}.admin-root .chip.active-no{color:#e89a93;border-color:var(--red)}.admin-root .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:#0009;display:grid;place-items:center;z-index:50}.admin-root .modal{width:480px;max-width:92vw;max-height:86vh;overflow-y:auto;background:var(--panel);border:1px solid var(--border);border-radius:10px;padding:18px 20px}.admin-root .modal h2{margin-top:0;font-size:14px}.admin-root .modal-actions{display:flex;gap:8px;justify-content:flex-end;margin-top:12px}.admin-root .passphrase-box{background:var(--panel-2);border:1px dashed var(--amber);border-radius:6px;padding:10px 12px;margin:8px 0;font-family:var(--mono);font-size:13px;word-break:break-all}.admin-root .passphrase-box .warn{color:var(--amber);font-size:11px;display:block;margin-bottom:4px;font-family:var(--font);text-transform:uppercase;letter-spacing:.04em}.admin-root .knob-grid{display:grid;grid-template-columns:220px 1fr auto;gap:8px 12px;align-items:center}.admin-root .knob-grid .k-key{font-family:var(--mono);color:var(--muted);font-size:12px}.admin-root .knob-grid .k-desc{color:var(--muted);font-size:11px;grid-column:1 / -1;padding-bottom:6px;border-bottom:1px solid var(--border);margin-bottom:4px}.admin-root .prompt-block{border:1px solid var(--border);border-radius:6px;padding:10px 12px;margin-bottom:10px}.admin-root .prompt-block .ph-title{display:flex;align-items:center;gap:8px;margin-bottom:6px}.admin-root .prompt-block .ph-title .name{font-family:var(--mono);font-size:12px}.admin-root .prompt-block .ph-title .src{color:var(--muted);font-size:11px}.admin-root .prompt-block textarea{min-height:140px}.admin-root .knob-status{display:inline-block;padding:1px 7px;border-radius:999px;font-size:10px;border:1px solid var(--border);margin-left:6px;vertical-align:middle}.admin-root .knob-status.default{color:var(--muted)}.admin-root .knob-status.custom{color:#8fb8e0;border-color:var(--accent)}.admin-root .knob-grid .row-actions{display:flex;gap:4px}.admin-root .stat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:10px}.admin-root .stat-card{background:var(--panel-2);border:1px solid var(--border);border-radius:8px;padding:10px 12px}.admin-root .stat-card .lbl{color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.04em}.admin-root .stat-card .val{font-size:20px;font-weight:600;margin-top:4px}.admin-root .stat-card.ok{border-color:var(--green)}.admin-root .stat-card.warn{border-color:var(--amber)}.admin-root .stat-card.err{border-color:var(--red)}.admin-root .probe-result{padding:8px 10px;border-radius:6px;margin-top:8px;font-family:var(--mono);font-size:12px}.admin-root .probe-result.ok{background:#8fe0b614;border:1px solid var(--green);color:#8fe0b6}.admin-root .probe-result.err{background:#e89a9314;border:1px solid var(--red);color:#e89a93}.admin-root .events-table{width:100%;border-collapse:collapse;font-size:12px}.admin-root .events-table th,.admin-root .events-table td{border-bottom:1px solid var(--border);padding:5px 8px;text-align:left;vertical-align:top}.admin-root .events-table th{color:var(--muted);font-weight:600;background:var(--panel-2)}.admin-root .events-table td.mono{font-family:var(--mono);font-size:11px}.admin-root .toast{position:fixed;right:16px;bottom:16px;background:var(--panel-2);border:1px solid var(--border);border-radius:8px;padding:10px 14px;z-index:60;max-width:380px;font-size:12px}.admin-root .toast.success{border-color:var(--green)}.admin-root .toast.error{border-color:var(--red)}.admin-root .toast.warn{border-color:var(--amber)}.admin-root .muted{color:var(--muted)}.admin-root .err{color:#e89a93;font-size:12px;margin-top:4px}.admin-root .ok{color:#8fe0b6;font-size:12px}.admin-root .spinner{color:var(--muted);padding:24px}.admin-root hr.sep{border:none;border-top:1px solid var(--border);margin:12px 0}
