/* piuda 랜딩 파이프라인 · 실제 제품 화면 컴포넌트
   세 화면(논문 프로파일 · 프로젝트 시작 · 연구 검증)을 실제 앱 마크업에서 그대로 옮겨와
   .ade-screen 네임스페이스 아래로 격리한다. 각 화면은 1440×810 고정 캔버스에서 그려지고,
   .ade-viewport 크기에 맞춰 transform:scale() 로 축소된다(비율 왜곡 없음).
   -------------------------------------------------------------------------- */

/* 랜딩 전역(h1/h2/.nav/.step/.steps 등)이 화면 내부로 새지 않도록 최소 리셋.
   :where() 로 0-특이도를 유지해 아래 컴포넌트 규칙이 항상 우선한다. */
.ade-screen :where(h1, h2, h3, h4) {
  margin: 0;
  max-width: none;
  font: inherit;
  font-weight: inherit;
  line-height: normal;
  letter-spacing: normal;
  text-wrap: wrap;
}
.ade-screen :where(p, dl, dd, ol, ul) {
  margin: 0;
}
.ade-screen :where(button) {
  font: inherit;
  color: inherit;
  cursor: default;
}

/* 공통 토큰 */
.ade-screen {
  --sans: -apple-system, BlinkMacSystemFont, 'Pretendard', 'SF Pro Text', system-ui, sans-serif;
  --mono: 'SFMono-Regular', 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

/* 화면별 팔레트(원본 :root 를 그대로 스코프) */
.ade-screen--paper {
  --bg: #090b0e;
  --panel: #101317;
  --panel2: #0d1014;
  --surface: #15191e;
  --fg: #e6ecea;
  --muted: #78848b;
  --line: #22282e;
  --primary: #62d6b0;
  --primary-soft: #15332a;
}
.ade-screen--project,
.ade-screen--research {
  --bg: #0b0d10;
  --panel: #111419;
  --raised: #181c22;
  --soft: #14181d;
  --line: #272d34;
  --fg: #eef2f3;
  --muted: #88929b;
  --sage-100: oklch(94% 0.038 172);
  --sage-300: oklch(81% 0.108 171);
  --sage-400: oklch(74% 0.13 170);
  --sage-600: oklch(56% 0.11 168);
  --sage-700: oklch(46% 0.09 168);
  --sage-900: oklch(27% 0.052 170);
  --sage-950: oklch(20% 0.035 172);
  --primary: var(--sage-400);
  --primary-hover: var(--sage-600);
  --primary-solid: var(--sage-700);
  --primary-inverse: oklch(98% 0.01 172);
  --primary-inverse-muted: oklch(90% 0.035 172);
  --primary-ink: var(--primary-inverse);
  --primary-soft: color-mix(in oklch, var(--primary) 12%, transparent);
}

/* --------------------------------------------------------------------------
   공통 앱 셸 — 시스템바 · 레일 (세 화면 동일)
   -------------------------------------------------------------------------- */
.ade-frame {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 46px 1fr;
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
}
.ade-screen .systembar {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #0a0c0f;
}
.ade-screen .window-controls {
  display: flex;
  gap: 7px;
  width: 270px;
}
.ade-screen .window-control {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #28c840;
}
.ade-screen .window-control:first-child {
  background: #ff5f57;
}
.ade-screen .window-control:nth-child(2) {
  background: #febc2e;
}
.ade-screen .history {
  display: flex;
  gap: 3px;
}
.ade-screen .system-action {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #727c85;
}
.ade-screen .panel-toggle {
  margin-left: auto;
  width: auto;
  padding: 0 9px;
  gap: 7px;
  display: flex;
  align-items: center;
  font-size: 9px;
}
.ade-screen .panel-toggle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.ade-screen .rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 10px 0 13px;
  background: #080a0c;
}
.ade-screen .rail > .nav {
  box-sizing: border-box;
  display: grid;
  flex: 0 0 34px;
  place-content: center;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #66707a;
  line-height: 1;
}
.ade-screen .rail > .nav svg {
  display: block;
  width: 17px;
  height: 17px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ade-screen .nav.active {
  background: #1d2424;
  color: var(--primary);
}
.ade-screen .push {
  flex: 1;
}
.ade-screen .rail-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  padding: 0;
  margin-top: 1px;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--primary) 42%, #35423e);
  border-radius: 50%;
  background: #21312c;
  color: #d9f7e9;
  font: 700 9px/30px var(--sans);
  letter-spacing: 0.02em;
  box-shadow:
    0 0 0 2px #080a0c,
    0 0 0 3px #25332f;
}

