dsh-tender-workbench 0.5.2 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/client.js CHANGED
@@ -5817,6 +5817,13 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
5817
5817
  if (node.kind === "leaf") return node.tabs.some((tab) => tab.id === tabId);
5818
5818
  return node.children.some((child) => treeContainsTab(child, tabId));
5819
5819
  }
5820
+ function treeFocusesTab(node, tabId) {
5821
+ return node.kind === "leaf" ? node.active === tabId && node.tabs.some((tab) => tab.id === tabId) : node.children.some((child) => treeFocusesTab(child, tabId));
5822
+ }
5823
+ function ownsWorkbench(state) {
5824
+ const owns = (node) => node.kind === "leaf" ? node.tabs.some((tab) => tab.type === TENDER_WORKBENCH_TAB_ID) : node.children.some(owns);
5825
+ return owns(state.splits) || owns(state.bottomSplits) || state.floats.some((item) => item.tab.type === "dsh-tender-workbench:agent");
5826
+ }
5820
5827
  /** Reveal only the panel that owns the workbench Tab; floating Tabs are already visible. */
5821
5828
  function revealTenderWorkbenchState(state, tabId) {
5822
5829
  if (state.floats.some((float) => float.tab.id === tabId)) return state;
@@ -5832,27 +5839,50 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
5832
5839
  }
5833
5840
  /**
5834
5841
  * Session-scoped, non-persistent handshake between an explicit product entry
5835
- * and the mounted Better Sidebar Tab. It owns no business state and becomes
5836
- * unreachable with the Client plugin Context.
5842
+ * and the mounted Better Sidebar Tab. No service means inert (isolated rendering
5843
+ * only). Production binds a probed service and explicitly disposes its listener.
5837
5844
  */
5838
- function createTenderWorkbenchRevealController() {
5845
+ function createTenderWorkbenchRevealController(service) {
5839
5846
  const targets = /* @__PURE__ */ new Map();
5840
5847
  const pending = /* @__PURE__ */ new Set();
5848
+ let disposed = false;
5849
+ const flush = (sessionId) => {
5850
+ if (disposed || !pending.has(sessionId)) return;
5851
+ if (service === void 0 || service.getSnapshot().sessionId !== sessionId) return;
5852
+ const snapshot = service.getSnapshot();
5853
+ if (snapshot.state !== void 0 && !ownsWorkbench(snapshot.state)) {
5854
+ pending.delete(sessionId);
5855
+ return;
5856
+ }
5857
+ const target = targets.get(sessionId);
5858
+ if (target === void 0) return;
5859
+ pending.delete(sessionId);
5860
+ target.store.reduce((state) => service.getSnapshot().sessionId === sessionId && (treeFocusesTab(state.splits, target.tabId) || treeFocusesTab(state.bottomSplits, target.tabId)) ? revealTenderWorkbenchState(state, target.tabId) : state);
5861
+ };
5862
+ const unsubscribe = service?.subscribeState(() => {
5863
+ const sessionId = service.getSnapshot().sessionId;
5864
+ if (sessionId !== void 0) flush(sessionId);
5865
+ });
5841
5866
  return {
5842
5867
  attach(sessionId, target) {
5868
+ if (disposed) return () => {};
5843
5869
  targets.set(sessionId, target);
5844
- if (pending.delete(sessionId)) target.store.reduce((state) => revealTenderWorkbenchState(state, target.tabId));
5870
+ flush(sessionId);
5845
5871
  return () => {
5846
5872
  if (targets.get(sessionId) === target) targets.delete(sessionId);
5847
5873
  };
5848
5874
  },
5849
5875
  request(sessionId) {
5850
- const target = targets.get(sessionId);
5851
- if (target === void 0) {
5852
- pending.add(sessionId);
5853
- return;
5854
- }
5855
- target.store.reduce((state) => revealTenderWorkbenchState(state, target.tabId));
5876
+ if (disposed) return;
5877
+ pending.add(sessionId);
5878
+ flush(sessionId);
5879
+ },
5880
+ dispose() {
5881
+ if (disposed) return;
5882
+ disposed = true;
5883
+ unsubscribe?.();
5884
+ pending.clear();
5885
+ targets.clear();
5856
5886
  }
5857
5887
  };
5858
5888
  }
@@ -5877,7 +5907,8 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
5877
5907
  "registerTab",
5878
5908
  "isTabEnabled",
5879
5909
  "openTab",
5880
- "getSnapshot"
5910
+ "getSnapshot",
5911
+ "subscribeState"
5881
5912
  ]) if (typeof service[method] !== "function") throw new Error(`dsh-tender-workbench requires the Better Sidebar ${method}() capability`);
5882
5913
  const features = Array.isArray(service.features) ? service.features : [];
5883
5914
  if (!features.includes("targetedOpen")) throw new Error("dsh-tender-workbench requires the Better Sidebar targetedOpen capability");
@@ -5897,14 +5928,13 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
5897
5928
  }
5898
5929
  /**
5899
5930
  * Create or focus the workbench Tab in the explicitly supplied Session. A
5900
- * reveal request is emitted only when that Session is currently on screen;
5901
- * inactive targeted opens never alter a hidden Session's panel geometry.
5931
+ * pending reveal is consumed only when its Session becomes current.
5902
5932
  */
5903
5933
  function openTenderWorkbench(service, scope, reveal) {
5904
5934
  assertBetterSidebarContract(service);
5905
5935
  if (!service.isTabEnabled("dsh-tender-workbench:agent")) return false;
5906
5936
  service.openTab({ type: TENDER_WORKBENCH_TAB_ID }, scope);
5907
- if (service.getSnapshot().sessionId === scope.sessionId) reveal.request(scope.sessionId);
5937
+ reveal.request(scope.sessionId);
5908
5938
  return true;
5909
5939
  }
5910
5940
  //#endregion
@@ -20796,6 +20826,47 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
20796
20826
  return errors;
20797
20827
  }
20798
20828
  //#endregion
20829
+ //#region src/client/workbench/session-view-memory.ts
20830
+ /** Client-lifetime view memory only. Never stores task facts or host geometry. */
20831
+ function createSessionViewMemory() {
20832
+ const sessions = /* @__PURE__ */ new Map();
20833
+ let disposed = false;
20834
+ return {
20835
+ read(sessionId, key, initial) {
20836
+ const values = sessions.get(sessionId);
20837
+ return values?.has(key) ? values.get(key) : initial();
20838
+ },
20839
+ write(sessionId, key, value) {
20840
+ if (disposed) return;
20841
+ let values = sessions.get(sessionId);
20842
+ if (values === void 0) {
20843
+ values = /* @__PURE__ */ new Map();
20844
+ sessions.set(sessionId, values);
20845
+ }
20846
+ values.set(key, value);
20847
+ },
20848
+ dispose() {
20849
+ disposed = true;
20850
+ sessions.clear();
20851
+ }
20852
+ };
20853
+ }
20854
+ /** The production view is keyed by Session: remounts recover only that Session. */
20855
+ function useSessionViewState(memory, sessionId, key, initial) {
20856
+ const [value, setValue] = (0, react.useState)(() => memory.read(sessionId, key, initial));
20857
+ return [value, (0, react.useCallback)((next) => {
20858
+ setValue((previous) => {
20859
+ const resolved = typeof next === "function" ? next(previous) : next;
20860
+ memory.write(sessionId, key, resolved);
20861
+ return resolved;
20862
+ });
20863
+ }, [
20864
+ memory,
20865
+ sessionId,
20866
+ key
20867
+ ])];
20868
+ }
20869
+ //#endregion
20799
20870
  //#region src/client/workbench/navigation-controller.ts
20800
20871
  /** Single front-stage mapping for the seven non-linear Projection nodes. */
20801
20872
  const TENDER_WORKBENCH_PHASES = [
@@ -20858,23 +20929,31 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
20858
20929
  /** Session-scoped transient navigation; it never represents workflow progress. */
20859
20930
  function createTenderWorkbenchNavigationController() {
20860
20931
  const targets = /* @__PURE__ */ new Map();
20861
- const pending = /* @__PURE__ */ new Map();
20932
+ const views = /* @__PURE__ */ new Map();
20933
+ let disposed = false;
20934
+ const memory = createSessionViewMemory();
20862
20935
  return {
20936
+ memory,
20937
+ currentView: (sessionId) => views.get(sessionId) ?? "opportunity",
20863
20938
  attach(sessionId, select) {
20939
+ if (disposed) return () => {};
20864
20940
  targets.set(sessionId, select);
20865
- const requested = pending.get(sessionId);
20866
- if (requested !== void 0) {
20867
- pending.delete(sessionId);
20868
- select(requested);
20869
- }
20941
+ const requested = views.get(sessionId);
20942
+ if (requested !== void 0) select(requested);
20870
20943
  return () => {
20871
20944
  if (targets.get(sessionId) === select) targets.delete(sessionId);
20872
20945
  };
20873
20946
  },
20874
20947
  request(sessionId, phase) {
20875
- const select = targets.get(sessionId);
20876
- if (select === void 0) pending.set(sessionId, phase);
20877
- else select(phase);
20948
+ if (disposed || views.get(sessionId) === phase) return;
20949
+ views.set(sessionId, phase);
20950
+ targets.get(sessionId)?.(phase);
20951
+ },
20952
+ dispose() {
20953
+ disposed = true;
20954
+ targets.clear();
20955
+ views.clear();
20956
+ memory.dispose();
20878
20957
  }
20879
20958
  };
20880
20959
  }
@@ -21112,7 +21191,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
21112
21191
  }
21113
21192
  //#endregion
21114
21193
  //#region \0dsh-tender-workbench-css:/home/runner/work/dsh-tender-workbench/dsh-tender-workbench/src/client/workbench/tender-workbench.module.css.mjs
