.btn { min-height: 36px; border-radius: 8px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; background: #fff; border: 1px solid var(--line-strong); color: var(--ink); cursor: pointer; font-weight: 600; font-size: 12px; transition: .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); border-color: #aeb8c8; }
.btn.primary { color: #fff; background: var(--blue); border-color: var(--blue); }
.btn.dark { color: #fff; background: var(--nav); border-color: var(--nav); }
.btn.copper { color: #fff; background: var(--copper); border-color: var(--copper); }
.btn.danger { color: var(--red); background: var(--red-soft); border-color: #f1c7ca; }
.btn.ghost { border-color: transparent; background: transparent; }
.btn.small { min-height: 30px; padding: 0 10px; font-size: 11px; }
.btn .icon { width: 15px; height: 15px; }
.btn[disabled] { opacity: .5; pointer-events: none; }

.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.sidebar-layout { grid-template-columns: minmax(0, 1fr) 330px; align-items: start; }
.span-2 { grid-column: span 2; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 1px 0 rgba(17,28,48,.02); }
.card.padded { padding: 19px; }
.card-head { min-height: 55px; display: flex; align-items: center; gap: 12px; padding: 0 18px; border-bottom: 1px solid var(--line); }
.card-head h2, .card-head h3 { margin: 0; font-size: 14px; font-weight: 700; }
.card-head p { margin: 0; color: var(--muted); font-size: 11px; }
.card-head .spacer { flex: 1; }
.card-body { padding: 18px; }
.section-title { display: flex; align-items: center; gap: 9px; margin: 2px 0 12px; }
.section-title h2 { font-size: 15px; margin: 0; }
.section-title small { color: var(--muted); }
.section-title .spacer { flex: 1; }

.metric { padding: 17px 18px; position: relative; overflow: hidden; }
.metric::after { content: ""; position: absolute; top: 0; right: 0; width: 3px; height: 100%; background: var(--metric, var(--blue)); opacity: .75; }
.metric-label { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; margin-bottom: 10px; }
.metric-value { font-family: var(--display); font-size: 26px; font-weight: 700; line-height: 1; }
.metric-note { color: var(--green); font-size: 10px; margin-top: 8px; }
.metric-note.warn { color: var(--copper); }

.hero-panel { min-height: 188px; background: var(--nav); color: #fff; border: 0; padding: 24px 26px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.5fr); gap: 28px; align-items: center; position: relative; overflow: hidden; }
.hero-panel::after { content: ""; position: absolute; width: 310px; height: 310px; right: -120px; top: -160px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 84px rgba(255,255,255,.018); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { color: #f3ad7d; }
.hero-copy h2 { font-family: var(--display); font-size: 25px; margin-bottom: 8px; }
.hero-copy p { color: #a9b5c9; max-width: 460px; margin-bottom: 18px; }
.flow-rail { display: grid; grid-template-columns: repeat(6, 1fr); align-items: start; position: relative; z-index: 2; }
.flow-rail::before { content: ""; position: absolute; height: 1px; top: 18px; left: 7%; right: 7%; background: #3b4a64; }
.flow-step { text-align: center; color: #8796af; font-size: 10px; position: relative; cursor: pointer; padding: 0 4px; }
.flow-dot { width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 8px; display: grid; place-items: center; background: #21314d; border: 1px solid #3e4d67; color: #9da9bc; position: relative; z-index: 2; font-family: var(--mono); transition: .2s ease; }
.flow-step.done .flow-dot { background: var(--green); border-color: #2bae8e; color: #fff; }
.flow-step.current .flow-dot { background: var(--copper); border-color: #e29a68; color: #fff; box-shadow: 0 0 0 5px rgba(200,117,61,.16); }
.flow-step:hover .flow-dot { transform: translateY(-2px); }
.flow-step.current { color: #fff; font-weight: 700; }

.status { display: inline-flex; align-items: center; gap: 5px; min-height: 23px; padding: 0 8px; border-radius: 12px; font-size: 10px; font-weight: 700; white-space: nowrap; background: #eef1f5; color: #596477; }
.status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .7; }
.status.blue { background: var(--blue-soft); color: var(--blue); }
.status.green { background: var(--green-soft); color: var(--green); }
.status.red { background: var(--red-soft); color: var(--red); }
.status.yellow { background: var(--yellow-soft); color: var(--yellow); }
.status.purple { background: var(--purple-soft); color: var(--purple); }
.status.copper { background: var(--copper-soft); color: var(--copper); }
.assumption { display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; color: #7b5720; background: #fff8e6; border: 1px solid #ebd89b; border-radius: 5px; font-size: 10px; font-weight: 700; }

.toolbar { min-height: 58px; display: flex; align-items: center; gap: 9px; padding: 10px 13px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius) var(--radius) 0 0; }
.toolbar .spacer { flex: 1; }
.search-box { position: relative; min-width: 220px; }
.search-box input, .filter-select { width: 100%; height: 34px; border: 1px solid var(--line); border-radius: 7px; background: #fff; padding: 0 11px; color: var(--ink); }
.search-box input { padding-left: 33px; }
.search-box .icon { position: absolute; width: 15px; color: var(--subtle); left: 11px; top: 9px; }
.filter-select { width: auto; min-width: 110px; }
.table-wrap { overflow: auto; background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 820px; }
th { height: 42px; padding: 0 15px; text-align: left; color: var(--muted); background: #f8f9fb; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 700; letter-spacing: .03em; white-space: nowrap; }
td { min-height: 56px; padding: 12px 15px; border-bottom: 1px solid #edf0f4; vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .12s ease; }
tbody tr:hover { background: #fafbfe; }
.cell-main { font-weight: 650; color: var(--ink); }
.cell-sub { color: var(--muted); font-size: 11px; margin-top: 2px; }
.link { color: var(--blue); cursor: pointer; font-weight: 600; }
.link:hover { text-decoration: underline; }
.row-actions { display: flex; align-items: center; gap: 7px; }
.insight-list { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.insight-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.insight-row:last-child { border-bottom: 0; }
.insight-row h3 { margin-bottom: 6px; }
.insight-fields { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(200px, .6fr); gap: 22px; margin: 14px 0; padding: 13px 0; border-top: 1px solid #edf0f4; border-bottom: 1px solid #edf0f4; }
.insight-fields label { display: block; margin-bottom: 5px; color: var(--subtle); font-size: 10px; font-weight: 700; }
.insight-fields p { margin: 0; color: var(--ink); font-size: 12px; }
.insight-row-actions { display: flex; align-items: flex-start; gap: 7px; white-space: nowrap; }

.tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--line); background: #fff; padding: 0 12px; overflow-x: auto; }
.tab { min-height: 46px; padding: 0 13px; display: flex; align-items: center; border-bottom: 2px solid transparent; color: var(--muted); font-size: 12px; white-space: nowrap; cursor: pointer; }
.tab:hover { color: var(--ink); }
.tab.active { color: var(--blue); border-color: var(--blue); font-weight: 700; }
.tab .count { margin-left: 6px; padding: 0 6px; border-radius: 8px; background: var(--paper); color: var(--muted); font-size: 9px; }

.info-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 24px; }
.info-item label { display: block; color: var(--subtle); font-size: 10px; margin-bottom: 3px; }
.info-item div { color: var(--ink); }
.tag-list { display: flex; gap: 7px; flex-wrap: wrap; }
.tag { display: inline-flex; align-items: center; min-height: 25px; padding: 0 8px; background: #f1f3f7; color: #556176; border-radius: 5px; font-size: 10px; }
.tag.blue { background: var(--blue-soft); color: var(--blue); }
.tag.green { background: var(--green-soft); color: var(--green); }
.tag.copper { background: var(--copper-soft); color: var(--copper); }

.task-list, .timeline { list-style: none; margin: 0; padding: 0; }
.task { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid #edf0f4; }
.task:last-child { border-bottom: 0; }
.task-icon { width: 31px; height: 31px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 8px; background: var(--blue-soft); color: var(--blue); }
.task-icon .icon { width: 15px; }
.task-main { flex: 1; min-width: 0; }
.task-title { font-size: 12px; font-weight: 650; }
.task-desc { color: var(--muted); font-size: 11px; margin-top: 2px; }
.task-time { color: var(--subtle); font-size: 10px; white-space: nowrap; }
.priority { width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: inline-block; margin-right: 5px; }

.timeline-item { position: relative; padding: 0 0 19px 25px; }
.timeline-item::before { content: ""; position: absolute; left: 6px; top: 17px; bottom: -1px; width: 1px; background: var(--line); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { position: absolute; left: 0; top: 3px; width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 3px solid #aab4c5; }
.timeline-item.active .timeline-dot { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.timeline-title { font-weight: 650; font-size: 12px; }
.timeline-meta { color: var(--subtle); font-size: 10px; margin-top: 1px; }
.timeline-text { color: var(--muted); font-size: 11px; margin-top: 5px; }

.ai-banner { border: 1px solid #dfe9e3; background: #f2f7f4; border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: flex-start; gap: 13px; }
.ai-mark { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 9px; display: grid; place-items: center; color: #3f6254; background: #e4eee8; }
.ai-mark .icon { width: 17px; }
.ai-banner-main { flex: 1; }
.ai-banner h3 { margin: 0 0 3px; font-size: 13px; }
.ai-banner p { margin: 0; color: var(--muted); font-size: 11px; }
.source { color: var(--subtle); font-family: var(--mono); font-size: 9px; margin-top: 7px; }
.analysis-block { border-left: 3px solid var(--tone, var(--blue)); padding: 11px 13px; background: #fafbfc; border-radius: 0 8px 8px 0; }
.analysis-block h4 { margin-bottom: 5px; font-size: 12px; }
.analysis-block p { margin: 0; color: var(--muted); font-size: 11px; }
.evidence-row { display: flex; gap: 8px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid #edf0f4; }
.evidence-row:last-child { border-bottom: 0; }
.evidence-icon { color: var(--green); width: 20px; flex: 0 0 auto; }
.evidence-main { flex: 1; }
.evidence-title { font-weight: 650; font-size: 12px; }
.evidence-text { color: var(--muted); font-size: 11px; margin-top: 3px; }

.document { padding: 24px 28px; }
.doc-cover { padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.doc-kicker { color: var(--copper); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.doc-cover h2 { margin: 6px 0; font-family: var(--display); font-size: 24px; }
.doc-meta { display: flex; gap: 18px; color: var(--muted); font-size: 10px; flex-wrap: wrap; }
.doc-section { margin: 21px 0; }
.doc-section h3 { font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.doc-number { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; background: var(--nav); color: #fff; font-family: var(--mono); font-size: 9px; }
.bullet-list { padding: 0; margin: 0; list-style: none; }
.bullet-list li { padding: 8px 0 8px 17px; border-bottom: 1px dashed #e5e8ee; position: relative; color: #3f4a5c; font-size: 12px; }
.bullet-list li::before { content: ""; position: absolute; left: 1px; top: 15px; width: 5px; height: 5px; border-radius: 50%; background: var(--copper); }
.bullet-list li:last-child { border-bottom: 0; }
.editable { border: 1px solid transparent; border-radius: 7px; padding: 7px 9px; margin: -7px -9px; }
.editable:hover { border-color: var(--line); background: #fbfcfe; }
.editable:focus { border-color: var(--blue); background: #fff; outline: 3px solid var(--blue-soft); }

.transcript { max-height: 575px; overflow: auto; padding-right: 8px; }
.transcript-line { display: grid; grid-template-columns: 48px 110px minmax(0,1fr); gap: 12px; padding: 13px 0; border-bottom: 1px solid #edf0f4; }
.transcript-time { color: var(--subtle); font-family: var(--mono); font-size: 10px; }
.transcript-speaker { font-weight: 650; font-size: 11px; }
.transcript-text { font-size: 12px; color: #3c4759; }
.transcript-tag { display: inline-flex; margin-top: 6px; font-size: 9px; color: var(--copper); background: var(--copper-soft); border-radius: 4px; padding: 2px 6px; }

.compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.compare-pane { min-width: 0; }
.compare-pane + .compare-pane { border-left: 1px solid var(--line); }
.compare-head { min-height: 54px; padding: 10px 16px; background: #f8f9fb; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.compare-body { padding: 18px; min-height: 260px; }
.diff-row { padding: 12px; border-radius: 8px; margin-bottom: 10px; font-size: 11px; }
.diff-row.remove { background: var(--red-soft); border-left: 3px solid var(--red); }
.diff-row.add { background: var(--green-soft); border-left: 3px solid var(--green); }
.diff-label { font-family: var(--mono); font-size: 9px; color: var(--muted); margin-bottom: 4px; }

.form { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.form-group label { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 650; margin-bottom: 6px; }
.required { color: var(--red); }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 8px; background: #fff; padding: 9px 11px; color: var(--ink); transition: .12s ease; }
.form-group input, .form-group select { height: 39px; }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); outline: 0; }
.form-hint { margin-top: 5px; color: var(--subtle); font-size: 10px; }
.choice-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 9px; }
.choice { padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; }
.choice.selected { border-color: var(--blue); background: var(--blue-soft); box-shadow: inset 0 0 0 1px var(--blue); }
.choice strong { display: block; font-size: 11px; }
.choice small { color: var(--muted); font-size: 9px; }
.toggle-row { display: flex; align-items: center; gap: 10px; }
.switch { width: 36px; height: 20px; border-radius: 10px; background: #bdc6d4; padding: 2px; cursor: pointer; transition: .16s ease; }
.switch::after { content: ""; display: block; width: 16px; height: 16px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.18); transition: .16s ease; }
.switch.on { background: var(--blue); }
.switch.on::after { transform: translateX(16px); }

.stepper { display: flex; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 16px; overflow-x: auto; }
.stepper-item { display: flex; align-items: center; min-width: 145px; color: var(--subtle); font-size: 10px; }
.stepper-item::after { content: ""; height: 1px; background: var(--line); flex: 1; margin: 0 10px; }
.stepper-item:last-child::after { display: none; }
.step-index { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #e7eaf0; margin-right: 7px; font-family: var(--mono); }
.stepper-item.done { color: var(--green); }
.stepper-item.done .step-index { background: var(--green); color: #fff; }
.stepper-item.active { color: var(--blue); font-weight: 700; }
.stepper-item.active .step-index { background: var(--blue); color: #fff; box-shadow: 0 0 0 4px var(--blue-soft); }

.profile-line { display: flex; align-items: center; gap: 11px; }
.mini-avatar { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; background: var(--avatar, var(--blue)); flex: 0 0 auto; }
.progress { height: 6px; border-radius: 3px; background: #e8ebf0; overflow: hidden; }
.progress > span { display: block; height: 100%; border-radius: 3px; background: var(--bar, var(--blue)); }
.workload { display: flex; align-items: center; gap: 8px; }
.workload .progress { width: 90px; }

.empty { min-height: 260px; display: grid; place-items: center; text-align: center; padding: 30px; }
.empty-icon { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 16px; display: grid; place-items: center; background: var(--paper); color: var(--subtle); }
.empty-icon .icon { width: 23px; }
.empty h3 { font-size: 14px; margin-bottom: 4px; }
.empty p { color: var(--muted); font-size: 11px; margin-bottom: 14px; }
.error-state { padding: 12px 14px; background: var(--red-soft); border: 1px solid #f0c5c9; border-radius: 8px; color: #98414a; display: flex; gap: 10px; align-items: center; font-size: 11px; }
.error-state > .icon { width: 15px; height: 15px; flex: 0 0 15px; }

.modal-backdrop { position: fixed; inset: 0; background: rgba(12,20,34,.5); z-index: 100; display: grid; place-items: center; padding: 20px; animation: fade .15s ease; }
.modal { width: min(560px, 100%); max-height: 90vh; overflow: auto; background: #fff; border-radius: 14px; box-shadow: 0 24px 80px rgba(8,15,28,.28); animation: modalIn .18s ease; }
.modal-head { min-height: 60px; display: flex; align-items: center; padding: 0 19px; border-bottom: 1px solid var(--line); }
.modal-head h3 { margin: 0; font-size: 15px; }
.modal-head .spacer { flex: 1; }
.modal-body { padding: 19px; }
.modal-foot { padding: 13px 19px; background: #f8f9fb; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 8px; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(12,20,34,.35); z-index: 90; }
.drawer { position: fixed; top: 0; bottom: 0; right: 0; width: min(520px, 92vw); background: #fff; box-shadow: -20px 0 60px rgba(8,15,28,.18); z-index: 95; overflow: auto; animation: slide .2s ease; }
.drawer-head { position: sticky; top: 0; background: #fff; z-index: 2; min-height: 68px; padding: 0 20px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.drawer-body { padding: 20px; }
.toast-root { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: grid; gap: 8px; }
.toast { min-width: 280px; max-width: 390px; background: var(--nav); color: #fff; border-radius: 10px; padding: 12px 15px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; animation: toastIn .22s ease; }
.toast.success { border-left: 4px solid #4fd2a5; }
.toast.warning { border-left: 4px solid #e2a35c; }
.toast-title { font-size: 12px; font-weight: 700; }
.toast-text { color: #aeb9cb; font-size: 10px; }

.login-page { min-height: 100vh; display: grid; grid-template-columns: minmax(440px, 1.05fr) minmax(420px, .95fr); background: #fff; }
.login-story { background: var(--nav); color: #fff; padding: 56px clamp(42px, 7vw, 100px); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.login-story::before { content: ""; position: absolute; width: 520px; height: 520px; left: -250px; bottom: -250px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.015); }
.login-brand { display: flex; gap: 12px; align-items: center; position: relative; z-index: 2; }
.login-brand .brand-name { font-size: 22px; }
.login-thesis { position: relative; z-index: 2; max-width: 570px; }
.login-thesis .eyebrow { color: #e9a370; }
.login-thesis h1 { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.18; margin: 12px 0 18px; letter-spacing: .03em; }
.login-thesis h1 em { color: #efac7c; font-style: normal; }
.login-thesis p { color: #aab6c9; max-width: 520px; font-size: 15px; }
.login-chain { display: flex; align-items: center; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.login-chain span { color: #b9c3d2; font-size: 11px; }
.login-chain i { width: 18px; height: 1px; background: #536077; }
.login-foot { position: relative; z-index: 2; color: #677794; font-size: 10px; }
.login-form-wrap { display: grid; place-items: center; padding: 40px; }
.login-form { width: min(390px, 100%); }
.login-form h2 { font-family: var(--display); font-size: 27px; margin-bottom: 6px; }
.login-form > p { color: var(--muted); margin-bottom: 25px; }
.login-form .btn { width: 100%; min-height: 43px; }
.demo-roles { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.demo-roles-label { color: var(--subtle); font-size: 10px; margin-bottom: 9px; }
.demo-role-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; }
.demo-role { padding: 9px; text-align: left; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; }
.demo-role:hover, .demo-role.selected { border-color: var(--blue); background: var(--blue-soft); }
.demo-role strong { display: block; font-size: 11px; }
.demo-role small { color: var(--muted); font-size: 9px; }

.chart-bars { height: 190px; display: flex; align-items: flex-end; gap: 12px; padding-top: 20px; }
.chart-bar { flex: 1; height: var(--h); min-width: 22px; background: #7d9188; border-radius: 3px 3px 0 0; position: relative; }
.chart-bar:nth-child(2n) { background: #a6aaa5; }
.chart-bar span { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 9px; color: var(--muted); }
.chart-bar label { position: absolute; bottom: -23px; left: 50%; transform: translateX(-50%); font-size: 9px; color: var(--subtle); white-space: nowrap; }
.donut { width: 112px; height: 112px; border-radius: 50%; background: #f2f2f0; border: 16px solid #dfe8e3; position: relative; display: grid; place-items: center; }
.donut::after { content: ""; position: absolute; inset: 24px; background: #fff; border-radius: 50%; }
.donut strong { position: relative; z-index: 2; font-family: var(--display); font-size: 22px; }
.legend { display: grid; gap: 8px; }
.legend-row { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--muted); }
.legend-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--c); }

.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; } .mb-8 { margin-bottom: 8px; } .mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; }
.text-muted { color: var(--muted); } .text-subtle { color: var(--subtle); } .text-small { font-size: 11px; } .text-tiny { font-size: 10px; }
.text-green { color: var(--green); } .text-red { color: var(--red); } .text-blue { color: var(--blue); }
.flex { display: flex; } .items-center { align-items: center; } .items-start { align-items: flex-start; } .justify-between { justify-content: space-between; } .gap-6 { gap: 6px; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .wrap { flex-wrap: wrap; } .spacer { flex: 1; }
.mono { font-family: var(--mono); }
