.symbolic-view {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding: 0;
  font-family: var(--analysis-sans);
}

.symbolic-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 2px 10px;
}

.symbolic-back-btn,
.symbolic-retry-btn {
  border: 1px solid #d0d9e8;
  background: #ffffff;
  color: #1e293b;
  border-radius: 11px;
  padding: 6px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}

.symbolic-back-btn:hover,
.symbolic-retry-btn:hover:not(:disabled) {
  background: #f1f5ff;
  border-color: #c1d0ec;
}

.symbolic-retry-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.symbolic-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: #e2e8f0;
  color: #334155;
}

.symbolic-status-pill.is-ready {
  background: #dcfce7;
  color: #166534;
}

.symbolic-status-pill.is-running {
  background: #dbeafe;
  color: #1d4ed8;
}

.symbolic-status-pill.is-failed {
  background: #fee2e2;
  color: #b91c1c;
}

.symbolic-status-note {
  margin: 0;
  padding: 0 2px 10px;
  font-size: 0.84rem;
  color: #475569;
}

.symbolic-layout {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 1fr);
  gap: 8px;
  padding: 8px 10px 10px;
  overflow: hidden;
}

.app-layout.sidebar-collapsed .symbolic-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(520px, 1.35fr);
}

.symbolic-left-panel,
.symbolic-right-panel {
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.symbolic-left-content {
  flex: 1 1 auto;
  height: 0;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  touch-action: pan-y;
  padding: 18px 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.symbolic-page-card {
  width: min(100%, 860px);
  border: 0;
  background: transparent;
}

.symbolic-page-sheet {
  width: 100%;
  aspect-ratio: auto;
  min-height: 1120px;
  height: auto;
  border: 1px solid #d7dfec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.symbolic-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #e1e8f2;
  background: #f8fbff;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 18px;
  text-transform: none;
}

.symbolic-preview-wrap {
  border-bottom: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  padding: 16px 22px 4px;
}

.symbolic-preview-image {
  width: 100%;
  max-width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.symbolic-text-wrap {
  flex: 1 1 auto;
  padding: 16px 24px 10px;
}

.symbolic-text-label,
.symbolic-images-label,
.symbolic-visuals-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  background: #3b82f6;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.symbolic-text-body {
  margin: 0;
  font-family: var(--analysis-serif);
  font-size: 0.92rem;
  line-height: 1.52;
  color: #1e293b;
  white-space: normal;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.symbolic-checker-wrap {
  padding-top: 18px;
}

.symbolic-checker-body {
  gap: 12px;
}

.symbolic-checker-section-title {
  margin: 6px 0 0;
  font-size: 0.84rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f6f68;
}

.symbolic-checker-sentence {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  color: #1e293b;
  padding: 12px 14px;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.58;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.symbolic-checker-sentence:hover,
.symbolic-checker-sentence:focus-visible {
  outline: none;
  border-color: #bfd2ff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.symbolic-checker-sentence.is-selected {
  border-color: #334155;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.symbolic-checker-sentence.is-symbolic {
  background: #f4f5f7;
  border-color: #d7dde6;
}

.symbolic-checker-sentence.is-actions {
  background: rgba(24, 95, 165, 0.08);
  border-color: rgba(24, 95, 165, 0.24);
}

.symbolic-checker-sentence.is-impact {
  background: rgba(15, 110, 86, 0.08);
  border-color: rgba(15, 110, 86, 0.26);
}

.symbolic-checker-sentence.is-commitments {
  background: rgba(133, 79, 11, 0.08);
  border-color: rgba(133, 79, 11, 0.26);
}

.symbolic-checker-sentence.is-verification {
  background: rgba(83, 74, 183, 0.09);
  border-color: rgba(83, 74, 183, 0.28);
}

.symbolic-checker-sentence.is-neutral {
  background: #ffffff;
}

.symbolic-checker-inline {
  display: inline;
  border-radius: 8px;
  padding: 0.04em 0.12em;
  transition: opacity 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.symbolic-checker-inline[role="button"] {
  cursor: pointer;
}

.symbolic-checker-inline[role="button"]:hover,
.symbolic-checker-inline[role="button"]:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(30, 41, 59, 0.18);
}

/* AICV category = underline hue (--cat-color); informativeness = underline
   STYLE (solid = high / dashed = medium / dotted = low). Symbolic also carries a
   warm tint so vague language is flagged forward rather than receding. */
.symbolic-checker-inline.is-symbolic { --cat-color: #de9b2b; --cat-tint: #fbf0d7; }
.symbolic-checker-inline.is-actions { --cat-color: #2e74d6; --cat-tint: #e5edfb; }
.symbolic-checker-inline.is-impact { --cat-color: #109a9a; --cat-tint: #dbf1ef; }
.symbolic-checker-inline.is-commitments { --cat-color: #7a5af0; --cat-tint: #ece7fd; }
.symbolic-checker-inline.is-verification { --cat-color: #2c9a5b; --cat-tint: #def1e8; }

.symbolic-checker-inline.is-symbolic,
.symbolic-checker-inline.is-actions,
.symbolic-checker-inline.is-impact,
.symbolic-checker-inline.is-commitments,
.symbolic-checker-inline.is-verification {
  background: transparent;
  color: #0f172a;
  border-bottom: 2px solid var(--cat-color);
  padding-bottom: 1px;
  box-shadow: none;
  border-radius: 0;
}

.symbolic-checker-inline.is-info-high { border-bottom-style: solid; }
.symbolic-checker-inline.is-info-med { border-bottom-style: dashed; }
.symbolic-checker-inline.is-info-low { border-bottom-style: dotted; }

/* Symbolic language: warm tint highlight + gold underline. */
.symbolic-checker-inline.is-symbolic {
  background: var(--cat-tint);
  border-radius: 3px;
  padding: 0 2px 1px;
  font-weight: 500;
}

.symbolic-checker-inline.is-checker-dimmed {
  opacity: 0.28;
  box-shadow: none;
}

/* Contextual (non-focal) ESG sentences: visible but recede, with a dashed cue. */
.symbolic-checker-inline.is-contextual {
  opacity: 0.6;
  background: repeating-linear-gradient(
    -45deg,
    rgba(148, 163, 184, 0.1),
    rgba(148, 163, 184, 0.1) 6px,
    rgba(148, 163, 184, 0.02) 6px,
    rgba(148, 163, 184, 0.02) 12px
  );
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.32);
}

.symbolic-checker-inline.is-contextual.is-checker-selected {
  opacity: 1;
}

.symbolic-checker-inline.is-checker-selected {
  opacity: 1;
  border-radius: 4px;
  box-shadow: 0 0 0 2px #0f172a;
}

.symbolic-view-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.symbolic-view-toggle-btn {
  border: 1px solid #d3dceb;
  background: #ffffff;
  color: #475569;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
}

.symbolic-view-toggle-btn.is-active {
  background: #eaf2ff;
  color: #1d4ed8;
  border-color: #bfd2ff;
}

.symbolic-structured-body,
.symbolic-raw-body {
  width: 100%;
}

.symbolic-structured-body[hidden],
.symbolic-raw-body[hidden] {
  display: none;
}

.symbolic-section-card {
  border: 1px solid #dbe4f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.symbolic-section-card:last-child {
  margin-bottom: 0;
}

.symbolic-timeline-group {
  border: 1px solid #dbe4f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 11px 12px;
  margin-bottom: 10px;
}

.symbolic-timeline-group:last-child {
  margin-bottom: 0;
}

.symbolic-timeline-title {
  margin: 0 0 7px;
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 700;
  color: #243246;
}

.symbolic-timeline-intro {
  margin: 0 0 8px;
  font-size: 0.87rem;
  line-height: 1.48;
  color: #475569;
  white-space: pre-wrap;
}

.symbolic-timeline-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-timeline-event {
  border: 1px solid #e2e8f0;
  border-left: 3px solid #c2d4ff;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 10px;
}

.symbolic-timeline-label {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.46;
  color: #1e293b;
}

.symbolic-timeline-links {
  margin-top: 7px;
}

.symbolic-timeline-milestones {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.symbolic-timeline-milestones-label {
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 700;
  color: #6f6f68;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 2px;
}

.symbolic-timeline-milestone-chip {
  background: #e7efff;
}

.symbolic-section-title {
  margin: 0 0 6px;
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 700;
  color: #243246;
}

.symbolic-section-intro {
  margin: 0 0 9px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #334155;
  white-space: pre-wrap;
}

.symbolic-section-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.symbolic-section-row {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 10px;
}

.symbolic-row-label {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.45;
  color: #1e293b;
}

.symbolic-kpi-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.symbolic-kpi-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d9e4f7;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

.symbolic-row-links {
  margin: 7px 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #334155;
  font-size: 0.82rem;
  line-height: 1.42;
}

.symbolic-row-links li {
  margin: 0;
}

.symbolic-section-links {
  margin-top: 10px;
}

.symbolic-table-card {
  border: 1px solid #dbe4f2;
  border-radius: 12px;
  background: #ffffff;
  padding: 10px 10px 8px;
  margin-top: 10px;
}

.symbolic-table-title {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 700;
  color: #243246;
}

.symbolic-table-title.is-synthetic,
.symbolic-figure-title.is-synthetic {
  color: #92400e;
}

.symbolic-table-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow-x: auto;
  background: #ffffff;
}

.symbolic-data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.symbolic-data-table th,
.symbolic-data-table td {
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #eef2f7;
  padding: 7px 8px;
  text-align: left;
  vertical-align: top;
  font-size: 0.79rem;
  line-height: 1.42;
  color: #1e293b;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.symbolic-data-table.is-tight th,
.symbolic-data-table.is-tight td {
  font-size: 0.73rem;
  line-height: 1.34;
  padding: 6px 7px;
}

.symbolic-data-table.is-ultra-tight th,
.symbolic-data-table.is-ultra-tight td {
  font-size: 0.67rem;
  line-height: 1.26;
  padding: 5px 6px;
}

.symbolic-data-table th:last-child,
.symbolic-data-table td:last-child {
  border-right: 0;
}

.symbolic-data-table thead th {
  background: #f8fbff;
  color: #334155;
  font-weight: 700;
}

.symbolic-data-table tbody tr:last-child td {
  border-bottom: 0;
}

.symbolic-figure-card {
  border: 1px solid #dbe4f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 10px 12px;
  margin-top: 10px;
}

.symbolic-figure-title {
  margin: 0 0 6px;
  font-size: 0.9rem;
  line-height: 1.32;
  font-weight: 700;
  color: #243246;
}

.symbolic-figure-desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.48;
  color: #334155;
}

.symbolic-figure-legend-title {
  margin: 9px 0 4px;
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 700;
  color: #6f6f68;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.symbolic-figure-legend {
  margin: 0;
  padding: 0 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  line-height: 1.42;
  color: #334155;
}

.symbolic-extraction-warning {
  border: 1px solid #f8e3b7;
  background: #fffbeb;
  border-radius: 10px;
  padding: 7px 9px;
  margin-bottom: 10px;
}

.symbolic-extraction-warning-line {
  margin: 0;
  color: #92400e;
  font-size: 0.78rem;
  line-height: 1.35;
}

.symbolic-extraction-warning-line + .symbolic-extraction-warning-line {
  margin-top: 4px;
}

.symbolic-text-paragraph {
  margin: 0 0 0.9rem;
  white-space: pre-wrap;
}

.symbolic-text-paragraph-bold {
  font-weight: 700;
}

.symbolic-text-segment-bold {
  font-weight: 700;
}

.symbolic-trace-sentence {
  display: inline;
  border-radius: 8px;
  transition: opacity 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.symbolic-trace-sentence-bold {
  font-weight: 700;
}

.symbolic-text-body.is-trace-active .symbolic-trace-sentence.is-trace-dim {
  opacity: 0.28;
}

.symbolic-trace-sentence.is-trace-match,
.symbolic-trace-sentence.is-trace-claim {
  opacity: 1 !important;
  background: rgba(34, 197, 94, 0.18);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.32);
}

.symbolic-trace-sentence.is-trace-support,
.symbolic-trace-sentence.is-trace-evidence {
  opacity: 1 !important;
  background: rgba(34, 197, 94, 0.18);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.32);
}

.symbolic-trace-sentence.is-trace-mechanism {
  opacity: 1 !important;
  background: rgba(59, 130, 246, 0.16);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.symbolic-trace-sentence.is-trace-caveat {
  opacity: 1 !important;
  background: rgba(239, 68, 68, 0.16);
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.3);
}

.symbolic-trace-sentence.is-trace-definition {
  opacity: 1 !important;
  background: rgba(139, 92, 246, 0.16);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.3);
}

.symbolic-trace-sentence.is-trace-context {
  opacity: 1 !important;
  background: rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.28);
}

.symbolic-trace-sentence.is-trace-anchor {
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.48), 0 0 0 0 rgba(34, 197, 94, 0.24);
  animation: symbolicTraceAnchorPulse 0.9s ease;
}

@keyframes symbolicTraceAnchorPulse {
  0% {
    box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.54), 0 0 0 0 rgba(34, 197, 94, 0.24);
  }
  100% {
    box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.3), 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

.symbolic-text-paragraph:last-child {
  margin-bottom: 0;
}

.symbolic-text-heading {
  margin: 0.1rem 0 0.45rem;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
  color: #243246;
}

.symbolic-text-list {
  margin: 0.05rem 0 0.95rem 1.18rem;
  padding: 0;
}

.symbolic-text-list li {
  margin: 0 0 0.5rem;
}

.symbolic-text-list li:last-child {
  margin-bottom: 0;
}

.symbolic-text-list-numbered {
  margin-left: 1.35rem;
}

.symbolic-toc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.symbolic-toc-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 4px;
}

.symbolic-toc-line:last-child {
  border-bottom: 0;
}

.symbolic-toc-label {
  color: #1e293b;
}

.symbolic-toc-page {
  color: #6f6f68;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.symbolic-toc-heading .symbolic-toc-label {
  font-weight: 700;
  color: #243246;
}

.symbolic-page-claims {
  margin-top: 12px;
  border: 1px solid #dbe4f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 10px 12px;
}

.symbolic-page-claims-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.symbolic-page-claims-title {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 700;
  color: #243246;
}

.symbolic-page-claims-state {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.42;
  color: #6f6f68;
}

.symbolic-page-claims-state.is-error {
  color: #b91c1c;
}

.symbolic-page-claims-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-page-claim {
  border: 1px solid #d9e3f4;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 9px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.symbolic-page-claim:hover,
.symbolic-page-claim:focus {
  border-color: #334155;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.16);
  background: #f9f7ff;
}

.symbolic-page-claim-summary {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.46;
  color: #1e293b;
}

.symbolic-page-claim-meta {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.symbolic-page-claim-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe4f2;
  border-radius: 999px;
  background: #f1f5ff;
  color: #334155;
  padding: 2px 7px;
  font-size: 0.69rem;
  line-height: 1.28;
  font-weight: 600;
}

.symbolic-page-claim-no-match {
  margin: 6px 0 0;
  font-size: 0.74rem;
  line-height: 1.35;
  color: #6f6f68;
}

.symbolic-images-wrap {
  padding: 2px 24px 14px;
}

.symbolic-visuals-wrap {
  margin-top: 8px;
  padding: 10px 24px 10px;
  border-top: 1px solid #e2e8f0;
}

.symbolic-visuals-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.symbolic-visual-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #334155;
}

.symbolic-index-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.symbolic-visual-index {
  margin-top: 2px;
}

.symbolic-visual-kind {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  border: 1px solid #d5ddeb;
  background: #f8fbff;
  color: #475569;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: lowercase;
}

.symbolic-visual-desc {
  color: #1e293b;
}

.symbolic-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.symbolic-image-item {
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  background: #ffffff;
  padding: 6px;
  position: relative;
}

.symbolic-image-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.symbolic-image-index {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}

.symbolic-page-footer {
  margin-top: auto;
  padding: 10px 24px 12px;
  text-align: right;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6f6f68;
  background: #ffffff;
}

.symbolic-empty,
.symbolic-processing {
  border: 1px dashed #cdd8e8;
  border-radius: 12px;
  background: #f8fbff;
  color: #475569;
  font-size: 0.86rem;
  padding: 14px;
}

.symbolic-right-panel {
  padding: 12px 10px 10px;
}

.symbolic-right-title {
  margin: 0 0 8px;
  font-size: 0.96rem;
  font-weight: 700;
  color: #111827;
}

.symbolic-right-placeholder {
  border: 1px dashed #d0d9e8;
  border-radius: 12px;
  background: #f8fbff;
  color: #6f6f68;
  min-height: 180px;
  padding: 12px;
  font-size: 0.84rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.symbolic-right-placeholder.is-progress {
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 0;
  padding: 0;
}

.symbolic-right-placeholder.is-claims {
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 0;
  padding: 0;
  gap: 10px;
  overflow: visible;
}

.symbolic-right-placeholder.is-compliance {
  border: 0;
  border-radius: 0;
  background: transparent;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0;
  gap: 0;
  overflow: hidden;
  container-type: inline-size;
  container-name: cmp;

  --cmp-c3: #2f9e6a;
  --cmp-c3-soft: #e6f6ee;
  --cmp-c3-text: #1b6d56;
  --cmp-c2: #2f8fc4;
  --cmp-c2-soft: #e7f3fb;
  --cmp-c2-text: #0f5d80;
  --cmp-c1: #d08a2c;
  --cmp-c1-soft: #fbf2e0;
  --cmp-c1-text: #8a5a10;
  --cmp-c0: #d0584c;
  --cmp-c0-soft: #fbe9e7;
  --cmp-c0-text: #8e312d;
  --cmp-na: #9aa6b4;
  --cmp-na-soft: #eef1f5;
  --cmp-na-text: #586574;
}

.symbolic-right-placeholder.is-checker {
  border: 0;
  border-radius: 0;
  background: transparent;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 4px 4px 0;
  gap: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.symbolic-right-placeholder-text {
  margin: 0;
  line-height: 1.45;
}

.symbolic-right-claims-summary {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.38;
  color: #475569;
}

.symbolic-checker-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.symbolic-checker-panel-section {
  border: 1px solid #dbe4f2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.symbolic-checker-block-title {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6f6f68;
}

.symbolic-checker-summary-copy {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.45;
  color: #334155;
}

.symbolic-checker-focus-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #6f6f68;
}

.symbolic-checker-distribution {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-checker-distribution-bar {
  width: 100%;
  height: 10px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f8;
}

.symbolic-checker-distribution-segment {
  min-width: 4px;
  height: 100%;
}

.symbolic-checker-distribution-segment.is-symbolic {
  background: #cfd6df;
}

.symbolic-checker-distribution-segment.is-actions {
  background: #185fa5;
}

.symbolic-checker-distribution-segment.is-impact {
  background: #0f6e56;
}

.symbolic-checker-distribution-segment.is-commitments {
  background: #854f0b;
}

.symbolic-checker-distribution-segment.is-verification {
  background: #534ab7;
}

.symbolic-checker-distribution-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.symbolic-checker-distribution-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  line-height: 1.25;
  color: #475569;
}

.symbolic-checker-distribution-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.symbolic-checker-distribution-dot.is-symbolic {
  background: #cfd6df;
}

.symbolic-checker-distribution-dot.is-actions {
  background: #185fa5;
}

.symbolic-checker-distribution-dot.is-impact {
  background: #0f6e56;
}

.symbolic-checker-distribution-dot.is-commitments {
  background: #854f0b;
}

.symbolic-checker-distribution-dot.is-verification {
  background: #534ab7;
}

.symbolic-checker-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.symbolic-checker-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.symbolic-checker-chip {
  border: 1px solid #d8e1ee;
  background: #ffffff;
  color: #334155;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}

.symbolic-checker-chip.is-active {
  border-color: #0f172a;
  color: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.symbolic-checker-chip.is-symbolic {
  background: #f4f5f7;
}

.symbolic-checker-chip.is-actions {
  background: rgba(24, 95, 165, 0.08);
}

.symbolic-checker-chip.is-impact {
  background: rgba(15, 110, 86, 0.08);
}

.symbolic-checker-chip.is-commitments {
  background: rgba(133, 79, 11, 0.08);
}

.symbolic-checker-chip.is-verification {
  background: rgba(83, 74, 183, 0.09);
}

.symbolic-checker-hotspots {
  gap: 10px;
}

.symbolic-checker-hotspot-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-checker-hotspot {
  border: 1px solid #dbe4f2;
  background: #f8fbff;
  color: #1e293b;
  border-radius: 12px;
  padding: 10px 11px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.symbolic-checker-hotspot:hover,
.symbolic-checker-hotspot:focus-visible {
  outline: none;
  border-color: #bfd2ff;
  background: #f3f7ff;
}

.symbolic-checker-hotspot-title {
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 700;
  color: #1e293b;
}

.symbolic-checker-hotspot-meta {
  font-size: 0.72rem;
  line-height: 1.35;
  color: #6f6f68;
}

.symbolic-checker-detail {
  gap: 10px;
}

.symbolic-checker-detail-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.symbolic-checker-detail-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.4rem;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid #d8e1ee;
  font-size: 0.66rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #334155;
  background: #ffffff;
}

.symbolic-checker-detail-pill.is-symbolic {
  background: #f4f5f7;
}

.symbolic-checker-detail-pill.is-actions {
  background: rgba(24, 95, 165, 0.08);
}

.symbolic-checker-detail-pill.is-impact {
  background: rgba(15, 110, 86, 0.08);
}

.symbolic-checker-detail-pill.is-commitments {
  background: rgba(133, 79, 11, 0.08);
}

.symbolic-checker-detail-pill.is-verification {
  background: rgba(83, 74, 183, 0.09);
}

.symbolic-checker-detail-meta {
  font-size: 0.74rem;
  line-height: 1.35;
  color: #6f6f68;
}

.symbolic-checker-detail-copy {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.58;
  color: #1e293b;
}

.symbolic-checker-detail-note,
.symbolic-checker-detail-empty {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #6f6f68;
}

.symbolic-checker-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 2px;
}

.symbolic-checker-detail-nav-meta {
  font-size: 0.72rem;
  line-height: 1.35;
  color: #6f6f68;
}

.symbolic-checker-detail-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.symbolic-checker-nav-btn {
  border: 1px solid #d8e1ee;
  background: #ffffff;
  color: #334155;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}

.symbolic-checker-nav-btn:hover:not(:disabled),
.symbolic-checker-nav-btn:focus-visible:not(:disabled) {
  outline: none;
  border-color: #bfd2ff;
  background: #eef4ff;
  color: #1d4ed8;
}

.symbolic-checker-nav-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.symbolic-right-compliance-summary {
  margin: 0 0 10px;
  font-size: 0.8rem;
  line-height: 1.38;
  color: #475569;
  font-weight: 600;
}

.symbolic-right-compliance-overview {
  margin: 0;
  padding: 0 3px 8px;
  font-size: 0.68rem;
  line-height: 1.35;
  color: #6b7280;
}

.symbolic-right-compliance-hint {
  display: none;
}

/* ============ Reviewer cockpit (Option A) ============ */

.symbolic-cockpit {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* unified card shell: header → hero strip → rail+queue body */
.symbolic-cockpit-shell {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

/* ----- document header ----- */
.symbolic-cockpit-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  border-bottom: 1px solid #eef1f5;
}

.symbolic-cockpit-head-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #3568e5;
  background: rgba(53, 104, 229, 0.1);
}

.symbolic-cockpit-head-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.symbolic-cockpit-head-titles {
  flex: 1 1 auto;
  min-width: 0;
}

.symbolic-cockpit-head-title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.symbolic-cockpit-head-sub {
  margin: 2px 0 0;
  font-size: 0.68rem;
  font-weight: 500;
  color: #9c9c93;
}

.symbolic-cockpit-head-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cmp-c3-text);
  background: var(--cmp-c3-soft);
  border: 1px solid rgba(47, 158, 106, 0.28);
  padding: 4px 11px;
  border-radius: 999px;
}

.symbolic-cockpit-head-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cmp-c3);
}

/* per-code fills shared by hero bar, rail bars, swatches, chips, accents */
.symbolic-cockpit .is-code-3 { --code: var(--cmp-c3); --code-soft: var(--cmp-c3-soft); --code-text: var(--cmp-c3-text); }
.symbolic-cockpit .is-code-2 { --code: var(--cmp-c2); --code-soft: var(--cmp-c2-soft); --code-text: var(--cmp-c2-text); }
.symbolic-cockpit .is-code-1 { --code: var(--cmp-c1); --code-soft: var(--cmp-c1-soft); --code-text: var(--cmp-c1-text); }
.symbolic-cockpit .is-code-0 { --code: var(--cmp-c0); --code-soft: var(--cmp-c0-soft); --code-text: var(--cmp-c0-text); }
.symbolic-cockpit .is-na { --code: var(--cmp-na); --code-soft: var(--cmp-na-soft); --code-text: var(--cmp-na-text); }

/* ----- hero ----- */
.symbolic-cockpit-hero {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  border-bottom: 1px solid #eef1f5;
  background: #ffffff;
}

.symbolic-cockpit-hero-score {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 18px;
  border-right: 1px solid #eef1f5;
}

.symbolic-cockpit-hero-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9c9c93;
}

.symbolic-cockpit-hero-value {
  margin: 2px 0 0;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #0f172a;
}

.symbolic-cockpit-hero-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: #9c9c93;
  margin-left: 1px;
}