21115
- const css = "._3GiIGG_shell{--tw-font-body:14px;--tw-font-table:13px;--tw-font-caption:12px;--tw-font-label:13px;--tw-font-title:20px;--tw-font-section:18px;--tw-line-body:1.55;--tw-control-height:40px;--tw-space-1:4px;--tw-space-2:8px;--tw-space-3:12px;--tw-space-4:16px;--tw-space-5:24px;--tw-space-6:32px;--tw-radius-sm:6px;--tw-radius:6px;--tw-radius-lg:8px;--tw-brand:var(--qcc-action);--tw-brand-strong:var(--qcc-hover);--tw-brand-soft:var(--qcc-selected);--tw-blue:var(--qcc-action);--tw-blue-soft:var(--qcc-selected);--tw-success:var(--qcc-success);--tw-success-soft:var(--qcc-success-bg);--tw-warning:var(--qcc-review);--tw-warning-soft:var(--qcc-review-bg);--tw-danger:var(--dsw-alias-state-error-primary,#b64141);--tw-danger-soft:color-mix(in srgb, var(--tw-danger) 10%, var(--tw-surface));--tw-purple:light-dark(#7756a6,#c6a6eb);--tw-purple-soft:light-dark(#f0eafb,#302640);--tw-ink:var(--qcc-text);--tw-muted:var(--qcc-muted);--tw-faint:var(--qcc-muted);--tw-line:var(--qcc-border);--tw-line-strong:var(--qcc-border);--tw-surface:var(--qcc-surface);--tw-surface-2:var(--qcc-page);--tw-surface-3:var(--qcc-table-head);--tw-hero-text:var(--qcc-on-action);width:100%;min-width:0;height:100%;min-height:0;color:var(--tw-ink);background:var(--tw-surface);font-family:Inter,Segoe UI,PingFang SC,Microsoft YaHei,sans-serif;font-size:var(--tw-font-body);line-height:var(--tw-line-body);-webkit-font-smoothing:antialiased;grid-template-rows:auto auto minmax(0,1fr) auto;display:grid;overflow:hidden;container:_3GiIGG_tender-workbench/inline-size}._3GiIGG_shell,._3GiIGG_shell *{box-sizing:border-box}._3GiIGG_shell :where(button,input,select,textarea){min-width:0;color:inherit;font:inherit;letter-spacing:0}._3GiIGG_shell :where(button,input,select,textarea,a,summary):focus-visible{outline:3px solid var(--tw-brand);outline-offset:2px}._3GiIGG_shell button{cursor:pointer}._3GiIGG_shell button:disabled{cursor:not-allowed;opacity:.54}._3GiIGG_shell :where(h1,h2,h3,h4,p,dl,dd,ol,ul){margin-top:0}._3GiIGG_icon{fill:none;stroke:currentColor;stroke-width:1.8px;stroke-linecap:round;stroke-linejoin:round;width:18px;height:18px;display:block}._3GiIGG_header{justify-content:space-between;align-items:center;gap:var(--tw-space-4);border-bottom:1px solid var(--tw-line);background:var(--tw-surface);min-height:64px;padding:10px 20px;display:flex}._3GiIGG_brandBlock,._3GiIGG_titleRow,._3GiIGG_status,._3GiIGG_footer,._3GiIGG_primary,._3GiIGG_secondary,._3GiIGG_ghostButton,._3GiIGG_backButton,._3GiIGG_rowAction,._3GiIGG_iconButton,._3GiIGG_nextActions,._3GiIGG_surfaceActions{align-items:center;display:flex}._3GiIGG_brandBlock{gap:11px;min-width:0}._3GiIGG_brandIcon{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);width:36px;height:36px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);flex:0 0 36px;place-items:center;display:grid}._3GiIGG_brandCopy,._3GiIGG_pageHeadingCopy,._3GiIGG_footerCopy,._3GiIGG_rowMain,._3GiIGG_reportFileHeader>div,._3GiIGG_surfaceHeader>div{min-width:0}._3GiIGG_titleRow{gap:8px}._3GiIGG_title{margin:0;font-size:15px;font-weight:750;line-height:1.35}._3GiIGG_subtitle{color:var(--tw-muted);font-size:var(--tw-font-caption);text-overflow:ellipsis;white-space:nowrap;margin:2px 0 0;overflow:hidden}._3GiIGG_liveDot{background:var(--tw-muted);border-radius:50%;width:7px;height:7px;box-shadow:0 0 0 3px #98a2b326}._3GiIGG_liveDot[data-status=ready]{background:var(--tw-success)}._3GiIGG_liveDot[data-status=running],._3GiIGG_liveDot[data-status=waiting-agent]{background:var(--tw-brand)}._3GiIGG_liveDot[data-status=failed],._3GiIGG_liveDot[data-status=unavailable]{background:var(--tw-danger)}._3GiIGG_headerMeta{align-items:center;gap:var(--tw-space-2);flex:none;display:flex}._3GiIGG_status{border:1px solid var(--tw-line);min-height:30px;color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);white-space:nowrap;border-radius:999px;gap:7px;padding:5px 10px;font-weight:650}._3GiIGG_status>span{background:currentColor;border-radius:50%;width:7px;height:7px}._3GiIGG_status[data-status=ready]{color:var(--tw-success);background:var(--tw-success-soft);border-color:var(--tw-line)}._3GiIGG_status[data-status=waiting-agent],._3GiIGG_status[data-status=running]{color:var(--tw-brand-strong);background:var(--tw-brand-soft);border-color:var(--tw-line)}._3GiIGG_status[data-status=failed],._3GiIGG_status[data-status=unavailable]{color:var(--tw-danger);background:var(--tw-danger-soft);border-color:var(--tw-line)}._3GiIGG_executionPlan summary,._3GiIGG_savedNoteDetails summary{cursor:pointer;font-weight:650}._3GiIGG_stages{border-bottom:1px solid var(--tw-line);background:var(--tw-surface);grid-template-columns:repeat(4,minmax(0,1fr));min-height:62px;display:grid}._3GiIGG_stage{border:0;border-right:1px solid var(--tw-line);min-width:0;color:var(--tw-muted);text-align:left;background:0 0;justify-content:center;align-items:center;gap:10px;padding:10px 12px;display:flex;position:relative}._3GiIGG_stage:last-child{border-right:0}._3GiIGG_stage:hover{color:var(--tw-ink);background:var(--tw-surface-2)}._3GiIGG_stageSelected{color:var(--tw-brand-strong);background:var(--tw-brand-soft)}._3GiIGG_stageSelected:after{background:var(--tw-brand);content:\"\";border-radius:3px 3px 0 0;height:3px;position:absolute;bottom:-1px;left:18px;right:18px}._3GiIGG_stageIcon{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);flex:0 0 32px;place-items:center;width:32px;height:32px;display:grid}._3GiIGG_stageSelected ._3GiIGG_stageIcon{border-color:var(--tw-line);background:var(--tw-brand-soft)}._3GiIGG_stage[data-phase-status=completed] ._3GiIGG_stageIcon{color:var(--tw-success);border-color:var(--tw-line);background:var(--tw-success-soft)}._3GiIGG_stage[data-phase-status=failed] ._3GiIGG_stageIcon{color:var(--tw-danger);border-color:var(--tw-line);background:var(--tw-danger-soft)}._3GiIGG_stageCopy{gap:1px;min-width:0;display:grid}._3GiIGG_stageCopy strong{font-size:var(--tw-font-label);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._3GiIGG_stageCopy small{color:var(--tw-faint);font-size:11px}._3GiIGG_body{min-width:0;min-height:0;padding:var(--tw-space-5);overscroll-behavior:contain;background:var(--tw-surface-2);scrollbar-gutter:stable;scroll-padding-block-end:calc(62px + var(--tw-space-4));overflow:auto}._3GiIGG_stagePanel{outline:none;width:min(100%,1320px);min-width:0;margin:0 auto}._3GiIGG_dataView,._3GiIGG_s4View,._3GiIGG_reportWorkspace{gap:var(--tw-space-4);display:grid}._3GiIGG_pageHeading{justify-content:space-between;align-items:flex-end;gap:var(--tw-space-5);padding:0 2px 2px;display:flex}._3GiIGG_eyebrow{color:var(--tw-brand-strong);text-transform:uppercase;margin:0 0 5px;font-size:11px;font-weight:750}._3GiIGG_pageHeading h2{font-size:var(--tw-font-title);margin:0;font-weight:760;line-height:1.25}._3GiIGG_pageHeading p:not(._3GiIGG_eyebrow){max-width:760px;color:var(--tw-muted);margin:7px 0 0}._3GiIGG_pageHeadingAside{flex:none}._3GiIGG_statusPill{border:1px solid var(--tw-line);min-height:26px;color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);border-radius:999px;justify-content:center;align-items:center;padding:3px 9px;font-weight:650;line-height:1.35;display:inline-flex}._3GiIGG_statusPill[data-tone=brand]{color:var(--tw-brand-strong);border-color:var(--tw-line);background:var(--tw-brand-soft)}._3GiIGG_statusPill[data-tone=success]{color:var(--tw-success);border-color:var(--tw-line);background:var(--tw-success-soft)}._3GiIGG_statusPill[data-tone=warning]{color:var(--tw-warning);border-color:var(--tw-line);background:var(--tw-warning-soft)}._3GiIGG_statusPill[data-tone=danger]{color:var(--tw-danger);border-color:var(--tw-line);background:var(--tw-danger-soft)}._3GiIGG_statusPill[data-tone=purple]{color:var(--tw-purple);border-color:var(--tw-line);background:var(--tw-purple-soft)}._3GiIGG_surfaceHeader{justify-content:space-between;align-items:flex-start;gap:var(--tw-space-3);border-bottom:1px solid var(--tw-line);padding:16px 18px 13px;display:flex}._3GiIGG_surfaceHeader h3{font-size:var(--tw-font-section);margin:0;line-height:1.35}._3GiIGG_surfaceHeader p{color:var(--tw-muted);font-size:var(--tw-font-label);margin:4px 0 0}._3GiIGG_metricGrid,._3GiIGG_s4Summary,._3GiIGG_classificationGrid,._3GiIGG_reportMetrics{gap:var(--tw-space-3);grid-template-columns:repeat(4,minmax(0,1fr));display:grid}._3GiIGG_metricCard{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);align-content:center;gap:2px;min-width:0;min-height:112px;padding:15px 16px 14px;display:grid;position:relative;overflow:hidden}._3GiIGG_metricCard:before{background:var(--tw-line-strong);content:\"\";width:3px;position:absolute;top:0;bottom:0;left:0}._3GiIGG_metricCard[data-tone=brand]:before{background:var(--tw-brand)}._3GiIGG_metricCard[data-tone=success]:before{background:var(--tw-success)}._3GiIGG_metricCard[data-tone=warning]:before{background:var(--tw-warning)}._3GiIGG_metricCard[data-tone=danger]:before{background:var(--tw-danger)}._3GiIGG_metricCard[data-tone=purple]:before{background:var(--tw-purple)}._3GiIGG_metricCard>span{color:var(--tw-muted);font-size:var(--tw-font-label)}._3GiIGG_metricCard>strong{font-variant-numeric:tabular-nums;font-size:26px;line-height:1.2}._3GiIGG_metricCard>small{overflow-wrap:anywhere;color:var(--tw-faint);font-size:var(--tw-font-caption)}._3GiIGG_metricCard[data-zero=true]{opacity:.58}._3GiIGG_statePanel,._3GiIGG_feedback,._3GiIGG_writeProgress{border:1px solid var(--tw-line);border-left:3px solid var(--tw-line-strong);border-radius:var(--tw-radius);color:var(--tw-ink);background:var(--tw-surface);grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:11px;padding:12px 14px;display:grid}._3GiIGG_statePanel[data-tone=brand],._3GiIGG_feedback[data-tone=progress]{border-left-color:var(--tw-brand);background:var(--tw-brand-soft)}._3GiIGG_statePanel[data-tone=success],._3GiIGG_feedback[data-tone=success]{border-left-color:var(--tw-success);background:var(--tw-success-soft)}._3GiIGG_statePanel[data-tone=warning],._3GiIGG_feedback[data-tone=notice]{border-left-color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_statePanel[data-tone=danger],._3GiIGG_feedback[data-tone=error],._3GiIGG_writeProgress[data-write-phase=failed]{border-left-color:var(--tw-danger);background:var(--tw-danger-soft)}._3GiIGG_statePanel[data-tone=purple]{border-left-color:var(--tw-purple);background:var(--tw-purple-soft)}._3GiIGG_stateMark{background:var(--tw-line-strong);border-radius:50%;width:9px;height:9px}._3GiIGG_statePanel[data-tone=brand] ._3GiIGG_stateMark{background:var(--tw-brand)}._3GiIGG_statePanel[data-tone=success] ._3GiIGG_stateMark{background:var(--tw-success)}._3GiIGG_statePanel[data-tone=warning] ._3GiIGG_stateMark{background:var(--tw-warning)}._3GiIGG_statePanel[data-tone=danger] ._3GiIGG_stateMark{background:var(--tw-danger)}._3GiIGG_statePanel[data-tone=purple] ._3GiIGG_stateMark{background:var(--tw-purple)}._3GiIGG_statePanel p,._3GiIGG_feedback p,._3GiIGG_writeProgress small{color:var(--tw-muted);font-size:var(--tw-font-label);margin:2px 0 0}._3GiIGG_feedbackIcon{width:26px;height:26px;color:var(--tw-muted);place-items:center;display:grid}._3GiIGG_feedbackStack{gap:var(--tw-space-2);display:grid}._3GiIGG_progressMeter{gap:7px;min-width:180px;display:grid}._3GiIGG_progressMeter>div{color:var(--tw-muted);font-size:var(--tw-font-caption);justify-content:space-between;gap:12px;display:flex}._3GiIGG_progressMeter strong{color:var(--tw-ink);font-variant-numeric:tabular-nums}._3GiIGG_progressMeter progress{background:var(--tw-surface-3);width:100%;height:7px;accent-color:var(--tw-brand);border:0;border-radius:999px;overflow:hidden}._3GiIGG_progressMeter progress::-webkit-progress-bar{background:var(--tw-surface-3);border-radius:999px}._3GiIGG_progressMeter progress::-webkit-progress-value{background:var(--tw-brand);border-radius:999px}._3GiIGG_primary,._3GiIGG_secondary,._3GiIGG_backButton,._3GiIGG_rowAction,._3GiIGG_iconButton{min-height:var(--tw-control-height);border-radius:var(--tw-radius);justify-content:center;gap:7px;padding:8px 14px;font-weight:680;line-height:1.25;text-decoration:none}._3GiIGG_primary{border:1px solid var(--tw-brand);color:var(--qcc-on-action);background:var(--tw-brand)}._3GiIGG_primary:hover:not(:disabled){border-color:var(--tw-brand-strong);background:var(--tw-brand-strong)}._3GiIGG_secondary,._3GiIGG_backButton,._3GiIGG_rowAction{border:1px solid var(--tw-line-strong);color:var(--tw-ink);background:var(--tw-surface)}._3GiIGG_secondary:hover:not(:disabled),._3GiIGG_backButton:hover:not(:disabled),._3GiIGG_rowAction:hover:not(:disabled){border-color:var(--tw-brand-strong);background:var(--tw-surface-2)}._3GiIGG_ghostButton{min-height:var(--tw-control-height);border-radius:var(--tw-radius);color:var(--tw-muted);background:0 0;border:0;padding:7px 9px}._3GiIGG_ghostButton:hover:not(:disabled){color:var(--tw-ink);background:var(--tw-surface-2)}._3GiIGG_iconButton{width:var(--tw-control-height);border:1px solid var(--tw-line);background:var(--tw-surface);padding:0;font-size:20px}._3GiIGG_backButton{width:max-content;min-height:34px;color:var(--tw-muted);font-size:var(--tw-font-label);padding:5px 9px}._3GiIGG_spinner{border:2px solid;border-right-color:#0000;border-radius:50%;width:15px;height:15px;animation:.76s linear infinite _3GiIGG_tw-spin}@keyframes _3GiIGG_tw-spin{to{transform:rotate(360deg)}}._3GiIGG_shell :where(input,select,textarea){width:100%;min-height:var(--tw-control-height);border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);padding:8px 10px}._3GiIGG_shell textarea{resize:vertical;min-height:76px}._3GiIGG_shell :where(input,select,textarea)::placeholder{color:var(--tw-faint)}._3GiIGG_shell :where(input,select,textarea):hover:not(:disabled){border-color:var(--tw-brand-strong)}._3GiIGG_shell :where(input,select,textarea)[aria-invalid=true]{border-color:var(--tw-danger);background:var(--tw-danger-soft)}._3GiIGG_field,._3GiIGG_editorGrid label,._3GiIGG_reviewBulkNote,._3GiIGG_decisionEditor label{gap:6px;display:grid}._3GiIGG_field>span,._3GiIGG_editorGrid label>span,._3GiIGG_reviewBulkNote>span,._3GiIGG_decisionEditor label>span{color:var(--tw-ink);font-size:var(--tw-font-label);font-weight:680}._3GiIGG_field>small{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_fieldError,._3GiIGG_inlineError{color:var(--tw-danger);font-size:var(--tw-font-label);margin:0}._3GiIGG_footer{justify-content:space-between;gap:var(--tw-space-4);border-top:1px solid var(--tw-line);background:var(--tw-surface);min-height:62px;padding:10px 20px;box-shadow:0 -6px 18px #1119230a}._3GiIGG_footerCopy{gap:2px;display:grid}._3GiIGG_footerHint{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_disabledReason{color:var(--tw-warning);font-size:var(--tw-font-caption)}._3GiIGG_footerPortal{display:contents}._3GiIGG_footerActions{align-items:center;gap:8px;display:flex}._3GiIGG_queryCard,._3GiIGG_dataCard,._3GiIGG_screenCard,._3GiIGG_ruleListPanel,._3GiIGG_ruleEditor,._3GiIGG_summarySurface,._3GiIGG_queuePanel,._3GiIGG_analysisDetail,._3GiIGG_reviewDetail,._3GiIGG_reportCreate,._3GiIGG_reportDelivery{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);min-width:0;overflow:hidden;box-shadow:0 2px 8px #1119230a}._3GiIGG_summaryInline{flex-wrap:wrap;justify-content:flex-end;gap:7px;display:flex}._3GiIGG_queryCard{gap:var(--tw-space-3);background:0 0;border:0;display:grid}._3GiIGG_queryLayout{grid-template-columns:minmax(540px,1fr) 320px;align-items:start;gap:15px;min-height:0;display:grid}._3GiIGG_queryMain{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);min-width:0;margin:0;padding:0;overflow:visible;box-shadow:0 2px 8px #1119230a}._3GiIGG_queryMain>legend{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_querySection{padding:15px}._3GiIGG_scopeSurface{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-brand-soft);flex-wrap:wrap;justify-content:space-between;align-items:center;gap:10px;margin:15px;padding:12px 14px;display:flex}._3GiIGG_scopeCopy{gap:2px;display:grid}._3GiIGG_scopeCopy strong{color:var(--tw-brand)}._3GiIGG_scopeCopy span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_scopeGroup{border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);margin:0;padding:3px;display:flex}._3GiIGG_scopeButton{border-radius:var(--tw-radius-sm);min-height:32px;color:var(--tw-muted);font-size:var(--tw-font-label);background:0 0;border:0;padding:5px 10px}._3GiIGG_scopeGroup ._3GiIGG_scopeButton[aria-pressed=true]{color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-weight:700}._3GiIGG_formSectionHeading{justify-content:space-between;align-items:center;gap:12px;margin-bottom:11px;display:flex}._3GiIGG_formSectionHeading h3{font-size:var(--tw-font-section);margin:0}._3GiIGG_formSectionHeading p{color:var(--tw-muted);font-size:var(--tw-font-label);margin:3px 0 0}._3GiIGG_formSectionHeading>span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_queryCommonFields{grid-template-columns:minmax(260px,1fr) minmax(300px,1.1fr);gap:14px;display:grid}._3GiIGG_queryFieldFull{grid-column:1/-1}._3GiIGG_queryFieldBlock{gap:7px;min-width:0;padding:0;display:grid}._3GiIGG_queryFieldLabel{color:var(--tw-muted);font-size:var(--tw-font-label);justify-content:space-between;align-items:center;gap:8px;font-weight:700;display:flex}._3GiIGG_queryFieldLabel small{color:var(--tw-muted);font-size:var(--tw-font-caption);font-weight:450;line-height:1.4}._3GiIGG_queryFieldControl{gap:8px;display:grid}._3GiIGG_keywordTokens{min-height:var(--tw-control-height);border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);flex-wrap:wrap;align-items:center;gap:5px;padding:5px 8px;display:flex}._3GiIGG_keywordTokens>span,._3GiIGG_queryRegionSelected>button{border-radius:var(--tw-radius-sm);min-height:27px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-size:var(--tw-font-label);border:0;align-items:center;gap:4px;padding:3px 7px;display:inline-flex}._3GiIGG_keywordTokens>span button{width:19px;height:19px;color:var(--tw-brand-strong);background:0 0;border:0;border-radius:50%;place-items:center;padding:0;display:grid}._3GiIGG_keywordTokens>input{background:0 0;border:0;outline:0;flex:1;min-width:180px;min-height:29px;padding:2px 4px}._3GiIGG_queryChoices{flex-wrap:wrap;gap:6px;display:flex}._3GiIGG_queryChoice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);min-height:30px;color:var(--tw-muted);background:var(--tw-surface);font-size:var(--tw-font-caption);padding:4px 9px}._3GiIGG_queryChoice:hover:not(:disabled){border-color:var(--tw-brand-strong)}._3GiIGG_queryChoice[aria-pressed=true]{border-color:var(--tw-brand);color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-weight:700}._3GiIGG_queryInlineExtra{border-left:3px solid var(--tw-brand);background:var(--tw-brand-soft);align-items:end;gap:8px;padding:9px 10px;display:flex}._3GiIGG_queryInlineExtra label{color:var(--tw-muted);font-size:var(--tw-font-caption);gap:4px;display:grid}._3GiIGG_queryInlineExtra :where(input,select){border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);min-height:34px;padding:5px 8px}._3GiIGG_queryGoalInput{border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);width:100%;min-height:38px;padding:7px 10px}._3GiIGG_queryRegionControl{border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius-lg);background:var(--tw-surface);padding:10px;position:relative}._3GiIGG_queryRegionSelected{min-height:27px;color:var(--tw-muted);flex-wrap:wrap;align-items:center;gap:5px;display:flex}._3GiIGG_queryRegionActions{justify-content:space-between;align-items:center;gap:10px;margin-top:8px;display:flex}._3GiIGG_queryRegionActions>span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_queryRegionActions>button{color:var(--tw-brand);font-size:var(--tw-font-label);background:0 0;border:0;padding:0;font-weight:650}._3GiIGG_queryRegionPicker{z-index:8;border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius-lg);background:var(--tw-surface);position:absolute;top:calc(100% + 6px);left:0;right:0;overflow:hidden;box-shadow:0 16px 34px #1119232e}._3GiIGG_queryRegionSearch{border-bottom:1px solid var(--tw-line);align-items:center;gap:9px;padding:9px;display:flex}._3GiIGG_queryRegionSearch input{border:1px solid var(--tw-line);border-radius:var(--tw-radius);flex:1;min-height:35px;padding:6px 9px}._3GiIGG_queryRegionSearch span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_queryRegionColumns{grid-template-columns:repeat(3,minmax(150px,1fr));min-height:230px;max-height:330px;display:grid;overflow-x:auto}._3GiIGG_queryRegionColumn{border-right:1px solid var(--tw-line);min-width:150px}._3GiIGG_queryRegionColumn>strong{color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);padding:7px 9px;display:block}._3GiIGG_queryRegionColumn>div{max-height:292px;overflow-y:auto}._3GiIGG_queryRegionColumn button,._3GiIGG_queryRegionResults button{width:100%;min-height:32px;color:var(--tw-ink);text-align:left;background:0 0;border:0;grid-template-columns:18px minmax(0,1fr) auto;align-items:center;gap:5px;padding:5px 9px;display:grid}._3GiIGG_queryRegionColumn button:hover,._3GiIGG_queryRegionColumn button[data-active=true],._3GiIGG_queryRegionResults button:hover{background:var(--tw-brand-soft)}._3GiIGG_queryRegionColumn button[aria-pressed=true],._3GiIGG_queryRegionResults button[aria-pressed=true]{color:var(--tw-brand-strong);font-weight:700}._3GiIGG_queryRegionColumn i{color:var(--tw-muted);font-style:normal}._3GiIGG_queryRegionResults{max-height:300px;padding:5px;overflow-y:auto}._3GiIGG_queryRegionResults p{color:var(--tw-muted);text-align:center;margin:18px}._3GiIGG_queryRegionPicker footer{border-top:1px solid var(--tw-line);background:var(--tw-surface-2);justify-content:space-between;gap:8px;padding:8px 9px;display:flex}._3GiIGG_queryRegionPicker footer button{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);min-height:31px;padding:5px 10px}._3GiIGG_queryRegionPicker footer button:last-child{border-color:var(--tw-brand);color:var(--qcc-on-action);background:var(--tw-brand)}._3GiIGG_queryBranchTabs{border-top:1px solid var(--tw-line);border-bottom:1px solid var(--tw-line);background:var(--tw-surface-2);gap:4px;padding:4px 4px 0;display:flex;overflow-x:auto}._3GiIGG_queryBranchTabs button{min-height:40px;color:var(--tw-muted);font-size:var(--tw-font-label);white-space:nowrap;background:0 0;border:0;border-bottom:2px solid #0000;padding:0 13px}._3GiIGG_queryBranchTabs button[aria-selected=true]{border-bottom-color:var(--tw-brand);color:var(--tw-brand-strong);font-weight:700}._3GiIGG_queryBranchTabs span{color:var(--tw-muted);background:var(--tw-surface-2);border-radius:999px;margin-left:5px;padding:2px 5px;font-size:10px}._3GiIGG_queryBranchTabs button[aria-selected=true] span{color:var(--tw-brand-strong);background:var(--tw-brand-soft)}._3GiIGG_queryBranchPanel{display:block}._3GiIGG_queryBranchBody{padding:15px}._3GiIGG_queryRichRow{border-top:1px solid var(--tw-line);grid-template-columns:116px minmax(0,1fr);gap:14px;padding:12px 0;display:grid}._3GiIGG_queryRichRow:first-child{border-top:0}._3GiIGG_queryRichLabel strong,._3GiIGG_queryRichLabel span{display:block}._3GiIGG_queryRichLabel strong{color:var(--tw-muted);font-size:var(--tw-font-label)}._3GiIGG_queryRichLabel span{color:var(--tw-muted);font-size:var(--tw-font-caption);margin-top:3px}._3GiIGG_queryDisclosure{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface-2)}._3GiIGG_queryDisclosure+._3GiIGG_queryDisclosure{margin-top:8px}._3GiIGG_queryDisclosure summary{color:var(--tw-muted);font-size:var(--tw-font-label);cursor:pointer;grid-template-columns:110px minmax(0,1fr) auto;align-items:center;gap:10px;padding:10px 11px;list-style:none;display:grid}._3GiIGG_queryDisclosure summary::-webkit-details-marker{display:none}._3GiIGG_queryDisclosure summary>span{color:var(--tw-muted);font-size:var(--tw-font-caption);text-overflow:ellipsis;white-space:nowrap;font-weight:450;overflow:hidden}._3GiIGG_queryDisclosure summary:after{color:var(--tw-muted);content:\"⌄\"}._3GiIGG_queryDisclosure[open] summary:after{content:\"⌃\"}._3GiIGG_queryDisclosureBody{border-top:1px solid var(--tw-line);padding:11px}._3GiIGG_queryAmountLine{grid-template-columns:minmax(0,1fr) 88px auto 88px auto;align-items:end;gap:6px;margin-top:8px;display:grid}._3GiIGG_queryAmountLine>span{color:var(--tw-muted);font-size:var(--tw-font-caption);align-self:center}._3GiIGG_queryAmountLine label{gap:3px;display:grid}._3GiIGG_queryAmountLine label>span{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_queryAmountLine input{border:1px solid var(--tw-line);border-radius:var(--tw-radius);width:100%;min-height:32px;padding:4px 7px}._3GiIGG_queryPlan{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);align-content:start;gap:12px;padding:0;display:grid;position:sticky;top:0;overflow:hidden;box-shadow:0 2px 8px #1119230a}._3GiIGG_queryPlanHeading{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:flex-start;gap:10px;padding:13px 14px;display:flex}._3GiIGG_queryPlanHeading span:first-child{color:var(--tw-brand-strong);text-transform:uppercase;font-size:11px;font-weight:750}._3GiIGG_queryPlanHeading h3{font-size:var(--tw-font-section);margin:3px 0 0}._3GiIGG_queryPlanHeading p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:3px 0 0}._3GiIGG_queryPlanNotice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-brand-soft);font-size:var(--tw-font-caption);gap:3px;margin:0 12px;padding:9px 10px;display:grid}._3GiIGG_queryPlanNotice[data-tone=warning]{border-color:var(--tw-line);color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_executionCalls{gap:8px;padding:0 12px;display:grid}._3GiIGG_executionCall{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface-2);overflow:hidden}._3GiIGG_executionCall[data-plan-status=invalid]{border-color:var(--tw-line);background:var(--tw-warning-soft)}._3GiIGG_executionCall>header{border-bottom:1px solid var(--tw-line);grid-template-columns:24px minmax(0,1fr);align-items:center;gap:7px;padding:9px 10px;display:grid}._3GiIGG_executionCall>header span{border-radius:var(--tw-radius);width:22px;height:22px;color:var(--qcc-on-action);background:var(--tw-brand);font-size:var(--tw-font-caption);place-items:center;font-weight:750;display:grid}._3GiIGG_executionCall>header strong{text-overflow:ellipsis;white-space:nowrap;font-family:Consolas,monospace;font-size:11px;overflow:hidden}._3GiIGG_executionCall dl{margin:0;padding:5px 10px 8px;display:grid}._3GiIGG_executionCall dl div{border-bottom:1px solid var(--tw-line);font-size:var(--tw-font-caption);grid-template-columns:86px minmax(0,1fr);gap:7px;padding:5px 0;display:grid}._3GiIGG_executionCall dl div:last-child{border-bottom:0}._3GiIGG_executionCall dt{color:var(--tw-muted);font-family:Consolas,monospace}._3GiIGG_executionCall dd{overflow-wrap:anywhere;text-align:right;margin:0;font-weight:650}._3GiIGG_executionCall>p{color:var(--tw-warning);font-size:var(--tw-font-caption);margin:0;padding:10px}._3GiIGG_planValidation{border-top:1px solid var(--tw-line);margin:0 12px 12px;padding-top:12px}._3GiIGG_planValidation h4{font-size:var(--tw-font-label);margin:0 0 8px}._3GiIGG_planValidation ul{gap:7px;margin:0;padding:0;list-style:none;display:grid}._3GiIGG_planValidation li{color:var(--tw-muted);font-size:var(--tw-font-caption);grid-template-columns:18px minmax(0,1fr);gap:7px;display:grid}._3GiIGG_planValidation li:before{border-radius:var(--tw-radius-sm);width:17px;height:17px;color:var(--qcc-on-action);background:var(--tw-warning);content:\"!\";place-items:center;font-size:10px;font-weight:750;display:grid}._3GiIGG_planValidation li[data-valid=true]:before{color:var(--tw-brand);background:var(--tw-brand-soft);content:\"✓\"}._3GiIGG_queryCard>._3GiIGG_fieldError{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-danger-soft);margin:0;padding:11px 14px}._3GiIGG_taskSummary{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-brand-soft);grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:12px;padding:12px 15px;display:grid}._3GiIGG_taskSummary>span{color:var(--tw-brand-strong);font-size:var(--tw-font-caption);font-weight:750}._3GiIGG_taskSummary strong{overflow-wrap:anywhere}._3GiIGG_taskSummary small{color:var(--tw-muted)}._3GiIGG_overviewLayout{gap:var(--tw-space-3);grid-template-columns:minmax(0,1.4fr) minmax(260px,.7fr);display:grid}._3GiIGG_sourceProgressList{gap:11px;padding:14px 18px 18px;display:grid}._3GiIGG_sourceProgress{border:1px solid var(--tw-line);border-radius:var(--tw-radius);gap:9px;padding:12px;display:grid}._3GiIGG_sourceProgress>div:first-child{justify-content:space-between;align-items:center;gap:10px;display:flex}._3GiIGG_sourceProgress p{color:var(--tw-danger);font-size:var(--tw-font-label);margin:0}._3GiIGG_qualityList,._3GiIGG_auditList{margin:0;padding:12px 18px;display:grid}._3GiIGG_qualityList div,._3GiIGG_auditList div{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:center;gap:12px;padding:9px 0;display:flex}._3GiIGG_qualityList div:last-child,._3GiIGG_auditList div:last-child{border-bottom:0}._3GiIGG_qualityList dt,._3GiIGG_auditList dt{color:var(--tw-muted)}._3GiIGG_qualityList dd,._3GiIGG_auditList dd{font-variant-numeric:tabular-nums;margin:0;font-weight:750}._3GiIGG_qualityList [data-tone=warning] dd,._3GiIGG_auditList [data-tone=warning] dd{color:var(--tw-warning)}._3GiIGG_scopeNotice,._3GiIGG_analysisBoundary{border-top:1px solid var(--tw-line);color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);margin:0;padding:11px 18px}._3GiIGG_nextSuggestion{justify-content:space-between;align-items:center;gap:var(--tw-space-4);border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-brand-soft);padding:15px 17px;display:flex}._3GiIGG_nextSuggestion strong{font-size:15px}._3GiIGG_nextSuggestion p{color:var(--tw-muted);margin:3px 0 0}._3GiIGG_nextActions{gap:var(--tw-space-2);flex:none}._3GiIGG_detailTabs{border-bottom:1px solid var(--tw-line);background:var(--tw-surface);gap:4px;padding:0;display:flex;overflow-x:auto}._3GiIGG_detailTabs button{min-height:40px;color:var(--tw-muted);white-space:nowrap;background:0 0;border:0;border-bottom:2px solid #0000;padding:8px 12px}._3GiIGG_detailTabs button[aria-pressed=true]{color:var(--tw-brand);border-bottom-color:var(--tw-brand);background:0 0}._3GiIGG_detailToolbar,._3GiIGG_dataToolbar{border-bottom:1px solid var(--tw-line);background:var(--tw-surface-2);grid-template-columns:minmax(180px,1.5fr) repeat(3,minmax(130px,.65fr));gap:9px;padding:13px 14px;display:grid}._3GiIGG_detailToolbar:has(select:nth-of-type(4)){grid-template-columns:minmax(180px,1.4fr) repeat(5,minmax(125px,.6fr))}._3GiIGG_detailWorkspace{grid-template-columns:minmax(0,1fr);min-width:0;display:grid}._3GiIGG_detailWorkspaceOpen{grid-template-columns:minmax(0,1.55fr) minmax(290px,.7fr)}._3GiIGG_dataTableWrap{min-width:0;overflow:auto}._3GiIGG_dataTable{border-collapse:collapse;width:100%;min-width:840px;font-size:var(--tw-font-table)}._3GiIGG_shell td,._3GiIGG_dataTable th{border-bottom:1px solid var(--tw-line);text-align:left;vertical-align:top;padding:11px 12px}._3GiIGG_dataTable th{z-index:1;color:var(--tw-muted);background:var(--qcc-table-head);font-size:var(--tw-font-caption);white-space:nowrap;font-weight:750;position:sticky;top:0}._3GiIGG_dataTable tbody tr:hover{background:var(--tw-surface-2)}._3GiIGG_dataTable tbody tr[data-row-selected=true]{background:var(--tw-brand-soft)}._3GiIGG_dataTable td strong{overflow-wrap:anywhere;max-width:360px;display:block}._3GiIGG_dataTable td small{color:var(--tw-muted);margin-top:3px;display:block}._3GiIGG_sourceTag,._3GiIGG_fieldStatus{min-height:24px;color:var(--tw-muted);background:var(--tw-surface-3);font-size:var(--tw-font-caption);white-space:nowrap;border-radius:999px;align-items:center;padding:2px 7px;font-weight:650;display:inline-flex}._3GiIGG_sourceTag[data-source=tender]{color:var(--tw-blue);background:var(--tw-blue-soft)}._3GiIGG_sourceTag[data-source=proposed]{color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_sourceTag[data-classification=include]{color:var(--tw-success);background:var(--tw-success-soft)}._3GiIGG_sourceTag[data-classification=observe]{color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_sourceTag[data-classification=manual-review]{color:var(--tw-purple);background:var(--tw-purple-soft)}._3GiIGG_sourceTag[data-classification=exclude]{color:var(--tw-danger);background:var(--tw-danger-soft)}._3GiIGG_fieldStatus[data-field-status=normalized]{color:var(--tw-success);background:var(--tw-success-soft)}._3GiIGG_fieldStatus[data-field-status=missing],._3GiIGG_fieldStatus[data-field-status=unparseable]{color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_rowAction{min-height:30px;color:var(--tw-brand-strong);font-size:var(--tw-font-caption);padding:4px 8px}._3GiIGG_rowTitleButton{width:100%;color:inherit;text-align:left;background:0 0;border:0;gap:3px;padding:0;display:grid}._3GiIGG_rowTitleButton strong{overflow-wrap:anywhere}._3GiIGG_rowTitleButton small{color:var(--tw-muted)}._3GiIGG_rowTitleButton:hover strong,._3GiIGG_rowTitleButton:focus-visible strong{color:var(--tw-brand-strong)}._3GiIGG_recordDetail,._3GiIGG_traceCard{border-left:1px solid var(--tw-line);background:var(--tw-surface-2);min-width:0;padding:16px}._3GiIGG_recordDetail{align-self:start;position:sticky;top:0}._3GiIGG_recordDetail header,._3GiIGG_traceCard header,._3GiIGG_analysisDetail>header,._3GiIGG_reviewDetail>header{justify-content:space-between;align-items:flex-start;gap:12px;display:flex}._3GiIGG_recordDetail header>div,._3GiIGG_traceCard header>div{gap:8px;display:grid}._3GiIGG_recordDetail h3{font-size:var(--tw-font-section);overflow-wrap:anywhere;margin:0}._3GiIGG_detailLead{color:var(--tw-muted);margin:12px 0}._3GiIGG_recordDetail dl{margin:0;display:grid}._3GiIGG_recordDetail dl div{border-bottom:1px solid var(--tw-line);grid-template-columns:minmax(110px,.8fr) minmax(0,1.2fr);gap:10px;padding:8px 0;display:grid}._3GiIGG_recordDetail dt{color:var(--tw-muted)}._3GiIGG_recordDetail dd{overflow-wrap:anywhere;margin:0}._3GiIGG_sourceLink{color:var(--tw-brand-strong);margin-top:13px;font-weight:680;text-decoration:none;display:inline-flex}._3GiIGG_sourceLink:hover{text-decoration:underline}._3GiIGG_tableFooter{border-top:1px solid var(--tw-line);min-height:48px;color:var(--tw-muted);font-size:var(--tw-font-caption);justify-content:space-between;align-items:center;gap:12px;padding:8px 13px;display:flex}._3GiIGG_tableFooter>div{gap:6px;display:flex}._3GiIGG_tableFooter button{border:1px solid var(--tw-line);border-radius:var(--tw-radius-sm);background:var(--tw-surface);min-height:30px;padding:4px 9px}._3GiIGG_dataLoading,._3GiIGG_dataEmpty,._3GiIGG_dataError{min-height:150px;color:var(--tw-muted);text-align:center;place-content:center;gap:7px;padding:22px;display:grid}._3GiIGG_dataError{color:var(--tw-danger)}._3GiIGG_dataError button{margin:4px auto 0}._3GiIGG_inlineLoading{color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-size:var(--tw-font-caption);padding:7px 13px}._3GiIGG_subNavigation{width:100%;max-width:100%;margin-bottom:var(--tw-space-4);border-bottom:1px solid var(--tw-line);background:var(--tw-surface);gap:4px;padding:0;display:flex;overflow-x:auto}._3GiIGG_subNavigation button{min-height:40px;color:var(--tw-muted);white-space:nowrap;background:0 0;border:0;border-bottom:2px solid #0000;padding:8px 12px}._3GiIGG_subNavigation button[aria-selected=true]{color:var(--tw-brand);border-bottom-color:var(--tw-brand);background:0 0}._3GiIGG_subNavigation button:disabled{color:var(--tw-faint);cursor:not-allowed;background:0 0}._3GiIGG_rulesLayout{grid-template-columns:330px minmax(480px,1fr);align-items:start;gap:14px;min-width:0;display:grid}._3GiIGG_ruleListPanel{align-content:start;position:sticky;top:0}._3GiIGG_ruleListPanel>header{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:center;gap:10px;min-height:58px;padding:10px 12px 10px 14px;display:flex}._3GiIGG_ruleListPanel>header>div{gap:2px;display:grid}._3GiIGG_ruleListPanel>header small{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_ruleList{align-content:start;gap:8px;padding:10px;display:grid}._3GiIGG_ruleItem{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);grid-template-columns:minmax(0,1fr) auto;align-items:center;display:grid;overflow:hidden}._3GiIGG_ruleSelectButton{text-align:left;background:0 0;border:0;width:100%;padding:12px 14px}._3GiIGG_ruleSelectButton>span{gap:4px;display:grid}._3GiIGG_ruleSelectButton small{color:var(--tw-muted);flex-wrap:wrap;gap:5px 9px;display:flex}._3GiIGG_ruleSelectButton small span:first-child{color:var(--tw-brand-strong);font-weight:680}._3GiIGG_ruleCardCopy p{color:var(--tw-muted);font-size:var(--tw-font-caption);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:0;display:-webkit-box;overflow:hidden}._3GiIGG_ruleCardCopy em{color:var(--tw-brand-strong);font-size:var(--tw-font-caption);font-style:normal;font-weight:650}._3GiIGG_ruleSelected{border-color:var(--tw-brand);background:var(--tw-brand-soft);box-shadow:inset 3px 0 0 var(--tw-brand)}._3GiIGG_ruleItem>input{appearance:none;background:var(--tw-line-strong);border:0;border-radius:999px;width:34px;height:20px;min-height:20px;margin-right:12px;position:relative;box-shadow:inset 0 0 0 1px #11192314}._3GiIGG_ruleItem>input:before{background:var(--tw-surface);content:\"\";border-radius:50%;width:14px;height:14px;transition:transform .14s;position:absolute;top:3px;left:3px;box-shadow:0 1px 3px #11192338}._3GiIGG_ruleItem>input:checked{background:var(--tw-brand)}._3GiIGG_ruleItem>input:checked:before{transform:translate(14px)}._3GiIGG_editorHeader{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:flex-start;gap:10px;padding:15px 17px;display:flex}._3GiIGG_editorHeader>div{gap:2px;display:grid}._3GiIGG_editorHeaderActions{flex-direction:row;align-items:center;gap:7px!important;display:flex!important}._3GiIGG_editorHeader span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_editorGrid{grid-template-columns:minmax(180px,1.4fr) repeat(2,minmax(120px,.7fr));gap:9px;padding:17px;display:grid}._3GiIGG_editorWide{grid-column:1/-1}._3GiIGG_ruleConditionEditor{border-top:1px solid var(--tw-line);gap:8px;margin-top:4px;padding-top:13px;display:grid}._3GiIGG_ruleConditionEditor>header{justify-content:space-between;align-items:center;gap:10px;display:flex}._3GiIGG_ruleConditionEditor>header>div{gap:2px;display:grid}._3GiIGG_ruleConditionEditor>header span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_ruleConditionRow{grid-template-columns:minmax(140px,.8fr) minmax(150px,.8fr) minmax(220px,1.4fr);gap:8px;display:grid}._3GiIGG_ruleConditionRow label>span,._3GiIGG_ruleOperator>span{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_ruleOperator>strong{min-height:var(--tw-control-height);border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-label);align-items:center;padding:8px 10px;font-weight:550;display:flex}._3GiIGG_ruleExceptionEditor{border:1px dashed var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-warning-soft);padding:10px}._3GiIGG_ruleExceptionEditor>header{justify-content:space-between;align-items:center;gap:8px;margin-bottom:7px;display:flex}._3GiIGG_ruleExceptionEditor>header strong,._3GiIGG_ruleExceptionEditor>header small{color:var(--tw-warning);font-size:var(--tw-font-caption)}._3GiIGG_ruleKeywordBox{min-height:var(--tw-control-height);border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);flex-wrap:wrap;align-items:center;gap:5px;padding:5px 7px;display:flex}._3GiIGG_ruleKeywordBox>span{border-radius:var(--tw-radius-sm);min-height:24px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-size:var(--tw-font-caption);align-items:center;gap:3px;padding-left:7px;display:inline-flex}._3GiIGG_ruleKeywordBox>span>button{border-radius:var(--tw-radius-sm);width:23px;min-height:23px;color:inherit;background:0 0;border:0;padding:0}._3GiIGG_ruleKeywordBox>span>button:hover:not(:disabled){background:var(--tw-brand-soft)}._3GiIGG_ruleKeywordBox>input{min-width:120px;min-height:26px;box-shadow:none;background:0 0;border:0;flex:150px;padding:3px}._3GiIGG_ruleKeywordBox>input:focus{box-shadow:none;outline:0}._3GiIGG_ruleEditorFooter{border-top:1px solid var(--tw-line);align-items:center;gap:9px;padding:11px 17px;display:flex}._3GiIGG_ruleEditorFooter>span{color:var(--tw-muted);font-size:var(--tw-font-caption);margin-right:auto}._3GiIGG_selectedRuleImpact{background:0 0}._3GiIGG_selectedRuleImpact dl{grid-template-columns:repeat(4,1fr);gap:7px;margin:0;display:grid}._3GiIGG_selectedRuleImpact dl div{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);padding:9px 10px}._3GiIGG_selectedRuleImpact dt{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_selectedRuleImpact dd{margin:4px 0 0;font-size:20px;font-weight:750}._3GiIGG_selectedRuleImpact[data-preview-status=stale]{opacity:.58}._3GiIGG_stageState{min-height:26px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-size:var(--tw-font-caption);border-radius:999px;align-items:center;padding:3px 8px;font-weight:650;display:inline-flex}._3GiIGG_rulePreviewGrid{grid-template-columns:minmax(340px,1.15fr) minmax(280px,.85fr);gap:14px;display:grid}._3GiIGG_rulePreviewPane{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);min-width:0;overflow:hidden}._3GiIGG_rulePreviewBody{padding:13px}._3GiIGG_sampleList{gap:7px;display:grid}._3GiIGG_sampleCard{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);padding:11px}._3GiIGG_sampleCard strong{overflow-wrap:anywhere;display:block}._3GiIGG_sampleCard p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_sampleCard>span,._3GiIGG_sampleCard>small{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_previewLegend{grid-template-columns:repeat(4,minmax(0,1fr));gap:7px;display:grid}._3GiIGG_previewLegend>div{grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:6px;display:grid}._3GiIGG_previewLegend i{background:var(--tw-brand);border-radius:50%;width:8px;height:8px}._3GiIGG_previewLegend [data-classification=observe] i{background:var(--tw-warning)}._3GiIGG_previewLegend [data-classification=manual-review] i{background:var(--tw-purple)}._3GiIGG_previewLegend [data-classification=exclude] i{background:var(--tw-danger)}._3GiIGG_previewLegend span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_previewFacts{border-block:1px solid var(--tw-line);color:var(--tw-muted);font-size:var(--tw-font-caption);flex-wrap:wrap;gap:6px 12px;margin-top:13px;padding:10px 0;display:flex}._3GiIGG_conflictList{gap:7px;margin-top:11px;display:grid}._3GiIGG_conflictList>article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);padding:9px 10px}._3GiIGG_conflictList strong,._3GiIGG_conflictList span{display:block}._3GiIGG_conflictList span,._3GiIGG_conflictList>p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:3px 0 0}._3GiIGG_savedNoteDetails{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-surface-2);margin-top:12px;padding:10px 12px}._3GiIGG_savedNoteDetails p{color:var(--tw-ink);white-space:pre-wrap;margin:8px 0 0}._3GiIGG_classificationGrid{grid-template-columns:repeat(5,minmax(105px,1fr))}._3GiIGG_classificationMetric{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);text-align:left;min-height:104px;padding:14px;position:relative;overflow:hidden}._3GiIGG_classificationMetric:before{background:var(--tw-line-strong);content:\"\";height:3px;position:absolute;top:0;left:0;right:0}._3GiIGG_classificationMetric[data-classification=include]:before{background:var(--tw-success)}._3GiIGG_classificationMetric[data-classification=observe]:before{background:var(--tw-warning)}._3GiIGG_classificationMetric[data-classification=manual-review]:before{background:var(--tw-purple)}._3GiIGG_classificationMetric[data-classification=exclude]:before{background:var(--tw-danger)}._3GiIGG_classificationMetric[aria-pressed=true]{border-color:var(--tw-brand);box-shadow:inset 0 0 0 1px var(--tw-brand)}._3GiIGG_classificationMetric span{color:var(--tw-muted);display:block}._3GiIGG_classificationMetric small{color:var(--tw-muted);align-items:center;gap:4px;display:flex}._3GiIGG_classificationMetric strong{font-variant-numeric:tabular-nums;margin:3px 0;font-size:25px;display:block}._3GiIGG_classificationOverview{gap:var(--tw-space-3);grid-template-columns:minmax(0,1.55fr) minmax(260px,.75fr);display:grid}._3GiIGG_summarySurface>._3GiIGG_progressMeter{padding:18px}._3GiIGG_classificationFunnel{gap:9px;padding:15px 18px 18px;display:grid}._3GiIGG_classificationFunnel>div{grid-template-columns:110px minmax(0,1fr) 46px;align-items:center;gap:9px;display:grid}._3GiIGG_classificationFunnel span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_classificationFunnel i{border-radius:var(--tw-radius-sm);background:var(--tw-brand);justify-self:center;height:18px;display:block}._3GiIGG_classificationFunnel>div:nth-child(2) i{background:var(--tw-blue)}._3GiIGG_classificationFunnel>div:nth-child(3) i{background:var(--tw-purple)}._3GiIGG_classificationFunnel>div:nth-child(4) i{background:var(--tw-success)}._3GiIGG_classificationFunnel strong{text-align:right;font-variant-numeric:tabular-nums}._3GiIGG_ruleCoverageList{border-top:1px solid var(--tw-line);gap:8px;padding:14px 18px 18px;display:grid}._3GiIGG_ruleCoverageList>div{grid-template-columns:minmax(110px,.8fr) minmax(90px,1fr) 40px;align-items:center;gap:9px;display:grid}._3GiIGG_ruleCoverageList span{color:var(--tw-muted);font-size:var(--tw-font-caption);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._3GiIGG_ruleCoverageList>div>div{background:var(--tw-surface-3);border-radius:999px;height:7px;overflow:hidden}._3GiIGG_ruleCoverageList i{border-radius:inherit;background:var(--tw-brand);height:100%;display:block}._3GiIGG_ruleCoverageList strong{font-size:var(--tw-font-caption);text-align:right}._3GiIGG_classificationNotice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-warning);background:var(--tw-warning-soft);grid-template-columns:auto minmax(0,1fr);gap:9px;margin:0 14px 14px;padding:10px 11px;display:grid}._3GiIGG_classificationNotice>svg{color:var(--tw-warning);margin-top:2px}._3GiIGG_classificationNotice p{font-size:var(--tw-font-caption);margin:0}._3GiIGG_classificationNotice strong{color:var(--tw-warning);display:block}._3GiIGG_classificationWorkspace{gap:var(--tw-space-3);grid-template-columns:minmax(0,1fr);min-width:0;display:grid}._3GiIGG_classificationWorkspaceOpen{gap:var(--tw-space-3);grid-template-columns:minmax(560px,1fr) 350px;align-items:start;min-width:0;display:grid}._3GiIGG_classificationTabs{border-bottom:1px solid var(--tw-line);scrollbar-width:thin;min-width:0;display:flex;overflow-x:auto}._3GiIGG_classificationTabs button{min-height:38px;color:var(--tw-muted);font-size:var(--tw-font-caption);background:0 0;border:0;border-bottom:2px solid #0000;flex:none;padding:7px 12px}._3GiIGG_classificationTabs button[aria-selected=true]{border-bottom-color:var(--tw-brand);color:var(--tw-brand-strong);font-weight:720}._3GiIGG_classificationSampleTable{min-width:920px}._3GiIGG_classificationDetailTable{min-width:850px}._3GiIGG_classificationDetailTable tbody tr{cursor:pointer}._3GiIGG_classificationDetailTable tbody tr[data-row-selected=true]{background:var(--tw-brand-soft)}._3GiIGG_traceCard{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);overflow:hidden}._3GiIGG_traceCard header strong{overflow-wrap:anywhere;margin-top:8px;font-size:16px;display:block}._3GiIGG_traceCard header p{color:var(--tw-muted);margin:3px 0 0}._3GiIGG_traceCard ol{gap:0;margin:16px 0 0;padding:0;list-style:none;display:grid}._3GiIGG_traceCard li{border-left:2px solid var(--tw-line);gap:2px;padding:9px 0 9px 20px;display:grid;position:relative}._3GiIGG_traceCard li:before{border:2px solid var(--tw-surface);background:var(--tw-brand);content:\"\";border-radius:50%;width:10px;height:10px;position:absolute;top:15px;left:-6px}._3GiIGG_traceCard li span{overflow-wrap:anywhere;color:var(--tw-muted)}._3GiIGG_traceOutcome{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-brand-soft);margin-top:14px;padding:11px 12px}._3GiIGG_traceOutcome p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_traceAudit{border-block:1px solid var(--tw-line);gap:0;margin:14px 0 0;display:grid}._3GiIGG_traceAudit>div{border-bottom:1px solid var(--tw-line);grid-template-columns:minmax(0,1fr) auto;gap:10px;padding:7px 0;display:grid}._3GiIGG_traceAudit>div:last-child{border-bottom:0}._3GiIGG_traceAudit dt{color:var(--tw-muted)}._3GiIGG_traceAudit dd{overflow-wrap:anywhere;text-align:right;margin:0}._3GiIGG_staleNotice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-warning);background:var(--tw-warning-soft);margin:0;padding:9px 12px}._3GiIGG_s4Summary{grid-template-columns:repeat(4,minmax(0,1fr))}._3GiIGG_reviewSummary{grid-template-columns:repeat(5,minmax(0,1fr))}._3GiIGG_s4Actions{flex-wrap:wrap;gap:8px;display:flex}._3GiIGG_analysisHeaderMeta{align-items:center;gap:10px;display:flex}._3GiIGG_analysisWorkspace{grid-template-columns:350px minmax(520px,1fr);align-items:start;gap:15px;min-width:0;display:grid}._3GiIGG_reviewWorkspace{gap:var(--tw-space-3);grid-template-columns:minmax(620px,1fr) 340px;align-items:start;min-width:0;display:grid}._3GiIGG_analysisToolbar{border-bottom:1px solid var(--tw-line);grid-template-columns:repeat(3,minmax(0,1fr));gap:7px;padding:10px 12px;display:grid}._3GiIGG_queuePanel{min-width:0}._3GiIGG_opportunityList{display:grid}._3GiIGG_opportunityRow,._3GiIGG_opportunitySelected{border:0;border-bottom:1px solid var(--tw-line);text-align:left;background:0 0;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:8px 10px;width:100%;padding:12px;display:grid}._3GiIGG_opportunitySelected{background:var(--tw-brand-soft)}._3GiIGG_rowRank{color:var(--tw-faint);font-size:var(--tw-font-caption);font-variant-numeric:tabular-nums}._3GiIGG_rowMain{gap:3px;display:grid}._3GiIGG_rowMain strong{overflow-wrap:anywhere}._3GiIGG_rowMain small{color:var(--tw-muted)}._3GiIGG_rowRecommendation{justify-self:end}._3GiIGG_analysisDetail,._3GiIGG_reviewDetail{overscroll-behavior:contain;scrollbar-gutter:stable;max-height:calc(100dvh - 220px);padding:17px;position:sticky;top:0;overflow-y:auto}._3GiIGG_analysisDetail>header h3,._3GiIGG_reviewDetail>header h3{font-size:var(--tw-font-section);overflow-wrap:anywhere;margin:8px 0 0}._3GiIGG_analysisDetail>header p,._3GiIGG_reviewDetail>header p{color:var(--tw-muted);margin:3px 0 0}._3GiIGG_analysisDetailHero{border-bottom:1px solid var(--tw-line);background:var(--tw-brand-soft);margin:-17px -17px 0;padding:17px}._3GiIGG_analysisFactGrid{grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-top:14px;display:grid}._3GiIGG_analysisFactGrid>div{border:1px solid var(--tw-line);border-radius:var(--tw-radius);gap:3px;padding:9px;display:grid}._3GiIGG_analysisFactGrid span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_analysisFactGrid small{color:var(--tw-faint);font-size:10px}._3GiIGG_analysisConclusion,._3GiIGG_agentRecap{border-left:3px solid var(--tw-brand);border-radius:var(--tw-radius);background:var(--tw-brand-soft);margin-top:15px;padding:13px}._3GiIGG_analysisConclusion>span,._3GiIGG_agentRecap>span{color:var(--tw-brand-strong);font-size:var(--tw-font-caption);font-weight:750}._3GiIGG_analysisConclusion p,._3GiIGG_agentRecap p{margin:5px 0 0}._3GiIGG_agentRecap strong{margin-top:3px;display:block}._3GiIGG_detailSection{margin-top:15px}._3GiIGG_detailSection h4{font-size:var(--tw-font-label);margin:0 0 8px}._3GiIGG_detailSection ul,._3GiIGG_evidenceList{gap:7px;margin:0;padding-left:18px;display:grid}._3GiIGG_evidenceList li{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);padding:8px 9px}._3GiIGG_evidenceList strong,._3GiIGG_evidenceList span,._3GiIGG_evidenceList small{overflow-wrap:anywhere;display:block}._3GiIGG_evidenceList span{margin-top:2px}._3GiIGG_evidenceList small{color:var(--tw-muted);margin-top:3px}._3GiIGG_detailColumns{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;display:grid}._3GiIGG_analysisSectionHeader{justify-content:space-between;align-items:center;gap:12px;display:flex}._3GiIGG_analysisSectionHeader h4{margin:0}._3GiIGG_analysisSectionHeader span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_analysisEvidenceGrid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:8px;display:grid}._3GiIGG_analysisEvidenceGrid article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);min-width:0;padding:10px}._3GiIGG_analysisEvidenceGrid p{overflow-wrap:anywhere;margin:3px 0 0}._3GiIGG_analysisEvidenceGrid small{color:var(--tw-muted);margin-top:4px;display:block}._3GiIGG_sourceExcerpt{border-left:3px solid var(--tw-blue);border-radius:var(--tw-radius);background:var(--tw-blue-soft);margin-top:14px;padding:11px 12px}._3GiIGG_sourceExcerpt p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_analysisBoundary{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-warning);background:var(--tw-warning-soft);grid-template-columns:auto minmax(0,1fr);gap:8px;margin-top:14px;padding:10px 11px;display:grid}._3GiIGG_analysisQuestion{grid-template-columns:minmax(0,1fr) auto;gap:8px;margin-top:14px;display:grid}._3GiIGG_analysisQuestion button{white-space:nowrap}._3GiIGG_inlineSuccess{color:var(--tw-success);font-size:var(--tw-font-caption);margin:6px 0 0}._3GiIGG_reviewQueueTabs{border-bottom:1px solid var(--tw-line);min-width:0;display:flex}._3GiIGG_reviewQueueTabs button{min-height:40px;color:var(--tw-muted);background:0 0;border:0;border-bottom:2px solid #0000;flex:1 1 0;padding:8px 12px}._3GiIGG_reviewQueueTabs button[aria-selected=true]{border-bottom-color:var(--tw-brand);color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-weight:720}._3GiIGG_reviewToolbar{border-bottom:1px solid var(--tw-line);flex-wrap:wrap;align-items:center;gap:7px;padding:10px 12px;display:flex}._3GiIGG_reviewToolbar>input[type=search]{flex:170px;min-width:170px}._3GiIGG_reviewToolbar>select{flex:130px;min-width:130px}._3GiIGG_reviewToolbar>._3GiIGG_secondary{flex:none;min-height:36px}._3GiIGG_expandedIcon{transform:rotate(180deg)}._3GiIGG_reviewAdvanced{border-bottom:1px solid var(--tw-line)}._3GiIGG_reviewAdvanced>div{grid-template-columns:repeat(4,minmax(145px,1fr));gap:8px;padding:2px 12px 12px;display:grid}._3GiIGG_reviewAdvanced label{gap:4px;display:grid}._3GiIGG_reviewAdvanced label>span:first-child{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_activeFilterStrip{border-bottom:1px solid var(--tw-line);background:var(--tw-surface-2);flex-wrap:wrap;align-items:center;gap:6px;min-height:37px;padding:7px 12px;display:flex}._3GiIGG_activeFilter{border:1px solid var(--tw-line);border-radius:var(--tw-radius-sm);min-width:0;color:var(--tw-brand-strong);background:var(--tw-brand-soft);align-items:center;gap:4px;padding:4px 7px;font-size:10px;display:inline-flex}._3GiIGG_activeFilter button{width:16px;min-height:16px;color:var(--tw-brand-strong);background:0 0;border:0;place-items:center;padding:0;display:grid}._3GiIGG_amountFilter{grid-template-columns:minmax(70px,1fr) auto minmax(70px,1fr) auto;align-items:center;gap:5px;display:grid}._3GiIGG_amountFilter i{color:var(--tw-muted);font-style:normal}._3GiIGG_amountFilter small{color:var(--tw-muted);white-space:nowrap}._3GiIGG_reviewBulkBar{border-block:1px solid var(--tw-line);background:var(--tw-brand-soft);flex-wrap:wrap;align-items:center;gap:8px 12px;padding:10px 13px;display:flex}._3GiIGG_reviewBulkSelection{white-space:nowrap;align-items:center;gap:8px;display:inline-flex}._3GiIGG_reviewBulkSelection input{width:18px;min-height:18px;margin:0}._3GiIGG_reviewBulkActions{flex-wrap:wrap;gap:7px;display:flex}._3GiIGG_reviewBulkActions ._3GiIGG_secondary{min-height:34px;padding:6px 10px}._3GiIGG_reviewBulkHint{color:var(--tw-muted);font-size:var(--tw-font-caption);white-space:nowrap;margin-left:auto}._3GiIGG_reviewBulkNote{flex:1 0 100%;grid-template-columns:auto minmax(220px,1fr);align-items:center;gap:10px;padding-top:2px;display:grid}._3GiIGG_reviewTable{min-width:1120px}._3GiIGG_reviewTable tbody tr{cursor:pointer}._3GiIGG_reviewTable tbody tr[data-row-selected=true]{background:var(--tw-brand-soft)}._3GiIGG_reviewTable td>strong,._3GiIGG_reviewTable td>small{display:block}._3GiIGG_reviewTable td>small{color:var(--tw-muted);margin-top:3px}._3GiIGG_decisionAgreement{white-space:nowrap}._3GiIGG_reviewTable th:first-child,._3GiIGG_reviewTable td:first-child{text-align:center;width:48px}._3GiIGG_reviewTable th:nth-child(3),._3GiIGG_reviewTable td:nth-child(3){width:92px}._3GiIGG_reviewTable [data-agent-recommendation]{white-space:nowrap;display:inline-flex}._3GiIGG_reviewTable [data-agent-recommendation] ._3GiIGG_statusPill{white-space:nowrap;min-height:22px;padding:2px 7px;font-size:11px}._3GiIGG_reviewTiming{font-variant-numeric:tabular-nums;white-space:nowrap;display:inline-flex}._3GiIGG_recordIdentifier{color:var(--tw-brand-strong);font-size:var(--tw-font-caption);font-weight:700}._3GiIGG_agentRecap>div{flex-wrap:wrap;gap:5px;margin-top:8px;display:flex}._3GiIGG_agentRecap>div span{border-radius:var(--tw-radius-sm);color:var(--tw-brand-strong);background:var(--tw-surface);padding:2px 6px;font-size:10px}._3GiIGG_reviewLayers{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:14px;display:grid}._3GiIGG_reviewLayers>div{border:1px solid var(--tw-line);border-radius:var(--tw-radius);gap:2px;padding:9px;display:grid}._3GiIGG_reviewLayers span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_decisionEditor{border-top:1px solid var(--tw-line);gap:10px;margin-top:15px;padding-top:15px;display:grid}._3GiIGG_decisionLabel{color:var(--tw-ink);font-size:var(--tw-font-label);margin-bottom:6px;font-weight:680;display:block}._3GiIGG_decisionSegment{border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface-2);grid-template-columns:repeat(4,minmax(0,1fr));padding:3px;display:grid}._3GiIGG_decisionSegment button{border-radius:var(--tw-radius-sm);min-height:34px;color:var(--tw-muted);font-size:var(--tw-font-caption);background:0 0;border:0;padding:6px 7px}._3GiIGG_decisionSegment button[aria-pressed=true]{color:var(--qcc-on-action);background:var(--tw-brand)}._3GiIGG_decisionSaveRow{justify-content:flex-end;align-items:center;gap:8px;scroll-margin-block-end:calc(62px + var(--tw-space-4));display:flex}._3GiIGG_decisionSaveRow>span{color:var(--tw-muted);font-size:var(--tw-font-caption);margin-right:auto}._3GiIGG_reviewAudit{border-top:1px solid var(--tw-line);margin-top:16px;padding-top:14px}._3GiIGG_reviewAudit h4{font-size:var(--tw-font-label);margin:0 0 8px}._3GiIGG_reviewAudit>p{color:var(--tw-muted);margin:0}._3GiIGG_reviewAudit ol{gap:8px;margin:0;padding:0;list-style:none;display:grid}._3GiIGG_reviewAudit li{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:7px;padding:9px 10px;display:grid}._3GiIGG_reviewAudit li strong,._3GiIGG_reviewAudit li span{display:block}._3GiIGG_reviewAudit li span{color:var(--tw-muted);font-size:var(--tw-font-caption);margin-top:2px}._3GiIGG_reviewAudit li p{white-space:pre-wrap;grid-column:1/-1;margin:5px 0 0}._3GiIGG_reviewSnapshotHint{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-brand-soft);margin-top:14px;padding:11px 12px}._3GiIGG_reviewSnapshotHint p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_reviewFooterProgress{gap:2px;min-width:0;display:grid}._3GiIGG_reviewFooterProgress span{color:var(--tw-muted);font-size:var(--tw-font-caption);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._3GiIGG_reviewFooterProgress strong{font-size:var(--tw-font-label);font-variant-numeric:tabular-nums}._3GiIGG_deliveryHeroGrid{grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:15px;display:grid}._3GiIGG_deliveryLead,._3GiIGG_deliverySnapshot,._3GiIGG_reportOptions,._3GiIGG_reportChartCard,._3GiIGG_deliveryFileCard,._3GiIGG_reportTableWrap,._3GiIGG_reportLimitations,._3GiIGG_reportNarrative{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);overflow:hidden}._3GiIGG_deliveryLead{min-height:0;color:var(--tw-hero-text);border-color:var(--tw-brand-strong);background:var(--tw-brand-strong);padding:18px}._3GiIGG_deliveryLead ._3GiIGG_eyebrow{color:var(--tw-hero-text);opacity:.82}._3GiIGG_deliveryLead h2{color:var(--tw-hero-text);margin:3px 0 7px;font-size:22px;line-height:1.25}._3GiIGG_deliveryLead>p:not(._3GiIGG_eyebrow){max-width:580px;color:var(--tw-hero-text);font-size:var(--tw-font-caption);opacity:.86;margin:0;line-height:1.55}._3GiIGG_deliveryFacts{flex-wrap:wrap;gap:7px;margin-top:20px;display:flex}._3GiIGG_deliveryFacts span{border:1px solid color-mix(in srgb, var(--tw-hero-text) 24%, transparent);border-radius:var(--tw-radius);color:var(--tw-hero-text);background:color-mix(in srgb, var(--tw-hero-text) 8%, transparent);font-size:var(--tw-font-caption);padding:6px 9px}._3GiIGG_deliverySnapshot{min-width:0}._3GiIGG_deliverySnapshotHeader{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:flex-start;gap:12px;padding:15px 17px;display:flex}._3GiIGG_deliverySnapshotHeader h3{margin:0;font-size:16px}._3GiIGG_deliverySnapshotHeader p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:4px 0 0}._3GiIGG_deliverySnapshotList{margin:0}._3GiIGG_deliverySnapshotList>div{border-bottom:1px solid var(--tw-line);grid-template-columns:minmax(0,1fr) auto;gap:12px;padding:6px 16px;display:grid}._3GiIGG_deliverySnapshotList>div:last-child{border-bottom:0}._3GiIGG_deliverySnapshotList dt{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_deliverySnapshotList dd{color:var(--tw-ink);font-size:var(--tw-font-label);text-align:right;margin:0;font-weight:720}._3GiIGG_reportOptions{display:grid}._3GiIGG_reportOptions>header{border-bottom:1px solid var(--tw-line);padding:15px 18px}._3GiIGG_reportOptions>header h3{margin:0;font-size:16px}._3GiIGG_reportOptions>header p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_reportOptions>label{border-bottom:1px solid var(--tw-line);align-items:flex-start;gap:10px;padding:13px 18px;display:flex}._3GiIGG_reportOptions>label input{flex:0 0 18px;width:18px;min-height:18px;margin-top:2px}._3GiIGG_reportOptions>label span{gap:2px;display:grid}._3GiIGG_reportOptions>label strong{font-size:var(--tw-font-label)}._3GiIGG_reportOptions>label small{color:var(--tw-muted)}._3GiIGG_reportOptions>._3GiIGG_statePanel{margin:14px 18px}._3GiIGG_reportTabs{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);scrollbar-width:thin;gap:4px;min-height:43px;padding:4px;display:flex;overflow-x:auto}._3GiIGG_reportTabs button{border-radius:var(--tw-radius);min-width:max-content;min-height:33px;color:var(--tw-muted);font-size:var(--tw-font-label);background:0 0;border:0;padding:6px 13px}._3GiIGG_reportTabs button[aria-selected=true]{color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-weight:720}._3GiIGG_reportTabPanel{outline:none;min-width:0}._3GiIGG_reportPaneContent,._3GiIGG_reportFilesPane,._3GiIGG_reportOpportunities{gap:12px;display:grid}._3GiIGG_reportKpis{grid-template-columns:repeat(6,minmax(92px,1fr));gap:8px;display:grid}._3GiIGG_reportKpi{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);align-content:space-between;gap:4px;min-height:82px;padding:10px 11px;display:grid}._3GiIGG_reportKpi>span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_reportKpi>strong{color:var(--tw-ink);font-variant-numeric:tabular-nums;font-size:20px;line-height:1}._3GiIGG_reportKpi>small{color:var(--tw-muted);font-size:11px;line-height:1.35}._3GiIGG_reportExplanations,._3GiIGG_reportInsights,._3GiIGG_reportProvenance{grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;display:grid}._3GiIGG_reportExplanations article,._3GiIGG_reportProvenance article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);gap:5px;padding:12px 13px;display:grid}._3GiIGG_reportExplanations strong,._3GiIGG_reportProvenance strong{font-size:var(--tw-font-label)}._3GiIGG_reportExplanations span,._3GiIGG_reportProvenance span{color:var(--tw-muted);font-size:var(--tw-font-caption);overflow-wrap:anywhere;line-height:1.5}._3GiIGG_reportInsights article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);grid-template-columns:auto minmax(0,1fr);gap:7px 9px;padding:13px;display:grid}._3GiIGG_reportInsights article>span{border-radius:var(--tw-radius-sm);width:24px;height:24px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);place-items:center;font-size:10px;font-weight:800;display:grid}._3GiIGG_reportInsights h3{align-self:center;margin:0;font-size:14px}._3GiIGG_reportInsights p,._3GiIGG_reportInsights small{grid-column:1/-1;margin:0}._3GiIGG_reportInsights p{color:var(--tw-muted);font-size:var(--tw-font-caption);line-height:1.5}._3GiIGG_reportInsights small{border-top:1px solid var(--tw-line);color:var(--tw-faint);padding-top:7px}._3GiIGG_reportChartCard>header,._3GiIGG_reportLimitations>header{border-bottom:1px solid var(--tw-line);padding:13px 15px}._3GiIGG_reportChartCard>header h3,._3GiIGG_reportLimitations>header h3{margin:0;font-size:15px}._3GiIGG_reportChartCard>header p,._3GiIGG_reportLimitations>header p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:3px 0 0}._3GiIGG_reportNarrative{background:0 0;border:0;overflow:visible}._3GiIGG_reportNarrative>header{padding:0 2px}._3GiIGG_reportNarrative>header h3{margin:0;font-size:15px}._3GiIGG_reportNarrative>header p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:3px 0 0}._3GiIGG_reportNarrative>div{grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;padding-top:10px;display:grid}._3GiIGG_reportNarrative article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);gap:5px;padding:11px;display:grid}._3GiIGG_reportNarrative article p{color:var(--tw-muted);margin:0;line-height:1.5}._3GiIGG_reportNarrative article small{color:var(--tw-warning)}._3GiIGG_reportChartGrid{grid-template-columns:repeat(2,minmax(320px,1fr));gap:11px;display:grid}._3GiIGG_reportChartCard{min-height:230px}._3GiIGG_horizontalBars{gap:10px;padding:16px;display:grid}._3GiIGG_horizontalBarRow{grid-template-columns:minmax(90px,.6fr) minmax(120px,1.8fr) 32px;align-items:center;gap:10px;display:grid}._3GiIGG_horizontalBarRow>span{color:var(--tw-muted);font-size:var(--tw-font-caption);overflow-wrap:anywhere}._3GiIGG_horizontalBarRow>div{background:var(--tw-surface-3);border-radius:999px;height:7px;overflow:hidden}._3GiIGG_horizontalBarRow i{border-radius:inherit;background:var(--tw-brand);min-width:2px;height:100%;display:block}._3GiIGG_horizontalBarRow strong{font-size:var(--tw-font-caption);text-align:right}._3GiIGG_chartNote{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:0 16px 12px;line-height:1.45}._3GiIGG_columnChart{grid-template-columns:repeat(4,minmax(0,1fr));align-items:end;gap:18px;min-height:170px;padding:20px 18px 16px;display:grid}._3GiIGG_columnChart>div{text-align:center;grid-template-rows:minmax(0,1fr) auto;align-items:end;gap:8px;height:135px;display:grid}._3GiIGG_columnChart i{background:var(--tw-brand);border-radius:4px 4px 0 0;justify-self:center;width:min(34px,70%);display:block}._3GiIGG_columnChart i[data-segment=\"1\"]{background:#5f91a8}._3GiIGG_columnChart i[data-segment=\"2\"]{background:var(--tw-warning)}._3GiIGG_columnChart i[data-segment=\"3\"]{background:#8d6caf}._3GiIGG_columnChart span{color:var(--tw-muted);font-size:11px}._3GiIGG_amountAxis{color:var(--tw-muted);justify-content:flex-end;margin:17px 16px -12px;font-size:11px;display:flex}._3GiIGG_stackedBar{border-radius:var(--tw-radius-sm);background:var(--tw-surface-3);height:24px;margin:22px 16px 12px;display:flex;overflow:hidden}._3GiIGG_stackedBar i{min-width:24px;color:var(--qcc-on-action);background:var(--tw-brand);flex-basis:0;place-items:center;font-size:10px;font-style:normal;display:grid}._3GiIGG_stackedBar i[data-segment=\"1\"],._3GiIGG_stackedLegend i[data-segment=\"1\"]{background:var(--tw-warning)}._3GiIGG_stackedBar i[data-segment=\"2\"],._3GiIGG_stackedLegend i[data-segment=\"2\"]{background:var(--tw-danger)}._3GiIGG_stackedLegend{flex-wrap:wrap;gap:8px 14px;margin:0 16px 14px;display:flex}._3GiIGG_stackedLegend span{color:var(--tw-muted);align-items:center;gap:5px;font-size:11px;display:flex}._3GiIGG_stackedLegend i{background:var(--tw-brand);border-radius:2px;width:8px;height:8px}._3GiIGG_amountChartEmpty{border:1px dashed var(--tw-line-strong);border-radius:var(--tw-radius);min-height:96px;color:var(--tw-muted);background:var(--tw-surface-2);text-align:center;align-content:center;gap:6px;margin:16px;padding:14px;display:grid}._3GiIGG_amountChartEmpty strong{color:var(--tw-text);font-size:13px}._3GiIGG_amountChartEmpty span{line-height:1.5}._3GiIGG_reportLimitations>div{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-warning-soft);grid-template-columns:auto minmax(0,1fr);gap:9px;margin:9px 12px;padding:10px;display:grid}._3GiIGG_reportLimitations>div i{border-radius:var(--tw-radius-sm);width:22px;height:22px;color:var(--tw-warning);background:var(--tw-surface);place-items:center;font-style:normal;font-weight:750;display:grid}._3GiIGG_reportNotice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-brand-soft);align-items:flex-start;gap:9px;padding:11px 13px;display:flex}._3GiIGG_reportNotice ._3GiIGG_icon{color:var(--tw-brand);flex:0 0 18px;margin-top:1px}._3GiIGG_reportNotice p{margin:0;line-height:1.5}._3GiIGG_deliveryFileGrid{grid-template-columns:repeat(2,minmax(320px,1fr));gap:11px;display:grid}._3GiIGG_deliveryFileCard[data-file-status=failed]{border-color:var(--tw-danger);background:var(--tw-danger-soft)}._3GiIGG_deliveryFileCard[data-file-status=succeeded]{border-color:var(--tw-success)}._3GiIGG_deliveryFileCard>header{border-bottom:1px solid var(--tw-line);grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:11px;padding:14px;display:grid}._3GiIGG_deliveryFileCard>header>div{min-width:0}._3GiIGG_deliveryFileCard>header strong,._3GiIGG_deliveryFileCard>header small{overflow-wrap:anywhere;display:block}._3GiIGG_deliveryFileCard>header small{color:var(--tw-muted);margin-top:3px}._3GiIGG_deliveryFileIcon{border-radius:var(--tw-radius);width:42px;height:42px;color:var(--qcc-on-action);background:var(--tw-brand);place-items:center;display:grid}._3GiIGG_deliveryFileIcon[data-format=pdf]{background:var(--tw-danger)}._3GiIGG_deliveryFileBody{align-content:space-between;gap:14px;min-height:120px;padding:14px;display:grid}._3GiIGG_fileOutline{flex-wrap:wrap;gap:7px;display:flex}._3GiIGG_fileOutline span{border:1px solid var(--tw-line);border-radius:var(--tw-radius-sm);color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);padding:5px 8px}._3GiIGG_deliveryFileActions{justify-content:flex-end;display:flex}._3GiIGG_reportTableTitle{justify-content:space-between;align-items:flex-end;gap:16px;display:flex}._3GiIGG_reportTableTitle h3{margin:0;font-size:16px}._3GiIGG_reportTableTitle p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_reportTableWrap{overflow:auto}._3GiIGG_reportTable{border-collapse:collapse;width:100%;min-width:980px}._3GiIGG_reportTable th,._3GiIGG_reportTable td{border-bottom:1px solid var(--tw-line);text-align:left;vertical-align:top;padding:10px 11px}._3GiIGG_reportTable th{color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption)}._3GiIGG_reportTable td{font-size:var(--tw-font-label)}._3GiIGG_reportTable td strong,._3GiIGG_reportTable td small{display:block}._3GiIGG_reportTable td small{color:var(--tw-muted);margin-top:3px}._3GiIGG_reportTableWrap>footer{color:var(--tw-muted);font-size:var(--tw-font-caption);justify-content:space-between;gap:12px;padding:10px 12px;display:flex}._3GiIGG_reportProvenance{grid-template-columns:repeat(3,minmax(0,1fr))}._3GiIGG_reportProvenance ._3GiIGG_reportNotice{grid-column:1/-1}._3GiIGG_emptyState{border:1px dashed var(--tw-line-strong);border-radius:var(--tw-radius-lg);min-height:280px;color:var(--tw-muted);background:var(--tw-surface);text-align:center;align-content:center;place-items:center;gap:8px;padding:28px;display:grid}._3GiIGG_emptyState h3{color:var(--tw-ink);margin:0}._3GiIGG_emptyState p{max-width:520px;margin:0}._3GiIGG_emptyIcon{width:46px;height:46px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);border-radius:50%;place-items:center;display:grid}._3GiIGG_writeProgress{margin-top:2px}@container _3GiIGG_tender-workbench (width<=1000px){._3GiIGG_metricGrid,._3GiIGG_classificationGrid{grid-template-columns:repeat(3,minmax(0,1fr))}._3GiIGG_deliveryHeroGrid,._3GiIGG_reportChartGrid,._3GiIGG_deliveryFileGrid,._3GiIGG_reportProvenance,._3GiIGG_queryLayout,._3GiIGG_rulesLayout,._3GiIGG_classificationWorkspaceOpen,._3GiIGG_analysisWorkspace,._3GiIGG_reviewWorkspace,._3GiIGG_rulePreviewGrid{grid-template-columns:minmax(0,1fr)}._3GiIGG_queryPlan,._3GiIGG_ruleListPanel,._3GiIGG_traceCard,._3GiIGG_analysisDetail,._3GiIGG_reviewDetail{max-height:none;position:static;overflow-y:visible}._3GiIGG_detailToolbar:has(select:nth-of-type(4)),._3GiIGG_dataToolbar{grid-template-columns:repeat(3,minmax(150px,1fr))}._3GiIGG_detailToolbar:has(select:nth-of-type(4)) input,._3GiIGG_dataToolbar input{grid-column:1/-1}._3GiIGG_reviewToolbar{grid-template-columns:repeat(3,minmax(145px,1fr))}._3GiIGG_reviewToolbar>input{grid-column:1/-1}._3GiIGG_reviewAdvanced>div{grid-template-columns:repeat(3,minmax(145px,1fr))}}@container _3GiIGG_tender-workbench (width<=760px){._3GiIGG_body{padding:18px}._3GiIGG_pageHeading{align-items:flex-start}._3GiIGG_queryLayout,._3GiIGG_overviewLayout,._3GiIGG_classificationOverview,._3GiIGG_classificationWorkspaceOpen,._3GiIGG_detailWorkspaceOpen,._3GiIGG_analysisWorkspace,._3GiIGG_reviewWorkspace,._3GiIGG_rulesLayout,._3GiIGG_rulePreviewGrid{grid-template-columns:1fr}._3GiIGG_analysisFactGrid,._3GiIGG_analysisEvidenceGrid{grid-template-columns:repeat(2,minmax(0,1fr))}._3GiIGG_reviewToolbar{grid-template-columns:repeat(2,minmax(140px,1fr))}._3GiIGG_reviewToolbar>input{grid-column:1/-1}._3GiIGG_reviewAdvanced>div{grid-template-columns:repeat(2,minmax(140px,1fr))}._3GiIGG_queryPlan{position:static}._3GiIGG_queryCommonFields{grid-template-columns:1fr}._3GiIGG_queryFieldFull{grid-column:auto}._3GiIGG_queryRegionPicker{box-shadow:none;margin-top:8px;position:static}._3GiIGG_queryRegionColumns{grid-template-columns:repeat(3,minmax(145px,1fr))}._3GiIGG_recordDetail,._3GiIGG_traceCard{border-top:1px solid var(--tw-line);border-left:0}._3GiIGG_recordDetail{position:static}._3GiIGG_dataView ._3GiIGG_dataTableWrap{background:var(--tw-surface-2);padding:10px;overflow:visible}._3GiIGG_dataView ._3GiIGG_dataTable{min-width:0;display:block}._3GiIGG_dataView ._3GiIGG_dataTable thead{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_dataView ._3GiIGG_dataTable tbody{gap:10px;display:grid}._3GiIGG_dataView ._3GiIGG_dataTable tbody tr{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);grid-template-columns:repeat(2,minmax(0,1fr));display:grid;overflow:hidden}._3GiIGG_dataView ._3GiIGG_dataTable tbody tr:hover{background:var(--tw-surface)}._3GiIGG_dataView ._3GiIGG_dataTable td{border-bottom:1px solid var(--tw-line);overflow-wrap:anywhere;grid-template-columns:minmax(86px,.55fr) minmax(0,1fr);gap:8px;padding:8px 11px;display:grid}._3GiIGG_dataView ._3GiIGG_dataTable td:before{color:var(--tw-muted);font-size:var(--tw-font-caption);content:attr(data-label)}._3GiIGG_dataView ._3GiIGG_dataTable td:first-child,._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(2),._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(5),._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10){grid-column:1/-1}._3GiIGG_dataView ._3GiIGG_dataTable td:first-child,._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10){display:block}._3GiIGG_dataView ._3GiIGG_dataTable td:first-child:before,._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10):before{content:none}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(2){padding-block:10px;display:block}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(2):before{margin-bottom:4px;display:block}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(9),._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10){border-bottom:0}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10){padding:9px 11px 11px}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10) ._3GiIGG_rowAction{width:100%}._3GiIGG_reviewDetail{order:initial}._3GiIGG_reviewWorkspace ._3GiIGG_dataTableWrap{background:var(--tw-surface);padding:0;overflow-x:auto}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable{min-width:1120px;display:table}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable thead{clip:auto;width:auto;height:auto;position:static;overflow:visible}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable tbody{display:table-row-group}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable tbody tr{background:var(--tw-surface);border:0;border-radius:0;display:table-row;overflow:visible}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable td{border-bottom:1px solid var(--tw-line);padding:10px 12px;display:table-cell}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable td:before{content:none}._3GiIGG_dataView ._3GiIGG_classificationDetailTable,._3GiIGG_dataView ._3GiIGG_classificationSampleTable{min-width:850px;display:table}._3GiIGG_dataView ._3GiIGG_classificationDetailTable thead,._3GiIGG_dataView ._3GiIGG_classificationSampleTable thead{clip:auto;width:auto;height:auto;position:static;overflow:visible}._3GiIGG_dataView ._3GiIGG_classificationDetailTable tbody,._3GiIGG_dataView ._3GiIGG_classificationSampleTable tbody{display:table-row-group}._3GiIGG_dataView ._3GiIGG_classificationDetailTable tbody tr,._3GiIGG_dataView ._3GiIGG_classificationSampleTable tbody tr{border:0;border-radius:0;display:table-row;overflow:visible}._3GiIGG_dataView ._3GiIGG_classificationDetailTable td,._3GiIGG_dataView ._3GiIGG_classificationSampleTable td{border-bottom:1px solid var(--tw-line);padding:10px 12px;display:table-cell}._3GiIGG_dataView ._3GiIGG_classificationDetailTable td:before,._3GiIGG_dataView ._3GiIGG_classificationSampleTable td:before{content:none}._3GiIGG_analysisDetail,._3GiIGG_reviewDetail{position:static}._3GiIGG_metricGrid,._3GiIGG_s4Summary,._3GiIGG_classificationGrid,._3GiIGG_selectedRuleImpact dl,._3GiIGG_reportKpis,._3GiIGG_reportInsights{grid-template-columns:repeat(2,minmax(0,1fr))}._3GiIGG_reportExplanations,._3GiIGG_reportNarrative>div{grid-template-columns:minmax(0,1fr)}._3GiIGG_reportTableTitle{flex-direction:column;align-items:flex-start}._3GiIGG_reportTableWrap{background:var(--tw-surface-2);border:0;padding:10px;overflow:visible}._3GiIGG_reportTable{min-width:0;display:block}._3GiIGG_reportTable thead{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_reportTable tbody{gap:10px;display:grid}._3GiIGG_reportTable tr{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);grid-template-columns:repeat(2,minmax(0,1fr));display:grid;overflow:hidden}._3GiIGG_reportTable td{overflow-wrap:anywhere;grid-template-columns:minmax(88px,.6fr) minmax(0,1fr);gap:8px;padding:8px 11px;display:grid}._3GiIGG_reportTable td:before{color:var(--tw-muted);font-size:var(--tw-font-caption);content:attr(data-label)}._3GiIGG_reportTable td:first-child,._3GiIGG_reportTable td:nth-child(2),._3GiIGG_reportTable td:nth-child(8){grid-column:1/-1}._3GiIGG_reportTable td:nth-child(2){display:block}._3GiIGG_reportTable td:nth-child(2):before{margin-bottom:4px;display:block}._3GiIGG_reportTableWrap>footer{background:var(--tw-surface)}}@container _3GiIGG_tender-workbench (width<=600px){._3GiIGG_header{min-height:58px;padding:8px 12px}._3GiIGG_brandIcon{flex-basis:32px;width:32px;height:32px}._3GiIGG_subtitle{display:none}._3GiIGG_status{padding-inline:8px}._3GiIGG_stages{min-height:54px}._3GiIGG_stage{text-align:center;flex-direction:column;gap:5px;min-height:54px;padding:7px 4px}._3GiIGG_stageIcon{flex-basis:25px;width:25px;height:25px}._3GiIGG_stageIcon ._3GiIGG_icon{width:15px;height:15px}._3GiIGG_stageCopy small{display:none}._3GiIGG_stageSelected:after{left:7px;right:7px}._3GiIGG_body{padding:14px}._3GiIGG_pageHeading{gap:10px;display:grid}._3GiIGG_pageHeading h2{font-size:20px}._3GiIGG_pageHeadingAside{justify-self:start}._3GiIGG_scopeSurface,._3GiIGG_nextSuggestion,._3GiIGG_reportPrimaryAction{flex-direction:column;align-items:stretch}._3GiIGG_scopeGroup{width:100%}._3GiIGG_scopeButton{flex:1 1 0;padding-inline:5px}._3GiIGG_queryFieldLabel{flex-direction:column;align-items:flex-start;gap:2px}._3GiIGG_queryRichRow{grid-template-columns:1fr;gap:7px}._3GiIGG_queryDisclosure summary{grid-template-columns:minmax(90px,auto) minmax(0,1fr) auto}._3GiIGG_queryAmountLine{grid-template-columns:1fr 80px auto 80px auto}._3GiIGG_queryRegionActions{flex-direction:column;align-items:flex-start}._3GiIGG_queryRegionColumns{grid-template-columns:repeat(3,minmax(135px,1fr))}._3GiIGG_keywordTokens>input{min-width:140px}._3GiIGG_detailToolbar,._3GiIGG_detailToolbar:has(select:nth-of-type(4)),._3GiIGG_dataToolbar{grid-template-columns:1fr}._3GiIGG_detailToolbar:has(select:nth-of-type(4)) input,._3GiIGG_dataToolbar input{grid-column:auto}._3GiIGG_previewLegend,._3GiIGG_editorGrid,._3GiIGG_ruleConditionRow,._3GiIGG_detailColumns,._3GiIGG_reviewLayers,._3GiIGG_analysisToolbar,._3GiIGG_reviewToolbar,._3GiIGG_reviewAdvanced>div,._3GiIGG_analysisQuestion{grid-template-columns:1fr}._3GiIGG_reviewToolbar>input,._3GiIGG_editorWide{grid-column:auto}._3GiIGG_ruleEditorFooter{flex-direction:column;align-items:stretch}._3GiIGG_ruleEditorFooter>span{margin-right:0}._3GiIGG_statePanel>button{grid-column:1/-1}._3GiIGG_nextActions{flex-direction:column-reverse;width:100%}._3GiIGG_footer{flex-direction:column;align-items:stretch;gap:7px;padding:9px 12px}._3GiIGG_primary{width:100%}._3GiIGG_footerCopy{text-align:center}._3GiIGG_footerActions{flex-direction:column-reverse;width:100%}._3GiIGG_footerActions>button{width:100%}._3GiIGG_reviewBulkBar{align-items:stretch}._3GiIGG_reviewBulkSelection,._3GiIGG_reviewBulkActions{width:100%}._3GiIGG_reviewBulkActions ._3GiIGG_secondary,._3GiIGG_reviewBulkActions ._3GiIGG_ghostButton{flex:145px}._3GiIGG_reviewBulkHint{width:100%;margin-left:0}._3GiIGG_reviewBulkNote{grid-template-columns:1fr}._3GiIGG_decisionSaveRow{flex-direction:column;align-items:stretch}._3GiIGG_decisionSaveRow>span{margin-right:0}._3GiIGG_metricCard{min-height:100px}._3GiIGG_deliveryLead{min-height:0;padding:18px}._3GiIGG_deliveryLead h2{font-size:22px}._3GiIGG_deliveryFileCard>header{grid-template-columns:auto minmax(0,1fr)}._3GiIGG_deliveryFileCard>header ._3GiIGG_statusPill{grid-column:1/-1;justify-self:start}._3GiIGG_reportTabs button{padding-inline:9px}._3GiIGG_footer[data-workbench-phase=delivery]{flex-direction:row;align-items:center;min-height:62px}._3GiIGG_footer[data-workbench-phase=delivery] ._3GiIGG_footerCopy{display:none}._3GiIGG_footer[data-workbench-phase=delivery] ._3GiIGG_footerActions{flex-direction:row;width:auto}._3GiIGG_footer[data-workbench-phase=delivery] ._3GiIGG_footerActions>button{width:auto}._3GiIGG_footer[data-workbench-phase=decision]{flex-direction:row;align-items:center;min-height:62px}._3GiIGG_footer[data-workbench-phase=decision] ._3GiIGG_reviewFooterProgress span{display:none}._3GiIGG_footer[data-workbench-phase=decision] ._3GiIGG_footerActions{flex-direction:row;width:auto}._3GiIGG_footer[data-workbench-phase=decision] ._3GiIGG_footerActions>button{width:auto}}@container _3GiIGG_tender-workbench (width<=390px){._3GiIGG_body{padding:10px}._3GiIGG_dataView ._3GiIGG_dataTable tbody tr{grid-template-columns:1fr}._3GiIGG_decisionSegment{grid-template-columns:repeat(2,minmax(0,1fr))}._3GiIGG_brandCopy ._3GiIGG_title{text-overflow:ellipsis;white-space:nowrap;max-width:128px;overflow:hidden}._3GiIGG_status{font-size:0}._3GiIGG_status>span{margin:0}._3GiIGG_stageCopy strong{font-size:11px}._3GiIGG_metricGrid,._3GiIGG_s4Summary,._3GiIGG_classificationGrid,._3GiIGG_analysisFactGrid,._3GiIGG_reportKpis,._3GiIGG_reportInsights{grid-template-columns:1fr}._3GiIGG_s4Summary,._3GiIGG_reviewSummary{grid-template-columns:repeat(2,minmax(0,1fr))}._3GiIGG_deliveryFacts{grid-template-columns:1fr;display:grid}._3GiIGG_reportTable tr{grid-template-columns:1fr}._3GiIGG_reportTable td{grid-column:1/-1}._3GiIGG_taskSummary{grid-template-columns:1fr;gap:3px}._3GiIGG_taskSummary small{justify-self:start}._3GiIGG_footerHint,._3GiIGG_footerCopy:empty{display:none}._3GiIGG_surfaceHeader{display:grid}._3GiIGG_surfaceActions{justify-self:start}}@media (prefers-reduced-motion:reduce){._3GiIGG_spinner{animation-duration:1ms;animation-iteration-count:1}._3GiIGG_shell *,._3GiIGG_shell :before,._3GiIGG_shell :after{scroll-behavior:auto!important;transition-duration:1ms!important}}";
21194
+ const css = "._3GiIGG_shell{--tw-font-body:14px;--tw-font-table:13px;--tw-font-caption:12px;--tw-font-label:13px;--tw-font-title:20px;--tw-font-section:18px;--tw-line-body:1.55;--tw-control-height:40px;--tw-space-1:4px;--tw-space-2:8px;--tw-space-3:12px;--tw-space-4:16px;--tw-space-5:24px;--tw-space-6:32px;--tw-radius-sm:6px;--tw-radius:6px;--tw-radius-lg:8px;--tw-brand:var(--qcc-action);--tw-brand-strong:var(--qcc-hover);--tw-brand-soft:var(--qcc-selected);--tw-blue:var(--qcc-action);--tw-blue-soft:var(--qcc-selected);--tw-success:var(--qcc-success);--tw-success-soft:var(--qcc-success-bg);--tw-warning:var(--qcc-review);--tw-warning-soft:var(--qcc-review-bg);--tw-danger:var(--dsw-alias-state-error-primary,#b64141);--tw-danger-soft:color-mix(in srgb, var(--tw-danger) 10%, var(--tw-surface));--tw-purple:light-dark(#7756a6,#c6a6eb);--tw-purple-soft:light-dark(#f0eafb,#302640);--tw-ink:var(--qcc-text);--tw-muted:var(--qcc-muted);--tw-faint:var(--qcc-muted);--tw-line:var(--qcc-border);--tw-line-strong:var(--qcc-border);--tw-surface:var(--qcc-surface);--tw-surface-2:var(--qcc-page);--tw-surface-3:var(--qcc-table-head);--tw-hero-text:var(--qcc-on-action);width:100%;min-width:0;height:100%;min-height:0;color:var(--tw-ink);background:var(--tw-surface);font-family:Inter,Segoe UI,PingFang SC,Microsoft YaHei,sans-serif;font-size:var(--tw-font-body);line-height:var(--tw-line-body);-webkit-font-smoothing:antialiased;grid-template-rows:auto auto minmax(0,1fr) auto;display:grid;overflow:hidden;container:_3GiIGG_tender-workbench/inline-size}._3GiIGG_shell,._3GiIGG_shell *{box-sizing:border-box}._3GiIGG_shell [hidden]{display:none!important}._3GiIGG_primaryTabs{border-bottom:1px solid var(--tw-line);display:flex}._3GiIGG_primaryTabs button{color:var(--tw-muted);cursor:pointer;background:0 0;border:0;border-bottom:2px solid #0000;padding:10px 16px}._3GiIGG_primaryTabs button[aria-current=page]{color:var(--tw-brand);border-bottom-color:var(--tw-brand)}._3GiIGG_contextLine{color:var(--tw-muted);text-overflow:ellipsis;white-space:nowrap;margin:3px 0 0;font-size:11px;overflow:hidden}._3GiIGG_shell :where(button,input,select,textarea){min-width:0;color:inherit;font:inherit;letter-spacing:0}._3GiIGG_shell :where(button,input,select,textarea,a,summary):focus-visible{outline:3px solid var(--tw-brand);outline-offset:2px}._3GiIGG_shell button{cursor:pointer}._3GiIGG_shell button:disabled{cursor:not-allowed;opacity:.54}._3GiIGG_shell :where(h1,h2,h3,h4,p,dl,dd,ol,ul){margin-top:0}._3GiIGG_icon{fill:none;stroke:currentColor;stroke-width:1.8px;stroke-linecap:round;stroke-linejoin:round;width:18px;height:18px;display:block}._3GiIGG_header{justify-content:space-between;align-items:center;gap:var(--tw-space-4);border-bottom:1px solid var(--tw-line);background:var(--tw-surface);min-height:64px;padding:10px 20px;display:flex}._3GiIGG_brandBlock,._3GiIGG_titleRow,._3GiIGG_status,._3GiIGG_footer,._3GiIGG_primary,._3GiIGG_secondary,._3GiIGG_ghostButton,._3GiIGG_backButton,._3GiIGG_rowAction,._3GiIGG_iconButton,._3GiIGG_nextActions,._3GiIGG_surfaceActions{align-items:center;display:flex}._3GiIGG_brandBlock{gap:11px;min-width:0}._3GiIGG_brandIcon{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);width:36px;height:36px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);flex:0 0 36px;place-items:center;display:grid}._3GiIGG_brandCopy,._3GiIGG_pageHeadingCopy,._3GiIGG_footerCopy,._3GiIGG_rowMain,._3GiIGG_reportFileHeader>div,._3GiIGG_surfaceHeader>div{min-width:0}._3GiIGG_titleRow{gap:8px}._3GiIGG_title{margin:0;font-size:15px;font-weight:750;line-height:1.35}._3GiIGG_subtitle{color:var(--tw-muted);font-size:var(--tw-font-caption);text-overflow:ellipsis;white-space:nowrap;margin:2px 0 0;overflow:hidden}._3GiIGG_liveDot{background:var(--tw-muted);border-radius:50%;width:7px;height:7px;box-shadow:0 0 0 3px #98a2b326}._3GiIGG_liveDot[data-status=ready]{background:var(--tw-success)}._3GiIGG_liveDot[data-status=running],._3GiIGG_liveDot[data-status=waiting-agent]{background:var(--tw-brand)}._3GiIGG_liveDot[data-status=failed],._3GiIGG_liveDot[data-status=unavailable]{background:var(--tw-danger)}._3GiIGG_headerMeta{align-items:center;gap:var(--tw-space-2);flex:none;display:flex}._3GiIGG_status{border:1px solid var(--tw-line);min-height:30px;color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);white-space:nowrap;border-radius:999px;gap:7px;padding:5px 10px;font-weight:650}._3GiIGG_status>span{background:currentColor;border-radius:50%;width:7px;height:7px}._3GiIGG_status[data-status=ready]{color:var(--tw-success);background:var(--tw-success-soft);border-color:var(--tw-line)}._3GiIGG_status[data-status=waiting-agent],._3GiIGG_status[data-status=running]{color:var(--tw-brand-strong);background:var(--tw-brand-soft);border-color:var(--tw-line)}._3GiIGG_status[data-status=failed],._3GiIGG_status[data-status=unavailable]{color:var(--tw-danger);background:var(--tw-danger-soft);border-color:var(--tw-line)}._3GiIGG_executionPlan summary,._3GiIGG_savedNoteDetails summary{cursor:pointer;font-weight:650}._3GiIGG_stages{border-bottom:1px solid var(--tw-line);background:var(--tw-surface);grid-template-columns:repeat(4,minmax(0,1fr));min-height:62px;display:grid}._3GiIGG_stage{border:0;border-right:1px solid var(--tw-line);min-width:0;color:var(--tw-muted);text-align:left;background:0 0;justify-content:center;align-items:center;gap:10px;padding:10px 12px;display:flex;position:relative}._3GiIGG_stage:last-child{border-right:0}._3GiIGG_stage:hover{color:var(--tw-ink);background:var(--tw-surface-2)}._3GiIGG_stageSelected{color:var(--tw-brand-strong);background:var(--tw-brand-soft)}._3GiIGG_stageSelected:after{background:var(--tw-brand);content:\"\";border-radius:3px 3px 0 0;height:3px;position:absolute;bottom:-1px;left:18px;right:18px}._3GiIGG_stageIcon{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);flex:0 0 32px;place-items:center;width:32px;height:32px;display:grid}._3GiIGG_stageSelected ._3GiIGG_stageIcon{border-color:var(--tw-line);background:var(--tw-brand-soft)}._3GiIGG_stage[data-phase-status=completed] ._3GiIGG_stageIcon{color:var(--tw-success);border-color:var(--tw-line);background:var(--tw-success-soft)}._3GiIGG_stage[data-phase-status=failed] ._3GiIGG_stageIcon{color:var(--tw-danger);border-color:var(--tw-line);background:var(--tw-danger-soft)}._3GiIGG_stageCopy{gap:1px;min-width:0;display:grid}._3GiIGG_stageCopy strong{font-size:var(--tw-font-label);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._3GiIGG_stageCopy small{color:var(--tw-faint);font-size:11px}._3GiIGG_body{min-width:0;min-height:0;padding:var(--tw-space-5);overscroll-behavior:contain;background:var(--tw-surface-2);scrollbar-gutter:stable;scroll-padding-block-end:calc(62px + var(--tw-space-4));overflow:auto}._3GiIGG_stagePanel{outline:none;width:min(100%,1320px);min-width:0;margin:0 auto}._3GiIGG_dataView,._3GiIGG_s4View,._3GiIGG_reportWorkspace{gap:var(--tw-space-4);display:grid}._3GiIGG_pageHeading{justify-content:space-between;align-items:flex-end;gap:var(--tw-space-5);padding:0 2px 2px;display:flex}._3GiIGG_eyebrow{color:var(--tw-brand-strong);text-transform:uppercase;margin:0 0 5px;font-size:11px;font-weight:750}._3GiIGG_pageHeading h2{font-size:var(--tw-font-title);margin:0;font-weight:760;line-height:1.25}._3GiIGG_pageHeading p:not(._3GiIGG_eyebrow){max-width:760px;color:var(--tw-muted);margin:7px 0 0}._3GiIGG_pageHeadingAside{flex:none}._3GiIGG_statusPill{border:1px solid var(--tw-line);min-height:26px;color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);border-radius:999px;justify-content:center;align-items:center;padding:3px 9px;font-weight:650;line-height:1.35;display:inline-flex}._3GiIGG_statusPill[data-tone=brand]{color:var(--tw-brand-strong);border-color:var(--tw-line);background:var(--tw-brand-soft)}._3GiIGG_statusPill[data-tone=success]{color:var(--tw-success);border-color:var(--tw-line);background:var(--tw-success-soft)}._3GiIGG_statusPill[data-tone=warning]{color:var(--tw-warning);border-color:var(--tw-line);background:var(--tw-warning-soft)}._3GiIGG_statusPill[data-tone=danger]{color:var(--tw-danger);border-color:var(--tw-line);background:var(--tw-danger-soft)}._3GiIGG_statusPill[data-tone=purple]{color:var(--tw-purple);border-color:var(--tw-line);background:var(--tw-purple-soft)}._3GiIGG_surfaceHeader{justify-content:space-between;align-items:flex-start;gap:var(--tw-space-3);border-bottom:1px solid var(--tw-line);padding:16px 18px 13px;display:flex}._3GiIGG_surfaceHeader h3{font-size:var(--tw-font-section);margin:0;line-height:1.35}._3GiIGG_surfaceHeader p{color:var(--tw-muted);font-size:var(--tw-font-label);margin:4px 0 0}._3GiIGG_metricGrid,._3GiIGG_s4Summary,._3GiIGG_classificationGrid,._3GiIGG_reportMetrics{gap:var(--tw-space-3);grid-template-columns:repeat(4,minmax(0,1fr));display:grid}._3GiIGG_metricCard{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);align-content:center;gap:2px;min-width:0;min-height:112px;padding:15px 16px 14px;display:grid;position:relative;overflow:hidden}._3GiIGG_metricCard:before{background:var(--tw-line-strong);content:\"\";width:3px;position:absolute;top:0;bottom:0;left:0}._3GiIGG_metricCard[data-tone=brand]:before{background:var(--tw-brand)}._3GiIGG_metricCard[data-tone=success]:before{background:var(--tw-success)}._3GiIGG_metricCard[data-tone=warning]:before{background:var(--tw-warning)}._3GiIGG_metricCard[data-tone=danger]:before{background:var(--tw-danger)}._3GiIGG_metricCard[data-tone=purple]:before{background:var(--tw-purple)}._3GiIGG_metricCard>span{color:var(--tw-muted);font-size:var(--tw-font-label)}._3GiIGG_metricCard>strong{font-variant-numeric:tabular-nums;font-size:26px;line-height:1.2}._3GiIGG_metricCard>small{overflow-wrap:anywhere;color:var(--tw-faint);font-size:var(--tw-font-caption)}._3GiIGG_metricCard[data-zero=true]{opacity:.58}._3GiIGG_statePanel,._3GiIGG_feedback,._3GiIGG_writeProgress{border:1px solid var(--tw-line);border-left:3px solid var(--tw-line-strong);border-radius:var(--tw-radius);color:var(--tw-ink);background:var(--tw-surface);grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:11px;padding:12px 14px;display:grid}._3GiIGG_statePanel[data-tone=brand],._3GiIGG_feedback[data-tone=progress]{border-left-color:var(--tw-brand);background:var(--tw-brand-soft)}._3GiIGG_statePanel[data-tone=success],._3GiIGG_feedback[data-tone=success]{border-left-color:var(--tw-success);background:var(--tw-success-soft)}._3GiIGG_statePanel[data-tone=warning],._3GiIGG_feedback[data-tone=notice]{border-left-color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_statePanel[data-tone=danger],._3GiIGG_feedback[data-tone=error],._3GiIGG_writeProgress[data-write-phase=failed]{border-left-color:var(--tw-danger);background:var(--tw-danger-soft)}._3GiIGG_statePanel[data-tone=purple]{border-left-color:var(--tw-purple);background:var(--tw-purple-soft)}._3GiIGG_stateMark{background:var(--tw-line-strong);border-radius:50%;width:9px;height:9px}._3GiIGG_statePanel[data-tone=brand] ._3GiIGG_stateMark{background:var(--tw-brand)}._3GiIGG_statePanel[data-tone=success] ._3GiIGG_stateMark{background:var(--tw-success)}._3GiIGG_statePanel[data-tone=warning] ._3GiIGG_stateMark{background:var(--tw-warning)}._3GiIGG_statePanel[data-tone=danger] ._3GiIGG_stateMark{background:var(--tw-danger)}._3GiIGG_statePanel[data-tone=purple] ._3GiIGG_stateMark{background:var(--tw-purple)}._3GiIGG_statePanel p,._3GiIGG_feedback p,._3GiIGG_writeProgress small{color:var(--tw-muted);font-size:var(--tw-font-label);margin:2px 0 0}._3GiIGG_feedbackIcon{width:26px;height:26px;color:var(--tw-muted);place-items:center;display:grid}._3GiIGG_feedbackStack{gap:var(--tw-space-2);display:grid}._3GiIGG_progressMeter{gap:7px;min-width:180px;display:grid}._3GiIGG_progressMeter>div{color:var(--tw-muted);font-size:var(--tw-font-caption);justify-content:space-between;gap:12px;display:flex}._3GiIGG_progressMeter strong{color:var(--tw-ink);font-variant-numeric:tabular-nums}._3GiIGG_progressMeter progress{background:var(--tw-surface-3);width:100%;height:7px;accent-color:var(--tw-brand);border:0;border-radius:999px;overflow:hidden}._3GiIGG_progressMeter progress::-webkit-progress-bar{background:var(--tw-surface-3);border-radius:999px}._3GiIGG_progressMeter progress::-webkit-progress-value{background:var(--tw-brand);border-radius:999px}._3GiIGG_primary,._3GiIGG_secondary,._3GiIGG_backButton,._3GiIGG_rowAction,._3GiIGG_iconButton{min-height:var(--tw-control-height);border-radius:var(--tw-radius);justify-content:center;gap:7px;padding:8px 14px;font-weight:680;line-height:1.25;text-decoration:none}._3GiIGG_primary{border:1px solid var(--tw-brand);color:var(--qcc-on-action);background:var(--tw-brand)}._3GiIGG_primary:hover:not(:disabled){border-color:var(--tw-brand-strong);background:var(--tw-brand-strong)}._3GiIGG_secondary,._3GiIGG_backButton,._3GiIGG_rowAction{border:1px solid var(--tw-line-strong);color:var(--tw-ink);background:var(--tw-surface)}._3GiIGG_secondary:hover:not(:disabled),._3GiIGG_backButton:hover:not(:disabled),._3GiIGG_rowAction:hover:not(:disabled){border-color:var(--tw-brand-strong);background:var(--tw-surface-2)}._3GiIGG_ghostButton{min-height:var(--tw-control-height);border-radius:var(--tw-radius);color:var(--tw-muted);background:0 0;border:0;padding:7px 9px}._3GiIGG_ghostButton:hover:not(:disabled){color:var(--tw-ink);background:var(--tw-surface-2)}._3GiIGG_iconButton{width:var(--tw-control-height);border:1px solid var(--tw-line);background:var(--tw-surface);padding:0;font-size:20px}._3GiIGG_backButton{width:max-content;min-height:34px;color:var(--tw-muted);font-size:var(--tw-font-label);padding:5px 9px}._3GiIGG_spinner{border:2px solid;border-right-color:#0000;border-radius:50%;width:15px;height:15px;animation:.76s linear infinite _3GiIGG_tw-spin}@keyframes _3GiIGG_tw-spin{to{transform:rotate(360deg)}}._3GiIGG_shell :where(input,select,textarea){width:100%;min-height:var(--tw-control-height);border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);padding:8px 10px}._3GiIGG_shell textarea{resize:vertical;min-height:76px}._3GiIGG_shell :where(input,select,textarea)::placeholder{color:var(--tw-faint)}._3GiIGG_shell :where(input,select,textarea):hover:not(:disabled){border-color:var(--tw-brand-strong)}._3GiIGG_shell :where(input,select,textarea)[aria-invalid=true]{border-color:var(--tw-danger);background:var(--tw-danger-soft)}._3GiIGG_field,._3GiIGG_editorGrid label,._3GiIGG_reviewBulkNote,._3GiIGG_decisionEditor label{gap:6px;display:grid}._3GiIGG_field>span,._3GiIGG_editorGrid label>span,._3GiIGG_reviewBulkNote>span,._3GiIGG_decisionEditor label>span{color:var(--tw-ink);font-size:var(--tw-font-label);font-weight:680}._3GiIGG_field>small{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_fieldError,._3GiIGG_inlineError{color:var(--tw-danger);font-size:var(--tw-font-label);margin:0}._3GiIGG_footer{justify-content:space-between;gap:var(--tw-space-4);border-top:1px solid var(--tw-line);background:var(--tw-surface);min-height:62px;padding:10px 20px;box-shadow:0 -6px 18px #1119230a}._3GiIGG_footerCopy{gap:2px;display:grid}._3GiIGG_footerHint{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_disabledReason{color:var(--tw-warning);font-size:var(--tw-font-caption)}._3GiIGG_footerPortal{display:contents}._3GiIGG_footerActions{align-items:center;gap:8px;display:flex}._3GiIGG_queryCard,._3GiIGG_dataCard,._3GiIGG_screenCard,._3GiIGG_ruleListPanel,._3GiIGG_ruleEditor,._3GiIGG_summarySurface,._3GiIGG_queuePanel,._3GiIGG_analysisDetail,._3GiIGG_reviewDetail,._3GiIGG_reportCreate,._3GiIGG_reportDelivery{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);min-width:0;overflow:hidden;box-shadow:0 2px 8px #1119230a}._3GiIGG_summaryInline{flex-wrap:wrap;justify-content:flex-end;gap:7px;display:flex}._3GiIGG_queryCard{gap:var(--tw-space-3);background:0 0;border:0;display:grid}._3GiIGG_queryLayout{grid-template-columns:minmax(540px,1fr) 320px;align-items:start;gap:15px;min-height:0;display:grid}._3GiIGG_queryMain{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);min-width:0;margin:0;padding:0;overflow:visible;box-shadow:0 2px 8px #1119230a}._3GiIGG_queryMain>legend{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_querySection{padding:15px}._3GiIGG_scopeSurface{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-brand-soft);flex-wrap:wrap;justify-content:space-between;align-items:center;gap:10px;margin:15px;padding:12px 14px;display:flex}._3GiIGG_scopeCopy{gap:2px;display:grid}._3GiIGG_scopeCopy strong{color:var(--tw-brand)}._3GiIGG_scopeCopy span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_scopeGroup{border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);margin:0;padding:3px;display:flex}._3GiIGG_scopeButton{border-radius:var(--tw-radius-sm);min-height:32px;color:var(--tw-muted);font-size:var(--tw-font-label);background:0 0;border:0;padding:5px 10px}._3GiIGG_scopeGroup ._3GiIGG_scopeButton[aria-pressed=true]{color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-weight:700}._3GiIGG_formSectionHeading{justify-content:space-between;align-items:center;gap:12px;margin-bottom:11px;display:flex}._3GiIGG_formSectionHeading h3{font-size:var(--tw-font-section);margin:0}._3GiIGG_formSectionHeading p{color:var(--tw-muted);font-size:var(--tw-font-label);margin:3px 0 0}._3GiIGG_formSectionHeading>span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_queryCommonFields{grid-template-columns:minmax(260px,1fr) minmax(300px,1.1fr);gap:14px;display:grid}._3GiIGG_queryFieldFull{grid-column:1/-1}._3GiIGG_queryFieldBlock{gap:7px;min-width:0;padding:0;display:grid}._3GiIGG_queryFieldLabel{color:var(--tw-muted);font-size:var(--tw-font-label);justify-content:space-between;align-items:center;gap:8px;font-weight:700;display:flex}._3GiIGG_queryFieldLabel small{color:var(--tw-muted);font-size:var(--tw-font-caption);font-weight:450;line-height:1.4}._3GiIGG_queryFieldControl{gap:8px;display:grid}._3GiIGG_keywordTokens{min-height:var(--tw-control-height);border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);flex-wrap:wrap;align-items:center;gap:5px;padding:5px 8px;display:flex}._3GiIGG_keywordTokens>span,._3GiIGG_queryRegionSelected>button{border-radius:var(--tw-radius-sm);min-height:27px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-size:var(--tw-font-label);border:0;align-items:center;gap:4px;padding:3px 7px;display:inline-flex}._3GiIGG_keywordTokens>span button{width:19px;height:19px;color:var(--tw-brand-strong);background:0 0;border:0;border-radius:50%;place-items:center;padding:0;display:grid}._3GiIGG_keywordTokens>input{background:0 0;border:0;outline:0;flex:1;min-width:180px;min-height:29px;padding:2px 4px}._3GiIGG_queryChoices{flex-wrap:wrap;gap:6px;display:flex}._3GiIGG_queryChoice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);min-height:30px;color:var(--tw-muted);background:var(--tw-surface);font-size:var(--tw-font-caption);padding:4px 9px}._3GiIGG_queryChoice:hover:not(:disabled){border-color:var(--tw-brand-strong)}._3GiIGG_queryChoice[aria-pressed=true]{border-color:var(--tw-brand);color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-weight:700}._3GiIGG_queryInlineExtra{border-left:3px solid var(--tw-brand);background:var(--tw-brand-soft);align-items:end;gap:8px;padding:9px 10px;display:flex}._3GiIGG_queryInlineExtra label{color:var(--tw-muted);font-size:var(--tw-font-caption);gap:4px;display:grid}._3GiIGG_queryInlineExtra :where(input,select){border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);min-height:34px;padding:5px 8px}._3GiIGG_queryGoalInput{border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);width:100%;min-height:38px;padding:7px 10px}._3GiIGG_queryRegionControl{border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius-lg);background:var(--tw-surface);padding:10px;position:relative}._3GiIGG_queryRegionSelected{min-height:27px;color:var(--tw-muted);flex-wrap:wrap;align-items:center;gap:5px;display:flex}._3GiIGG_queryRegionActions{justify-content:space-between;align-items:center;gap:10px;margin-top:8px;display:flex}._3GiIGG_queryRegionActions>span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_queryRegionActions>button{color:var(--tw-brand);font-size:var(--tw-font-label);background:0 0;border:0;padding:0;font-weight:650}._3GiIGG_queryRegionPicker{z-index:8;border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius-lg);background:var(--tw-surface);position:absolute;top:calc(100% + 6px);left:0;right:0;overflow:hidden;box-shadow:0 16px 34px #1119232e}._3GiIGG_queryRegionSearch{border-bottom:1px solid var(--tw-line);align-items:center;gap:9px;padding:9px;display:flex}._3GiIGG_queryRegionSearch input{border:1px solid var(--tw-line);border-radius:var(--tw-radius);flex:1;min-height:35px;padding:6px 9px}._3GiIGG_queryRegionSearch span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_queryRegionColumns{grid-template-columns:repeat(3,minmax(150px,1fr));min-height:230px;max-height:330px;display:grid;overflow-x:auto}._3GiIGG_queryRegionColumn{border-right:1px solid var(--tw-line);min-width:150px}._3GiIGG_queryRegionColumn>strong{color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);padding:7px 9px;display:block}._3GiIGG_queryRegionColumn>div{max-height:292px;overflow-y:auto}._3GiIGG_queryRegionColumn button,._3GiIGG_queryRegionResults button{width:100%;min-height:32px;color:var(--tw-ink);text-align:left;background:0 0;border:0;grid-template-columns:18px minmax(0,1fr) auto;align-items:center;gap:5px;padding:5px 9px;display:grid}._3GiIGG_queryRegionColumn button:hover,._3GiIGG_queryRegionColumn button[data-active=true],._3GiIGG_queryRegionResults button:hover{background:var(--tw-brand-soft)}._3GiIGG_queryRegionColumn button[aria-pressed=true],._3GiIGG_queryRegionResults button[aria-pressed=true]{color:var(--tw-brand-strong);font-weight:700}._3GiIGG_queryRegionColumn i{color:var(--tw-muted);font-style:normal}._3GiIGG_queryRegionResults{max-height:300px;padding:5px;overflow-y:auto}._3GiIGG_queryRegionResults p{color:var(--tw-muted);text-align:center;margin:18px}._3GiIGG_queryRegionPicker footer{border-top:1px solid var(--tw-line);background:var(--tw-surface-2);justify-content:space-between;gap:8px;padding:8px 9px;display:flex}._3GiIGG_queryRegionPicker footer button{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);min-height:31px;padding:5px 10px}._3GiIGG_queryRegionPicker footer button:last-child{border-color:var(--tw-brand);color:var(--qcc-on-action);background:var(--tw-brand)}._3GiIGG_queryBranchTabs{border-top:1px solid var(--tw-line);border-bottom:1px solid var(--tw-line);background:var(--tw-surface-2);gap:4px;padding:4px 4px 0;display:flex;overflow-x:auto}._3GiIGG_queryBranchTabs button{min-height:40px;color:var(--tw-muted);font-size:var(--tw-font-label);white-space:nowrap;background:0 0;border:0;border-bottom:2px solid #0000;padding:0 13px}._3GiIGG_queryBranchTabs button[aria-selected=true]{border-bottom-color:var(--tw-brand);color:var(--tw-brand-strong);font-weight:700}._3GiIGG_queryBranchTabs span{color:var(--tw-muted);background:var(--tw-surface-2);border-radius:999px;margin-left:5px;padding:2px 5px;font-size:10px}._3GiIGG_queryBranchTabs button[aria-selected=true] span{color:var(--tw-brand-strong);background:var(--tw-brand-soft)}._3GiIGG_queryBranchPanel{display:block}._3GiIGG_queryBranchBody{padding:15px}._3GiIGG_queryRichRow{border-top:1px solid var(--tw-line);grid-template-columns:116px minmax(0,1fr);gap:14px;padding:12px 0;display:grid}._3GiIGG_queryRichRow:first-child{border-top:0}._3GiIGG_queryRichLabel strong,._3GiIGG_queryRichLabel span{display:block}._3GiIGG_queryRichLabel strong{color:var(--tw-muted);font-size:var(--tw-font-label)}._3GiIGG_queryRichLabel span{color:var(--tw-muted);font-size:var(--tw-font-caption);margin-top:3px}._3GiIGG_queryDisclosure{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface-2)}._3GiIGG_queryDisclosure+._3GiIGG_queryDisclosure{margin-top:8px}._3GiIGG_queryDisclosure summary{color:var(--tw-muted);font-size:var(--tw-font-label);cursor:pointer;grid-template-columns:110px minmax(0,1fr) auto;align-items:center;gap:10px;padding:10px 11px;list-style:none;display:grid}._3GiIGG_queryDisclosure summary::-webkit-details-marker{display:none}._3GiIGG_queryDisclosure summary>span{color:var(--tw-muted);font-size:var(--tw-font-caption);text-overflow:ellipsis;white-space:nowrap;font-weight:450;overflow:hidden}._3GiIGG_queryDisclosure summary:after{color:var(--tw-muted);content:\"⌄\"}._3GiIGG_queryDisclosure[open] summary:after{content:\"⌃\"}._3GiIGG_queryDisclosureBody{border-top:1px solid var(--tw-line);padding:11px}._3GiIGG_queryAmountLine{grid-template-columns:minmax(0,1fr) 88px auto 88px auto;align-items:end;gap:6px;margin-top:8px;display:grid}._3GiIGG_queryAmountLine>span{color:var(--tw-muted);font-size:var(--tw-font-caption);align-self:center}._3GiIGG_queryAmountLine label{gap:3px;display:grid}._3GiIGG_queryAmountLine label>span{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_queryAmountLine input{border:1px solid var(--tw-line);border-radius:var(--tw-radius);width:100%;min-height:32px;padding:4px 7px}._3GiIGG_queryPlan{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);align-content:start;gap:12px;padding:0;display:grid;position:sticky;top:0;overflow:hidden;box-shadow:0 2px 8px #1119230a}._3GiIGG_queryPlanHeading{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:flex-start;gap:10px;padding:13px 14px;display:flex}._3GiIGG_queryPlanHeading span:first-child{color:var(--tw-brand-strong);text-transform:uppercase;font-size:11px;font-weight:750}._3GiIGG_queryPlanHeading h3{font-size:var(--tw-font-section);margin:3px 0 0}._3GiIGG_queryPlanHeading p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:3px 0 0}._3GiIGG_queryPlanNotice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-brand-soft);font-size:var(--tw-font-caption);gap:3px;margin:0 12px;padding:9px 10px;display:grid}._3GiIGG_queryPlanNotice[data-tone=warning]{border-color:var(--tw-line);color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_executionCalls{gap:8px;padding:0 12px;display:grid}._3GiIGG_executionCall{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface-2);overflow:hidden}._3GiIGG_executionCall[data-plan-status=invalid]{border-color:var(--tw-line);background:var(--tw-warning-soft)}._3GiIGG_executionCall>header{border-bottom:1px solid var(--tw-line);grid-template-columns:24px minmax(0,1fr);align-items:center;gap:7px;padding:9px 10px;display:grid}._3GiIGG_executionCall>header span{border-radius:var(--tw-radius);width:22px;height:22px;color:var(--qcc-on-action);background:var(--tw-brand);font-size:var(--tw-font-caption);place-items:center;font-weight:750;display:grid}._3GiIGG_executionCall>header strong{text-overflow:ellipsis;white-space:nowrap;font-family:Consolas,monospace;font-size:11px;overflow:hidden}._3GiIGG_executionCall dl{margin:0;padding:5px 10px 8px;display:grid}._3GiIGG_executionCall dl div{border-bottom:1px solid var(--tw-line);font-size:var(--tw-font-caption);grid-template-columns:86px minmax(0,1fr);gap:7px;padding:5px 0;display:grid}._3GiIGG_executionCall dl div:last-child{border-bottom:0}._3GiIGG_executionCall dt{color:var(--tw-muted);font-family:Consolas,monospace}._3GiIGG_executionCall dd{overflow-wrap:anywhere;text-align:right;margin:0;font-weight:650}._3GiIGG_executionCall>p{color:var(--tw-warning);font-size:var(--tw-font-caption);margin:0;padding:10px}._3GiIGG_planValidation{border-top:1px solid var(--tw-line);margin:0 12px 12px;padding-top:12px}._3GiIGG_planValidation h4{font-size:var(--tw-font-label);margin:0 0 8px}._3GiIGG_planValidation ul{gap:7px;margin:0;padding:0;list-style:none;display:grid}._3GiIGG_planValidation li{color:var(--tw-muted);font-size:var(--tw-font-caption);grid-template-columns:18px minmax(0,1fr);gap:7px;display:grid}._3GiIGG_planValidation li:before{border-radius:var(--tw-radius-sm);width:17px;height:17px;color:var(--qcc-on-action);background:var(--tw-warning);content:\"!\";place-items:center;font-size:10px;font-weight:750;display:grid}._3GiIGG_planValidation li[data-valid=true]:before{color:var(--tw-brand);background:var(--tw-brand-soft);content:\"✓\"}._3GiIGG_queryCard>._3GiIGG_fieldError{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-danger-soft);margin:0;padding:11px 14px}._3GiIGG_taskSummary{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-brand-soft);grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:12px;padding:12px 15px;display:grid}._3GiIGG_taskSummary>span{color:var(--tw-brand-strong);font-size:var(--tw-font-caption);font-weight:750}._3GiIGG_taskSummary strong{overflow-wrap:anywhere}._3GiIGG_taskSummary small{color:var(--tw-muted)}._3GiIGG_overviewLayout{gap:var(--tw-space-3);grid-template-columns:minmax(0,1.4fr) minmax(260px,.7fr);display:grid}._3GiIGG_sourceProgressList{gap:11px;padding:14px 18px 18px;display:grid}._3GiIGG_sourceProgress{border:1px solid var(--tw-line);border-radius:var(--tw-radius);gap:9px;padding:12px;display:grid}._3GiIGG_sourceProgress>div:first-child{justify-content:space-between;align-items:center;gap:10px;display:flex}._3GiIGG_sourceProgress p{color:var(--tw-danger);font-size:var(--tw-font-label);margin:0}._3GiIGG_qualityList,._3GiIGG_auditList{margin:0;padding:12px 18px;display:grid}._3GiIGG_qualityList div,._3GiIGG_auditList div{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:center;gap:12px;padding:9px 0;display:flex}._3GiIGG_qualityList div:last-child,._3GiIGG_auditList div:last-child{border-bottom:0}._3GiIGG_qualityList dt,._3GiIGG_auditList dt{color:var(--tw-muted)}._3GiIGG_qualityList dd,._3GiIGG_auditList dd{font-variant-numeric:tabular-nums;margin:0;font-weight:750}._3GiIGG_qualityList [data-tone=warning] dd,._3GiIGG_auditList [data-tone=warning] dd{color:var(--tw-warning)}._3GiIGG_scopeNotice,._3GiIGG_analysisBoundary{border-top:1px solid var(--tw-line);color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);margin:0;padding:11px 18px}._3GiIGG_nextSuggestion{justify-content:space-between;align-items:center;gap:var(--tw-space-4);border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-brand-soft);padding:15px 17px;display:flex}._3GiIGG_nextSuggestion strong{font-size:15px}._3GiIGG_nextSuggestion p{color:var(--tw-muted);margin:3px 0 0}._3GiIGG_nextActions{gap:var(--tw-space-2);flex:none}._3GiIGG_detailTabs{border-bottom:1px solid var(--tw-line);background:var(--tw-surface);gap:4px;padding:0;display:flex;overflow-x:auto}._3GiIGG_detailTabs button{min-height:40px;color:var(--tw-muted);white-space:nowrap;background:0 0;border:0;border-bottom:2px solid #0000;padding:8px 12px}._3GiIGG_detailTabs button[aria-pressed=true]{color:var(--tw-brand);border-bottom-color:var(--tw-brand);background:0 0}._3GiIGG_detailToolbar,._3GiIGG_dataToolbar{border-bottom:1px solid var(--tw-line);background:var(--tw-surface-2);grid-template-columns:minmax(180px,1.5fr) repeat(3,minmax(130px,.65fr));gap:9px;padding:13px 14px;display:grid}._3GiIGG_detailToolbar:has(select:nth-of-type(4)){grid-template-columns:minmax(180px,1.4fr) repeat(5,minmax(125px,.6fr))}._3GiIGG_detailWorkspace{grid-template-columns:minmax(0,1fr);min-width:0;display:grid}._3GiIGG_detailWorkspaceOpen{grid-template-columns:minmax(0,1.55fr) minmax(290px,.7fr)}._3GiIGG_dataTableWrap{min-width:0;overflow:auto}._3GiIGG_dataTable{border-collapse:collapse;width:100%;min-width:840px;font-size:var(--tw-font-table)}._3GiIGG_shell td,._3GiIGG_dataTable th{border-bottom:1px solid var(--tw-line);text-align:left;vertical-align:top;padding:11px 12px}._3GiIGG_dataTable th{z-index:1;color:var(--tw-muted);background:var(--qcc-table-head);font-size:var(--tw-font-caption);white-space:nowrap;font-weight:750;position:sticky;top:0}._3GiIGG_dataTable tbody tr:hover{background:var(--tw-surface-2)}._3GiIGG_dataTable tbody tr[data-row-selected=true]{background:var(--tw-brand-soft)}._3GiIGG_dataTable td strong{overflow-wrap:anywhere;max-width:360px;display:block}._3GiIGG_dataTable td small{color:var(--tw-muted);margin-top:3px;display:block}._3GiIGG_sourceTag,._3GiIGG_fieldStatus{min-height:24px;color:var(--tw-muted);background:var(--tw-surface-3);font-size:var(--tw-font-caption);white-space:nowrap;border-radius:999px;align-items:center;padding:2px 7px;font-weight:650;display:inline-flex}._3GiIGG_sourceTag[data-source=tender]{color:var(--tw-blue);background:var(--tw-blue-soft)}._3GiIGG_sourceTag[data-source=proposed]{color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_sourceTag[data-classification=include]{color:var(--tw-success);background:var(--tw-success-soft)}._3GiIGG_sourceTag[data-classification=observe]{color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_sourceTag[data-classification=manual-review]{color:var(--tw-purple);background:var(--tw-purple-soft)}._3GiIGG_sourceTag[data-classification=exclude]{color:var(--tw-danger);background:var(--tw-danger-soft)}._3GiIGG_fieldStatus[data-field-status=normalized]{color:var(--tw-success);background:var(--tw-success-soft)}._3GiIGG_fieldStatus[data-field-status=missing],._3GiIGG_fieldStatus[data-field-status=unparseable]{color:var(--tw-warning);background:var(--tw-warning-soft)}._3GiIGG_rowAction{min-height:30px;color:var(--tw-brand-strong);font-size:var(--tw-font-caption);padding:4px 8px}._3GiIGG_rowTitleButton{width:100%;color:inherit;text-align:left;background:0 0;border:0;gap:3px;padding:0;display:grid}._3GiIGG_rowTitleButton strong{overflow-wrap:anywhere}._3GiIGG_rowTitleButton small{color:var(--tw-muted)}._3GiIGG_rowTitleButton:hover strong,._3GiIGG_rowTitleButton:focus-visible strong{color:var(--tw-brand-strong)}._3GiIGG_recordDetail,._3GiIGG_traceCard{border-left:1px solid var(--tw-line);background:var(--tw-surface-2);min-width:0;padding:16px}._3GiIGG_recordDetail{align-self:start;position:sticky;top:0}._3GiIGG_recordDetail header,._3GiIGG_traceCard header,._3GiIGG_analysisDetail>header,._3GiIGG_reviewDetail>header{justify-content:space-between;align-items:flex-start;gap:12px;display:flex}._3GiIGG_recordDetail header>div,._3GiIGG_traceCard header>div{gap:8px;display:grid}._3GiIGG_recordDetail h3{font-size:var(--tw-font-section);overflow-wrap:anywhere;margin:0}._3GiIGG_detailLead{color:var(--tw-muted);margin:12px 0}._3GiIGG_recordDetail dl{margin:0;display:grid}._3GiIGG_recordDetail dl div{border-bottom:1px solid var(--tw-line);grid-template-columns:minmax(110px,.8fr) minmax(0,1.2fr);gap:10px;padding:8px 0;display:grid}._3GiIGG_recordDetail dt{color:var(--tw-muted)}._3GiIGG_recordDetail dd{overflow-wrap:anywhere;margin:0}._3GiIGG_sourceLink{color:var(--tw-brand-strong);margin-top:13px;font-weight:680;text-decoration:none;display:inline-flex}._3GiIGG_sourceLink:hover{text-decoration:underline}._3GiIGG_tableFooter{border-top:1px solid var(--tw-line);min-height:48px;color:var(--tw-muted);font-size:var(--tw-font-caption);justify-content:space-between;align-items:center;gap:12px;padding:8px 13px;display:flex}._3GiIGG_tableFooter>div{gap:6px;display:flex}._3GiIGG_tableFooter button{border:1px solid var(--tw-line);border-radius:var(--tw-radius-sm);background:var(--tw-surface);min-height:30px;padding:4px 9px}._3GiIGG_dataLoading,._3GiIGG_dataEmpty,._3GiIGG_dataError{min-height:150px;color:var(--tw-muted);text-align:center;place-content:center;gap:7px;padding:22px;display:grid}._3GiIGG_dataError{color:var(--tw-danger)}._3GiIGG_dataError button{margin:4px auto 0}._3GiIGG_inlineLoading{color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-size:var(--tw-font-caption);padding:7px 13px}._3GiIGG_subNavigation{width:100%;max-width:100%;margin-bottom:var(--tw-space-4);border-bottom:1px solid var(--tw-line);background:var(--tw-surface);gap:4px;padding:0;display:flex;overflow-x:auto}._3GiIGG_subNavigation button{min-height:40px;color:var(--tw-muted);white-space:nowrap;background:0 0;border:0;border-bottom:2px solid #0000;padding:8px 12px}._3GiIGG_subNavigation button[aria-selected=true]{color:var(--tw-brand);border-bottom-color:var(--tw-brand);background:0 0}._3GiIGG_subNavigation button:disabled{color:var(--tw-faint);cursor:not-allowed;background:0 0}._3GiIGG_rulesLayout{grid-template-columns:330px minmax(480px,1fr);align-items:start;gap:14px;min-width:0;display:grid}._3GiIGG_ruleListPanel{align-content:start;position:sticky;top:0}._3GiIGG_ruleListPanel>header{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:center;gap:10px;min-height:58px;padding:10px 12px 10px 14px;display:flex}._3GiIGG_ruleListPanel>header>div{gap:2px;display:grid}._3GiIGG_ruleListPanel>header small{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_ruleList{align-content:start;gap:8px;padding:10px;display:grid}._3GiIGG_ruleItem{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);grid-template-columns:minmax(0,1fr) auto;align-items:center;display:grid;overflow:hidden}._3GiIGG_ruleSelectButton{text-align:left;background:0 0;border:0;width:100%;padding:12px 14px}._3GiIGG_ruleSelectButton>span{gap:4px;display:grid}._3GiIGG_ruleSelectButton small{color:var(--tw-muted);flex-wrap:wrap;gap:5px 9px;display:flex}._3GiIGG_ruleSelectButton small span:first-child{color:var(--tw-brand-strong);font-weight:680}._3GiIGG_ruleCardCopy p{color:var(--tw-muted);font-size:var(--tw-font-caption);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:0;display:-webkit-box;overflow:hidden}._3GiIGG_ruleCardCopy em{color:var(--tw-brand-strong);font-size:var(--tw-font-caption);font-style:normal;font-weight:650}._3GiIGG_ruleSelected{border-color:var(--tw-brand);background:var(--tw-brand-soft);box-shadow:inset 3px 0 0 var(--tw-brand)}._3GiIGG_ruleItem>input{appearance:none;background:var(--tw-line-strong);border:0;border-radius:999px;width:34px;height:20px;min-height:20px;margin-right:12px;position:relative;box-shadow:inset 0 0 0 1px #11192314}._3GiIGG_ruleItem>input:before{background:var(--tw-surface);content:\"\";border-radius:50%;width:14px;height:14px;transition:transform .14s;position:absolute;top:3px;left:3px;box-shadow:0 1px 3px #11192338}._3GiIGG_ruleItem>input:checked{background:var(--tw-brand)}._3GiIGG_ruleItem>input:checked:before{transform:translate(14px)}._3GiIGG_editorHeader{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:flex-start;gap:10px;padding:15px 17px;display:flex}._3GiIGG_editorHeader>div{gap:2px;display:grid}._3GiIGG_editorHeaderActions{flex-direction:row;align-items:center;gap:7px!important;display:flex!important}._3GiIGG_editorHeader span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_editorGrid{grid-template-columns:minmax(180px,1.4fr) repeat(2,minmax(120px,.7fr));gap:9px;padding:17px;display:grid}._3GiIGG_editorWide{grid-column:1/-1}._3GiIGG_ruleConditionEditor{border-top:1px solid var(--tw-line);gap:8px;margin-top:4px;padding-top:13px;display:grid}._3GiIGG_ruleConditionEditor>header{justify-content:space-between;align-items:center;gap:10px;display:flex}._3GiIGG_ruleConditionEditor>header>div{gap:2px;display:grid}._3GiIGG_ruleConditionEditor>header span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_ruleConditionRow{grid-template-columns:minmax(140px,.8fr) minmax(150px,.8fr) minmax(220px,1.4fr);gap:8px;display:grid}._3GiIGG_ruleConditionRow label>span,._3GiIGG_ruleOperator>span{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_ruleOperator>strong{min-height:var(--tw-control-height);border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-label);align-items:center;padding:8px 10px;font-weight:550;display:flex}._3GiIGG_ruleExceptionEditor{border:1px dashed var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-warning-soft);padding:10px}._3GiIGG_ruleExceptionEditor>header{justify-content:space-between;align-items:center;gap:8px;margin-bottom:7px;display:flex}._3GiIGG_ruleExceptionEditor>header strong,._3GiIGG_ruleExceptionEditor>header small{color:var(--tw-warning);font-size:var(--tw-font-caption)}._3GiIGG_ruleKeywordBox{min-height:var(--tw-control-height);border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface);flex-wrap:wrap;align-items:center;gap:5px;padding:5px 7px;display:flex}._3GiIGG_ruleKeywordBox>span{border-radius:var(--tw-radius-sm);min-height:24px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-size:var(--tw-font-caption);align-items:center;gap:3px;padding-left:7px;display:inline-flex}._3GiIGG_ruleKeywordBox>span>button{border-radius:var(--tw-radius-sm);width:23px;min-height:23px;color:inherit;background:0 0;border:0;padding:0}._3GiIGG_ruleKeywordBox>span>button:hover:not(:disabled){background:var(--tw-brand-soft)}._3GiIGG_ruleKeywordBox>input{min-width:120px;min-height:26px;box-shadow:none;background:0 0;border:0;flex:150px;padding:3px}._3GiIGG_ruleKeywordBox>input:focus{box-shadow:none;outline:0}._3GiIGG_ruleEditorFooter{border-top:1px solid var(--tw-line);align-items:center;gap:9px;padding:11px 17px;display:flex}._3GiIGG_ruleEditorFooter>span{color:var(--tw-muted);font-size:var(--tw-font-caption);margin-right:auto}._3GiIGG_selectedRuleImpact{background:0 0}._3GiIGG_selectedRuleImpact dl{grid-template-columns:repeat(4,1fr);gap:7px;margin:0;display:grid}._3GiIGG_selectedRuleImpact dl div{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);padding:9px 10px}._3GiIGG_selectedRuleImpact dt{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_selectedRuleImpact dd{margin:4px 0 0;font-size:20px;font-weight:750}._3GiIGG_selectedRuleImpact[data-preview-status=stale]{opacity:.58}._3GiIGG_stageState{min-height:26px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-size:var(--tw-font-caption);border-radius:999px;align-items:center;padding:3px 8px;font-weight:650;display:inline-flex}._3GiIGG_rulePreviewGrid{grid-template-columns:minmax(340px,1.15fr) minmax(280px,.85fr);gap:14px;display:grid}._3GiIGG_rulePreviewPane{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);min-width:0;overflow:hidden}._3GiIGG_rulePreviewBody{padding:13px}._3GiIGG_sampleList{gap:7px;display:grid}._3GiIGG_sampleCard{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);padding:11px}._3GiIGG_sampleCard strong{overflow-wrap:anywhere;display:block}._3GiIGG_sampleCard p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_sampleCard>span,._3GiIGG_sampleCard>small{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_previewLegend{grid-template-columns:repeat(4,minmax(0,1fr));gap:7px;display:grid}._3GiIGG_previewLegend>div{grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:6px;display:grid}._3GiIGG_previewLegend i{background:var(--tw-brand);border-radius:50%;width:8px;height:8px}._3GiIGG_previewLegend [data-classification=observe] i{background:var(--tw-warning)}._3GiIGG_previewLegend [data-classification=manual-review] i{background:var(--tw-purple)}._3GiIGG_previewLegend [data-classification=exclude] i{background:var(--tw-danger)}._3GiIGG_previewLegend span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_previewFacts{border-block:1px solid var(--tw-line);color:var(--tw-muted);font-size:var(--tw-font-caption);flex-wrap:wrap;gap:6px 12px;margin-top:13px;padding:10px 0;display:flex}._3GiIGG_conflictList{gap:7px;margin-top:11px;display:grid}._3GiIGG_conflictList>article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);padding:9px 10px}._3GiIGG_conflictList strong,._3GiIGG_conflictList span{display:block}._3GiIGG_conflictList span,._3GiIGG_conflictList>p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:3px 0 0}._3GiIGG_savedNoteDetails{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-surface-2);margin-top:12px;padding:10px 12px}._3GiIGG_savedNoteDetails p{color:var(--tw-ink);white-space:pre-wrap;margin:8px 0 0}._3GiIGG_classificationGrid{grid-template-columns:repeat(5,minmax(105px,1fr))}._3GiIGG_classificationMetric{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);text-align:left;min-height:104px;padding:14px;position:relative;overflow:hidden}._3GiIGG_classificationMetric:before{background:var(--tw-line-strong);content:\"\";height:3px;position:absolute;top:0;left:0;right:0}._3GiIGG_classificationMetric[data-classification=include]:before{background:var(--tw-success)}._3GiIGG_classificationMetric[data-classification=observe]:before{background:var(--tw-warning)}._3GiIGG_classificationMetric[data-classification=manual-review]:before{background:var(--tw-purple)}._3GiIGG_classificationMetric[data-classification=exclude]:before{background:var(--tw-danger)}._3GiIGG_classificationMetric[aria-pressed=true]{border-color:var(--tw-brand);box-shadow:inset 0 0 0 1px var(--tw-brand)}._3GiIGG_classificationMetric span{color:var(--tw-muted);display:block}._3GiIGG_classificationMetric small{color:var(--tw-muted);align-items:center;gap:4px;display:flex}._3GiIGG_classificationMetric strong{font-variant-numeric:tabular-nums;margin:3px 0;font-size:25px;display:block}._3GiIGG_classificationOverview{gap:var(--tw-space-3);grid-template-columns:minmax(0,1.55fr) minmax(260px,.75fr);display:grid}._3GiIGG_summarySurface>._3GiIGG_progressMeter{padding:18px}._3GiIGG_classificationFunnel{gap:9px;padding:15px 18px 18px;display:grid}._3GiIGG_classificationFunnel>div{grid-template-columns:110px minmax(0,1fr) 46px;align-items:center;gap:9px;display:grid}._3GiIGG_classificationFunnel span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_classificationFunnel i{border-radius:var(--tw-radius-sm);background:var(--tw-brand);justify-self:center;height:18px;display:block}._3GiIGG_classificationFunnel>div:nth-child(2) i{background:var(--tw-blue)}._3GiIGG_classificationFunnel>div:nth-child(3) i{background:var(--tw-purple)}._3GiIGG_classificationFunnel>div:nth-child(4) i{background:var(--tw-success)}._3GiIGG_classificationFunnel strong{text-align:right;font-variant-numeric:tabular-nums}._3GiIGG_ruleCoverageList{border-top:1px solid var(--tw-line);gap:8px;padding:14px 18px 18px;display:grid}._3GiIGG_ruleCoverageList>div{grid-template-columns:minmax(110px,.8fr) minmax(90px,1fr) 40px;align-items:center;gap:9px;display:grid}._3GiIGG_ruleCoverageList span{color:var(--tw-muted);font-size:var(--tw-font-caption);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._3GiIGG_ruleCoverageList>div>div{background:var(--tw-surface-3);border-radius:999px;height:7px;overflow:hidden}._3GiIGG_ruleCoverageList i{border-radius:inherit;background:var(--tw-brand);height:100%;display:block}._3GiIGG_ruleCoverageList strong{font-size:var(--tw-font-caption);text-align:right}._3GiIGG_classificationNotice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-warning);background:var(--tw-warning-soft);grid-template-columns:auto minmax(0,1fr);gap:9px;margin:0 14px 14px;padding:10px 11px;display:grid}._3GiIGG_classificationNotice>svg{color:var(--tw-warning);margin-top:2px}._3GiIGG_classificationNotice p{font-size:var(--tw-font-caption);margin:0}._3GiIGG_classificationNotice strong{color:var(--tw-warning);display:block}._3GiIGG_classificationWorkspace{gap:var(--tw-space-3);grid-template-columns:minmax(0,1fr);min-width:0;display:grid}._3GiIGG_classificationWorkspaceOpen{gap:var(--tw-space-3);grid-template-columns:minmax(560px,1fr) 350px;align-items:start;min-width:0;display:grid}._3GiIGG_classificationTabs{border-bottom:1px solid var(--tw-line);scrollbar-width:thin;min-width:0;display:flex;overflow-x:auto}._3GiIGG_classificationTabs button{min-height:38px;color:var(--tw-muted);font-size:var(--tw-font-caption);background:0 0;border:0;border-bottom:2px solid #0000;flex:none;padding:7px 12px}._3GiIGG_classificationTabs button[aria-selected=true]{border-bottom-color:var(--tw-brand);color:var(--tw-brand-strong);font-weight:720}._3GiIGG_classificationSampleTable{min-width:920px}._3GiIGG_classificationDetailTable{min-width:850px}._3GiIGG_classificationDetailTable tbody tr{cursor:pointer}._3GiIGG_classificationDetailTable tbody tr[data-row-selected=true]{background:var(--tw-brand-soft)}._3GiIGG_traceCard{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);overflow:hidden}._3GiIGG_traceCard header strong{overflow-wrap:anywhere;margin-top:8px;font-size:16px;display:block}._3GiIGG_traceCard header p{color:var(--tw-muted);margin:3px 0 0}._3GiIGG_traceCard ol{gap:0;margin:16px 0 0;padding:0;list-style:none;display:grid}._3GiIGG_traceCard li{border-left:2px solid var(--tw-line);gap:2px;padding:9px 0 9px 20px;display:grid;position:relative}._3GiIGG_traceCard li:before{border:2px solid var(--tw-surface);background:var(--tw-brand);content:\"\";border-radius:50%;width:10px;height:10px;position:absolute;top:15px;left:-6px}._3GiIGG_traceCard li span{overflow-wrap:anywhere;color:var(--tw-muted)}._3GiIGG_traceOutcome{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-brand-soft);margin-top:14px;padding:11px 12px}._3GiIGG_traceOutcome p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_traceAudit{border-block:1px solid var(--tw-line);gap:0;margin:14px 0 0;display:grid}._3GiIGG_traceAudit>div{border-bottom:1px solid var(--tw-line);grid-template-columns:minmax(0,1fr) auto;gap:10px;padding:7px 0;display:grid}._3GiIGG_traceAudit>div:last-child{border-bottom:0}._3GiIGG_traceAudit dt{color:var(--tw-muted)}._3GiIGG_traceAudit dd{overflow-wrap:anywhere;text-align:right;margin:0}._3GiIGG_staleNotice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-warning);background:var(--tw-warning-soft);margin:0;padding:9px 12px}._3GiIGG_s4Summary{grid-template-columns:repeat(4,minmax(0,1fr))}._3GiIGG_reviewSummary{grid-template-columns:repeat(5,minmax(0,1fr))}._3GiIGG_s4Actions{flex-wrap:wrap;gap:8px;display:flex}._3GiIGG_analysisHeaderMeta{align-items:center;gap:10px;display:flex}._3GiIGG_analysisWorkspace{grid-template-columns:350px minmax(520px,1fr);align-items:start;gap:15px;min-width:0;display:grid}._3GiIGG_reviewWorkspace{gap:var(--tw-space-3);grid-template-columns:minmax(620px,1fr) 340px;align-items:start;min-width:0;display:grid}._3GiIGG_analysisToolbar{border-bottom:1px solid var(--tw-line);grid-template-columns:repeat(3,minmax(0,1fr));gap:7px;padding:10px 12px;display:grid}._3GiIGG_queuePanel{min-width:0}._3GiIGG_opportunityList{display:grid}._3GiIGG_opportunityRow,._3GiIGG_opportunitySelected{border:0;border-bottom:1px solid var(--tw-line);text-align:left;background:0 0;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:8px 10px;width:100%;padding:12px;display:grid}._3GiIGG_opportunitySelected{background:var(--tw-brand-soft)}._3GiIGG_rowRank{color:var(--tw-faint);font-size:var(--tw-font-caption);font-variant-numeric:tabular-nums}._3GiIGG_rowMain{gap:3px;display:grid}._3GiIGG_rowMain strong{overflow-wrap:anywhere}._3GiIGG_rowMain small{color:var(--tw-muted)}._3GiIGG_rowRecommendation{justify-self:end}._3GiIGG_analysisDetail,._3GiIGG_reviewDetail{overscroll-behavior:contain;scrollbar-gutter:stable;max-height:calc(100dvh - 220px);padding:17px;position:sticky;top:0;overflow-y:auto}._3GiIGG_analysisDetail>header h3,._3GiIGG_reviewDetail>header h3{font-size:var(--tw-font-section);overflow-wrap:anywhere;margin:8px 0 0}._3GiIGG_analysisDetail>header p,._3GiIGG_reviewDetail>header p{color:var(--tw-muted);margin:3px 0 0}._3GiIGG_analysisDetailHero{border-bottom:1px solid var(--tw-line);background:var(--tw-brand-soft);margin:-17px -17px 0;padding:17px}._3GiIGG_analysisFactGrid{grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-top:14px;display:grid}._3GiIGG_analysisFactGrid>div{border:1px solid var(--tw-line);border-radius:var(--tw-radius);gap:3px;padding:9px;display:grid}._3GiIGG_analysisFactGrid span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_analysisFactGrid small{color:var(--tw-faint);font-size:10px}._3GiIGG_analysisConclusion,._3GiIGG_agentRecap{border-left:3px solid var(--tw-brand);border-radius:var(--tw-radius);background:var(--tw-brand-soft);margin-top:15px;padding:13px}._3GiIGG_analysisConclusion>span,._3GiIGG_agentRecap>span{color:var(--tw-brand-strong);font-size:var(--tw-font-caption);font-weight:750}._3GiIGG_analysisConclusion p,._3GiIGG_agentRecap p{margin:5px 0 0}._3GiIGG_agentRecap strong{margin-top:3px;display:block}._3GiIGG_detailSection{margin-top:15px}._3GiIGG_detailSection h4{font-size:var(--tw-font-label);margin:0 0 8px}._3GiIGG_detailSection ul,._3GiIGG_evidenceList{gap:7px;margin:0;padding-left:18px;display:grid}._3GiIGG_evidenceList li{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);padding:8px 9px}._3GiIGG_evidenceList strong,._3GiIGG_evidenceList span,._3GiIGG_evidenceList small{overflow-wrap:anywhere;display:block}._3GiIGG_evidenceList span{margin-top:2px}._3GiIGG_evidenceList small{color:var(--tw-muted);margin-top:3px}._3GiIGG_detailColumns{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;display:grid}._3GiIGG_analysisSectionHeader{justify-content:space-between;align-items:center;gap:12px;display:flex}._3GiIGG_analysisSectionHeader h4{margin:0}._3GiIGG_analysisSectionHeader span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_analysisEvidenceGrid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:8px;display:grid}._3GiIGG_analysisEvidenceGrid article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);min-width:0;padding:10px}._3GiIGG_analysisEvidenceGrid p{overflow-wrap:anywhere;margin:3px 0 0}._3GiIGG_analysisEvidenceGrid small{color:var(--tw-muted);margin-top:4px;display:block}._3GiIGG_sourceExcerpt{border-left:3px solid var(--tw-blue);border-radius:var(--tw-radius);background:var(--tw-blue-soft);margin-top:14px;padding:11px 12px}._3GiIGG_sourceExcerpt p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_analysisBoundary{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-warning);background:var(--tw-warning-soft);grid-template-columns:auto minmax(0,1fr);gap:8px;margin-top:14px;padding:10px 11px;display:grid}._3GiIGG_analysisQuestion{grid-template-columns:minmax(0,1fr) auto;gap:8px;margin-top:14px;display:grid}._3GiIGG_analysisQuestion button{white-space:nowrap}._3GiIGG_inlineSuccess{color:var(--tw-success);font-size:var(--tw-font-caption);margin:6px 0 0}._3GiIGG_reviewQueueTabs{border-bottom:1px solid var(--tw-line);min-width:0;display:flex}._3GiIGG_reviewQueueTabs button{min-height:40px;color:var(--tw-muted);background:0 0;border:0;border-bottom:2px solid #0000;flex:1 1 0;padding:8px 12px}._3GiIGG_reviewQueueTabs button[aria-selected=true]{border-bottom-color:var(--tw-brand);color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-weight:720}._3GiIGG_reviewToolbar{border-bottom:1px solid var(--tw-line);flex-wrap:wrap;align-items:center;gap:7px;padding:10px 12px;display:flex}._3GiIGG_reviewToolbar>input[type=search]{flex:170px;min-width:170px}._3GiIGG_reviewToolbar>select{flex:130px;min-width:130px}._3GiIGG_reviewToolbar>._3GiIGG_secondary{flex:none;min-height:36px}._3GiIGG_expandedIcon{transform:rotate(180deg)}._3GiIGG_reviewAdvanced{border-bottom:1px solid var(--tw-line)}._3GiIGG_reviewAdvanced>div{grid-template-columns:repeat(4,minmax(145px,1fr));gap:8px;padding:2px 12px 12px;display:grid}._3GiIGG_reviewAdvanced label{gap:4px;display:grid}._3GiIGG_reviewAdvanced label>span:first-child{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_activeFilterStrip{border-bottom:1px solid var(--tw-line);background:var(--tw-surface-2);flex-wrap:wrap;align-items:center;gap:6px;min-height:37px;padding:7px 12px;display:flex}._3GiIGG_activeFilter{border:1px solid var(--tw-line);border-radius:var(--tw-radius-sm);min-width:0;color:var(--tw-brand-strong);background:var(--tw-brand-soft);align-items:center;gap:4px;padding:4px 7px;font-size:10px;display:inline-flex}._3GiIGG_activeFilter button{width:16px;min-height:16px;color:var(--tw-brand-strong);background:0 0;border:0;place-items:center;padding:0;display:grid}._3GiIGG_amountFilter{grid-template-columns:minmax(70px,1fr) auto minmax(70px,1fr) auto;align-items:center;gap:5px;display:grid}._3GiIGG_amountFilter i{color:var(--tw-muted);font-style:normal}._3GiIGG_amountFilter small{color:var(--tw-muted);white-space:nowrap}._3GiIGG_reviewBulkBar{border-block:1px solid var(--tw-line);background:var(--tw-brand-soft);flex-wrap:wrap;align-items:center;gap:8px 12px;padding:10px 13px;display:flex}._3GiIGG_reviewBulkSelection{white-space:nowrap;align-items:center;gap:8px;display:inline-flex}._3GiIGG_reviewBulkSelection input{width:18px;min-height:18px;margin:0}._3GiIGG_reviewBulkActions{flex-wrap:wrap;gap:7px;display:flex}._3GiIGG_reviewBulkActions ._3GiIGG_secondary{min-height:34px;padding:6px 10px}._3GiIGG_reviewBulkHint{color:var(--tw-muted);font-size:var(--tw-font-caption);white-space:nowrap;margin-left:auto}._3GiIGG_reviewBulkNote{flex:1 0 100%;grid-template-columns:auto minmax(220px,1fr);align-items:center;gap:10px;padding-top:2px;display:grid}._3GiIGG_reviewTable{min-width:1120px}._3GiIGG_reviewTable tbody tr{cursor:pointer}._3GiIGG_reviewTable tbody tr[data-row-selected=true]{background:var(--tw-brand-soft)}._3GiIGG_reviewTable td>strong,._3GiIGG_reviewTable td>small{display:block}._3GiIGG_reviewTable td>small{color:var(--tw-muted);margin-top:3px}._3GiIGG_decisionAgreement{white-space:nowrap}._3GiIGG_reviewTable th:first-child,._3GiIGG_reviewTable td:first-child{text-align:center;width:48px}._3GiIGG_reviewTable th:nth-child(3),._3GiIGG_reviewTable td:nth-child(3){width:92px}._3GiIGG_reviewTable [data-agent-recommendation]{white-space:nowrap;display:inline-flex}._3GiIGG_reviewTable [data-agent-recommendation] ._3GiIGG_statusPill{white-space:nowrap;min-height:22px;padding:2px 7px;font-size:11px}._3GiIGG_reviewTiming{font-variant-numeric:tabular-nums;white-space:nowrap;display:inline-flex}._3GiIGG_recordIdentifier{color:var(--tw-brand-strong);font-size:var(--tw-font-caption);font-weight:700}._3GiIGG_agentRecap>div{flex-wrap:wrap;gap:5px;margin-top:8px;display:flex}._3GiIGG_agentRecap>div span{border-radius:var(--tw-radius-sm);color:var(--tw-brand-strong);background:var(--tw-surface);padding:2px 6px;font-size:10px}._3GiIGG_reviewLayers{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:14px;display:grid}._3GiIGG_reviewLayers>div{border:1px solid var(--tw-line);border-radius:var(--tw-radius);gap:2px;padding:9px;display:grid}._3GiIGG_reviewLayers span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_decisionEditor{border-top:1px solid var(--tw-line);gap:10px;margin-top:15px;padding-top:15px;display:grid}._3GiIGG_decisionLabel{color:var(--tw-ink);font-size:var(--tw-font-label);margin-bottom:6px;font-weight:680;display:block}._3GiIGG_decisionSegment{border:1px solid var(--tw-line-strong);border-radius:var(--tw-radius);background:var(--tw-surface-2);grid-template-columns:repeat(4,minmax(0,1fr));padding:3px;display:grid}._3GiIGG_decisionSegment button{border-radius:var(--tw-radius-sm);min-height:34px;color:var(--tw-muted);font-size:var(--tw-font-caption);background:0 0;border:0;padding:6px 7px}._3GiIGG_decisionSegment button[aria-pressed=true]{color:var(--qcc-on-action);background:var(--tw-brand)}._3GiIGG_decisionSaveRow{justify-content:flex-end;align-items:center;gap:8px;scroll-margin-block-end:calc(62px + var(--tw-space-4));display:flex}._3GiIGG_decisionSaveRow>span{color:var(--tw-muted);font-size:var(--tw-font-caption);margin-right:auto}._3GiIGG_reviewAudit{border-top:1px solid var(--tw-line);margin-top:16px;padding-top:14px}._3GiIGG_reviewAudit h4{font-size:var(--tw-font-label);margin:0 0 8px}._3GiIGG_reviewAudit>p{color:var(--tw-muted);margin:0}._3GiIGG_reviewAudit ol{gap:8px;margin:0;padding:0;list-style:none;display:grid}._3GiIGG_reviewAudit li{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:7px;padding:9px 10px;display:grid}._3GiIGG_reviewAudit li strong,._3GiIGG_reviewAudit li span{display:block}._3GiIGG_reviewAudit li span{color:var(--tw-muted);font-size:var(--tw-font-caption);margin-top:2px}._3GiIGG_reviewAudit li p{white-space:pre-wrap;grid-column:1/-1;margin:5px 0 0}._3GiIGG_reviewSnapshotHint{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-brand-soft);margin-top:14px;padding:11px 12px}._3GiIGG_reviewSnapshotHint p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_reviewFooterProgress{gap:2px;min-width:0;display:grid}._3GiIGG_reviewFooterProgress span{color:var(--tw-muted);font-size:var(--tw-font-caption);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._3GiIGG_reviewFooterProgress strong{font-size:var(--tw-font-label);font-variant-numeric:tabular-nums}._3GiIGG_deliveryHeroGrid{grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:15px;display:grid}._3GiIGG_deliveryLead,._3GiIGG_deliverySnapshot,._3GiIGG_reportOptions,._3GiIGG_reportChartCard,._3GiIGG_deliveryFileCard,._3GiIGG_reportTableWrap,._3GiIGG_reportLimitations,._3GiIGG_reportNarrative{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);overflow:hidden}._3GiIGG_deliveryLead{min-height:0;color:var(--tw-hero-text);border-color:var(--tw-brand-strong);background:var(--tw-brand-strong);padding:18px}._3GiIGG_deliveryLead ._3GiIGG_eyebrow{color:var(--tw-hero-text);opacity:.82}._3GiIGG_deliveryLead h2{color:var(--tw-hero-text);margin:3px 0 7px;font-size:22px;line-height:1.25}._3GiIGG_deliveryLead>p:not(._3GiIGG_eyebrow){max-width:580px;color:var(--tw-hero-text);font-size:var(--tw-font-caption);opacity:.86;margin:0;line-height:1.55}._3GiIGG_deliveryFacts{flex-wrap:wrap;gap:7px;margin-top:20px;display:flex}._3GiIGG_deliveryFacts span{border:1px solid color-mix(in srgb, var(--tw-hero-text) 24%, transparent);border-radius:var(--tw-radius);color:var(--tw-hero-text);background:color-mix(in srgb, var(--tw-hero-text) 8%, transparent);font-size:var(--tw-font-caption);padding:6px 9px}._3GiIGG_deliverySnapshot{min-width:0}._3GiIGG_deliverySnapshotHeader{border-bottom:1px solid var(--tw-line);justify-content:space-between;align-items:flex-start;gap:12px;padding:15px 17px;display:flex}._3GiIGG_deliverySnapshotHeader h3{margin:0;font-size:16px}._3GiIGG_deliverySnapshotHeader p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:4px 0 0}._3GiIGG_deliverySnapshotList{margin:0}._3GiIGG_deliverySnapshotList>div{border-bottom:1px solid var(--tw-line);grid-template-columns:minmax(0,1fr) auto;gap:12px;padding:6px 16px;display:grid}._3GiIGG_deliverySnapshotList>div:last-child{border-bottom:0}._3GiIGG_deliverySnapshotList dt{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_deliverySnapshotList dd{color:var(--tw-ink);font-size:var(--tw-font-label);text-align:right;margin:0;font-weight:720}._3GiIGG_reportOptions{display:grid}._3GiIGG_reportOptions>header{border-bottom:1px solid var(--tw-line);padding:15px 18px}._3GiIGG_reportOptions>header h3{margin:0;font-size:16px}._3GiIGG_reportOptions>header p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_reportOptions>label{border-bottom:1px solid var(--tw-line);align-items:flex-start;gap:10px;padding:13px 18px;display:flex}._3GiIGG_reportOptions>label input{flex:0 0 18px;width:18px;min-height:18px;margin-top:2px}._3GiIGG_reportOptions>label span{gap:2px;display:grid}._3GiIGG_reportOptions>label strong{font-size:var(--tw-font-label)}._3GiIGG_reportOptions>label small{color:var(--tw-muted)}._3GiIGG_reportOptions>._3GiIGG_statePanel{margin:14px 18px}._3GiIGG_reportTabs{border:1px solid var(--tw-line);border-radius:var(--tw-radius-lg);background:var(--tw-surface);scrollbar-width:thin;gap:4px;min-height:43px;padding:4px;display:flex;overflow-x:auto}._3GiIGG_reportTabs button{border-radius:var(--tw-radius);min-width:max-content;min-height:33px;color:var(--tw-muted);font-size:var(--tw-font-label);background:0 0;border:0;padding:6px 13px}._3GiIGG_reportTabs button[aria-selected=true]{color:var(--tw-brand-strong);background:var(--tw-brand-soft);font-weight:720}._3GiIGG_reportTabPanel{outline:none;min-width:0}._3GiIGG_reportPaneContent,._3GiIGG_reportFilesPane,._3GiIGG_reportOpportunities{gap:12px;display:grid}._3GiIGG_reportKpis{grid-template-columns:repeat(6,minmax(92px,1fr));gap:8px;display:grid}._3GiIGG_reportKpi{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);align-content:space-between;gap:4px;min-height:82px;padding:10px 11px;display:grid}._3GiIGG_reportKpi>span{color:var(--tw-muted);font-size:var(--tw-font-caption)}._3GiIGG_reportKpi>strong{color:var(--tw-ink);font-variant-numeric:tabular-nums;font-size:20px;line-height:1}._3GiIGG_reportKpi>small{color:var(--tw-muted);font-size:11px;line-height:1.35}._3GiIGG_reportExplanations,._3GiIGG_reportInsights,._3GiIGG_reportProvenance{grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;display:grid}._3GiIGG_reportExplanations article,._3GiIGG_reportProvenance article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);gap:5px;padding:12px 13px;display:grid}._3GiIGG_reportExplanations strong,._3GiIGG_reportProvenance strong{font-size:var(--tw-font-label)}._3GiIGG_reportExplanations span,._3GiIGG_reportProvenance span{color:var(--tw-muted);font-size:var(--tw-font-caption);overflow-wrap:anywhere;line-height:1.5}._3GiIGG_reportInsights article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);grid-template-columns:auto minmax(0,1fr);gap:7px 9px;padding:13px;display:grid}._3GiIGG_reportInsights article>span{border-radius:var(--tw-radius-sm);width:24px;height:24px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);place-items:center;font-size:10px;font-weight:800;display:grid}._3GiIGG_reportInsights h3{align-self:center;margin:0;font-size:14px}._3GiIGG_reportInsights p,._3GiIGG_reportInsights small{grid-column:1/-1;margin:0}._3GiIGG_reportInsights p{color:var(--tw-muted);font-size:var(--tw-font-caption);line-height:1.5}._3GiIGG_reportInsights small{border-top:1px solid var(--tw-line);color:var(--tw-faint);padding-top:7px}._3GiIGG_reportChartCard>header,._3GiIGG_reportLimitations>header{border-bottom:1px solid var(--tw-line);padding:13px 15px}._3GiIGG_reportChartCard>header h3,._3GiIGG_reportLimitations>header h3{margin:0;font-size:15px}._3GiIGG_reportChartCard>header p,._3GiIGG_reportLimitations>header p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:3px 0 0}._3GiIGG_reportNarrative{background:0 0;border:0;overflow:visible}._3GiIGG_reportNarrative>header{padding:0 2px}._3GiIGG_reportNarrative>header h3{margin:0;font-size:15px}._3GiIGG_reportNarrative>header p{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:3px 0 0}._3GiIGG_reportNarrative>div{grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;padding-top:10px;display:grid}._3GiIGG_reportNarrative article{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface-2);gap:5px;padding:11px;display:grid}._3GiIGG_reportNarrative article p{color:var(--tw-muted);margin:0;line-height:1.5}._3GiIGG_reportNarrative article small{color:var(--tw-warning)}._3GiIGG_reportChartGrid{grid-template-columns:repeat(2,minmax(320px,1fr));gap:11px;display:grid}._3GiIGG_reportChartCard{min-height:230px}._3GiIGG_horizontalBars{gap:10px;padding:16px;display:grid}._3GiIGG_horizontalBarRow{grid-template-columns:minmax(90px,.6fr) minmax(120px,1.8fr) 32px;align-items:center;gap:10px;display:grid}._3GiIGG_horizontalBarRow>span{color:var(--tw-muted);font-size:var(--tw-font-caption);overflow-wrap:anywhere}._3GiIGG_horizontalBarRow>div{background:var(--tw-surface-3);border-radius:999px;height:7px;overflow:hidden}._3GiIGG_horizontalBarRow i{border-radius:inherit;background:var(--tw-brand);min-width:2px;height:100%;display:block}._3GiIGG_horizontalBarRow strong{font-size:var(--tw-font-caption);text-align:right}._3GiIGG_chartNote{color:var(--tw-muted);font-size:var(--tw-font-caption);margin:0 16px 12px;line-height:1.45}._3GiIGG_columnChart{grid-template-columns:repeat(4,minmax(0,1fr));align-items:end;gap:18px;min-height:170px;padding:20px 18px 16px;display:grid}._3GiIGG_columnChart>div{text-align:center;grid-template-rows:minmax(0,1fr) auto;align-items:end;gap:8px;height:135px;display:grid}._3GiIGG_columnChart i{background:var(--tw-brand);border-radius:4px 4px 0 0;justify-self:center;width:min(34px,70%);display:block}._3GiIGG_columnChart i[data-segment=\"1\"]{background:#5f91a8}._3GiIGG_columnChart i[data-segment=\"2\"]{background:var(--tw-warning)}._3GiIGG_columnChart i[data-segment=\"3\"]{background:#8d6caf}._3GiIGG_columnChart span{color:var(--tw-muted);font-size:11px}._3GiIGG_amountAxis{color:var(--tw-muted);justify-content:flex-end;margin:17px 16px -12px;font-size:11px;display:flex}._3GiIGG_stackedBar{border-radius:var(--tw-radius-sm);background:var(--tw-surface-3);height:24px;margin:22px 16px 12px;display:flex;overflow:hidden}._3GiIGG_stackedBar i{min-width:24px;color:var(--qcc-on-action);background:var(--tw-brand);flex-basis:0;place-items:center;font-size:10px;font-style:normal;display:grid}._3GiIGG_stackedBar i[data-segment=\"1\"],._3GiIGG_stackedLegend i[data-segment=\"1\"]{background:var(--tw-warning)}._3GiIGG_stackedBar i[data-segment=\"2\"],._3GiIGG_stackedLegend i[data-segment=\"2\"]{background:var(--tw-danger)}._3GiIGG_stackedLegend{flex-wrap:wrap;gap:8px 14px;margin:0 16px 14px;display:flex}._3GiIGG_stackedLegend span{color:var(--tw-muted);align-items:center;gap:5px;font-size:11px;display:flex}._3GiIGG_stackedLegend i{background:var(--tw-brand);border-radius:2px;width:8px;height:8px}._3GiIGG_amountChartEmpty{border:1px dashed var(--tw-line-strong);border-radius:var(--tw-radius);min-height:96px;color:var(--tw-muted);background:var(--tw-surface-2);text-align:center;align-content:center;gap:6px;margin:16px;padding:14px;display:grid}._3GiIGG_amountChartEmpty strong{color:var(--tw-text);font-size:13px}._3GiIGG_amountChartEmpty span{line-height:1.5}._3GiIGG_reportLimitations>div{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-warning-soft);grid-template-columns:auto minmax(0,1fr);gap:9px;margin:9px 12px;padding:10px;display:grid}._3GiIGG_reportLimitations>div i{border-radius:var(--tw-radius-sm);width:22px;height:22px;color:var(--tw-warning);background:var(--tw-surface);place-items:center;font-style:normal;font-weight:750;display:grid}._3GiIGG_reportNotice{border:1px solid var(--tw-line);border-radius:var(--tw-radius);color:var(--tw-muted);background:var(--tw-brand-soft);align-items:flex-start;gap:9px;padding:11px 13px;display:flex}._3GiIGG_reportNotice ._3GiIGG_icon{color:var(--tw-brand);flex:0 0 18px;margin-top:1px}._3GiIGG_reportNotice p{margin:0;line-height:1.5}._3GiIGG_deliveryFileGrid{grid-template-columns:repeat(2,minmax(320px,1fr));gap:11px;display:grid}._3GiIGG_deliveryFileCard[data-file-status=failed]{border-color:var(--tw-danger);background:var(--tw-danger-soft)}._3GiIGG_deliveryFileCard[data-file-status=succeeded]{border-color:var(--tw-success)}._3GiIGG_deliveryFileCard>header{border-bottom:1px solid var(--tw-line);grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:11px;padding:14px;display:grid}._3GiIGG_deliveryFileCard>header>div{min-width:0}._3GiIGG_deliveryFileCard>header strong,._3GiIGG_deliveryFileCard>header small{overflow-wrap:anywhere;display:block}._3GiIGG_deliveryFileCard>header small{color:var(--tw-muted);margin-top:3px}._3GiIGG_deliveryFileIcon{border-radius:var(--tw-radius);width:42px;height:42px;color:var(--qcc-on-action);background:var(--tw-brand);place-items:center;display:grid}._3GiIGG_deliveryFileIcon[data-format=pdf]{background:var(--tw-danger)}._3GiIGG_deliveryFileBody{align-content:space-between;gap:14px;min-height:120px;padding:14px;display:grid}._3GiIGG_fileOutline{flex-wrap:wrap;gap:7px;display:flex}._3GiIGG_fileOutline span{border:1px solid var(--tw-line);border-radius:var(--tw-radius-sm);color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption);padding:5px 8px}._3GiIGG_deliveryFileActions{justify-content:flex-end;display:flex}._3GiIGG_reportTableTitle{justify-content:space-between;align-items:flex-end;gap:16px;display:flex}._3GiIGG_reportTableTitle h3{margin:0;font-size:16px}._3GiIGG_reportTableTitle p{color:var(--tw-muted);margin:4px 0 0}._3GiIGG_reportTableWrap{overflow:auto}._3GiIGG_reportTable{border-collapse:collapse;width:100%;min-width:980px}._3GiIGG_reportTable th,._3GiIGG_reportTable td{border-bottom:1px solid var(--tw-line);text-align:left;vertical-align:top;padding:10px 11px}._3GiIGG_reportTable th{color:var(--tw-muted);background:var(--tw-surface-2);font-size:var(--tw-font-caption)}._3GiIGG_reportTable td{font-size:var(--tw-font-label)}._3GiIGG_reportTable td strong,._3GiIGG_reportTable td small{display:block}._3GiIGG_reportTable td small{color:var(--tw-muted);margin-top:3px}._3GiIGG_reportTableWrap>footer{color:var(--tw-muted);font-size:var(--tw-font-caption);justify-content:space-between;gap:12px;padding:10px 12px;display:flex}._3GiIGG_reportProvenance{grid-template-columns:repeat(3,minmax(0,1fr))}._3GiIGG_reportProvenance ._3GiIGG_reportNotice{grid-column:1/-1}._3GiIGG_emptyState{border:1px dashed var(--tw-line-strong);border-radius:var(--tw-radius-lg);min-height:280px;color:var(--tw-muted);background:var(--tw-surface);text-align:center;align-content:center;place-items:center;gap:8px;padding:28px;display:grid}._3GiIGG_emptyState h3{color:var(--tw-ink);margin:0}._3GiIGG_emptyState p{max-width:520px;margin:0}._3GiIGG_emptyIcon{width:46px;height:46px;color:var(--tw-brand-strong);background:var(--tw-brand-soft);border-radius:50%;place-items:center;display:grid}._3GiIGG_writeProgress{margin-top:2px}@container _3GiIGG_tender-workbench (width<=1000px){._3GiIGG_metricGrid,._3GiIGG_classificationGrid{grid-template-columns:repeat(3,minmax(0,1fr))}._3GiIGG_deliveryHeroGrid,._3GiIGG_reportChartGrid,._3GiIGG_deliveryFileGrid,._3GiIGG_reportProvenance,._3GiIGG_queryLayout,._3GiIGG_rulesLayout,._3GiIGG_classificationWorkspaceOpen,._3GiIGG_analysisWorkspace,._3GiIGG_reviewWorkspace,._3GiIGG_rulePreviewGrid{grid-template-columns:minmax(0,1fr)}._3GiIGG_queryPlan,._3GiIGG_ruleListPanel,._3GiIGG_traceCard,._3GiIGG_analysisDetail,._3GiIGG_reviewDetail{max-height:none;position:static;overflow-y:visible}._3GiIGG_detailToolbar:has(select:nth-of-type(4)),._3GiIGG_dataToolbar{grid-template-columns:repeat(3,minmax(150px,1fr))}._3GiIGG_detailToolbar:has(select:nth-of-type(4)) input,._3GiIGG_dataToolbar input{grid-column:1/-1}._3GiIGG_reviewToolbar{grid-template-columns:repeat(3,minmax(145px,1fr))}._3GiIGG_reviewToolbar>input{grid-column:1/-1}._3GiIGG_reviewAdvanced>div{grid-template-columns:repeat(3,minmax(145px,1fr))}}@container _3GiIGG_tender-workbench (width<=760px){._3GiIGG_body{padding:18px}._3GiIGG_pageHeading{align-items:flex-start}._3GiIGG_queryLayout,._3GiIGG_overviewLayout,._3GiIGG_classificationOverview,._3GiIGG_classificationWorkspaceOpen,._3GiIGG_detailWorkspaceOpen,._3GiIGG_analysisWorkspace,._3GiIGG_reviewWorkspace,._3GiIGG_rulesLayout,._3GiIGG_rulePreviewGrid{grid-template-columns:1fr}._3GiIGG_analysisFactGrid,._3GiIGG_analysisEvidenceGrid{grid-template-columns:repeat(2,minmax(0,1fr))}._3GiIGG_reviewToolbar{grid-template-columns:repeat(2,minmax(140px,1fr))}._3GiIGG_reviewToolbar>input{grid-column:1/-1}._3GiIGG_reviewAdvanced>div{grid-template-columns:repeat(2,minmax(140px,1fr))}._3GiIGG_queryPlan{position:static}._3GiIGG_queryCommonFields{grid-template-columns:1fr}._3GiIGG_queryFieldFull{grid-column:auto}._3GiIGG_queryRegionPicker{box-shadow:none;margin-top:8px;position:static}._3GiIGG_queryRegionColumns{grid-template-columns:repeat(3,minmax(145px,1fr))}._3GiIGG_recordDetail,._3GiIGG_traceCard{border-top:1px solid var(--tw-line);border-left:0}._3GiIGG_recordDetail{position:static}._3GiIGG_dataView ._3GiIGG_dataTableWrap{background:var(--tw-surface-2);padding:10px;overflow:visible}._3GiIGG_dataView ._3GiIGG_dataTable{min-width:0;display:block}._3GiIGG_dataView ._3GiIGG_dataTable thead{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_dataView ._3GiIGG_dataTable tbody{gap:10px;display:grid}._3GiIGG_dataView ._3GiIGG_dataTable tbody tr{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);grid-template-columns:repeat(2,minmax(0,1fr));display:grid;overflow:hidden}._3GiIGG_dataView ._3GiIGG_dataTable tbody tr:hover{background:var(--tw-surface)}._3GiIGG_dataView ._3GiIGG_dataTable td{border-bottom:1px solid var(--tw-line);overflow-wrap:anywhere;grid-template-columns:minmax(86px,.55fr) minmax(0,1fr);gap:8px;padding:8px 11px;display:grid}._3GiIGG_dataView ._3GiIGG_dataTable td:before{color:var(--tw-muted);font-size:var(--tw-font-caption);content:attr(data-label)}._3GiIGG_dataView ._3GiIGG_dataTable td:first-child,._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(2),._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(5),._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10){grid-column:1/-1}._3GiIGG_dataView ._3GiIGG_dataTable td:first-child,._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10){display:block}._3GiIGG_dataView ._3GiIGG_dataTable td:first-child:before,._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10):before{content:none}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(2){padding-block:10px;display:block}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(2):before{margin-bottom:4px;display:block}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(9),._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10){border-bottom:0}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10){padding:9px 11px 11px}._3GiIGG_dataView ._3GiIGG_dataTable td:nth-child(10) ._3GiIGG_rowAction{width:100%}._3GiIGG_reviewDetail{order:initial}._3GiIGG_reviewWorkspace ._3GiIGG_dataTableWrap{background:var(--tw-surface);padding:0;overflow-x:auto}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable{min-width:1120px;display:table}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable thead{clip:auto;width:auto;height:auto;position:static;overflow:visible}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable tbody{display:table-row-group}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable tbody tr{background:var(--tw-surface);border:0;border-radius:0;display:table-row;overflow:visible}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable td{border-bottom:1px solid var(--tw-line);padding:10px 12px;display:table-cell}._3GiIGG_reviewWorkspace ._3GiIGG_dataTable td:before{content:none}._3GiIGG_dataView ._3GiIGG_classificationDetailTable,._3GiIGG_dataView ._3GiIGG_classificationSampleTable{min-width:850px;display:table}._3GiIGG_dataView ._3GiIGG_classificationDetailTable thead,._3GiIGG_dataView ._3GiIGG_classificationSampleTable thead{clip:auto;width:auto;height:auto;position:static;overflow:visible}._3GiIGG_dataView ._3GiIGG_classificationDetailTable tbody,._3GiIGG_dataView ._3GiIGG_classificationSampleTable tbody{display:table-row-group}._3GiIGG_dataView ._3GiIGG_classificationDetailTable tbody tr,._3GiIGG_dataView ._3GiIGG_classificationSampleTable tbody tr{border:0;border-radius:0;display:table-row;overflow:visible}._3GiIGG_dataView ._3GiIGG_classificationDetailTable td,._3GiIGG_dataView ._3GiIGG_classificationSampleTable td{border-bottom:1px solid var(--tw-line);padding:10px 12px;display:table-cell}._3GiIGG_dataView ._3GiIGG_classificationDetailTable td:before,._3GiIGG_dataView ._3GiIGG_classificationSampleTable td:before{content:none}._3GiIGG_analysisDetail,._3GiIGG_reviewDetail{position:static}._3GiIGG_metricGrid,._3GiIGG_s4Summary,._3GiIGG_classificationGrid,._3GiIGG_selectedRuleImpact dl,._3GiIGG_reportKpis,._3GiIGG_reportInsights{grid-template-columns:repeat(2,minmax(0,1fr))}._3GiIGG_reportExplanations,._3GiIGG_reportNarrative>div{grid-template-columns:minmax(0,1fr)}._3GiIGG_reportTableTitle{flex-direction:column;align-items:flex-start}._3GiIGG_reportTableWrap{background:var(--tw-surface-2);border:0;padding:10px;overflow:visible}._3GiIGG_reportTable{min-width:0;display:block}._3GiIGG_reportTable thead{clip:rect(0 0 0 0);width:1px;height:1px;position:absolute;overflow:hidden}._3GiIGG_reportTable tbody{gap:10px;display:grid}._3GiIGG_reportTable tr{border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:var(--tw-surface);grid-template-columns:repeat(2,minmax(0,1fr));display:grid;overflow:hidden}._3GiIGG_reportTable td{overflow-wrap:anywhere;grid-template-columns:minmax(88px,.6fr) minmax(0,1fr);gap:8px;padding:8px 11px;display:grid}._3GiIGG_reportTable td:before{color:var(--tw-muted);font-size:var(--tw-font-caption);content:attr(data-label)}._3GiIGG_reportTable td:first-child,._3GiIGG_reportTable td:nth-child(2),._3GiIGG_reportTable td:nth-child(8){grid-column:1/-1}._3GiIGG_reportTable td:nth-child(2){display:block}._3GiIGG_reportTable td:nth-child(2):before{margin-bottom:4px;display:block}._3GiIGG_reportTableWrap>footer{background:var(--tw-surface)}}@container _3GiIGG_tender-workbench (width<=600px){._3GiIGG_header{min-height:58px;padding:8px 12px}._3GiIGG_brandIcon{flex-basis:32px;width:32px;height:32px}._3GiIGG_subtitle{display:none}._3GiIGG_status{padding-inline:8px}._3GiIGG_stages{min-height:54px}._3GiIGG_stage{text-align:center;flex-direction:column;gap:5px;min-height:54px;padding:7px 4px}._3GiIGG_stageIcon{flex-basis:25px;width:25px;height:25px}._3GiIGG_stageIcon ._3GiIGG_icon{width:15px;height:15px}._3GiIGG_stageCopy small{display:none}._3GiIGG_stageSelected:after{left:7px;right:7px}._3GiIGG_body{padding:14px}._3GiIGG_pageHeading{gap:10px;display:grid}._3GiIGG_pageHeading h2{font-size:20px}._3GiIGG_pageHeadingAside{justify-self:start}._3GiIGG_scopeSurface,._3GiIGG_nextSuggestion,._3GiIGG_reportPrimaryAction{flex-direction:column;align-items:stretch}._3GiIGG_scopeGroup{width:100%}._3GiIGG_scopeButton{flex:1 1 0;padding-inline:5px}._3GiIGG_queryFieldLabel{flex-direction:column;align-items:flex-start;gap:2px}._3GiIGG_queryRichRow{grid-template-columns:1fr;gap:7px}._3GiIGG_queryDisclosure summary{grid-template-columns:minmax(90px,auto) minmax(0,1fr) auto}._3GiIGG_queryAmountLine{grid-template-columns:1fr 80px auto 80px auto}._3GiIGG_queryRegionActions{flex-direction:column;align-items:flex-start}._3GiIGG_queryRegionColumns{grid-template-columns:repeat(3,minmax(135px,1fr))}._3GiIGG_keywordTokens>input{min-width:140px}._3GiIGG_detailToolbar,._3GiIGG_detailToolbar:has(select:nth-of-type(4)),._3GiIGG_dataToolbar{grid-template-columns:1fr}._3GiIGG_detailToolbar:has(select:nth-of-type(4)) input,._3GiIGG_dataToolbar input{grid-column:auto}._3GiIGG_previewLegend,._3GiIGG_editorGrid,._3GiIGG_ruleConditionRow,._3GiIGG_detailColumns,._3GiIGG_reviewLayers,._3GiIGG_analysisToolbar,._3GiIGG_reviewToolbar,._3GiIGG_reviewAdvanced>div,._3GiIGG_analysisQuestion{grid-template-columns:1fr}._3GiIGG_reviewToolbar>input,._3GiIGG_editorWide{grid-column:auto}._3GiIGG_ruleEditorFooter{flex-direction:column;align-items:stretch}._3GiIGG_ruleEditorFooter>span{margin-right:0}._3GiIGG_statePanel>button{grid-column:1/-1}._3GiIGG_nextActions{flex-direction:column-reverse;width:100%}._3GiIGG_footer{flex-direction:column;align-items:stretch;gap:7px;padding:9px 12px}._3GiIGG_primary{width:100%}._3GiIGG_footerCopy{text-align:center}._3GiIGG_footerActions{flex-direction:column-reverse;width:100%}._3GiIGG_footerActions>button{width:100%}._3GiIGG_reviewBulkBar{align-items:stretch}._3GiIGG_reviewBulkSelection,._3GiIGG_reviewBulkActions{width:100%}._3GiIGG_reviewBulkActions ._3GiIGG_secondary,._3GiIGG_reviewBulkActions ._3GiIGG_ghostButton{flex:145px}._3GiIGG_reviewBulkHint{width:100%;margin-left:0}._3GiIGG_reviewBulkNote{grid-template-columns:1fr}._3GiIGG_decisionSaveRow{flex-direction:column;align-items:stretch}._3GiIGG_decisionSaveRow>span{margin-right:0}._3GiIGG_metricCard{min-height:100px}._3GiIGG_deliveryLead{min-height:0;padding:18px}._3GiIGG_deliveryLead h2{font-size:22px}._3GiIGG_deliveryFileCard>header{grid-template-columns:auto minmax(0,1fr)}._3GiIGG_deliveryFileCard>header ._3GiIGG_statusPill{grid-column:1/-1;justify-self:start}._3GiIGG_reportTabs button{padding-inline:9px}._3GiIGG_footer[data-workbench-phase=delivery]{flex-direction:row;align-items:center;min-height:62px}._3GiIGG_footer[data-workbench-phase=delivery] ._3GiIGG_footerCopy{display:none}._3GiIGG_footer[data-workbench-phase=delivery] ._3GiIGG_footerActions{flex-direction:row;width:auto}._3GiIGG_footer[data-workbench-phase=delivery] ._3GiIGG_footerActions>button{width:auto}._3GiIGG_footer[data-workbench-phase=decision]{flex-direction:row;align-items:center;min-height:62px}._3GiIGG_footer[data-workbench-phase=decision] ._3GiIGG_reviewFooterProgress span{display:none}._3GiIGG_footer[data-workbench-phase=decision] ._3GiIGG_footerActions{flex-direction:row;width:auto}._3GiIGG_footer[data-workbench-phase=decision] ._3GiIGG_footerActions>button{width:auto}}@container _3GiIGG_tender-workbench (width<=390px){._3GiIGG_body{padding:10px}._3GiIGG_dataView ._3GiIGG_dataTable tbody tr{grid-template-columns:1fr}._3GiIGG_decisionSegment{grid-template-columns:repeat(2,minmax(0,1fr))}._3GiIGG_brandCopy ._3GiIGG_title{text-overflow:ellipsis;white-space:nowrap;max-width:128px;overflow:hidden}._3GiIGG_status{font-size:11px}._3GiIGG_status>span{margin:0}._3GiIGG_stageCopy strong{font-size:11px}._3GiIGG_metricGrid,._3GiIGG_s4Summary,._3GiIGG_classificationGrid,._3GiIGG_analysisFactGrid,._3GiIGG_reportKpis,._3GiIGG_reportInsights{grid-template-columns:1fr}._3GiIGG_s4Summary,._3GiIGG_reviewSummary{grid-template-columns:repeat(2,minmax(0,1fr))}._3GiIGG_deliveryFacts{grid-template-columns:1fr;display:grid}._3GiIGG_reportTable tr{grid-template-columns:1fr}._3GiIGG_reportTable td{grid-column:1/-1}._3GiIGG_taskSummary{grid-template-columns:1fr;gap:3px}._3GiIGG_taskSummary small{justify-self:start}._3GiIGG_footerHint,._3GiIGG_footerCopy:empty{display:none}._3GiIGG_surfaceHeader{display:grid}._3GiIGG_surfaceActions{justify-self:start}}@media (prefers-reduced-motion:reduce){._3GiIGG_spinner{animation-duration:1ms;animation-iteration-count:1}._3GiIGG_shell *,._3GiIGG_shell :before,._3GiIGG_shell :after{scroll-behavior:auto!important;transition-duration:1ms!important}}";
21116
21195
  const tagId = "dsh-tender-workbench/tender-workbench.module.css";
