:root {
  --agent-blue: #3158e7;
  --agent-blue-dark: #2443b7;
  --agent-blue-soft: #eef3ff;
  --agent-ink: #172033;
  --agent-muted: #667085;
  --agent-line: #dfe4ec;
  --agent-surface: #ffffff;
  --agent-canvas: #f4f6fa;
  --agent-amber: #c96c14;
  --agent-amber-soft: #fff6e9;
  --agent-green: #16845a;
  --agent-green-soft: #eaf8f2;
  --agent-red: #c43d4f;
}

.agent-command,
.agent-command button,
.agent-command select {
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

.agent-command {
  color: var(--agent-ink);
  display: grid;
  gap: 16px;
  margin: 0 0 20px;
}

.agent-command button,
.agent-command select {
  outline: none;
}

.agent-command button:focus-visible,
.agent-command select:focus-visible {
  box-shadow: 0 0 0 3px rgba(49, 88, 231, .17);
}

.agent-command__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 30px;
  border: 1px solid var(--agent-line);
  border-radius: 18px;
  background: var(--agent-surface);
  box-shadow: 0 12px 34px rgba(33, 46, 79, .06);
}

.agent-command__hero-copy {
  min-width: 0;
  max-width: 650px;
}

.agent-command__hero-visual{position:relative;align-self:stretch;flex:1 1 320px;min-width:270px;max-width:430px;min-height:188px;overflow:hidden;border-radius:14px;background:#eaf2ff}.agent-command__hero-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.08),transparent 42%,rgba(24,66,154,.12))}.agent-command__hero-visual img{width:100%;height:100%;object-fit:cover}.agent-command__hero-visual .agent-command__state-chip{position:absolute;z-index:1;right:13px;bottom:13px;box-shadow:0 8px 22px rgba(22,43,91,.16);backdrop-filter:blur(12px)}
.agent-command__hero-metrics{display:flex;gap:22px;margin-top:17px}.agent-command__hero-metrics span{display:grid;gap:1px}.agent-command__hero-metrics b{color:#20365e;font-size:21px}.agent-command__hero-metrics small{color:#8b96aa;font-size:10px}

.agent-command__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--agent-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.agent-command__hero h1 {
  margin: 0;
  color: var(--agent-ink);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.agent-command__hero p {
  margin: 10px 0 0;
  color: var(--agent-muted);
  font-size: 14px;
  line-height: 1.7;
  text-wrap: pretty;
}

.agent-command__principles {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.agent-command__principles span {
  padding: 5px 9px;
  border: 1px solid #e2e8f5;
  border-radius: 7px;
  background: #f8faff;
  color: #516079;
  font-size: 11px;
  font-weight: 600;
}

.agent-command__hero-actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.agent-command__learner-select {
  display: grid;
  gap: 6px;
}

.agent-command__learner-select > span {
  color: var(--agent-muted);
  font-size: 11px;
  font-weight: 600;
}

.agent-command__learner-select select {
  width: 235px;
  height: 42px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--agent-line);
  border-radius: 9px;
  background: #fff;
  color: #344054;
  font-size: 12px;
}

.agent-command__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 158px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--agent-blue);
  border-radius: 9px;
  background: var(--agent-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.agent-command__primary:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--agent-blue-dark);
  box-shadow: 0 8px 18px rgba(49, 88, 231, .2);
}

.agent-command__primary:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.agent-command__spin { animation: agent-command-spin .85s linear infinite; }

@keyframes agent-command-spin { to { transform: rotate(360deg); } }

.agent-command__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--agent-line);
  border-radius: 14px;
  background: #fff;
  list-style: none;
  overflow: hidden;
}

.agent-command__rail li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 12px 20px;
  border-right: 1px solid #edf0f5;
}

.agent-command__rail li:last-child { border-right: 0; }

.agent-command__rail li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 8px;
  background: var(--agent-blue-soft);
  color: var(--agent-blue);
  font-size: 10px;
  font-weight: 800;
}

.agent-command__rail strong,
.agent-command__rail small {
  display: block;
  line-height: 1.35;
}