.symbolic-cockpit-hero-sub {
  margin: 6px 0 0;
  font-size: 0.74rem;
  line-height: 1.4;
  color: #6f6f68;
}

.symbolic-cockpit-hero-badge {
  align-self: flex-start;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #856428;
  background: #f6f1e6;
  border: 1px solid #e4d8bd;
  padding: 4px 10px;
  border-radius: 999px;
}

.symbolic-cockpit-hero-badge.is-clear {
  color: var(--cmp-c3-text);
  background: var(--cmp-c3-soft);
  border-color: rgba(47, 158, 106, 0.32);
}

.symbolic-cockpit-hero-dist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  justify-content: center;
  padding: 16px 18px;
  min-width: 0;
}

.symbolic-cockpit-hero-dist-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.symbolic-cockpit-hero-dist-headline {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
}

.symbolic-cockpit-hero-dist-note {
  margin: 0;
  font-size: 0.7rem;
  color: #9c9c93;
  white-space: nowrap;
}

.symbolic-cockpit-distbar {
  display: flex;
  height: 15px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.22);
}

.symbolic-cockpit-distbar-segment {
  background: var(--code, #b3b3a9);
  min-width: 2px;
}

.symbolic-cockpit-distbar-segment.is-empty {
  background: #eef1f5;
  min-width: 0;
}

.symbolic-cockpit-legend {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.symbolic-cockpit-legend-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.symbolic-cockpit-legend-top {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.symbolic-cockpit-legend-swatch {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--code, #b3b3a9);
  flex-shrink: 0;
}

.symbolic-cockpit-legend-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.symbolic-cockpit-legend-value {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0f172a;
  padding-left: 14px;
}

/* ----- body: rail + queue ----- */
.symbolic-cockpit-body {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
}

/* ----- rail ----- */
.symbolic-cockpit-rail {
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  background: #ffffff;
  border-right: 1px solid #eef1f5;
}

.symbolic-cockpit-rail-label {
  margin: 2px 6px 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9c9c93;
}

.symbolic-cockpit-rail-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 6px;
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 11px;
  padding: 9px 10px;
  cursor: pointer;
  font: inherit;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.symbolic-cockpit-rail-item:hover {
  background: #f5f7fb;
}

.symbolic-cockpit-rail-item.is-active {
  background: rgba(63, 93, 130, 0.07);
  border-color: rgba(63, 93, 130, 0.3);
}

.symbolic-cockpit-rail-item.is-all {
  margin-bottom: 2px;
}

.symbolic-cockpit-rail-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.symbolic-cockpit-rail-item-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.symbolic-cockpit-rail-item-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6f6f68;
  flex-shrink: 0;
}

.symbolic-cockpit-rail-item-pct {
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.symbolic-cockpit-rail-item-pct.is-pct-high { color: var(--cmp-c3-text); }
.symbolic-cockpit-rail-item-pct.is-pct-mid { color: var(--cmp-c1-text); }
.symbolic-cockpit-rail-item-pct.is-pct-low { color: var(--cmp-c0-text); }

.symbolic-cockpit-rail-bar {
  display: flex;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef1f5;
}

.symbolic-cockpit-rail-bar-segment {
  background: var(--code, #b3b3a9);
  min-width: 2px;
}

.symbolic-cockpit-rail-bar-segment.is-empty {
  background: #eef1f5;
  min-width: 0;
}

.symbolic-cockpit-rail-item-sub {
  font-size: 0.64rem;
  color: #9c9c93;
}

/* ----- queue ----- */
.symbolic-cockpit-queue {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 16px 18px 18px;
}

.symbolic-cockpit-queue-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.symbolic-cockpit-queue-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.symbolic-cockpit-queue-count {
  font-size: 0.72rem;
  color: #6f6f68;
  white-space: nowrap;
}

.symbolic-cockpit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.symbolic-cockpit-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #6f6f68;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.symbolic-cockpit-chip:hover {
  border-color: #b3b3a9;
}

.symbolic-cockpit-chip-count {
  font-weight: 700;
  opacity: 0.6;
}

.symbolic-cockpit-chip.is-active {
  border-color: rgba(63, 93, 130, 0.5);
  background: rgba(63, 93, 130, 0.1);
  color: #3f5d82;
}

.symbolic-cockpit-chip.is-code-0.is-active {
  border-color: rgba(208, 88, 76, 0.5);
  background: var(--cmp-c0-soft);
  color: var(--cmp-c0-text);
}

.symbolic-cockpit-chip.is-code-1.is-active {
  border-color: rgba(208, 138, 44, 0.5);
  background: var(--cmp-c1-soft);
  color: var(--cmp-c1-text);
}

.symbolic-cockpit-chip.is-resp.is-active {
  border-color: rgba(47, 158, 106, 0.5);
  background: var(--cmp-c3-soft);
  color: var(--cmp-c3-text);
}

.symbolic-cockpit-chip.is-active .symbolic-cockpit-chip-count {
  opacity: 0.75;
}

.symbolic-cockpit-queue-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1px 2px 4px 0;
}

.symbolic-cockpit-queue-empty {
  margin: 6px 2px;
  font-size: 0.76rem;
  font-style: italic;
  color: #9c9c93;
}

/* ----- queue card ----- */
.symbolic-cockpit-card {
  flex: 0 0 auto;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.symbolic-cockpit-card:hover {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 20px rgba(15, 23, 42, 0.06);
}

.symbolic-cockpit-card.is-active {
  border-color: var(--code, #b3b3a9);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 10px 24px rgba(15, 23, 42, 0.08);
}

.symbolic-cockpit-card-button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 12px 13px;
}

.symbolic-cockpit-card-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.symbolic-cockpit-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.symbolic-cockpit-status-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--code-text, #475569);
  background: var(--code-soft, #f1f5f9);
  border: 1px solid color-mix(in srgb, var(--code, #b3b3a9) 30%, transparent);
}

.symbolic-cockpit-card-cat {
  font-size: 0.66rem;
  font-weight: 600;
  color: #6f6f68;
}

.symbolic-cockpit-card-dot {
  font-size: 0.66rem;
  color: #b3b3a9;
}

.symbolic-cockpit-card-block {
  font-size: 0.66rem;
  color: #9c9c93;
}

.symbolic-cockpit-card-id {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #b6bfca;
  white-space: nowrap;
}

.symbolic-cockpit-card-text {
  display: block;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1e293b;
}

.symbolic-cockpit-card-chevron {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.95rem;
  line-height: 1;
  color: #b6bfca;
  transition: transform 0.18s ease, color 0.12s ease;
}

.symbolic-cockpit-card.is-active .symbolic-cockpit-card-chevron {
  transform: rotate(90deg);
  color: #6f6f68;
}

.symbolic-cockpit-card .symbolic-right-compliance-inline-detail {
  padding: 2px 14px 14px 16px;
  border-top: 1px dashed #e8ebf1;
  margin: 0 0 0 0;
}

/* ----- expanded detail: assessment + tap-to-trace evidence ----- */
.symbolic-cockpit-detail-block {
  margin-top: 12px;
}

.symbolic-cockpit-detail-label {
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9c9c93;
}

.symbolic-cockpit-detail-hint {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #b6bfca;
}

.symbolic-cockpit-detail-prose {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #334155;
}

.symbolic-cockpit-detail-empty {
  margin: 0;
  font-size: 0.76rem;
  font-style: italic;
  color: #9c9c93;
}

.symbolic-cockpit-claim-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.symbolic-cockpit-claim {
  display: flex;
  flex-direction: column;
}

.symbolic-cockpit-claim-trigger {
  align-self: flex-start;
  max-width: 100%;
  text-align: left;
  border: 1px solid rgba(53, 104, 229, 0.22);
  background: rgba(53, 104, 229, 0.07);
  color: #2b53b8;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font: inherit;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.symbolic-cockpit-claim-trigger:hover {
  background: rgba(53, 104, 229, 0.12);
  border-color: rgba(53, 104, 229, 0.4);
}

.symbolic-cockpit-claim-text {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.symbolic-cockpit-claim.is-open .symbolic-cockpit-claim-trigger {
  background: rgba(53, 104, 229, 0.14);
  border-color: rgba(53, 104, 229, 0.45);
}

.symbolic-cockpit-quote {
  margin: 6px 0 2px;
  border-left: 3px solid #3568e5;
  background: #f5f8ff;
  border-radius: 0 8px 8px 0;
  padding: 8px 12px;
}

.symbolic-cockpit-quote-meta {
  margin: 0 0 4px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3568e5;
}

.symbolic-cockpit-quote-text {
  margin: 0;
  font-family: var(--analysis-serif);
  font-size: 0.86rem;
  line-height: 1.55;
  color: #334155;
}

.symbolic-cockpit-more {
  margin-top: 13px;
}

.symbolic-cockpit-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #6f6f68;
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  transition: border-color 0.12s ease, color 0.12s ease;
}

.symbolic-cockpit-more-toggle:hover {
  border-color: #b3b3a9;
  color: #475569;
}

.symbolic-cockpit-more-caret {
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.symbolic-cockpit-more.is-open .symbolic-cockpit-more-caret {
  transform: rotate(90deg);
}

.symbolic-cockpit-more-body {
  margin-top: 10px;
}

.symbolic-cockpit-more-body .symbolic-right-compliance-inline-grid,
.symbolic-cockpit-more-body .symbolic-right-compliance-inline-section {
  margin-top: 0;
}

.symbolic-cockpit-more-body .symbolic-right-compliance-inline-section {
  margin-top: 12px;
}

@container cmp (max-width: 560px) {
  .symbolic-cockpit-hero {
    grid-template-columns: 1fr;
  }
  .symbolic-cockpit-hero-score {
    border-right: 0;
    border-bottom: 1px solid #eef1f5;
  }
  .symbolic-cockpit-hero-value {
    font-size: 2.3rem;
  }
}

@container cmp (max-width: 480px) {
  .symbolic-cockpit-body {
    grid-template-columns: 1fr;
  }
  .symbolic-cockpit-rail {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid #eef1f5;
  }
  .symbolic-cockpit-rail-label {
    display: none;
  }
  .symbolic-cockpit-rail-item {
    flex: 0 0 auto;
    width: 156px;
  }
  .symbolic-cockpit-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.symbolic-right-compliance-tree {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 0 4px;
  border-top: 0;
}

.symbolic-right-compliance-branch {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.symbolic-right-compliance-node {
  margin: 0;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 18px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.symbolic-right-compliance-branch-summary,
.symbolic-right-compliance-node-summary {
  appearance: none;
  width: 100%;
  border: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 8px 11px;
  margin: 0;
  cursor: pointer;
  user-select: none;
  text-align: left;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.symbolic-right-compliance-branch-summary::-webkit-details-marker,
.symbolic-right-compliance-node-summary::-webkit-details-marker {
  display: none;
}

.symbolic-right-compliance-branch-summary-left,
.symbolic-right-compliance-node-summary-left {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 1 1 auto;
}

.symbolic-right-compliance-branch-summary-toggle,
.symbolic-right-compliance-node-summary-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.82rem;
  margin-right: 6px;
  color: #6f7788;
  font-size: 0.64rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.16s ease;
}

.symbolic-right-compliance-branch.is-expanded > .symbolic-right-compliance-branch-summary .symbolic-right-compliance-branch-summary-toggle,
.symbolic-right-compliance-node.is-expanded > .symbolic-right-compliance-node-summary .symbolic-right-compliance-node-summary-toggle {
  transform: rotate(90deg);
}

.symbolic-right-compliance-branch-summary-meta,
.symbolic-right-compliance-node-summary-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.symbolic-right-compliance-branch-code,
.symbolic-right-compliance-node-code {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  flex-shrink: 0;
}

.symbolic-right-compliance-branch-label {
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.18;
  font-weight: 700;
  color: #18212f;
}

.symbolic-right-compliance-node-label {
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.18;
  font-weight: 700;
  color: #18212f;
}

.symbolic-right-compliance-branch-count,
.symbolic-right-compliance-node-count {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 500;
  color: #6c7586;
  flex-shrink: 0;
}

.symbolic-right-compliance-branch-summary-chevron,
.symbolic-right-compliance-node-summary-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  line-height: 1;
  color: #6f7788;
}

.symbolic-right-compliance-branch-summary {
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.symbolic-right-compliance-branch.is-expanded > .symbolic-right-compliance-branch-summary {
  background: #4e627d;
  box-shadow: 0 2px 6px rgba(78, 98, 125, 0.14), 0 8px 18px rgba(15, 23, 42, 0.08);
}

.symbolic-right-compliance-branch.is-expanded > .symbolic-right-compliance-branch-summary .symbolic-right-compliance-branch-summary-toggle,
.symbolic-right-compliance-branch.is-expanded > .symbolic-right-compliance-branch-summary .symbolic-right-compliance-branch-label,
.symbolic-right-compliance-branch.is-expanded > .symbolic-right-compliance-branch-summary .symbolic-right-compliance-branch-count,
.symbolic-right-compliance-branch.is-expanded > .symbolic-right-compliance-branch-summary .symbolic-right-compliance-branch-summary-chevron {
  color: #f8fafc;
}

.symbolic-right-compliance-branch.is-expanded > .symbolic-right-compliance-branch-summary {
  border-bottom: 0;
}

.symbolic-right-compliance-branch + .symbolic-right-compliance-branch {
  margin-top: 0;
}

.symbolic-right-compliance-node + .symbolic-right-compliance-node {
  margin-top: 6px;
}

.symbolic-right-compliance-branch-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0;
  padding: 0 8px 0;
  border-left: 0;
  background: transparent;
  transform-origin: top;
}

.symbolic-right-compliance-branch-body[hidden],
.symbolic-right-compliance-questions[hidden] {
  display: none !important;
}

.symbolic-right-compliance-branch-body > .symbolic-right-compliance-node:first-child {
  border-top: 0;
  margin-top: 6px;
}

.symbolic-right-compliance-node {
  margin: 0;
}

.symbolic-right-compliance-node.is-expanded > .symbolic-right-compliance-node-summary {
  box-shadow: inset 0 -1px 0 #e8edf3;
}

.symbolic-right-compliance-questions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 0;
  padding: 0;
  border-left: 0;
  transform-origin: top;
}

.symbolic-right-compliance-question-entry {
  padding: 9px 11px;
  border-top: 0;
  transition: background-color 0.18s ease;
}

.symbolic-right-compliance-question-entry + .symbolic-right-compliance-question-entry {
  margin-top: 0;
  padding-top: 9px;
  border-top: 1px solid #e7ebf1;
}

.symbolic-right-compliance-question-entry.is-active {
  background: #f5f7fa;
}

.symbolic-right-compliance-question-button {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.16s ease;
}

.symbolic-right-compliance-question-button:hover,
.symbolic-right-compliance-question-button:focus {
  outline: none;
  background: transparent;
}

.symbolic-right-compliance-question-entry.is-active .symbolic-right-compliance-question-button {
  color: #0f172a;
}

.symbolic-right-compliance-question-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.symbolic-right-compliance-question-id {
  font-size: 0.64rem;
  line-height: 1.2;
  font-weight: 500;
  color: #9099aa;
  text-transform: none;
  letter-spacing: 0;
}

.symbolic-right-compliance-question-text {
  margin: 6px 0 0;
  font-size: 0.76rem;
  line-height: 1.32;
  color: #243042;
  white-space: normal;
  overflow-wrap: anywhere;
}

.symbolic-right-compliance-question-meta {
  margin: 5px 0 0;
  font-size: 0.62rem;
  line-height: 1.3;
  color: #6e7787;
}

.symbolic-right-compliance-inline-detail {
  margin: 6px 0 0 0;
  padding: 6px 8px 0;
  border-top: 1px solid #ebeff4;
  border-left: 0;
  overflow: hidden;
}

.symbolic-right-compliance-inline-meta {
  margin: 0;
  font-size: 0.61rem;
  line-height: 1.35;
  color: #6e7787;
}

.symbolic-right-compliance-inline-reason {
  margin: 4px 0 0;
  font-size: 0.68rem;
  line-height: 1.34;
  color: #556173;
}

.symbolic-right-compliance-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.symbolic-right-compliance-inline-block {
  border: 1px solid #e3e8f0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 9px;
}

.symbolic-right-compliance-inline-block-label {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
}

.symbolic-right-compliance-inline-block-copy {
  margin: 4px 0 0;
  font-size: 0.67rem;
  line-height: 1.42;
  color: #334155;
}

.symbolic-right-compliance-inline-section {
  margin-top: 9px;
}

.symbolic-right-compliance-inline-section-title {
  margin: 0 0 6px;
  font-size: 0.6rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6f6f68;
}

.symbolic-right-compliance-inline-atom-list,
.symbolic-right-compliance-inline-evidence-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.symbolic-right-compliance-inline-atom,
.symbolic-right-compliance-inline-evidence {
  border: 1px solid #e4eaf3;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 9px;
}

.symbolic-right-compliance-inline-atom-top {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.symbolic-right-compliance-inline-atom-status {
  flex: 0 0 auto;
  margin-top: 1px;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 0.54rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.symbolic-right-compliance-inline-atom-status.is-supported {
  background: #dff3e6;
  color: #166534;
}

.symbolic-right-compliance-inline-atom-status.is-indirect {
  background: #fef3c7;
  color: #92400e;
}

.symbolic-right-compliance-inline-atom-status.is-missing {
  background: #fee2e2;
  color: #991b1b;
}

.symbolic-right-compliance-inline-atom-copy {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: #1f2937;
}

.symbolic-right-compliance-inline-atom-meta,
.symbolic-right-compliance-inline-evidence-meta,
.symbolic-right-compliance-inline-evidence-support {
  margin: 4px 0 0;
  font-size: 0.62rem;
  line-height: 1.38;
  color: #667085;
}

.symbolic-right-compliance-inline-evidence-text {
  margin: 4px 0 0;
  font-family: var(--analysis-serif);
  font-size: 0.76rem;
  line-height: 1.42;
  color: #334155;
}

.symbolic-right-compliance-detail {
  border: 1px solid #dbe4f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
  padding: 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-right-compliance-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.symbolic-right-compliance-detail-question {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.48;
  font-weight: 600;
  color: #0f172a;
}

.symbolic-right-compliance-detail-meta {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.35;
  color: #6f6f68;
}

.symbolic-right-compliance-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.symbolic-right-compliance-detail-block {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e2e8f0;
  padding: 9px 10px;
}

.symbolic-right-compliance-detail-label {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6f6f68;
}

.symbolic-right-compliance-detail-copy {
  margin: 5px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #1e293b;
}

.symbolic-right-compliance-detail-empty {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.42;
  color: #6f6f68;
}

.symbolic-right-claims-trace-hint {
  margin: -2px 0 2px;
  font-size: 0.72rem;
  line-height: 1.3;
  color: #6f6f68;
}

.symbolic-right-claims-trace-hint.is-error {
  color: #b91c1c;
}

.symbolic-right-claims-empty {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #6f6f68;
}

.symbolic-right-claims-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
}

.symbolic-right-compliance-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
}

.symbolic-right-compliance-group {
  margin: 0;
}

.symbolic-right-compliance-group-title {
  margin: 0 0 6px;
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 700;
  color: #6f6f68;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.symbolic-right-compliance-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-right-compliance-card {
  width: 100%;
  border: 1px solid #dbe4f2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 5px rgba(15, 23, 42, 0.08);
  text-align: left;
  padding: 9px 10px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.symbolic-right-compliance-card:hover,
.symbolic-right-compliance-card:focus {
  outline: none;
  border-color: #334155;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.18);
  background: #f9f7ff;
  transform: translateY(-1px);
}

.symbolic-right-compliance-card.is-active {
  border-color: #334155;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.18);
  background: #f9f7ff;
}

.symbolic-right-compliance-card.is-code-3 {
  border-left: 3px solid #16a34a;
}

.symbolic-right-compliance-card.is-code-2 {
  border-left: 3px solid #0284c7;
}

.symbolic-right-compliance-card.is-code-1 {
  border-left: 3px solid #d97706;
}

.symbolic-right-compliance-card.is-code-0 {
  border-left: 3px solid #dc2626;
}

.symbolic-right-compliance-card.is-na {
  border-left: 3px solid #6f6f68;
}

.symbolic-right-compliance-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.symbolic-right-compliance-qid {
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6f6f68;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.symbolic-right-compliance-confidence {
  --confidence-fill: 0%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8.6rem;
  max-width: 100%;
  min-height: 1.42rem;
  padding: 0 0.58rem;
  border-radius: 999px;
  border: 1px solid #d5dde6;
  background: #edf2f7;
  overflow: hidden;
  flex-shrink: 0;
}

.symbolic-right-compliance-confidence-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--confidence-fill);
  border-radius: inherit;
  background: currentColor;
  opacity: 1;
}

.symbolic-right-compliance-confidence-copy {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  width: 100%;
  font-size: 0.6rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  color: #18212f;
}

.symbolic-right-compliance-confidence-label,
.symbolic-right-compliance-confidence-percent,
.symbolic-right-compliance-confidence-separator {
  color: inherit;
}

.symbolic-right-compliance-confidence-copy-overlay {
  display: none;
}

.symbolic-right-compliance-confidence.is-code-3 {
  color: #1b6d56;
}

.symbolic-right-compliance-confidence.is-code-3 .symbolic-right-compliance-confidence-fill {
  background: #98d9bf;
}

.symbolic-right-compliance-confidence.is-code-2 {
  color: #0f5d80;
}

.symbolic-right-compliance-confidence.is-code-2 .symbolic-right-compliance-confidence-fill {
  background: #9fd5ef;
}

.symbolic-right-compliance-confidence.is-code-1 {
  color: #8a5a10;
}

.symbolic-right-compliance-confidence.is-code-1 .symbolic-right-compliance-confidence-fill {
  background: #f1ca81;
}

.symbolic-right-compliance-confidence.is-code-0 {
  color: #8e312d;
}

.symbolic-right-compliance-confidence.is-code-0 .symbolic-right-compliance-confidence-fill {
  background: #e7a59e;
}

.symbolic-right-compliance-confidence.is-na {
  color: #586574;
}

.symbolic-right-compliance-confidence.is-na .symbolic-right-compliance-confidence-fill {
  background: #c6d0db;
}

.symbolic-right-compliance-meta {
  margin: 5px 0 0;
  font-size: 0.68rem;
  line-height: 1.3;
  color: #6f6f68;
}

.symbolic-right-compliance-question {
  margin: 6px 0 0;
  font-size: 0.79rem;
  line-height: 1.4;
  color: #1e293b;
  white-space: normal;
  overflow-wrap: anywhere;
}

.symbolic-right-compliance-expansion {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  transform: translateY(-4px);
  transition: max-height 0.24s ease, opacity 0.18s ease, margin-top 0.24s ease, padding-top 0.24s ease, border-top-color 0.24s ease, transform 0.18s ease;
}

.symbolic-right-compliance-card.is-active .symbolic-right-compliance-expansion {
  max-height: 140px;
  opacity: 1;
  margin-top: 10px;
  padding-top: 10px;
  border-top-color: #dde6f3;
  transform: translateY(0);
}

.symbolic-right-compliance-expansion-inner {
  min-height: 0;
}

.symbolic-right-compliance-reason-label {
  margin: 0;
  font-size: 0.67rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6f6f68;
}

.symbolic-right-compliance-reason-copy {
  margin: 4px 0 0;
  font-size: 0.77rem;
  line-height: 1.45;
  color: #1e293b;
}

@media (max-width: 720px) {
  .symbolic-right-compliance-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .symbolic-right-compliance-inline-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .symbolic-checker-detail-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .symbolic-checker-detail-nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.symbolic-right-claims-page {
  border: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin-top: 10px;
}

.symbolic-right-claims-page:first-child {
  border-top: 0;
  margin-top: 0;
}

.symbolic-right-claims-page-title {
  margin: 0 0 5px;
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 700;
  color: #6f6f68;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.symbolic-right-claims-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-right-claim-row {
  width: 100%;
  border: 0;
  border-bottom: 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 5px rgba(15, 23, 42, 0.08);
  text-align: left;
  padding: 9px 10px;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.symbolic-right-claim-row:hover,
.symbolic-right-claim-row:focus {
  outline: none;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.18);
  background: rgba(15, 23, 42, 0.07);
}

.symbolic-right-claim-row.is-unmatched {
  cursor: default;
  opacity: 0.84;
}

.symbolic-right-claim-line {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.4;
  color: #1e293b;
}

.symbolic-right-claim-meta {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.symbolic-right-claim-chip {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6f6f68;
  padding: 0;
  font-size: 0.67rem;
  line-height: 1.22;
  font-weight: 700;
  text-transform: uppercase;
}

.symbolic-right-claim-chip + .symbolic-right-claim-chip::before {
  content: "•";
  margin: 0 5px 0 2px;
  color: #9c9c93;
}

.symbolic-right-claim-no-match {
  margin: 5px 0 0;
  font-size: 0.68rem;
  line-height: 1.3;
  color: #6f6f68;
}

.symbolic-right-progress {
  width: 100%;
}

.symbolic-right-progress-track {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 7px;
  border-radius: 999px;
  background: #dfebfb;
  overflow: hidden;
}

.symbolic-right-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #185fa5 0%, #534ab7 100%);
  transition: width 0.35s ease;
}

.symbolic-right-progress-bar.is-indeterminate {
  width: 38%;
  transform: translateX(-120%);
  animation: symbolic-placeholder-progress 1.3s ease-in-out infinite;
}

.symbolic-right-progress-detail {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #6f6f68;
}

@keyframes symbolic-placeholder-progress {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(85%);
  }
  100% {
    transform: translateX(240%);
  }
}

.main-area.symbolic-open .composer-wrap {
  display: none;
}

@media (max-width: 980px) {
  .symbolic-layout {
    grid-template-columns: 1fr;
  }
  .symbolic-right-panel {
    min-height: 180px;
  }
  .symbolic-page-card {
    width: 100%;
  }
  .symbolic-page-sheet {
    aspect-ratio: auto;
    min-height: 720px;
    height: auto;
    overflow: visible;
  }
  .symbolic-text-wrap {
    padding: 14px 16px 10px;
  }
  .symbolic-images-wrap {
    padding: 2px 16px 12px;
  }
  .symbolic-visuals-wrap {
    padding: 2px 16px 10px;
  }
  .symbolic-page-footer {
    padding: 10px 16px 12px;
  }
}

/* ─── Cascade dimensions: lenses, facet chips, detail badges ─────────────── */
.symbolic-checker-summary-cascade {
  font-weight: 600;
  color: #334155;
}

.symbolic-checker-lens {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-checker-lens-subtitle {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.3;
  color: #6f6f68;
}

.symbolic-checker-distribution-legend-item.is-clickable {
  border: 0;
  background: transparent;
  padding: 2px 4px;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  color: #475569;
}

.symbolic-checker-distribution-legend-item.is-clickable:hover {
  background: rgba(15, 23, 42, 0.05);
}

.symbolic-checker-distribution-legend-item.is-clickable.is-active {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-weight: 700;
}

.symbolic-checker-detail-dims {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 8px 0 2px;
}

.symbolic-checker-detail-tag {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.symbolic-checker-detail-tag.is-focal-tag {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.symbolic-checker-detail-tag.is-contextual-tag {
  background: repeating-linear-gradient(
    -45deg,
    rgba(148, 163, 184, 0.22),
    rgba(148, 163, 184, 0.22) 5px,
    rgba(148, 163, 184, 0.08) 5px,
    rgba(148, 163, 184, 0.08) 10px
  );
  color: #475569;
}

.symbolic-checker-pillar-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--pillar-color, #6f6f68);
}

.symbolic-checker-badge {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  border: 1px solid transparent;
}

.symbolic-checker-badge.is-actions {
  background: rgba(24, 95, 165, 0.12);
  border-color: rgba(24, 95, 165, 0.32);
}

.symbolic-checker-badge.is-impact {
  background: rgba(15, 110, 86, 0.12);
  border-color: rgba(15, 110, 86, 0.32);
}

.symbolic-checker-badge.is-commitments {
  background: rgba(133, 79, 11, 0.12);
  border-color: rgba(133, 79, 11, 0.32);
}

.symbolic-checker-badge.is-verification {
  background: rgba(83, 74, 183, 0.14);
  border-color: rgba(83, 74, 183, 0.34);
}

.symbolic-checker-info-meter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 2px;
}

.symbolic-checker-info-meter-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
}

.symbolic-checker-info-meter-dots {
  display: inline-flex;
  gap: 4px;
}

.symbolic-checker-info-dot {
  width: 16px;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
}

.symbolic-checker-info-dot.is-filled {
  background: #475569;
}

.symbolic-checker-info-meter-value {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0f172a;
}

/* ─── Redesigned symbolic-checker chrome (header + toolbar) ───────────────── */
.symbolic-checker-header,
.symbolic-checker-toolbar {
  display: none;
}

#symbolic-view.is-symbolic-checker-mode .symbolic-checker-header,
#symbolic-view.is-visual-mode.is-visual-scanner-chrome .symbolic-checker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 12px 22px;
  background: #ffffff;
  border-bottom: 1px solid #e3e8ef;
  flex-shrink: 0;
}

.symbolic-checker-header-lead {
  min-width: 0;
}

.symbolic-checker-header-eyebrow {
  font: 600 10px/1 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9c9c93;
}

.symbolic-checker-header-title {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.symbolic-checker-header-sub {
  margin-top: 4px;
  font-size: 11.5px;
  color: #6f6f68;
}

.symbolic-checker-header-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.symbolic-checker-header-stat {
  text-align: right;
}

.symbolic-checker-header-stat-value {
  font: 700 20px/1 ui-monospace, "SF Mono", Menlo, monospace;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.symbolic-checker-header-stat-value.is-symbolic {
  color: #bd7d14;
}

.symbolic-checker-header-stat-value.is-evidence {
  color: #2c9a5b;
}

.symbolic-checker-header-stat-label {
  margin-top: 6px;
  font: 600 9px/1 ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9c9c93;
}

.symbolic-checker-header-divider {
  width: 1px;
  height: 32px;
  background: #e6eaf0;
}

.symbolic-checker-header-verdict-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.symbolic-checker-header-verdict {
  padding: 5px 11px;
  border-radius: 999px;
  font: 700 11px/1 ui-monospace, monospace;
  letter-spacing: 0.02em;
}

.symbolic-checker-header-verdict.is-low {
  background: rgba(44, 154, 91, 0.12);
  color: #1f7a4a;
  border: 1px solid rgba(44, 154, 91, 0.4);
}

.symbolic-checker-header-verdict.is-moderate {
  background: rgba(189, 125, 20, 0.13);
  color: #a3690f;
  border: 1px solid rgba(189, 125, 20, 0.42);
}

.symbolic-checker-header-verdict.is-high {
  background: rgba(214, 69, 69, 0.12);
  color: #c0392b;
  border: 1px solid rgba(214, 69, 69, 0.4);
}

.symbolic-checker-header-firm {
  font: 600 9px/1 ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9c9c93;
}

#symbolic-view.is-symbolic-checker-mode .symbolic-checker-toolbar,
#symbolic-view.is-visual-mode.is-visual-scanner-chrome .symbolic-checker-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 9px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e6eaf0;
  flex-shrink: 0;
}

.symbolic-checker-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.symbolic-checker-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #475569;
}

.symbolic-checker-legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 2.5px;
  display: inline-block;
  flex-shrink: 0;
}

.symbolic-checker-esg-toggle {
  padding: 5px 12px;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid #d4dbe4;
  background: #ffffff;
  color: #475569;
  cursor: pointer;
}

.symbolic-checker-esg-toggle.is-active {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
}

/* ─── Findings ───────────────────────────────────────────────────────────── */
.symbolic-checker-finding-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolic-checker-finding {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
  text-align: left;
  padding: 9px 10px;
  border-radius: 9px;
  background: #f8fafc;
  border: 1px solid #eef1f5;
  cursor: pointer;
}

.symbolic-checker-finding:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.symbolic-checker-finding-bar {
  width: 4px;
  flex-shrink: 0;
  border-radius: 3px;
  align-self: stretch;
}

.symbolic-checker-finding-text {
  font-size: 12.5px;
  line-height: 1.45;
  color: #334155;
}

/* ─── Composition (category mix as a filter list) ────────────────────────── */
.symbolic-checker-composition-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.symbolic-checker-composition-clear {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  color: #1d4ed8;
  cursor: pointer;
}

.symbolic-checker-composition-clear.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.symbolic-checker-composition-subtitle {
  margin: 0;
  font-size: 11px;
  color: #9c9c93;
}

.symbolic-checker-composition .symbolic-checker-distribution-bar {
  height: 9px;
  margin: 2px 0 4px;
}

.symbolic-checker-composition-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.symbolic-checker-comp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 7px 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.symbolic-checker-comp-row:hover {
  background: #f1f5f9;
}

.symbolic-checker-comp-row.is-active {
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.symbolic-checker-comp-row-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.symbolic-checker-comp-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.symbolic-checker-comp-label {
  font-size: 12.5px;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.symbolic-checker-comp-row-right {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  flex-shrink: 0;
}

.symbolic-checker-comp-count {
  font: 700 12.5px/1 ui-monospace, monospace;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.symbolic-checker-comp-pct {
  font: 11px/1 ui-monospace, monospace;
  color: #9c9c93;
  width: 30px;
  text-align: right;
}

/* ─── Inspector: category-accented header + note ─────────────────────────── */
.symbolic-checker-detail-pill.is-symbolic,
.symbolic-checker-detail-pill.is-actions,
.symbolic-checker-detail-pill.is-impact,
.symbolic-checker-detail-pill.is-commitments,
.symbolic-checker-detail-pill.is-verification {
  background: var(--detail-accent, #6f6f68);
  color: #ffffff;
  border-color: transparent;
}

.symbolic-checker-detail .symbolic-checker-info-dot.is-filled {
  background: var(--detail-accent, #475569);
}

.symbolic-checker-detail-note {
  border-left: 3px solid var(--detail-accent, #b3b3a9);
  background: rgba(15, 23, 42, 0.03);
  border-radius: 0 8px 8px 0;
  padding: 8px 11px;
}

/* Inspector header: label left, category pill flush right. */
.symbolic-checker-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Page · section on the left, firm-specific + pillar chips on the right. */
.symbolic-checker-detail-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.symbolic-checker-detail-meta-row .symbolic-checker-detail-meta {
  margin: 0;
}

.symbolic-checker-detail-attribution {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* ─── Document page header (checker mode): "EXTRACTED TEXT · SECTION" + tag ── */
.symbolic-text-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e6eaf0;
}

.symbolic-text-label.is-checker-head {
  display: inline;
  width: auto;
  background: transparent;
  color: #9c9c93;
  padding: 0;
  margin: 0;
  border-radius: 0;
  font: 600 10.5px/1 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.symbolic-text-page-tag {
  flex-shrink: 0;
  font: 600 10.5px/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
  color: #b3b3a9;
}

/* ─── Checker-mode document: airier, content-height sheets (mockup parity) ── */
#symbolic-view.is-symbolic-checker-mode .symbolic-page-sheet {
  min-height: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

#symbolic-view.is-symbolic-checker-mode .symbolic-text-wrap {
  padding: 24px 30px 22px;
}

#symbolic-view.is-symbolic-checker-mode .symbolic-text-body {
  font-size: 15px;
  line-height: 1.9;
}

#symbolic-view.is-symbolic-checker-mode .symbolic-text-paragraph {
  margin-bottom: 1.05em;
}

/* ─── Flat, line-divided layout (checker mode) ───────────────────────────────
   One continuous surface: a single vertical rule splits the document from the
   evidence rail, and thin horizontal rules split the evidence sections —
   instead of nested rounded cards. */
#symbolic-view.is-symbolic-checker-mode .symbolic-layout {
  gap: 0;
  padding: 0;
}

#symbolic-view.is-symbolic-checker-mode .symbolic-left-panel,
#symbolic-view.is-symbolic-checker-mode .symbolic-right-panel {
  border: 0;
  border-radius: 0;
}

/* Vertical divider between the two windows. */
#symbolic-view.is-symbolic-checker-mode .symbolic-right-panel {
  border-left: 1px solid #e6eaf0;
  padding: 0;
}

/* Document sits flat — the per-page "EXTRACTED TEXT · …" rule separates pages. */
#symbolic-view.is-symbolic-checker-mode .symbolic-page-card {
  width: min(100%, 820px);
}

#symbolic-view.is-symbolic-checker-mode .symbolic-page-sheet {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

/* Evidence rail: header row + line-separated sections. */
#symbolic-view.is-symbolic-checker-mode .symbolic-right-title {
  margin: 0;
  padding: 12px 16px 11px;
  border-bottom: 1px solid #e6eaf0;
}

#symbolic-view.is-symbolic-checker-mode .symbolic-right-placeholder.is-checker {
  gap: 0;
  padding: 0 16px 16px;
}

#symbolic-view.is-symbolic-checker-mode .symbolic-checker-panel-section {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 15px 0;
}

#symbolic-view.is-symbolic-checker-mode .symbolic-checker-panel-section + .symbolic-checker-panel-section {
  border-top: 1px solid #e6eaf0;
}

/* ─── Flat, line-divided layout (visual scanner) — mirrors checker mode ──────
   The visual scanner reuses the same panel chrome; flatten it the same way so
   it reads as one continuous surface — a vertical rule between the document and
   the outcome rail, thin horizontal rules between the rail sections — instead
   of nested rounded cards. */
#symbolic-view.is-visual-scanner-chrome .symbolic-layout {
  gap: 0;
  padding: 0;
}
#symbolic-view.is-visual-scanner-chrome .symbolic-left-panel,
#symbolic-view.is-visual-scanner-chrome .symbolic-right-panel {
  border: 0;
  border-radius: 0;
}
#symbolic-view.is-visual-scanner-chrome .symbolic-right-panel {
  border-left: 1px solid #e6eaf0;
}
#symbolic-view.is-visual-scanner-chrome .symbolic-right-placeholder.is-checker {
  gap: 0;
  padding: 0 16px 16px;
}
#symbolic-view.is-visual-scanner-chrome .symbolic-checker-panel-section {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 15px 0;
}
#symbolic-view.is-visual-scanner-chrome .symbolic-checker-panel-section + .symbolic-checker-panel-section {
  border-top: 1px solid #e6eaf0;
}