21117
21196
  if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId) + "]") === null) {
21118
21197
  const tag = document.createElement("style");
@@ -21158,6 +21237,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
21158
21237
  "classificationWorkspaceOpen": "_3GiIGG_classificationWorkspaceOpen",
21159
21238
  "columnChart": "_3GiIGG_columnChart",
21160
21239
  "conflictList": "_3GiIGG_conflictList",
21240
+ "contextLine": "_3GiIGG_contextLine",
21161
21241
  "dataCard": "_3GiIGG_dataCard",
21162
21242
  "dataEmpty": "_3GiIGG_dataEmpty",
21163
21243
  "dataError": "_3GiIGG_dataError",
@@ -21242,6 +21322,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
21242
21322
  "previewFacts": "_3GiIGG_previewFacts",
21243
21323
  "previewLegend": "_3GiIGG_previewLegend",
21244
21324
  "primary": "_3GiIGG_primary",
21325
+ "primaryTabs": "_3GiIGG_primaryTabs",
21245
21326
  "progressMeter": "_3GiIGG_progressMeter",
21246
21327
  "qualityList": "_3GiIGG_qualityList",
21247
21328
  "queryAmountLine": "_3GiIGG_queryAmountLine",
@@ -27491,15 +27572,21 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
27491
27572
  /** S1-S5 workbench: persistent business facts with local, disposable view state. */
27492
27573
  function TenderWorkbenchView({ sessionId, projection, navigation, sendIntent, createIntentId = () => globalThis.crypto.randomUUID(), loadRows = defaultRowsLoader, loadRuleContent = defaultRuleContentLoader, loadClassifiedRows = defaultClassifiedRowsLoader, loadReviewRows = defaultReviewRowsLoader, loadReportView = defaultReportViewLoader, downloadReport = defaultReportDownloader, t }) {
27493
27574
  const workflow = projectionOf(projection);
27494
- const [selectedPhase, setSelectedPhase] = (0, react.useState)("opportunity");
27495
- const [scope, setScope] = (0, react.useState)("combined");
27496
- const [target, setTarget] = (0, react.useState)("");
27497
- const [filters, setFilters] = (0, react.useState)(() => createInitialTenderFilters());
27498
- const [queryBranch, setQueryBranch] = (0, react.useState)("tender");
27575
+ const [destination, setDestination] = (0, react.useState)(() => navigation.currentView(sessionId));
27576
+ const [lastPhase, setLastPhase] = useSessionViewState(navigation.memory, sessionId, "lastPhase", () => "opportunity");
27577
+ (0, react.useEffect)(() => {
27578
+ if (destination !== "history") setLastPhase(destination);
27579
+ }, [destination, setLastPhase]);
27580
+ const selectedPhase = destination === "history" ? lastPhase : destination;
27581
+ const setSelectedPhase = (phase) => navigation.request(sessionId, phase);
27582
+ const [scope, setScope] = useSessionViewState(navigation.memory, sessionId, "query.scope", () => "combined");
27583
+ const [target, setTarget] = useSessionViewState(navigation.memory, sessionId, "query.target", () => "");
27584
+ const [filters, setFilters] = useSessionViewState(navigation.memory, sessionId, "query.filters", createInitialTenderFilters);
27585
+ const [queryBranch, setQueryBranch] = useSessionViewState(navigation.memory, sessionId, "query.branch", () => "tender");
27499
27586
  const [validationError, setValidationError] = (0, react.useState)();
27500
27587
  const [validationField, setValidationField] = (0, react.useState)();
27501
- const [opportunityView, setOpportunityView] = (0, react.useState)("overview");
27502
- const [screeningView, setScreeningView] = (0, react.useState)("rules");
27588
+ const [opportunityView, setOpportunityView] = useSessionViewState(navigation.memory, sessionId, "opportunity.view", () => "overview");
27589
+ const [screeningView, setScreeningView] = useSessionViewState(navigation.memory, sessionId, "screening.view", () => "rules");
27503
27590
  const [footerTarget, setFooterTarget] = (0, react.useState)(null);
27504
27591
  const phaseTabs = (0, react.useRef)({});
27505
27592
  const screeningTabs = (0, react.useRef)({});
@@ -27509,7 +27596,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
27509
27596
  const queryFormId = (0, react.useId)();
27510
27597
  const queryErrorId = (0, react.useId)();
27511
27598
  const queryDisabledReasonId = (0, react.useId)();
27512
- useTenderWorkbenchNavigation(navigation, sessionId, setSelectedPhase);
27599
+ useTenderWorkbenchNavigation(navigation, sessionId, setDestination);
27513
27600
  const write = useSessionWriteFlight({
27514
27601
  sessionId,
27515
27602
  workflow,
@@ -27692,8 +27779,21 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
27692
27779
  children: t("workbench.subtitle")
27693
27780
  }),
27694
27781
  /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("p", {
27695
- className: tender_workbench_module_css_default.subtitle,
27696
- children: ["会话 · ", sessionId.slice(-8)]
27782
+ className: tender_workbench_module_css_default.contextLine,
27783
+ children: [
27784
+ "会话 · ",
27785
+ sessionId.slice(-8),
27786
+ workflow?.query && /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(react_jsx_runtime.Fragment, { children: [" · 查询 ", workflow.query.querySpec.id.slice(-8)] })
27787
+ ]
27788
+ }),
27789
+ workflow?.query && /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("p", {
27790
+ className: tender_workbench_module_css_default.contextLine,
27791
+ title: workflow.query.targetSummary,
27792
+ children: ["任务 · ", workflow.query.targetSummary]
27793
+ }),
27794
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("p", {
27795
+ className: tender_workbench_module_css_default.contextLine,
27796
+ children: "MCP 连接状态:未在本视图核验"
27697
27797
  })
27698
27798
  ]
27699
27799
  })]