/* 공통 에이전트 패널 (논문 · 연구 화면) */
.ade-screen--paper .agent-panel,
.ade-screen--research .agent-panel,
.ade-screen--insight .agent-panel {
  display: flex;
  flex-direction: column;
  padding: 26px 20px 20px;
  background: var(--panel2, #0d1014);
  box-shadow: inset 1px 0 #1b2026;
}
.ade-screen .agent-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: auto;
}
.ade-screen .agent-mark {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
}
.ade-screen .agent-mark img,
.ade-screen .agent-head img {
  display: block;
  width: 19px;
  height: 19px;
}
.ade-screen .agent-head b {
  font-size: 11px;
}
.ade-screen .state {
  margin-left: auto;
  color: var(--primary);
  font: 9px var(--mono);
}
.ade-screen .agent-context {
  color: var(--primary);
  font: 700 8px var(--mono);
  letter-spacing: 0.12em;
}
.ade-screen .agent-copy {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}
.ade-screen .suggestions {
  display: grid;
  gap: 6px;
  margin: 14px 0 12px;
}
.ade-screen .suggestion {
  min-height: 34px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #14181d;
  color: var(--fg);
  text-align: left;
  font-size: 8px;
}
.ade-screen .quick {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 7px;
}
.ade-screen .chip {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: #7f8990;
  font-size: 7px;
}
.ade-screen .composer {
  padding: 10px 11px;
  border: 1px solid #303640;
  border-radius: 12px;
  background: #15191f;
}
.ade-screen .composer textarea {
  width: 100%;
  height: 31px;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fg);
  font-size: 9px;
  line-height: 1.5;
}
.ade-screen .composer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 7px;
  padding-top: 7px;
  color: #74808a;
  font: 8px var(--mono);
}
.ade-screen .composer-meta select {
  max-width: 118px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #78838a;
  font-size: 7px;
}

/* 공통 개념 테이블 (논문 · 연구 화면 사이드) */
.ade-screen .concept-note {
  margin: -2px 0 9px;
  color: #69747c;
  font-size: 7px;
  line-height: 1.5;
}
.ade-screen .concept-table {
  display: grid;
}
.ade-screen .concept-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 10px;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  border-top: 1px solid #20262c;
  color: #81909a;
  font-size: 7px;
}
.ade-screen .concept-row:first-child {
  border-top: 0;
}
.ade-screen .concept-row em {
  color: #66727a;
  font-style: normal;
}
.ade-screen .concept-row strong {
  display: inline-block;
  margin: 2px 3px 2px 0;
  padding: 4px 6px;
  border-radius: 5px;
  background: #19231f;
  color: #b9d7cb;
  font-size: 7px;
  font-weight: 500;
}
.ade-screen .concept-row .empty {
  color: #66727a;
  font-style: italic;
}
.ade-screen .concept-row .arrow {
  color: #5e6a72;
  font-size: 11px;
}
.ade-screen .concept-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin: 9px 0 0 auto;
  padding: 4px 6px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #66727a;
  font-size: 7px;
}
.ade-screen .concept-filter i {
  width: 11px;
  height: 11px;
  display: grid;
  place-items: center;
  border: 1px solid #52605b;
  border-radius: 3px;
  color: #8ab6a6;
  font-style: normal;
  font-size: 7px;
}
.ade-screen .usage {
  margin-top: auto;
  padding: 20px 0 0;
}
.ade-screen .usage-title {
  margin-bottom: 10px;
  color: #6e7880;
  font-size: 8px;
}
.ade-screen .usage-row {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: #758089;
  font-size: 8px;
}
.ade-screen .usage-row output {
  color: #a5afb4;
  font-family: var(--mono);
}

/* ==========================================================================
   STEP 1 — 논문 프로파일 (paper-detail)
   ========================================================================== */