.agent-command__rail strong { color: #344054; font-size: 12px; }
.agent-command__rail small { margin-top: 3px; color: #98a2b3; font-size: 10px; }

.agent-command__rail li > i {
  position: absolute;
  right: -10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #a4afc0;
  font-size: 16px;
}

.agent-command__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.agent-command__summary-card {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  padding: 13px 15px;
  border: 1px solid var(--agent-line);
  border-radius: 12px;
  background: #fff;
  color: var(--agent-ink);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.agent-command__summary-card:not(.agent-command__summary-card--metric):hover {
  transform: translateY(-1px);
  border-color: #b8c7f9;
  box-shadow: 0 7px 18px rgba(33, 46, 79, .06);
}

.agent-command__summary-card--metric {
  cursor: default;
  background: #fafbfe;
}

.agent-command__summary-card > i:first-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  background: var(--agent-blue-soft);
  color: var(--agent-blue);
  font-size: 17px;
}

.agent-command__summary-card > i:last-child { margin-left: auto; color: #a7b0bf; }
.agent-command__summary-card span { min-width: 0; }
.agent-command__summary-card small,
.agent-command__summary-card strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.agent-command__summary-card small { color: #98a2b3; font-size: 10px; }
.agent-command__summary-card strong { margin-top: 4px; color: #344054; font-size: 12px; }

.agent-command__workspace {
  padding: 20px;
  border: 1px solid var(--agent-line);
  border-radius: 18px;
  background: var(--agent-canvas);
}

.agent-command__orchestration {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) 28px minmax(180px, .8fr) 28px minmax(210px, 1fr) 28px minmax(210px, 1fr);
  align-items: stretch;
  gap: 8px;
}

.agent-command__agent-card,
.agent-command__decision-hub {
  position: relative;
  min-height: 278px;
  border-radius: 15px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.agent-command__agent-card:hover,
.agent-command__decision-hub:hover,
.agent-command__agent-card.is-active,
.agent-command__decision-hub.is-active {
  transform: translateY(-2px);
}

.agent-command__agent-card:focus-visible,
.agent-command__decision-hub:focus-visible {
  outline: 3px solid rgba(49, 88, 231, .28);
  outline-offset: 3px;
}

.agent-command__agent-card--core {
  border: 1px solid #9db2f7;
  background: #fff;
  box-shadow: 0 8px 22px rgba(47, 68, 130, .07);
}

.agent-command__agent-card--core::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 15px 15px 0 0;
  background: var(--agent-blue);
}

.agent-command__agent-card--core.is-active {
  border-color: var(--agent-blue);
  box-shadow: 0 13px 27px rgba(49, 88, 231, .16);
}

.agent-command__card-content { padding: 19px 18px 16px; }

.agent-command__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.agent-command__card-order {
  color: var(--agent-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.agent-command__agent-card h2,
.agent-command__decision-hub h2 {
  margin: 14px 0 0;
  color: var(--agent-ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.agent-command__agent-card p,
.agent-command__decision-hub p {
  margin: 7px 0 0;
  color: var(--agent-muted);
  font-size: 11px;
  line-height: 1.65;
  text-wrap: pretty;
}

.agent-command__capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 15px;
}

.agent-command__capabilities span {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 8px;
  border: 1px solid #e2e7f1;
  border-radius: 8px;
  background: #f9faff;
  color: #475467;
  font-size: 10px;
  font-weight: 600;
}

.agent-command__agent-card .agent-command__card-content > small {
  display: block;
  margin-top: 13px;
  color: #8b96a8;
  font-size: 10px;
}

.agent-command__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid #dfe4ec;
  border-radius: 999px;
  background: #f7f8fa;
  color: #667085;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.agent-command__status--success { border-color: #b6e4d2; background: var(--agent-green-soft); color: var(--agent-green); }
.agent-command__status--warning { border-color: #f2d09e; background: var(--agent-amber-soft); color: var(--agent-amber); }
.agent-command__status--danger { border-color: #f3c1c8; background: #fff0f2; color: var(--agent-red); }
.agent-command__status--running { border-color: #b8c7f9; background: var(--agent-blue-soft); color: var(--agent-blue); }

.agent-command__decision-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border: 1px solid #edc18a;
  background: var(--agent-amber-soft);
  text-align: center;
}

.agent-command__decision-hub .agent-command__card-top { width: 100%; }

.agent-command__decision-hub.is-active {
  border-color: var(--agent-amber);
  box-shadow: 0 13px 27px rgba(201, 108, 20, .14);
}

.agent-command__decision-hub > i {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-top: 13px;
  border-radius: 13px;
  background: #ffe3bd;
  color: var(--agent-amber);
  font-size: 23px;
}

.agent-command__decision-hub h2 { font-size: 16px; }
.agent-command__decision-hub > small { margin-top: 12px; color: #a56c34; font-size: 9px; }

.agent-command__hub-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 13px;
}

.agent-command__hub-actions span {
  padding: 4px 7px;
  border: 1px solid #f2d09e;
  border-radius: 6px;
  background: rgba(255,255,255,.72);
  color: #9a5e24;
  font-size: 9px;
  font-weight: 700;
}

.agent-command__flow-arrow {
  align-self: center;
  color: #94a3b8;
  font-size: 27px;
  text-align: center;
}

.agent-command__review-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 16px 15px;
}

.agent-command__review-result span {
  padding: 6px;
  border-radius: 7px;
  background: var(--agent-green-soft);
  color: var(--agent-green);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.agent-command__review-result span:last-child { background: #fff0f2; color: var(--agent-red); }

.agent-command__inspector {
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid #dce2ec;
  border-radius: 14px;
  background: #fff;
}

.agent-command__inspector-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.agent-command__inspector-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--agent-blue-soft);
  color: var(--agent-blue);
  font-size: 11px;
  font-weight: 800;
}

.agent-command__inspector-title div { min-width: 0; }
.agent-command__inspector-title small { color: #98a2b3; font-size: 9px; }
.agent-command__inspector-title h2 { margin: 2px 0 0; color: #273144; font-size: 16px; }
.agent-command__inspector-title > .agent-command__status { margin-left: auto; }

.agent-command__inspector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.agent-command__inspector-grid > div {
  padding: 13px 14px;
  border: 1px solid #e6eaf1;
  border-radius: 10px;
  background: #fafbfc;
}

.agent-command__inspector-grid small,
.agent-command__inspector-grid strong { display: block; }
.agent-command__inspector-grid small { color: var(--agent-blue); font-size: 9px; font-weight: 800; }
.agent-command__inspector-grid strong { margin-top: 5px; color: #344054; font-size: 11px; line-height: 1.55; }
.agent-command__inspector-grid p { margin: 5px 0 0; color: #8b95a5; font-size: 10px; line-height: 1.55; }

.agent-command__inspector-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 13px;
}

.agent-command__inspector-actions button {
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid var(--agent-blue);
  border-radius: 8px;
  background: var(--agent-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.agent-command__inspector-actions button.is-secondary {
  border-color: var(--agent-line);
  background: #fff;
  color: #536075;
}

.agent-command__delivery {
  padding: 20px;
  border: 1px solid var(--agent-line);
  border-radius: 16px;
  background: #fff;
}

.agent-command__delivery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.agent-command__delivery-heading span { color: var(--agent-green); font-size: 10px; font-weight: 800; }
.agent-command__delivery-heading h2 { margin: 3px 0 0; color: var(--agent-ink); font-size: 17px; }
.agent-command__delivery-heading p { margin: 0; color: #8b95a5; font-size: 10px; }

.agent-command__delivery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.agent-command__delivery-grid button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 76px;
  padding: 11px;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  background: #fafbfc;
  color: #344054;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.agent-command__delivery-grid button:hover {
  transform: translateY(-1px);
  border-color: #b9c7f6;
  background: #f7f9ff;
}

.agent-command__delivery-grid button > i:first-child {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border-radius: 8px;
  background: var(--agent-blue-soft);
  color: var(--agent-blue);
  font-size: 15px;
}

.agent-command__delivery-grid button > i:last-child { margin-left: auto; color: #b0b8c5; }
.agent-command__delivery-grid span { min-width: 0; }
.agent-command__delivery-grid strong,
.agent-command__delivery-grid small { display: block; }
.agent-command__delivery-grid strong { font-size: 11px; }
.agent-command__delivery-grid small { margin-top: 4px; color: #8b95a5; font-size: 9px; line-height: 1.45; text-wrap: pretty; }

.agent-command__feedback-loop {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 11px;
  padding: 12px 14px;
  border: 1px solid #b8dfcf;
  border-radius: 10px;
  background: var(--agent-green-soft);
  color: #1d654c;
}

.agent-command__feedback-loop > i { font-size: 19px; }
.agent-command__feedback-loop span { min-width: 0; }
.agent-command__feedback-loop strong,
.agent-command__feedback-loop small { display: block; }
.agent-command__feedback-loop strong { font-size: 11px; }
.agent-command__feedback-loop small { margin-top: 3px; color: #548371; font-size: 9px; }
.agent-command__feedback-loop button {
  margin-left: auto;
  padding: 6px 10px;
  border: 1px solid #8dcbb4;
  border-radius: 7px;
  background: #fff;
  color: var(--agent-green);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.agent-command__view-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px;
  border: 1px solid var(--agent-line);
  border-radius: 12px;
  background: #fff;
}

.agent-command__view-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 35px;
  padding: 7px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #697586;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}

.agent-command__view-tabs button:hover { background: #f5f7fb; color: #344054; }
.agent-command__view-tabs button.is-active { background: var(--agent-blue-soft); color: var(--agent-blue); }

@media (max-width: 1180px) {
  .agent-command__hero { align-items: flex-start; }
  .agent-command__hero-actions { flex-direction: column; align-items: stretch; }
  .agent-command__learner-select select { width: 260px; }
  .agent-command__summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .agent-command__orchestration { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .agent-command__flow-arrow { display: none; }
  .agent-command__agent-card,
  .agent-command__decision-hub { min-height: 255px; }
  .agent-command__delivery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .agent-command__rail { overflow-x: auto; grid-template-columns: repeat(5, minmax(170px, 1fr)); }
}

@media (max-width: 760px) {
  .agent-command { gap: 12px; }
  .agent-command__hero { flex-direction: column; padding: 21px 18px; border-radius: 14px; }
  .agent-command__hero-actions,
  .agent-command__learner-select,
  .agent-command__learner-select select,
  .agent-command__primary { width: 100%; }
  .agent-command__summary { grid-template-columns: 1fr; }
  .agent-command__workspace,
  .agent-command__delivery { padding: 13px; }
  .agent-command__orchestration { grid-template-columns: 1fr; }
  .agent-command__agent-card,
  .agent-command__decision-hub { min-height: auto; }
  .agent-command__inspector-grid { grid-template-columns: 1fr; }
  .agent-command__inspector-title { align-items: flex-start; flex-wrap: wrap; }
  .agent-command__inspector-title > .agent-command__status { margin-left: 0; }
  .agent-command__inspector-actions { justify-content: stretch; flex-direction: column; }
  .agent-command__delivery-heading { align-items: flex-start; flex-direction: column; }
  .agent-command__delivery-grid { grid-template-columns: 1fr; }
  .agent-command__feedback-loop { align-items: flex-start; flex-wrap: wrap; }
  .agent-command__feedback-loop button { margin-left: 30px; }
  .agent-command__view-tabs { overflow-x: auto; }
  .agent-command__view-tabs button { flex: 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .agent-command *,
  .agent-command *::before,
  .agent-command *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* ===== 企业工作台优化（20260829：去冗余 + 字号放大 + Tab 胶囊化） ===== */

/* 顶部信息条（替代原 hero 大标题区） */
.agent-command__strip { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.agent-command__strip .agent-command__eyebrow { font-size: 12px; }
.agent-command__principles { display: flex; flex-wrap: wrap; gap: 8px; }
.agent-command__principles span { padding: 7px 15px; border-radius: 999px; background: #eef3fb; color: #3d5170; font-size: 12.5px; font-weight: 800; }
.agent-command__state-chip { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; padding: 9px 18px;
  border-radius: 999px; background: #f1f5f9; color: #44536f; font-size: 13px; font-weight: 800; border: 1px solid rgba(56,104,186,.12); }
.agent-command__state-chip.is-running { background: #e0eaff; color: #1d4ed8; border-color: transparent; }
.agent-command__spin { animation: agent-command-spin 1s linear infinite; }
@keyframes agent-command-spin { to { transform: rotate(360deg); } }

/* Agent 编排卡字号放大 */
.agent-command__card-top .agent-command__card-order { font-size: 13px; letter-spacing: .08em; }
.agent-command__card-top .agent-command__status { font-size: 12.5px; padding: 4px 13px; }
.agent-command__card-content h2 { font-size: 21px; }
.agent-command__card-content p { font-size: 14px; line-height: 1.7; }
.agent-command__capabilities { gap: 8px; }
.agent-command__capabilities span { font-size: 13px; padding: 6px 14px; }
.agent-command__card-content small { font-size: 12.5px; }
.agent-command__flow-arrow { font-size: 24px; }
.agent-command__decision-hub i[class^="bx"] { font-size: 42px; }
.agent-command__decision-hub h2 { font-size: 21px; }
.agent-command__decision-hub p { font-size: 14px; }
.agent-command__hub-actions { gap: 8px; }
.agent-command__hub-actions span { font-size: 13px; padding: 7px 16px; }
.agent-command__decision-hub small { font-size: 11.5px; line-height: 1.6; }
.agent-command__review-result span { font-size: 12.5px; padding: 7px 12px; }

/* Inspector 字号放大 */
.agent-command__inspector { padding: 24px 28px; }
.agent-command__inspector-title .agent-command__inspector-index { font-size: 16px; }
.agent-command__inspector-title small { font-size: 12px; }
.agent-command__inspector-title h2 { font-size: 23px; }
.agent-command__inspector-grid { gap: 16px; }
.agent-command__inspector-grid > div { padding: 15px 18px; }
.agent-command__inspector-grid small { font-size: 12px; }
.agent-command__inspector-grid strong { font-size: 15.5px; line-height: 1.5; }
.agent-command__inspector-grid p { font-size: 13.5px; line-height: 1.65; margin-top: 6px; }
.agent-command__inspector-actions { gap: 10px; margin-top: 16px; }
.agent-command__inspector-actions button { font-size: 13.5px; padding: 11px 20px; border-radius: 11px; }

/* 功能承接区紧凑化 */
.agent-command__delivery { gap: 14px; padding: 20px 24px; }
.agent-command__delivery-grid { gap: 10px; }
.agent-command__delivery-grid button { padding: 13px 16px; }
.agent-command__delivery-grid button > i:first-child { font-size: 20px; }
.agent-command__delivery-grid button strong { font-size: 14.5px; }
.agent-command__delivery-grid button small { font-size: 12px; }
.agent-command__feedback-loop { padding: 13px 18px; }
.agent-command__feedback-loop strong { font-size: 14px; }
.agent-command__feedback-loop small { font-size: 12.5px; }

/* 分区切换 Tab 胶囊化（原样式过小） */
.agent-command__view-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; padding: 0;
  border: none; background: transparent; }
.agent-command__view-tabs button { display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 24px; border-radius: 14px; border: 1px solid rgba(56,104,186,.16);
  background: #fff; color: #44536f; font-size: 14px; font-weight: 800; cursor: pointer;
  box-shadow: 0 6px 14px rgba(45,80,140,.05); transition: all .18s; }
.agent-command__view-tabs button i { font-size: 16px; }
.agent-command__view-tabs button:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(45,80,140,.10); }
.agent-command__view-tabs button.is-active { background: linear-gradient(135deg, #4f46e5, #4338ca);
  color: #fff; border-color: transparent; box-shadow: 0 12px 26px rgba(79,70,229,.3); }
.ent-agent-module-hero{display:flex;align-items:center;justify-content:space-between;gap:28px;margin-bottom:18px;padding:26px 30px;border:1px solid #dfe7f3;border-radius:18px;background:linear-gradient(120deg,#fff,#f3f7ff);box-shadow:0 16px 40px rgba(31,58,110,.07);animation:agent-module-enter .3s ease both}.ent-agent-module-hero>div>span{color:#3158e7;font-size:10px;font-weight:800;letter-spacing:.16em}.ent-agent-module-hero h2{margin:7px 0;color:#17233a;font-size:26px;letter-spacing:-.03em}.ent-agent-module-hero p{max-width:850px;margin:0;color:#68758b;font-size:12px;line-height:1.7}.ent-agent-module-hero>div>div{display:flex;gap:7px;flex-wrap:wrap;margin-top:15px}.ent-agent-module-hero em{padding:6px 9px;border:1px solid #dde6f5;border-radius:8px;background:#fff;color:#53647e;font-size:10px;font-style:normal}.ent-agent-module-hero aside{display:grid;min-width:130px;place-items:center;padding:18px;border-radius:15px;background:#eaf1ff;color:#3158e7}.ent-agent-module-hero aside i{font-size:27px}.ent-agent-module-hero aside b{margin-top:6px;font-size:27px}.ent-agent-module-hero aside small{color:#71809a;font-size:9px}.ent-agent-module-hero.is-diagnosis{background:linear-gradient(120deg,#fff,#effbff)}.ent-agent-module-hero.is-diagnosis aside{background:#e7f8fc;color:#1688a2}.ent-agent-module-hero.is-knowledge{background:linear-gradient(120deg,#fff,#f1fff9)}.ent-agent-module-hero.is-knowledge aside{background:#e8f9f1;color:#11835c}.ent-agent-module-hero.is-review{background:linear-gradient(120deg,#fff,#fff6f2)}.ent-agent-module-hero.is-review aside{background:#fff0ea;color:#c85831}.ent-agent-module-hero.is-evidence{background:linear-gradient(120deg,#fff,#f5f3ff)}.ent-agent-module-hero.is-evidence aside{background:#eeeaff;color:#6650c9}@keyframes agent-module-enter{from{opacity:0;transform:translateY(9px)}to{opacity:1;transform:none}}@media(max-width:760px){.ent-agent-module-hero{align-items:flex-start;padding:20px;flex-direction:column}.ent-agent-module-hero aside{display:none}}