@@ -27706,7 +27806,22 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
27706
27806
  })
27707
27807
  })]
27708
27808
  }),
27709
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)("nav", {
27809
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsxs)("nav", {
27810
+ className: tender_workbench_module_css_default.primaryTabs,
27811
+ "aria-label": "任务一级导航",
27812
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
27813
+ type: "button",
27814
+ "aria-current": destination !== "history" ? "page" : void 0,
27815
+ onClick: () => setSelectedPhase(lastPhase),
27816
+ children: "当前任务"
27817
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
27818
+ type: "button",
27819
+ "aria-current": destination === "history" ? "page" : void 0,
27820
+ onClick: () => navigation.request(sessionId, "history"),
27821
+ children: "任务历史"
27822
+ })]
27823
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("nav", {
27824
+ hidden: destination === "history",
27710
27825
  className: tender_workbench_module_css_default.stages,
27711
27826
  "aria-label": t("workbench.phases"),
27712
27827
  role: "tablist",
@@ -27723,7 +27838,6 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
27723
27838
  role: "tab",
27724
27839
  className: selected ? `${tender_workbench_module_css_default.stage} ${tender_workbench_module_css_default.stageSelected}` : tender_workbench_module_css_default.stage,
27725
27840
  "aria-label": t(phase.labelKey),
27726
- "aria-describedby": `${navigationId}-${phase.id}-status`,
27727
27841
  "aria-selected": selected,
27728
27842
  "aria-current": recommended ? "step" : void 0,
27729
27843
  "aria-controls": `${navigationId}-${phase.id}-panel`,
@@ -27741,16 +27855,13 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
27741
27855
  className: tender_workbench_module_css_default.stageIcon,
27742
27856
  "aria-hidden": "true",
27743
27857
  children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(WorkbenchIcon, { name: phase.icon })
27744
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
27858
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
27745
27859
  className: tender_workbench_module_css_default.stageCopy,
27746
- children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("strong", { children: t(phase.labelKey) }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("small", {
27747
- id: `${navigationId}-${phase.id}-status`,
27748
- children: t(`workbench.phaseStatus.${progress}`)
27749
- })]
27860
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("strong", { children: t(phase.labelKey) })
27750
27861
  })]