.ade-screen--paper .shell {
  min-height: 0;
  display: grid;
  grid-template-columns: 54px 260px minmax(0, 1fr) 280px;
}
.ade-screen--paper .rail {
  grid-column: 1;
}
.ade-screen--paper .page-panel {
  grid-column: 2;
}
.ade-screen--paper .content-panel {
  grid-column: 3;
  grid-row: 1;
}
.ade-screen--paper .agent-panel {
  grid-column: 4;
  grid-row: 1;
}
.ade-screen--paper .page-panel,
.ade-screen--paper .content-panel,
.ade-screen--paper .agent-panel {
  min-width: 0;
  min-height: 0;
}
.ade-screen--paper .page-panel {
  display: flex;
  flex-direction: column;
  padding: 0 16px 16px;
  background: var(--panel);
  overflow: hidden;
}
.ade-screen--paper .back {
  height: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: stretch;
  margin-left: -8px;
  padding: 6px 8px 0;
  border: 0;
  border-radius: 7px;
  background: none;
  color: #7c878e;
  font-size: 9px;
}
.ade-screen--paper .paper-title {
  margin: 24px 0 8px;
  font-size: 13px;
  line-height: 1.42;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.ade-screen--paper .paper-meta {
  color: #7d888e;
  font-size: 8px;
  line-height: 1.65;
}
.ade-screen--paper .meta-actions {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.ade-screen--paper .meta-actions button {
  height: 28px;
  padding: 0 9px;
  border: 1px solid #2b3238;
  border-radius: 7px;
  background: transparent;
  color: #98a3a6;
  font-size: 8px;
}
.ade-screen--paper .side-section {
  margin-top: 26px;
}
.ade-screen--paper .basic-info {
  margin-top: 28px;
}
.ade-screen--paper .basic-info h2,
.ade-screen--paper .paper-overview h2 {
  margin-bottom: 14px;
  color: var(--fg);
  font-size: 11px;
}
.ade-screen--paper .kv {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0;
  font-size: 8px;
  line-height: 1.55;
}
.ade-screen--paper .kv dt {
  padding: 10px 0;
  color: #71859a;
}
.ade-screen--paper .kv dd {
  padding: 10px 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: #c8d1d8;
  line-height: 1.65;
}
.ade-screen--paper .kv .file-value {
  color: #8fa4bd;
  font-family: var(--mono);
}
.ade-screen--paper .content-panel {
  display: flex;
  flex-direction: column;
  background: #0f1216;
  box-shadow: inset 1px 0 #1b2026;
}
.ade-screen--paper .steps {
  height: 58px;
  display: flex;
  align-items: stretch;
  padding: 0 28px;
  background: #11151a;
}
.ade-screen--paper .step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border: 0;
  background: none;
  color: #626e76;
  font-size: 8px;
}
.ade-screen--paper .step:first-child {
  padding-left: 0;
}
.ade-screen--paper .step b {
  font: 700 7px var(--mono);
}
.ade-screen--paper .step.active {
  color: #dce4e1;
}
.ade-screen--paper .step.active b {
  color: var(--primary);
}
.ade-screen--paper .step.active::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: var(--primary);
}
.ade-screen--paper .step:first-child.active::after {
  left: 0;
}
.ade-screen--paper .report {
  flex: 1;
  overflow: hidden;
  padding: 30px clamp(30px, 4vw, 60px) 80px;
}
.ade-screen--paper .report-inner {
  max-width: 800px;
  margin: auto;
}
.ade-screen--paper .profile-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.ade-screen--paper .profile-toolbar span {
  color: #707c83;
  font-size: 8px;
}
.ade-screen--paper .view-toggle {
  display: inline-flex;
  padding: 2px;
  border-radius: 6px;
  background: #181d22;
}
.ade-screen--paper .view-toggle button {
  min-width: 42px;
  height: 24px;
  padding: 0 9px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #68747b;
  font-size: 8px;
}
.ade-screen--paper .view-toggle button.active {
  background: #29312f;
  color: #dce8e3;
}
.ade-screen--paper .report-section {
  padding: 30px 0;
}
.ade-screen--paper .report-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ade-screen--paper .report-section-head h1 {
  margin: 0;
  color: #e8eeec;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}
.ade-screen--paper .report-section-head > span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #19211e;
  color: #8fa69e;
  font: 7px var(--mono);
}
.ade-screen--paper .summary-section {
  margin: 0;
  padding: 0 0 34px;
}
.ade-screen--paper .summary-section .report-section-head {
  margin-bottom: 14px;
}
.ade-screen--paper .summary-section .report-section-head > span {
  display: none;
}
.ade-screen--paper .summary-section .report-section-body {
  padding: 20px 22px;
  border-radius: 10px;
  background: #14191e;
}
.ade-screen--paper .summary-section p {
  margin: 0;
  color: #b7c1be;
  font-size: 9px;
  line-height: 1.85;
}
.ade-screen--paper .claims-section {
  padding-top: 32px;
}
.ade-screen--paper .report-desc {
  max-width: 620px;
  margin: 6px 0 24px;
  color: #86928f;
  font-size: 9px;
  line-height: 1.7;
}
.ade-screen--paper .claim-origin {
  display: grid;
  gap: 22px;
  margin-top: 0;
}
.ade-screen--paper .claim-subgroup {
  display: block;
  margin: 0;
}
.ade-screen--paper .subgroup-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 9px;
}
.ade-screen--paper .subgroup-head h3 {
  margin: 0;
  padding: 5px 8px;
  border-radius: 6px;
  background: #1a2420;
  color: #b9d8cc;
  font-size: 9px;
  white-space: nowrap;
}
.ade-screen--paper .subgroup-head p {
  margin: 0;
  color: #68747a;
  font-size: 8px;
  line-height: 1.5;
}
.ade-screen--paper .claim-rows {
  list-style: none;
  min-width: 0;
  margin: 0;
  padding: 0 14px;
  border-radius: 10px;
  background: #12171b;
}
.ade-screen--paper .claim-row {
  padding: 14px 0;
}
.ade-screen--paper .claim-row + .claim-row {
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
}
.ade-screen--paper .claim-row-head {
  width: 100%;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}
