:root {
  --bg: #090c12; --bg-panel: #10141d; --bg-panel-2: #151a24; --bg-raised: #1b2130;
  --bg-input: #0c1018; --border: #252c3a; --border-strong: #384256;
  --text: #f2f4f8; --text-dim: #a4adbf; --text-faint: #697386;
  --accent: #78f238; --accent-2: #20c9e8; --accent-hover: #92ff58;
  --ok: #45c478; --warn: #e7a946; --fail: #ea655c;
  --radius: 12px; --radius-sm: 8px;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
body { display: flex; flex-direction: column; overflow: hidden; background: var(--bg); color: var(--text); font: 14px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; }

.topbar { height: 72px; flex: 0 0 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; background: rgba(14,18,27,.96); border-bottom: 1px solid var(--border); z-index: 20; }
.brand, .topbar-right { display: flex; align-items: center; gap: 10px; }
.brand { font-weight: 700; letter-spacing: -.02em; }
.topbar-right { justify-content: flex-end; }
.brand-logo { display: block; width: auto; height: 64px; object-fit: contain; filter: drop-shadow(0 0 13px rgba(32,201,232,.16)); }
.product-label { padding-left: 10px; border-left: 1px solid var(--border-strong); color: var(--text-faint); font-size: 12px; font-weight: 500; }
.topbar-center { text-align: center; line-height: 1.25; } .topbar-center span { display: block; }
#project-name { font-size: 12px; font-weight: 600; } #save-state { font-size: 10px; color: var(--text-faint); }
.credits { color: var(--text-dim); font-size: 12px; font-variant-numeric: tabular-nums; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-faint); }
.dot.online { background: var(--ok); box-shadow: 0 0 8px rgba(69,196,120,.5); } .dot.offline { background: var(--fail); }
.badge { padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.badge-warn { color: var(--warn); border: 1px solid rgba(231,169,70,.35); background: rgba(231,169,70,.1); }
.avatar { width: 29px; height: 29px; border: 1px solid var(--border-strong); border-radius: 50%; background: var(--bg-raised); font-size: 11px; font-weight: 700; cursor: pointer; }

.app-shell { flex: 1; min-height: 0; display: grid; grid-template-columns: 72px 354px minmax(360px,1fr) 326px; }
.app-shell.model-focus { grid-template-columns: 72px minmax(480px,1fr) 326px; }
.app-shell.model-focus .composer { display: none; }
.rail { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 8px 10px; background: #0d1119; border-right: 1px solid var(--border); }
.rail-button { width: 56px; min-height: 52px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: var(--text-faint); cursor: pointer; }
.rail-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.rail-button span { font-size: 9px; } .rail-button:hover { color: var(--text-dim); background: rgba(255,255,255,.025); }
.rail-button.active { color: #dcd8ff; background: rgba(122,108,255,.12); border-color: rgba(122,108,255,.25); }
.rail-spacer { flex: 1; }
.composer, .inspector { min-height: 0; overflow-y: auto; background: var(--bg-panel); scrollbar-color: var(--border-strong) transparent; }
.composer { border-right: 1px solid var(--border); } .inspector { border-left: 1px solid var(--border); }
.workspace-panel, .inspector-view { padding: 24px 22px; }
.panel-heading { margin-bottom: 20px; } .panel-heading.compact { margin-bottom: 18px; }
.eyebrow, .review-kicker { display: block; margin-bottom: 6px; color: #73e6c4; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.panel-heading h1, .inspector h2 { margin: 0; letter-spacing: -.035em; line-height: 1.15; }
.panel-heading h1 { font-size: 23px; } .inspector h2 { font-size: 22px; }
.panel-heading p, .inspector-lead { margin: 9px 0 0; color: var(--text-dim); font-size: 12px; line-height: 1.6; }

.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 18px; padding: 4px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-input); }
.tab { padding: 8px; border: 0; border-radius: 7px; background: transparent; color: var(--text-faint); font-size: 12px; font-weight: 600; cursor: pointer; }
.tab:hover { color: var(--text-dim); } .tab.active { color: var(--text); background: var(--bg-raised); box-shadow: 0 1px 2px rgba(0,0,0,.22); }
.field { display: block; margin-bottom: 15px; }
.label, fieldset > legend { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; color: var(--text-dim); font-size: 11px; font-weight: 600; }
.label output { color: #a9a1ff; font-family: var(--mono); font-size: 10.5px; } .sub { display: block; margin-top: 6px; color: var(--text-faint); font-size: 10.5px; }
textarea, select, input[type="text"], input[type="search"] { width: 100%; padding: 11px 12px; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); outline: none; background: var(--bg-input); font-size: 12.5px; }
textarea { min-height: 112px; resize: vertical; line-height: 1.55; }
textarea:focus, select:focus, input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(122,108,255,.1); }
textarea::placeholder, input::placeholder { color: #525c6f; }
.hint, .submission-note { margin: -4px 0 17px; color: var(--text-faint); font-size: 10.8px; line-height: 1.5; }
.submission-note { margin: 9px 2px 0; text-align: center; }

.dropzone { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 118px; padding: 20px; border: 1px dashed var(--border-strong); border-radius: 10px; background: rgba(255,255,255,.012); cursor: pointer; }
.dropzone:hover, .dropzone.dragover { border-color: var(--accent); background: rgba(122,108,255,.055); }
.upload-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: rgba(122,108,255,.13); color: #aaa2ff; font-size: 22px; font-weight: 300; }
.dropzone-inner { display: flex; flex-direction: column; } .dropzone-inner strong { font-size: 12px; } .dropzone-inner span { color: var(--text-faint); font-size: 10.5px; }
.thumbs { display: flex; flex-wrap: wrap; gap: 7px; margin: 10px 0 14px; }
.thumb { position: relative; width: 54px; height: 54px; overflow: hidden; border: 1px solid var(--border); border-radius: 7px; }
.thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.thumb button { position: absolute; top: 2px; right: 2px; width: 17px; height: 17px; padding: 0; border: 0; border-radius: 50%; background: rgba(0,0,0,.72); color: #fff; font-size: 11px; cursor: pointer; }

.engine-fieldset, .format-options { margin: 0 0 15px; padding: 0; border: 0; }
.engine-options { display: grid; gap: 7px; }
.engine-card, .format-card { position: relative; display: flex; align-items: center; gap: 10px; padding: 11px 12px; border: 1px solid var(--border); border-radius: 9px; background: var(--bg-input); cursor: pointer; }
.engine-card:hover, .format-card:hover { border-color: var(--border-strong); }
.engine-card.selected, .format-card.selected { border-color: var(--accent); background: rgba(122,108,255,.075); box-shadow: inset 0 0 0 1px rgba(122,108,255,.12); }
.engine-card.unavailable { opacity: .45; cursor: not-allowed; }
.engine-card input, .format-card input { accent-color: var(--accent); }
.engine-card-copy { display: flex; flex: 1; flex-direction: column; }
.engine-card strong, .format-card strong { font-size: 11.5px; } .engine-card small, .format-card small { color: var(--text-faint); font-size: 10px; }
.engine-kind { padding: 2px 6px; border: 1px solid var(--border); border-radius: 999px; color: var(--text-faint); font-family: var(--mono); font-size: 8.5px; text-transform: uppercase; }
.engine-card-both::after { content: ""; position: absolute; top: 6px; bottom: 6px; left: 3px; width: 2px; border-radius: 4px; background: linear-gradient(var(--accent),var(--accent-2)); opacity: .8; }
.advanced-settings { margin: 13px 0 16px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.advanced-settings summary { padding: 11px 0; color: var(--text-faint); font-size: 10.5px; cursor: pointer; }
.advanced-settings[open] { padding-bottom: 2px; }
.notice, .error { margin-bottom: 10px; padding: 9px 11px; border-radius: 8px; font-size: 10.5px; line-height: 1.45; }
.notice { color: var(--warn); background: rgba(231,169,70,.08); border: 1px solid rgba(231,169,70,.2); }
.error { color: var(--fail); background: rgba(234,101,92,.08); border: 1px solid rgba(234,101,92,.24); }
.btn-primary, .btn-secondary { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 13px; border-radius: 9px; font-size: 12px; font-weight: 700; cursor: pointer; }
.btn-primary { color: #07120d; border: 0; background: linear-gradient(135deg,#20c9e8,#78f238); box-shadow: 0 8px 20px rgba(32,201,232,.15); }
.btn-primary:hover:not(:disabled) { background: linear-gradient(135deg,#43d8ee,#92ff58); }
.btn-primary:disabled { color: var(--text-faint); background: var(--bg-raised); box-shadow: none; cursor: not-allowed; }
.button-arrow { margin-left: auto; }
.btn-secondary { margin-top: 8px; color: var(--text-dim); border: 1px solid var(--border); background: transparent; }
.btn-secondary:hover { color: var(--text); border-color: var(--border-strong); }

.library-search { position: relative; margin-bottom: 14px; } .library-search span { position: absolute; top: 9px; left: 11px; color: var(--text-faint); } .library-search input { padding-left: 29px; }
.job-list { list-style: none; margin: 0; padding: 0; }
.job-list li { margin-bottom: 6px; padding: 10px 11px; border: 1px solid transparent; border-radius: 9px; background: var(--bg-input); cursor: pointer; }
.job-list li:hover { border-color: var(--border-strong); } .job-list li.selected { border-color: var(--accent); }
.job-title { display: block; overflow: hidden; color: var(--text-dim); font-size: 11.5px; white-space: nowrap; text-overflow: ellipsis; }
.job-meta { display: flex; align-items: center; gap: 5px; margin-top: 3px; color: var(--text-faint); font-size: 9.5px; }
.job-meta .mark { width: 5px; height: 5px; border-radius: 50%; }
.mark.queued, .mark.running { background: var(--accent); } .mark.succeeded { background: var(--ok); } .mark.failed { background: var(--fail); }
.library-empty { padding: 28px 10px; color: var(--text-faint); text-align: center; font-size: 11px; }

.stage { position: relative; min-width: 0; min-height: 0; display: flex; flex-direction: column; isolation: isolate; background: radial-gradient(ellipse at 50% 42%,#1d2638 0,#111722 42%,#0b0f17 80%); }
.stage:fullscreen { width: 100vw; height: 100vh; }
.workflow-strip { position: absolute; top: 17px; left: 50%; z-index: 5; display: flex; align-items: center; transform: translateX(-50%); padding: 5px 7px; border: 1px solid rgba(80,91,113,.48); border-radius: 999px; background: rgba(10,14,22,.72); backdrop-filter: blur(10px); }
.workflow-strip i { width: 26px; height: 1px; background: var(--border-strong); }
.workflow-step { display: flex; align-items: center; gap: 6px; padding: 4px 7px; border: 0; background: transparent; color: var(--text-faint); font-size: 9.5px; white-space: nowrap; }
.workflow-step span { display: grid; place-items: center; width: 16px; height: 16px; border: 1px solid var(--border-strong); border-radius: 50%; font-family: var(--mono); font-size: 8px; }
.workflow-step.active { color: #ddd9ff; } .workflow-step.active span { color: #fff; border-color: var(--accent); background: var(--accent); }
.workflow-step.complete { color: var(--text-dim); cursor: pointer; } .workflow-step.complete span { color: var(--ok); border-color: var(--ok); }
.workflow-step:not(:disabled) { cursor: pointer; }
.workflow-step:disabled { cursor: default; }
.candidate-switcher { position: absolute; top: 66px; left: 50%; z-index: 5; display: flex; transform: translateX(-50%); padding: 3px; border: 1px solid var(--border-strong); border-radius: 9px; background: rgba(13,17,25,.9); backdrop-filter: blur(8px); }
.candidate-tab { padding: 6px 13px; border: 0; border-radius: 6px; background: transparent; color: var(--text-faint); font-size: 10.5px; cursor: pointer; }
.candidate-tab.active { color: var(--text); background: var(--bg-raised); } .candidate-tab small { margin-left: 5px; color: #8780e8; }
.review-heading { position: absolute; top: 73px; left: 24px; right: 24px; z-index: 4; display: flex; align-items: flex-start; justify-content: space-between; pointer-events: none; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.review-heading h2 { max-width: 430px; margin: 0; font-size: 20px; line-height: 1.18; letter-spacing: -.03em; }
.review-heading p { max-width: 440px; margin: 6px 0 0; color: var(--text-dim); font-size: 10.5px; }
.representation-badge { padding: 4px 8px; color: #bdc7d8; border: 1px solid rgba(115,130,154,.38); border-radius: 999px; background: rgba(14,18,27,.62); font-family: var(--mono); font-size: 9px; backdrop-filter: blur(8px); }
.viewer { flex: 1; min-height: 0; } .viewer canvas { display: block; width: 100%; height: 100%; touch-action: none; }
.viewer-empty { position: absolute; top: 50%; left: 50%; z-index: 3; width: min(350px,75%); transform: translate(-50%,-48%); color: var(--text-faint); text-align: center; pointer-events: none; }
.viewer-empty strong { display: block; margin-top: 24px; color: var(--text-dim); font-size: 13px; }
.viewer-empty p { margin: 7px auto 0; max-width: 320px; font-size: 10.5px; line-height: 1.6; }
.empty-orbit { position: relative; width: 80px; height: 80px; margin: auto; border: 1px solid rgba(122,108,255,.25); border-radius: 50%; transform: rotateX(63deg) rotateZ(-10deg); }
.empty-orbit::before, .empty-orbit::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(81,182,255,.16); border-radius: 50%; }
.empty-orbit::after { inset: 26px; background: linear-gradient(135deg,rgba(122,108,255,.5),rgba(81,182,255,.18)); box-shadow: 0 0 25px rgba(122,108,255,.2); }
.empty-orbit span { position: absolute; top: 9px; left: 12px; width: 7px; height: 7px; border-radius: 50%; background: #9c91ff; box-shadow: 0 0 12px #7a6cff; }
.progress { position: absolute; top: 50%; left: 50%; z-index: 8; display: flex; align-items: center; gap: 12px; padding: 14px 18px; transform: translate(-50%,-50%); border: 1px solid var(--border-strong); border-radius: 11px; background: rgba(13,17,25,.92); backdrop-filter: blur(10px); }
.spinner { width: 18px; height: 18px; border: 2px solid var(--border-strong); border-top-color: var(--accent); border-radius: 50%; animation: spin .7s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } }
.progress-text { display: flex; flex-direction: column; } .progress-text strong { font-size: 11.5px; } .progress-text span { color: var(--text-faint); font-size: 10px; }
.viewer-toolbar { z-index: 5; flex: 0 0 auto; display: flex; align-items: center; gap: 5px; min-height: 49px; padding: 8px 12px; border-top: 1px solid var(--border); background: rgba(13,17,25,.96); }
.view-switch { display: flex; padding: 2px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-input); }
.chip { padding: 5px 9px; border: 1px solid transparent; border-radius: 999px; background: transparent; color: var(--text-faint); font-size: 10px; cursor: pointer; }
.chip:hover { color: var(--text-dim); } .chip.active { color: #dcd8ff; border-color: rgba(122,108,255,.35); background: rgba(122,108,255,.12); }
.toolbar-divider { width: 1px; height: 18px; margin: 0 3px; background: var(--border); } .spacer { flex: 1; }
.mesh-stats { color: var(--text-faint); font-family: var(--mono); font-size: 9px; }
.icon-chip { display: grid; place-items: center; width: 29px; height: 29px; padding: 0; border: 1px solid transparent; border-radius: 7px; background: transparent; color: var(--text-faint); cursor: pointer; }
.icon-chip:hover { color: var(--text); border-color: var(--border); background: var(--bg-raised); }
.icon-chip svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.experience-list { list-style: none; margin: 24px 0 28px; padding: 0; }
.experience-list li { position: relative; display: flex; gap: 12px; min-height: 66px; color: var(--text-faint); }
.experience-list li:not(:last-child)::after { content: ""; position: absolute; top: 24px; bottom: 4px; left: 11px; width: 1px; background: var(--border); }
.experience-list > li > span { z-index: 1; display: grid; place-items: center; width: 23px; height: 23px; flex: 0 0 23px; border: 1px solid var(--border-strong); border-radius: 50%; background: var(--bg-panel); font-family: var(--mono); font-size: 8px; }
.experience-list li.active > span { color: #fff; border-color: var(--accent); background: var(--accent); box-shadow: 0 0 0 4px rgba(122,108,255,.09); }
.experience-list div { display: flex; flex-direction: column; padding-top: 1px; } .experience-list strong { color: var(--text-dim); font-size: 11px; }
.experience-list small { max-width: 205px; margin-top: 2px; font-size: 9.5px; line-height: 1.45; }
.principle-card { padding: 14px; border: 1px solid rgba(122,108,255,.2); border-radius: 10px; background: linear-gradient(145deg,rgba(122,108,255,.1),rgba(81,182,255,.035)); }
.principle-card span { display: block; margin-bottom: 5px; color: #9d94ff; font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.principle-card strong { font-size: 11.5px; } .principle-card p { margin: 4px 0 0; color: var(--text-faint); font-size: 9.5px; }
.review-checklist { margin: 20px 0; }
.review-checklist label { display: flex; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.review-checklist input { margin-top: 3px; accent-color: var(--accent); } .review-checklist span { display: flex; flex-direction: column; }
.review-checklist strong { color: var(--text-dim); font-size: 11px; } .review-checklist small { margin-top: 2px; color: var(--text-faint); font-size: 9.5px; line-height: 1.45; }
input[type="range"] { width: 100%; height: 4px; appearance: none; border-radius: 3px; background: var(--bg-raised); cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { width: 14px; height: 14px; appearance: none; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(122,108,255,.12); }
input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; border: 0; border-radius: 50%; background: var(--accent); }
.static-select { display: flex; justify-content: space-between; padding: 10px 11px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-input); }
.static-select strong { font-size: 11px; } .static-select small { color: var(--text-faint); font-size: 9.5px; }
.format-options { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; } .format-options legend { grid-column: 1 / -1; }
.format-card { flex-direction: column; align-items: flex-start; gap: 0; padding: 9px; } .format-card input { position: absolute; opacity: 0; }
.verdict { display: flex; align-items: center; gap: 8px; margin: 16px 0 10px; padding: 10px 11px; border-radius: 8px; font-size: 11px; font-weight: 700; }
.verdict.ok { color: var(--ok); border: 1px solid rgba(69,196,120,.28); background: rgba(69,196,120,.08); }
.verdict.warn { color: var(--warn); border: 1px solid rgba(231,169,70,.28); background: rgba(231,169,70,.08); }
.verdict.fail { color: var(--fail); border: 1px solid rgba(234,101,92,.28); background: rgba(234,101,92,.08); }
.variant-notice { display: flex; flex-direction: column; gap: 3px; margin: 14px 0 8px; padding: 10px 11px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-input); }
.variant-notice[hidden] { display: none; }
.variant-notice strong { font-size: 10.5px; }
.variant-notice span { color: var(--text-faint); font-size: 9.5px; line-height: 1.45; }
.variant-notice.preserved { color: var(--ok); border-color: rgba(69,196,120,.24); background: rgba(69,196,120,.06); }
.variant-notice.altered { color: var(--warn); border-color: rgba(231,169,70,.28); background: rgba(231,169,70,.07); }
.variant-notice.blocked { color: var(--fail); border-color: rgba(234,101,92,.3); background: rgba(234,101,92,.07); }
.findings { list-style: none; margin: 0 0 15px; padding: 0; }
.findings li { display: flex; gap: 7px; padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--text-faint); font-size: 9.5px; }
.findings .mark { width: 5px; height: 5px; flex: 0 0 5px; margin-top: 5px; border-radius: 50%; background: currentColor; }
.findings li.ok { color: var(--ok); } .findings li.warn { color: var(--warn); } .findings li.fail { color: var(--fail); }
.downloads { display: grid; gap: 6px; margin-bottom: 14px; }
.delivery-approved { display: flex; align-items: center; gap: 10px; margin: 14px 0 12px; padding: 11px; color: var(--ok); border: 1px solid rgba(69,196,120,.28); border-radius: 9px; background: rgba(69,196,120,.08); }
.delivery-approved > span { display: grid; place-items: center; width: 22px; height: 22px; flex: 0 0 22px; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; }
.delivery-approved div { display: flex; flex-direction: column; }
.delivery-approved strong { font-size: 11px; }
.delivery-approved small { margin-top: 1px; color: var(--text-faint); font-size: 9px; }
.final-checklist { margin-top: 10px; }
.dl { display: flex; align-items: center; justify-content: space-between; padding: 10px 11px; color: var(--text); border: 1px solid var(--border); border-radius: 8px; background: var(--bg-input); text-decoration: none; }
.dl:hover { border-color: var(--accent); } .dl-name { font-size: 11px; font-weight: 700; } .dl-meta { color: var(--text-faint); font-family: var(--mono); font-size: 8.5px; }
.technical-details { margin: 14px 0; padding: 10px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.technical-details summary { color: var(--text-faint); font-size: 10px; cursor: pointer; }
.stats { width: 100%; margin-top: 9px; border-collapse: collapse; font-size: 9.5px; } .stats td { padding: 4px 0; border-bottom: 1px solid var(--border); }
.stats td:first-child { color: var(--text-faint); } .stats td:last-child { text-align: right; font-family: var(--mono); } .steps { padding-left: 18px; color: var(--text-faint); font-size: 9px; }

@media (max-width: 1120px) {
  .app-shell { grid-template-columns: 64px 326px minmax(340px,1fr); }
  .inspector { position: absolute; top: 56px; right: 0; bottom: 0; z-index: 12; width: 326px; box-shadow: -20px 0 40px rgba(0,0,0,.25); }
  .app-shell.model-focus { grid-template-columns: 64px minmax(0,1fr) 300px; }
  .app-shell.model-focus .inspector { position: static; width: auto; box-shadow: none; }
  .rail-button { width: 50px; }
}
@media (max-width: 880px) {
  .app-shell { grid-template-columns: 58px 300px minmax(320px,1fr); overflow-x: auto; }
  .app-shell.model-focus { grid-template-columns: 58px minmax(360px,1fr) 280px; }
  .topbar-center { display: none; } .topbar { grid-template-columns: 1fr 1fr; }
  .review-heading { top: 68px; } .review-heading p { display: none; }
  .workflow-step { font-size: 0; } .workflow-step span { font-size: 8px; } .workflow-strip i { width: 15px; }
}