27751
27862
  }, phase.id);
27752
27863
  })
27753
- }),
27864
+ })] }),
27754
27865
  /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
27755
27866
  ref: bodyRef,
27756
27867
  className: tender_workbench_module_css_default.body,
@@ -27759,7 +27870,39 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
27759
27870
  title: t("workbench.capability.title"),
27760
27871
  role: "alert",
27761
27872
  children: t(projection.status === "invalid" ? "workbench.capability.incompatible" : "workbench.capability.missing")
27762
- }), selectedPhase === "opportunity" ? workflow !== void 0 && activeDataset !== void 0 && opportunityView === "details" ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("section", {
27873
+ }), destination === "history" ? /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("section", {
27874
+ className: tender_workbench_module_css_default.stagePanel,
27875
+ "aria-label": "任务历史",
27876
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("header", {
27877
+ className: tender_workbench_module_css_default.pageHeading,
27878
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("h2", { children: "任务历史" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("p", { children: "当前仅提供本 Session 已保存的工作流记录;跨会话历史索引尚未接入。其他任务请从宿主历史会话进入。" })] })
27879
+ }), workflow?.query ? /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("article", {
27880
+ className: tender_workbench_module_css_default.emptyState,
27881
+ children: [
27882
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("h3", { children: workflow.query.targetSummary }),
27883
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("p", { children: [
27884
+ "会话 ",
27885
+ sessionId.slice(-8),
27886
+ " · 查询记录 ",
27887
+ workflow.query.querySpec.id.slice(-8)
27888
+ ] }),
27889
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("p", { children: [
27890
+ "查询时间 ",
27891
+ workflow.query.querySpec.createdAt,
27892
+ " · 记录数量 ",
27893
+ workflow.query.total,
27894
+ " · ",
27895
+ t(`workbench.status.${status}`)
27896
+ ] }),
27897
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
27898
+ type: "button",
27899
+ className: tender_workbench_module_css_default.secondary,
27900
+ onClick: () => setSelectedPhase(tenderWorkbenchPhaseForStage(workflow.currentStage)),
27901
+ children: "查看已保存任务"
27902
+ })
27903
+ ]
27904
+ }) : /* @__PURE__ */ (0, react_jsx_runtime.jsx)("p", { children: "当前会话暂无可用的已保存查询记录;这不代表其他会话没有历史任务。" })]
27905
+ }) : selectedPhase === "opportunity" ? workflow !== void 0 && activeDataset !== void 0 && opportunityView === "details" ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("section", {
27763
27906
  className: tender_workbench_module_css_default.stagePanel,
27764
27907
  id: `${navigationId}-opportunity-panel`,
27765
27908
  role: "tabpanel",
@@ -28009,6 +28152,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
28009
28152
  })]