.ade-screen--paper .claim-index {
  padding-top: 2px;
  color: #718078;
  font: 8px var(--mono);
}
.ade-screen--paper .claim-text {
  color: #c8d0ce;
  font-size: 9px;
  line-height: 1.7;
}
.ade-screen--paper .claim-row .chev {
  padding-top: 1px;
  color: #68747a;
}
.ade-screen--paper .claim-row.open .chev {
  transform: rotate(90deg);
}
.ade-screen--paper .claim-detail {
  display: none;
  margin: 16px 0 3px;
  padding: 0 0 3px;
}
.ade-screen--paper .claim-row.open .claim-detail {
  display: block;
}
.ade-screen--paper .claim-detail h4 {
  margin: 0 0 10px;
  color: #82918d;
  font-size: 9px;
  font-weight: 600;
}
.ade-screen--paper .claim-detail > p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #0e1316;
  color: #aeb9b6;
  font-size: 8px;
  line-height: 1.75;
}
.ade-screen--paper .evidence-block {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #0e1316;
}
.ade-screen--paper .evidence-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  color: #aeb9b6;
  font-size: 8px;
  line-height: 1.7;
}
.ade-screen--paper .evidence-line b {
  color: #667771;
  font: 500 8px var(--mono);
}
.ade-screen--paper .evidence-line em {
  color: #6f827b;
  font-style: normal;
}
.ade-screen--paper .detail-context {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
}
.ade-screen--paper .context-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  color: #b8c2bf;
  font-size: 8px;
  line-height: 1.6;
}
.ade-screen--paper .context-row span {
  color: #70817c;
}
.ade-screen--paper .detail-meta {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
}
.ade-screen--paper .meta-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  color: #b7c0bd;
  font-size: 8px;
}
.ade-screen--paper .meta-row + .meta-row {
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}
.ade-screen--paper .meta-row span {
  color: #6f807b;
}
.ade-screen--paper .agent-body {
  margin: auto 0 0;
}
.ade-screen--paper .agent-body h2 {
  margin: 11px 0 9px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

/* ==========================================================================
   STEP 2 — 프로젝트 시작 (main-ade-plan-first)
   ========================================================================== */
.ade-screen--project .app-shell {
  min-height: 0;
  display: grid;
  grid-template-columns: 54px 260px 1fr;
}
.ade-screen--project .side {
  background: var(--panel);
  padding: 10px 13px 12px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.ade-screen--project .side-head {
  display: flex;
  align-items: center;
  min-height: 34px;
  margin: 0 6px 16px;
}
.ade-screen--project .side-head h2 {
  margin: 0;
  color: var(--fg);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ade-screen--project .side-head button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #77818a;
}
.ade-screen--project .project {
  padding: 11px;
  border-radius: 9px;
  background: var(--raised);
}
.ade-screen--project .project-name {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ade-screen--project .project-name b {
  min-width: 0;
  font-size: 11px;
}
.ade-screen--project .project-edit {
  width: 22px;
  height: 22px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #727d86;
}
.ade-screen--project .project-edit svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.ade-screen--project .project-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  padding: 0;
}
.ade-screen--project .project-meta > div {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 28px;
  margin: 0;
  padding: 0;
}
.ade-screen--project .project-meta dt {
  flex: 0 0 48px;
  margin: 0;
  font-size: 8px;
  font-weight: 550;
  line-height: 1;
  color: #717b83;
}
.ade-screen--project .project-meta dd {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  height: 28px;
  font-size: 8px;
  color: #aab3ba;
}
.ade-screen--project .project-meta select,
.ade-screen--project .project-meta input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 28px;
  margin: 0;
  padding: 0 18px 0 0;
  border: 0;
  border-bottom: 1px solid #2b3338;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #bdc6cb;
  font: 8px var(--sans);
}
.ade-screen--project .project-meta select {
  appearance: none;
  -webkit-appearance: none;
}
.ade-screen--project .section-title {
  font: 700 8px var(--mono);
  letter-spacing: 0.1em;
  color: #68737d;
  margin: 17px 7px 7px;
}
.ade-screen--project .side-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ade-screen--project .side-item {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 8px 7px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--fg);
  text-align: left;
}
.ade-screen--project .side-item i {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--sage-950);
  color: var(--primary);
  font-style: normal;
}
.ade-screen--project .side-item i svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ade-screen--project .side-item span {
  min-width: 0;
}
.ade-screen--project .side-item b {
  display: block;
  font-size: 9px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ade-screen--project .side-item small {
  display: block;
  margin-top: 4px;
  color: #7e8b95;
  font-size: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ade-screen--project .side-item small em {
  color: var(--primary);
  font-style: normal;
}
.ade-screen--project .paper-add-outline {
  width: calc(100% - 14px);
  height: 31px;
  margin: 7px 7px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #35413f;
  border-radius: 7px;
  background: transparent;
  color: #94aaa2;
  font: 650 8px var(--sans);
}
.ade-screen--project .usage {
  margin: auto 7px 0;
  padding-top: 14px;
}
.ade-screen--project .usage-head {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  color: #89939c;
  font-size: 9px;
  font-weight: 700;
}
.ade-screen--project .usage-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 6px;
  font-size: 8px;
  color: #707b84;
}
.ade-screen--project .usage-row output {
  font: 8px var(--mono);
  color: #a4adb4;
}
.ade-screen--project .workspace {
  display: grid;
  grid-template-rows: 1fr;
  min-width: 0;
}
.ade-screen--project .canvas {
  display: grid;
  grid-template-columns: minmax(470px, 1fr) 360px;
  min-height: 0;
}
.ade-screen--project .agent {
  padding: 26px clamp(24px, 3.2vw, 46px) 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ade-screen--project .agent-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: auto;
  min-height: 34px;
}
.ade-screen--project .agent-mark img {
  width: 19px;
  height: 19px;
}
.ade-screen--project .top b {
  font-size: 11px;
}
.ade-screen--project .eyebrow {
  font: 700 8px var(--mono);
  letter-spacing: 0.12em;
  color: var(--primary);
}
.ade-screen--project .agent h1 {
  font-size: clamp(27px, 2.7vw, 43px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 11px 0 9px;
  max-width: 650px;
}
.ade-screen--project .lead {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 570px;
}
.ade-screen--project .starter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.ade-screen--project .starter {
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #14181d;
  color: var(--fg);
  text-align: left;
}
.ade-screen--project .starter.selected {
  border-color: var(--primary);
  background: var(--sage-950);
}
.ade-screen--project .starter em {
  color: var(--primary);
  font: 8px var(--mono);
  font-style: normal;
}
.ade-screen--project .starter b {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}
.ade-screen--project .starter small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}
.ade-screen--project .bar {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: auto;
  margin-bottom: 7px;
}
.ade-screen--project .chip {
  border: 0;
  background: #20252c;
  color: #9ca5ad;
  border-radius: 6px;
  padding: 5px 7px;
  font-size: 8px;
}
.ade-screen--project .composer textarea {
  color: #fff;
  font-size: 10px;
}
.ade-screen--project .composer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.ade-screen--project .key-help {
  white-space: nowrap;
}
.ade-screen--project .model-field {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.ade-screen--project .model-field select {
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: #aab8c8;
  padding: 3px 18px 3px 5px;
  font: 9px var(--mono);
}
.ade-screen--project .model-field::after {
  content: '⌃⌄';
  position: absolute;
  right: 1px;
  color: #738295;
  font: 8px/1 var(--mono);
  pointer-events: none;
}
.ade-screen--project .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ade-screen--project .upload-canvas {
  background: #0d1014;
  color: #edf3f0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ade-screen--project .upload-head {
  display: flex;
  align-items: center;
  min-height: 34px;
}
.ade-screen--project .upload-head b {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ade-screen--project .upload-head small {
  margin-left: auto;
  color: #75817c;
  font-size: 8px;
}
.ade-screen--project .dropzone {
  flex: 1;
  margin-top: 12px;
  border: 1px dashed #39443f;
  border-radius: 10px;
  background: #11161a;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.ade-screen--project .paper-stack {
  position: relative;
  width: 72px;
  height: 62px;
  margin: 0 auto 19px;
}
.ade-screen--project .paper-sheet {
  position: absolute;
  width: 45px;
  height: 57px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #cfd8d4;
  box-shadow: 0 7px 16px #28473a14;
  left: 14px;
  top: 2px;
}
.ade-screen--project .paper-sheet:nth-child(1) {
  transform: rotate(-9deg) translateX(-10px);
}
.ade-screen--project .paper-sheet:nth-child(2) {
  transform: rotate(8deg) translateX(10px);
}
.ade-screen--project .paper-sheet:nth-child(3) {
  background: var(--sage-100);
  display: grid;
  place-items: center;
  color: var(--sage-700);
  font-size: 21px;
  font-weight: 300;
}
.ade-screen--project .dropzone h2 {
  font-size: 20px;
  letter-spacing: -0.035em;
  margin: 0 0 8px;
}
.ade-screen--project .dropzone p {
  max-width: 270px;
  color: #87928d;
  font-size: 9px;
  line-height: 1.55;
  margin: 0 auto 16px;
}
.ade-screen--project .upload-button {
  border: 0;
  border-radius: 8px;
  background: var(--primary-solid);
  color: var(--primary-ink);
  padding: 9px 14px;
  font-size: 9px;
  font-weight: 700;
}
.ade-screen--project .privacy {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
  color: #87928d;
  font-size: 7px;
}
.ade-screen--project .search-route {
  margin-top: 10px;
  text-align: center;
  font-size: 8px;
  color: #78837e;
}
.ade-screen--project .search-route button {
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 8px;
}

/* ==========================================================================
   STEP 3 — 연구 검증 (research-detail, 종합 판정 뷰)
   ========================================================================== */
.ade-screen--research .shell {
  min-height: 0;
  display: grid;
  grid-template-columns: 54px 260px minmax(0, 1fr) 280px;
}
.ade-screen--research .rail {
  grid-column: 1;
}
.ade-screen--research .page-panel {
  grid-column: 2;
}
.ade-screen--research .content-panel {
  grid-column: 3;
  grid-row: 1;
}
.ade-screen--research .agent-panel {
  grid-column: 4;
  grid-row: 1;
}
.ade-screen--research .page-panel,
.ade-screen--research .content-panel,
.ade-screen--research .agent-panel {
  min-width: 0;
  min-height: 0;
}
.ade-screen--research .page-panel {
  display: flex;
  flex-direction: column;
  padding: 0 16px 16px;
  background: var(--panel);
  overflow: hidden;
}
.ade-screen--research .page-head {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 3px;
  flex: none;
  margin-left: -8px;
}
.ade-screen--research .page-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7c878e;
  font-size: 9px;
}
.ade-screen--research .study-title {
  margin: 7px 0;
  font-size: 13px;
  line-height: 1.32;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.ade-screen--research .study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  color: #77828b;
  font-size: 8px;
  line-height: 1.5;
}
.ade-screen--research .study-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 7px;
  color: #485159;
}
.ade-screen--research .tldr {
  margin: 13px 0 0;
  padding: 13px 0 2px;
}
.ade-screen--research .tldr-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font: 700 9px var(--mono);
}
.ade-screen--research .tldr-label i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  font-style: normal;
  font-size: 8px;
}
.ade-screen--research .tldr p {
  margin: 9px 0 0;
  color: #dfe6e5;
  font-size: 10px;
  line-height: 1.65;
}
.ade-screen--research .memory-section {
  margin-top: 22px;
}
.ade-screen--research .memory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ade-screen--research .memory-head h2 {
  margin: 0;
  font-size: 10px;
}
.ade-screen--research .memory-head span {
  color: #626d75;
  font: 8px var(--mono);
}
.ade-screen--research .paper-mini {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 0;
}
.ade-screen--research .paper-code {
  color: var(--primary);
  font: 8px/1.5 var(--mono);
}
.ade-screen--research .paper-mini b {
  display: block;
  color: #cbd3d3;
  font-size: 8px;
  line-height: 1.45;
}
.ade-screen--research .paper-mini small {
  display: block;
  margin-top: 3px;
  color: #68737b;
  font-size: 7px;
}
.ade-screen--research .content-panel {
  display: flex;
  flex-direction: column;
  background: #0f1216;
  box-shadow: inset 1px 0 #1b2026;
}
.ade-screen--research .content-head {
  height: 58px;
  min-height: 58px;
  display: flex;
  align-items: stretch;
  padding: 0 24px;
  background: #11151a;
  overflow: hidden;
}
.ade-screen--research .content-steps {
  display: flex;
  align-items: stretch;
  gap: 3px;
  min-width: max-content;
}
.ade-screen--research .content-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #68737b;
  font-size: 9px;
  white-space: nowrap;
}
.ade-screen--research .content-step:first-child {
  padding-left: 0;
}
.ade-screen--research .content-step::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: transparent;
}
.ade-screen--research .content-step:first-child::after {
  left: 0;
}
.ade-screen--research .content-step b {
  color: #465058;
  font: 600 8px var(--mono);
}
.ade-screen--research .content-step.active {
  color: var(--fg);
}
.ade-screen--research .content-step.active b {
  color: var(--primary);
}
.ade-screen--research .content-step.active::after {
  background: var(--primary);
}
.ade-screen--research .report {
  flex: 1;
  overflow: hidden;
  padding: 42px clamp(34px, 4.6vw, 68px) 84px;
  background: linear-gradient(180deg, #101419 0, #0f1216 180px);
}
.ade-screen--research .report-inner {
  max-width: 820px;
  margin: 0 auto;
}
.ade-screen--research .report-kicker {
  color: var(--primary);
  font: 700 9px var(--mono);
  letter-spacing: 0.1em;
}
.ade-screen--research .verification-report {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 54px;
}
.ade-screen--research .verification-hero {
  display: block;
  min-height: 0;
  padding: 16px 0 34px;
}
.ade-screen--research .verification-hero .report-kicker {
  display: none;
}
.ade-screen--research .verification-hero h2 {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin: 0;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.055em;
}
.ade-screen--research .verification-hero h2 span {
  color: var(--primary);
  font: 600 24px var(--mono);
  letter-spacing: -0.04em;
}
.ade-screen--research .validation-block {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  margin: 0;
  padding: 36px 0 40px;
}
.ade-screen--research .validation-block:not(:first-of-type) {
  padding: 28px 0 32px;
}
.ade-screen--research .validation-block-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 10px;
  align-items: start;
  margin: 0 0 20px;
}
.ade-screen--research .validation-block-head > div:first-child {
  display: contents;
}
.ade-screen--research .validation-block-head > div:first-child > span {
  grid-column: 1;
  display: block;
  margin: 0;
  padding-top: 4px;
  color: #718078;
  font: 700 9px var(--mono);
  letter-spacing: 0.05em;
}
.ade-screen--research .validation-block:first-of-type .validation-block-head span {
  color: var(--primary);
}
.ade-screen--research .validation-block-head h3 {
  grid-column: 2;
  max-width: none;
  color: #e5ebe9;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.ade-screen--research .validation-block-head > .level-badge {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  justify-self: start;
}
.ade-screen--research .validation-block > .verification-summary,
.ade-screen--research .validation-block > .evidence-line,
.ade-screen--research .validation-block > .theory-tags,
.ade-screen--research .validation-block > .feasibility-list {
  grid-column: 2;
}
.ade-screen--research .verification-summary {
  max-width: none;
  margin: 0;
  color: #aeb8b6;
  font-size: 11px;
  line-height: 1.92;
  text-wrap: pretty;
}
.ade-screen--research .validation-block:first-of-type .verification-summary {
  color: #d5ddda;
}
.ade-screen--research .evidence-line {
  margin-top: 22px;
  padding: 17px 18px;
  border-radius: 6px;
  background: #171c21;
  color: #919c9e;
  font-size: 10px;
  line-height: 1.7;
}
.ade-screen--research .evidence-line b {
  display: block;
  margin-bottom: 5px;
  color: #cbd3d2;
  font: 700 8px var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ade-screen--research .theory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.ade-screen--research .theory-tags span {
  padding: 6px 9px;
  border: 1px solid #293038;
  border-radius: 4px;
  background: #14191e;
  color: #9ba6a5;
  font-size: 9px;
}
.ade-screen--research .feasibility-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 0;
}
.ade-screen--research .feasibility-list article {
  min-height: 144px;
  padding: 18px;
  border: 0;
  border-radius: 7px;
  background: #151a1f;
}
.ade-screen--research .feasibility-list b {
  color: var(--fg);
  font-size: 10px;
}
.ade-screen--research .feasibility-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.75;
}
.ade-screen--research .level-badge {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 1.25;
  white-space: nowrap;
}
.ade-screen--research .level-badge i {
  display: none;
}
.ade-screen--research .level-badge strong {
  color: currentColor;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: -0.025em;
}
.ade-screen--research .level-badge em {
  display: inline-flex;
  align-items: baseline;
  color: #82908d;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ade-screen--research .level-badge em::before {
  content: '/';
  margin: 0 10px;
  color: #4f5b59;
  font-weight: 400;
}
.ade-screen--research .validation-block-head > .level-badge.level-high {
  color: #6ee7b7;
}
.ade-screen--research .validation-block-head > .level-badge.level-medium {
  color: #fcd34d;
}
.ade-screen--research .validation-block-head > .level-badge.level-low {
  color: #fca5a5;
}
.ade-screen--research .agent-panel h2 {
  margin: 11px 0 9px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

/* ==========================================================================
   STEP 2 — 인사이트 추천 / Discovery (recommendations 피드)
   ========================================================================== */
.ade-screen--insight {
  --bg: #0b0d10;
  --panel: #111419;
  --raised: #181c22;
  --line: #272d34;
  --fg: #eef2f3;
  --muted: #88929b;
  --amber: #f2c66d;
  --sage-400: oklch(74% 0.13 170);
  --sage-600: oklch(56% 0.11 168);
  --sage-700: oklch(46% 0.09 168);
  --sage-950: oklch(20% 0.035 172);
  --primary: var(--sage-400);
  --primary-soft: color-mix(in oklch, var(--primary) 12%, transparent);
}
.ade-screen--insight .shell {
  min-height: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 280px;
}
.ade-screen--insight .rail {
  grid-column: 1;
}
.ade-screen--insight .content-panel {
  grid-column: 2;
  grid-row: 1;
}
.ade-screen--insight .agent-panel {
  grid-column: 3;
  grid-row: 1;
}
.ade-screen--insight .content-panel,
.ade-screen--insight .agent-panel {
  min-width: 0;
  min-height: 0;
}
.ade-screen--insight .content-panel {
  display: flex;
  flex-direction: column;
  background: #0f1216;
  box-shadow: inset 1px 0 #1b2026;
}
.ade-screen--insight .report {
  flex: 1;
  overflow: hidden;
  padding: 34px clamp(30px, 4vw, 62px) 70px;
}
.ade-screen--insight .report-inner {
  max-width: 900px;
  margin: 0 auto;
}
.ade-screen--insight .disc-head {
  position: relative;
}
.ade-screen--insight .disc-title {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  color: #eef3f1;
}
.ade-screen--insight .disc-sub {
  margin: 9px 0 0;
  max-width: 620px;
  color: #8a938f;
  font-size: 11px;
  line-height: 1.6;
}
.ade-screen--insight .disc-gear {
  position: absolute;
  top: 2px;
  right: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #6f7a80;
}
.ade-screen--insight .disc-gear svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.ade-screen--insight .tab-bar {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  box-shadow: inset 0 -1px #20262b;
}
.ade-screen--insight .tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 2px 13px;
  border: 0;
  background: transparent;
  color: #68737a;
  font-size: 12px;
}
.ade-screen--insight .tab-btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.ade-screen--insight .tab-btn--active {
  color: #dce4e1;
}
.ade-screen--insight .tab-btn--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}
.ade-screen--insight .batch-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 22px 0 15px;
  color: #69757b;
  font-size: 10px;
}
.ade-screen--insight .batch-head b {
  color: #9aa4a2;
  font-weight: 600;
}
.ade-screen--insight .batch-head i {
  flex: 1;
  height: 1px;
  background: #1c2227;
}
.ade-screen--insight .combo-list {
  display: grid;
  gap: 12px;
}
.ade-screen--insight .combo-card {
  position: relative;
  padding: 21px 24px;
  border: 1px solid #232a2f;
  border-radius: 14px;
  background: #12171b;
}
.ade-screen--insight .combo-cat {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
}
.ade-screen--insight .combo-cat svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.ade-screen--insight .combo-title {
  margin: 11px 0 12px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #e6ecea;
}
.ade-screen--insight .combo-body {
  margin: 0;
  max-width: 760px;
  color: #97a29f;
  font-size: 11px;
  line-height: 1.78;
}
.ade-screen--insight .combo-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
}
.ade-screen--insight .combo-tag {
  padding: 6px 10px;
  border-radius: 7px;
  background: #1a2024;
  color: #a7b1ae;
  font-size: 10px;
}
.ade-screen--insight .combo-sep {
  width: 1px;
  height: 15px;
  margin: 0 3px;
  background: #2a3137;
}
.ade-screen--insight .combo-field {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px 6px 9px;
  border: 1px solid #2a3137;
  border-radius: 7px;
  color: #909c98;
  font-size: 10px;
}
.ade-screen--insight .combo-field svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.ade-screen--insight .combo-actions {
  position: absolute;
  top: 19px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ade-screen--insight .combo-act {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #262d33;
  border-radius: 8px;
  background: transparent;
  color: #8a949a;
}
.ade-screen--insight .combo-act svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.ade-screen--insight .combo-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border: 1px solid #33413c;
  border-radius: 8px;
  background: transparent;
  color: #cdd7d3;
  font-size: 10px;
  font-weight: 600;
}
.ade-screen--insight .combo-more {
  color: #8a949a;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.ade-screen--insight .combo-expand {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 17px;
  padding-top: 15px;
  box-shadow: inset 0 1px #20262b;
}
.ade-screen--insight .combo-exp {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8b9793;
  font-size: 11px;
}
.ade-screen--insight .combo-exp span {
  color: #5f6b6f;
}
.ade-screen--insight .combo-exp b {
  color: #a9b3b0;
  font-weight: 500;
}
.ade-screen--insight .agent-panel h2 {
  margin: 11px 0 9px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}