/* ─── Compliance mode: outcome rail only ─────────────────────────────────────
   The Compliance checker ("analysis outcome") view drops the extracted-text
   document column so the requirement checks use the full width. Other modes
   (symbolic checker "sentence evidence", visual scanner) keep their split. The
   id selector outranks the sidebar-collapsed two-column rule above. */
#symbolic-view.is-compliance-mode .symbolic-left-panel {
  display: none;
}

#symbolic-view.is-compliance-mode .symbolic-layout {
  grid-template-columns: minmax(0, 1fr);
}

/* Flatten the nested cockpit chrome: drop the "analysis outcome" title and the
   "ESG disclosure" header bar, and strip the inner card's border/shadow so the
   coverage + requirement checks fill the single outer panel — no window-in-
   window. The outer .symbolic-right-panel stays as the one card. */
#symbolic-view.is-compliance-mode .symbolic-right-title,
#symbolic-view.is-compliance-mode .symbolic-cockpit-head {
  display: none;
}

#symbolic-view.is-compliance-mode .symbolic-cockpit-shell {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Drop the outer card boundary too, and zero the panel + layout insets so the
   content fills the full right-side panel area edge-to-edge. */
#symbolic-view.is-compliance-mode .symbolic-right-panel {
  border: 0;
  border-radius: 0;
  padding: 0;
}

#symbolic-view.is-compliance-mode .symbolic-layout {
  padding: 0;
  gap: 0;
}

/* The shell keeps a side gutter that `.main-area.symbolic-open .shell` only
   clears in compact mode; on wide (split) layouts compliance mode still gets it.
   Clear it here so the content reaches the full width of the area. */
.main-area:has(#symbolic-view.is-compliance-mode) .shell {
  padding: 0;
}