28010
28153
  }),
28011
28154
  /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("footer", {
28155
+ hidden: destination === "history",
28012
28156
  className: tender_workbench_module_css_default.footer,
28013
28157
  "data-workbench-phase": selectedPhase,
28014
28158
  children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
@@ -28061,6 +28205,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
28061
28205
  //#region src/client/TenderEntry.tsx
28062
28206
  const SIDEBAR_WORKSPACES_SELECTOR = "[data-slot=\"sidebar.workspaces\"]";
28063
28207
  const TENDER_TOP_MOUNT_SELECTOR = "[data-dsh-tender-top-mount=\"true\"]";
28208
+ const SIDEBAR_UNAVAILABLE = "无法打开招投标 Tab。请安装或升级 dsh-better-sidebar(需 targetedOpen / stateSubscription),在宿主设置中启用招投标 Tab,然后重启 DSH。仍可使用对话和已支持的 Host 工具。";
28064
28209
  /** Keep the whole focused card visible without scrolling the host conversation. */
28065
28210
  function revealShortcut(button) {
28066
28211
  const menu = button.parentElement;
@@ -28076,6 +28221,10 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
28076
28221
  const anchorRef = (0, react.useRef)(null);
28077
28222
  const [heroMount, setHeroMount] = (0, react.useState)(null);
28078
28223
  const [menuMount, setMenuMount] = (0, react.useState)(null);
28224
+ const [openError, setOpenError] = (0, react.useState)();
28225
+ (0, react.useEffect)(() => {
28226
+ setOpenError(void 0);
28227
+ }, [sessionId]);
28079
28228
  const blank = useSession((snapshot) => snapshot.composerPhase === "blank");
28080
28229
  const owned = isTenderEntrySessionId(sessionId);
28081
28230
  (0, react.useEffect)(() => {
@@ -28092,41 +28241,56 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
28092
28241
  if (!anchorRef.current || !owned) return;
28093
28242
  return mountTenderShortcuts(anchorRef.current, setMenuMount);
28094
28243
  }, [owned, sessionId]);
28095
- const menu = /* @__PURE__ */ (0, react_jsx_runtime.jsx)("nav", {
28244
+ const menu = /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(react_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("nav", {
28096
28245
  className: `${qcc_theme_module_css_default.scope} ${workbench_entry_module_css_default.shortcuts}`,
28097
28246
  "aria-label": "招投标快捷导航",
28098
28247
  children: [
28099
28248
  [
28100
28249
  "opportunity",
28101
- "项目查询",
28250
+ "找机会",
28102
28251
  "search"
28103
28252
  ],
28104
28253
  [
28105
28254
  "screening",
28106
- "规则筛选",
28255
+ "筛候选",
28107
28256
  "screening"
28108
28257
  ],
28109
28258
  [
28110
28259
  "decision",
28111
- "人工复核",
28260
+ "人工定案",
28112
28261
  "decision"
28113
28262
  ],
28114
28263
  [
28115
28264
  "delivery",
28116
- "结果交付",
28265
+ "形成交付",
28117
28266
  "delivery"
28267
+ ],
28268
+ [
28269
+ "history",
28270
+ "任务历史",
28271
+ "clock"
28118
28272
  ]
28119
28273
  ].map(([phase, label, icon]) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("button", {
28120
28274
  type: "button",
28121
28275
  onFocus: (event) => revealShortcut(event.currentTarget),
28122
- onClick: () => openPhase(phase),
28276
+ onClick: () => {
28277
+ try {
28278
+ setOpenError(openPhase(phase) ? void 0 : SIDEBAR_UNAVAILABLE);
28279
+ } catch {
28280
+ setOpenError(SIDEBAR_UNAVAILABLE);
28281
+ }
28282
+ },
28123
28283
  children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
28124
28284
  className: workbench_entry_module_css_default.shortcutIcon,
28125
28285
  "aria-hidden": "true",
28126
28286
  children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(WorkbenchIcon, { name: icon })
28127
28287
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", { children: label })]
28128
28288
  }, phase))
28129
- });
28289
+ }), openError && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("p", {
28290
+ className: `${qcc_theme_module_css_default.scope} ${workbench_entry_module_css_default.sidebarError}`,
28291
+ role: "alert",
28292
+ children: openError
28293
+ })] });
28130
28294
  return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(react_jsx_runtime.Fragment, { children: [
28131
28295
  /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
28132
28296
  ref: anchorRef,
@@ -28236,16 +28400,29 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
28236
28400
  }), topMount);
28237
28401
  }
28238
28402
  function TenderSessionHeaderEntry({ sessionId, openWorkbench, t, useProjection }) {
28403
+ const [error, setError] = (0, react.useState)();
28404
+ (0, react.useEffect)(() => {
28405
+ setError(void 0);
28406
+ }, [sessionId]);
28239
28407
  const state = tenderWorkbenchDisplayStatus(readTenderProjectionSnapshot(useProjection("dshTenderWorkflow")));
28240
28408
  if (!isTenderEntrySessionId(sessionId)) return null;
28241
- return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
28409
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(react_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
28242
28410
  type: "button",
28243
28411
  className: `${qcc_theme_module_css_default.scope} ${workbench_entry_module_css_default.headerButton}`,
28244
28412
  "data-workbench-status": state,
28245
28413
  title: t(`workbench.status.${state}`),
28246
- onClick: openWorkbench,
28414
+ onClick: () => {
28415
+ try {
28416
+ setError(openWorkbench() ? void 0 : SIDEBAR_UNAVAILABLE);
28417
+ } catch {
28418
+ setError(SIDEBAR_UNAVAILABLE);
28419
+ }
28420
+ },
28247
28421
  children: t("header.reopen")
28248
- });
28422
+ }), error && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
28423
+ role: "alert",
28424
+ children: error
28425
+ })] });
28249
28426
  }
28250
28427
  //#endregion
28251
28428
  //#region src/client/tender-prompt.ts
@@ -30991,7 +31168,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
30991
31168
  //#endregion
30992
31169
  //#region src/client/index.tsx
30993
31170
  const NS = "tenderFilter";
30994
- /** Required public Client services; Better Sidebar is deliberately mandatory. */
31171
+ /** Core conversation stays available while the optional workbench provider is absent. */
30995
31172
  const inject = [
30996
31173
  "slots",
30997
31174
  "sessions",
@@ -30999,7 +31176,6 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
30999
31176
  "conversation",
31000
31177
  "conversationEvents",
31001
31178
  "locale",
31002
- "betterSidebar",
31003
31179
  "connection"
31004
31180
  ];
31005
31181
  function RegisteredTenderWorkbenchTab({ locale, sendIntent, t, projectionPort, reveal, navigation, ...props }) {
@@ -31026,15 +31202,17 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
31026
31202
  if (sessions === void 0 || locale === void 0 || connection === void 0) throw new Error("dsh-tender-workbench requires the public sessions, locale, and connection services");
31027
31203
  const t = locale.bind(NS);
31028
31204
  ctx.effect(() => installOrdinarySessionGuard(sessions, ctx.workspaces), "dsh-tender-workbench: ordinary Session reuse");
31029
- const reveal = createTenderWorkbenchRevealController();
31205
+ let sidebar;
31206
+ let reveal;
31030
31207
  const navigation = createTenderWorkbenchNavigationController();
31031
31208
  const projectionPort = createTenderProjectionPort(sessions);
31032
31209
  const promptMemory = /* @__PURE__ */ new Map();
31033
31210
  let active = true;
31034
31211
  const sendIntent = (sessionId, intent) => sendSessionTenderWorkbenchIntent(sessions, connection, sessionId, intent);
31035
31212
  const openSession = (sessionId, phase) => {
31213
+ if (!active || sidebar === void 0 || reveal === void 0) return false;
31036
31214
  const summary = sessions.list.getSnapshot().byId[sessionId];
31037
- const opened = openTenderWorkbench(ctx.betterSidebar, {
31215
+ const opened = openTenderWorkbench(sidebar, {
31038
31216
  sessionId,
31039
31217
  ...summary?.cwd === void 0 ? {} : { cwd: summary.cwd }
31040
31218
  }, reveal);
@@ -31054,15 +31232,33 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
31054
31232
  throw new Error(t("sidebar.createFailed"), { cause: error });
31055
31233
  }
31056
31234
  };
31057
- ctx.effect(() => registerTenderWorkbenchTab(ctx.betterSidebar, (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(RegisteredTenderWorkbenchTab, {
31058
- ...props,
31059
- locale,
31060
- sendIntent,
31061
- t,
31062
- projectionPort,
31063
- reveal,
31064
- navigation
31065
- }), () => t("sidebar.label"), (size) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(_deepseek_ai_dsh_client_ui_primitives.IconGoalOutline16, { size })), "dsh-tender-workbench: Better Sidebar tab");
31235
+ ctx.inject(["betterSidebar"], (providerContext) => {
31236
+ const service = providerContext.betterSidebar;
31237
+ try {
31238
+ assertBetterSidebarContract(service);
31239
+ } catch {
31240
+ return;
31241
+ }
31242
+ const controller = createTenderWorkbenchRevealController(service);
31243
+ sidebar = service;
31244
+ reveal = controller;
31245
+ providerContext.effect(() => () => {
31246
+ controller.dispose();
31247
+ if (sidebar === service) {
31248
+ sidebar = void 0;
31249
+ reveal = void 0;
31250
+ }
31251
+ }, "dsh-tender-workbench: provider subscription lifetime");
31252
+ providerContext.effect(() => registerTenderWorkbenchTab(service, (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(RegisteredTenderWorkbenchTab, {
31253
+ ...props,
31254
+ locale,
31255
+ sendIntent,
31256
+ t,
31257
+ projectionPort,
31258
+ reveal: controller,
31259
+ navigation
31260
+ }), () => t("sidebar.label"), (size) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(_deepseek_ai_dsh_client_ui_primitives.IconGoalOutline16, { size })), "dsh-tender-workbench: Better Sidebar tab");
31261
+ });
31066
31262
  ctx.slots.inject("conversation.input.dock", () => ctx.slots.register({
31067
31263
  name: "conversation.input.dock",
31068
31264
  id: "dsh-tender-workbench:hero-title",
@@ -31112,6 +31308,8 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
31112
31308
  }, TenderSessionHeaderEntry));
31113
31309
  ctx.effect(() => () => {
31114
31310
  active = false;
31311
+ reveal?.dispose();
31312
+ navigation.dispose();
31115
31313
  promptMemory.clear();
31116
31314
  }, "dsh-tender-workbench: Session entry lifetime");
31117
31315
  }