/* 智策解决方案官 Tab 页 */
.zhice-page {
  padding-bottom: 16px;
  background: linear-gradient(180deg, #e8eef5 0%, #f4f6f9 180px, #f4f6f9 100%);
}

/* ---------- Hero ---------- */
.zhice-hero {
  position: relative;
  margin: 0 12px 14px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #0c2347 0%, #1a3a6b 45%, #1e4d8c 100%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(12, 35, 71, 0.28);
}

.zhice-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.zhice-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
}

.zhice-hero__orb--a {
  width: 140px;
  height: 140px;
  top: -40px;
  right: -20px;
  background: #e60012;
}

.zhice-hero__orb--b {
  width: 100px;
  height: 100px;
  bottom: -30px;
  left: 20%;
  background: #3b82f6;
}

.zhice-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.zhice-hero__inner {
  position: relative;
  padding: 18px 16px 16px;
}

.zhice-hero__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.zhice-hero__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.zhice-hero__icon svg {
  width: 24px;
  height: 24px;
}

.zhice-hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(230, 0, 18, 0.85);
  margin-bottom: 6px;
}

.zhice-hero__title {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}

.zhice-hero__desc {
  font-size: 12px;
  line-height: 1.55;
  opacity: 0.88;
  margin: 0;
}

.zhice-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.zhice-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
}

/* ---------- Form card ---------- */
.zhice-form-card {
  margin: 0 12px 14px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.zhice-form-card__head {
  margin-bottom: 14px;
}

.zhice-form-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px;
}

.zhice-form-card__sub {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.zhice-field {
  display: block;
  margin-bottom: 14px;
}

.zhice-field__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.zhice-field__label em {
  color: #e60012;
  font-style: normal;
}

.zhice-field__ico {
  display: flex;
  width: 18px;
  height: 18px;
  color: #64748b;
}

.zhice-field__ico svg {
  width: 100%;
  height: 100%;
}

.zhice-input,
.zhice-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  font-family: inherit;
}

.zhice-input::placeholder,
.zhice-textarea::placeholder {
  color: #94a3b8;
}

.zhice-input:focus,
.zhice-textarea:focus {
  outline: none;
  background: #fff;
  border-color: #1e4d8c;
  box-shadow: 0 0 0 3px rgba(30, 77, 140, 0.12);
}

.zhice-textarea {
  min-height: 96px;
  resize: vertical;
}

.zhice-field__count {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
}

.zhice-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(135deg, #c40010 0%, #e60012 50%, #ff1a2e 100%);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.35);
  transition: transform 0.12s, box-shadow 0.12s, opacity 0.12s;
}

.zhice-submit:active:not(:disabled) {
  transform: scale(0.98);
  box-shadow: 0 3px 12px rgba(230, 0, 18, 0.3);
}

.zhice-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.zhice-submit__ico {
  display: flex;
  width: 18px;
  height: 18px;
}

.zhice-submit__ico svg {
  width: 100%;
  height: 100%;
}

.zhice-hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: #b45309;
  text-align: center;
}

/* ---------- Loading ---------- */
.zhice-loading {
  margin: 0 12px 14px;
}

.zhice-loading__card {
  padding: 24px 18px;
  text-align: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.zhice-loading__spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border: 3px solid #e8edf3;
  border-top-color: #e60012;
  border-radius: 50%;
  animation: zhice-spin 0.75s linear infinite;
}

@keyframes zhice-spin {
  to {
    transform: rotate(360deg);
  }
}

.zhice-loading__title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.zhice-loading__elapsed {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 14px;
}

.zhice-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.zhice-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: #94a3b8;
  transition: color 0.2s;
}

.zhice-step__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: background 0.2s, box-shadow 0.2s;
}

.zhice-step--active {
  color: #0f172a;
  font-weight: 600;
}

.zhice-step--active .zhice-step__dot {
  background: #e60012;
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.2);
}

.zhice-step--done {
  color: #16a34a;
}

.zhice-step--done .zhice-step__dot {
  background: #16a34a;
  box-shadow: none;
}

/* ---------- Empty / deliverables ---------- */
.zhice-empty {
  margin: 0 12px 14px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px dashed #cbd5e1;
}

.zhice-empty__lead {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  margin: 0 0 12px;
}

.zhice-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.zhice-deliverable {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
}

.zhice-deliverable__ico {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 6px;
}

.zhice-deliverable__title {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.zhice-deliverable__desc {
  font-size: 10px;
  line-height: 1.4;
  color: #94a3b8;
}

/* ---------- Result ---------- */
.zhice-result {
  margin: 0 12px 20px;
}

.zhice-result-head {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0c2347 0%, #1a3a6b 55%, #1e4d8c 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(12, 35, 71, 0.22);
  overflow: hidden;
}

.zhice-result-head::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(230, 0, 18, 0.25);
  filter: blur(24px);
  pointer-events: none;
}

.zhice-result-head__badge {
  grid-row: 1 / span 2;
  align-self: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.45);
  color: #4ade80;
  font-size: 18px;
  font-weight: 800;
}

.zhice-result-head__main {
  min-width: 0;
}

.zhice-result-head__title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 4px;
  letter-spacing: 0.04em;
}

.zhice-result-head__customer {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  word-break: break-all;
}

.zhice-result-head__purpose {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin: 6px 0 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zhice-result-head__purpose.hidden {
  display: none;
}

.zhice-result-head__time {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.zhice-source-badges {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.zhice-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
}

.zhice-source-badge--warn {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fde68a;
}

/* ---------- KPI 摘要条 ---------- */
.zhice-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.zhice-kpi-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.zhice-kpi-card--wide {
  grid-column: 1 / -1;
}

.zhice-kpi-card--grade.zhice-grade--a {
  background: linear-gradient(135deg, #ecfdf5, #fff);
  border-color: #86efac;
}

.zhice-kpi-card--grade.zhice-grade--b {
  background: linear-gradient(135deg, #eff6ff, #fff);
  border-color: #93c5fd;
}

.zhice-kpi-card--grade.zhice-grade--c {
  background: linear-gradient(135deg, #fffbeb, #fff);
  border-color: #fde68a;
}

.zhice-kpi-card--grade.zhice-grade--d {
  background: linear-gradient(135deg, #fef2f2, #fff);
  border-color: #fecaca;
}

.zhice-kpi-card__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.zhice-kpi-card__value {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.zhice-kpi-card__value small {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-left: 2px;
}

.zhice-kpi-grade {
  font-size: 28px;
  letter-spacing: 0.06em;
}

.zhice-kpi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.zhice-kpi-chip {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 999px;
  padding: 4px 10px;
}

.zhice-kpi-chip strong {
  color: #0f172a;
  font-weight: 800;
}

/* ---------- 分组 Tab ---------- */
.zhice-tabs-sticky {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-bottom: 10px;
  padding-bottom: 2px;
  background: linear-gradient(180deg, #f1f5f9 85%, transparent);
}

.zhice-tab-groups {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.zhice-tab-group__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 4px 2px;
}

.zhice-tab-group__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.zhice-tab-group__row::-webkit-scrollbar {
  display: none;
}

.zhice-result-tab {
  position: relative;
  flex: 0 0 auto;
  min-width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: none;
  background: #f8fafc;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.18s ease;
  min-height: 48px;
  border: 1px solid transparent;
}

.zhice-result-tab--filled::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px #fff;
}

.zhice-tab-ico {
  font-size: 16px;
  line-height: 1;
}

.zhice-result-tab.active {
  background: linear-gradient(145deg, #0c2347, #1e4d8c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(12, 35, 71, 0.25);
  border-color: transparent;
}

.zhice-result-tab.active.zhice-result-tab--filled::after {
  background: #4ade80;
  box-shadow: 0 0 0 2px #1e4d8c;
}

.zhice-result-tab--full {
  flex-direction: row;
  min-height: 40px;
  margin-left: auto;
  border-left: 1px dashed #e2e8f0;
  padding-left: 12px;
  background: #fff;
}

.zhice-result-tab--full.active {
  border-top-color: transparent;
}

.zhice-result-body {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.zhice-result-pane {
  display: none;
  padding: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #1e293b;
  max-height: min(72vh, 640px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.zhice-pane-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #fafbfc, #fff);
  position: sticky;
  top: 0;
  z-index: 2;
}

.zhice-pane-head__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #0c2347;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.zhice-pane-head__text {
  min-width: 0;
  flex: 1;
}

.zhice-pane-head__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.zhice-pane-head__desc {
  margin: 4px 0 0;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
}

.zhice-pane-inner {
  padding: 12px 14px 16px;
}

.zhice-full-meta {
  font-size: 11px;
  color: #94a3b8;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #eef2f6;
}

.zhice-result-pane.active {
  display: block;
}

.zhice-empty-pane {
  text-align: center;
  padding: 32px 16px;
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* ---------- 客户画像卡片 ---------- */
.zhice-profile-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zhice-profile-card {
  position: relative;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.zhice-profile-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #cbd5e1;
}

.zhice-profile-card--blue::before { background: #3b82f6; }
.zhice-profile-card--slate::before { background: #64748b; }
.zhice-profile-card--teal::before { background: #14b8a6; }
.zhice-profile-card--purple::before { background: #8b5cf6; }
.zhice-profile-card--indigo::before { background: #6366f1; }
.zhice-profile-card--amber::before { background: #f59e0b; }
.zhice-profile-card--cyan::before { background: #06b6d4; }
.zhice-profile-card--rose::before { background: #f43f5e; }
.zhice-profile-card--green::before { background: #22c55e; }
.zhice-profile-card--gold::before { background: #eab308; }

.zhice-profile-card--insight {
  border-color: #fde68a;
  background: linear-gradient(135deg, #fffbeb 0%, #fff 50%);
}

.zhice-profile-card--insight::before {
  background: linear-gradient(180deg, #f59e0b, #eab308);
}

.zhice-profile-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 0 16px;
}

.zhice-profile-card__ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 10px;
  background: #f8fafc;
}

.zhice-profile-card__dim {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.zhice-profile-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 8px 14px 12px 16px;
  border-top: 1px solid #f1f5f9;
}

.zhice-src-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 11px;
  line-height: 1.3;
}

.zhice-src-badge.zhice-src-tag--tyc {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.zhice-src-badge.zhice-src-tag--qlm {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.zhice-src-badge.zhice-src-tag--mix {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
}

.zhice-src-badge__name {
  font-weight: 800;
  color: #0f172a;
}

.zhice-src-badge.zhice-src-tag--tyc .zhice-src-badge__name { color: #1d4ed8; }
.zhice-src-badge.zhice-src-tag--qlm .zhice-src-badge__name { color: #15803d; }
.zhice-src-badge.zhice-src-tag--mix .zhice-src-badge__name { color: #7c3aed; }

.zhice-src-badge__desc {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  padding-left: 6px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.zhice-src-badge__note {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}

.zhice-cell-src {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed #eef2f6;
}

.zhice-profile-card__body {
  padding: 8px 14px 12px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}

.zhice-profile-card__body strong {
  color: #0f172a;
}

/* ---------- 洞察条目 ---------- */
.zhice-insight-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  align-items: start;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
}

.zhice-insight-item:last-child {
  margin-bottom: 0;
}

.zhice-insight-item--ok {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.zhice-insight-item--warn {
  background: #fffbeb;
  border-color: #fde68a;
}

.zhice-insight-item--bad {
  background: #fef2f2;
  border-color: #fecaca;
}

.zhice-insight-item__label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  line-height: 1.4;
}

.zhice-insight-item__value {
  font-size: 13px;
  line-height: 1.55;
  color: #0f172a;
}

/* ---------- 调研提纲问题卡 ---------- */
.zhice-ol--cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zhice-q-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
}

.zhice-q-card__num,
.zhice-q-card__tag {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0c2347, #1e4d8c);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.zhice-q-card__inner {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #334155;
}

.zhice-q-card__inner strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #0c2347;
  margin-bottom: 4px;
}

.zhice-q-card__inner p {
  margin: 0;
}

.zhice-ul--cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zhice-li-card {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  font-size: 13px;
  line-height: 1.55;
}

.zhice-src-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.zhice-src-tag--tyc { background: #eff6ff; color: #1d4ed8; }
.zhice-src-tag--qlm { background: #f0fdf4; color: #15803d; }
.zhice-src-tag--mix { background: #faf5ff; color: #7c3aed; }

.zhice-cell-src { margin-top: 8px; }

.zhice-muted,
.zhice-p--compact {
  margin: 0 0 8px;
  font-size: 13px;
  color: #64748b;
}

.zhice-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.zhice-status-dot--danger { background: #ef4444; box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25); }
.zhice-status-dot--ok { background: #22c55e; box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25); }
.zhice-status-dot--warn { background: #f59e0b; box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.25); }

.zhice-status-dot--bad {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #dc2626;
  font-size: 13px;
  font-weight: 800;
}

.zhice-status-dot--bad::before { content: '×'; }

.zhice-h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 16px 0 10px;
  color: #0c2347;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f1f5f9;
}

.zhice-h3:first-child { margin-top: 0; }

.zhice-h3::before { display: none; }

.zhice-h4 {
  font-size: 13px;
  font-weight: 800;
  margin: 14px 0 8px;
  color: #1e3a5f;
  padding-left: 10px;
  border-left: 3px solid #e60012;
}

.zhice-h5 {
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0 4px;
  color: #475569;
}

.zhice-p { margin: 0 0 10px; font-size: 14px; line-height: 1.65; }

.zhice-ul { margin: 0 0 12px; padding-left: 18px; }
.zhice-ul li { margin-bottom: 6px; }
.zhice-ol { margin: 0 0 12px; padding-left: 20px; }
.zhice-ol li { margin-bottom: 6px; }

/* ---------- 痛点卡片 ---------- */
.zhice-pain-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zhice-pain-card {
  border-radius: 14px;
  border: 1px solid #eef2f6;
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.zhice-pain-card--high { border-left: 4px solid #ef4444; background: linear-gradient(90deg, #fef2f2, #fff 30%); }
.zhice-pain-card--mid { border-left: 4px solid #f59e0b; background: linear-gradient(90deg, #fffbeb, #fff 30%); }
.zhice-pain-card--low { border-left: 4px solid #22c55e; }

.zhice-pain-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.zhice-pain-card__id {
  font-size: 12px;
  font-weight: 800;
  color: #0c2347;
  background: #eff6ff;
  padding: 2px 8px;
  border-radius: 6px;
}

.zhice-pain-card__urg {
  font-size: 10px;
  font-weight: 800;
  color: #b45309;
  background: #fffbeb;
  padding: 2px 8px;
  border-radius: 999px;
}

.zhice-pain-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #1e293b;
}

.zhice-pain-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  font-size: 11px;
  color: #64748b;
}

/* ---------- 评分条 ---------- */
.zhice-score-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zhice-score-row {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
}

.zhice-score-row__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.zhice-score-row__dim {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.zhice-score-row__val {
  font-size: 16px;
  font-weight: 800;
  color: #0c2347;
}

.zhice-score-row__bar {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.zhice-score-row__bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1e4d8c, #3b82f6);
  transition: width 0.4s ease;
}

.zhice-score-row--good .zhice-score-row__bar span { background: linear-gradient(90deg, #15803d, #22c55e); }
.zhice-score-row--mid .zhice-score-row__bar span { background: linear-gradient(90deg, #b45309, #f59e0b); }
.zhice-score-row--low .zhice-score-row__bar span { background: linear-gradient(90deg, #b91c1c, #ef4444); }

.zhice-score-row__basis {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: #64748b;
}

/* ---------- 行动卡片 ---------- */
.zhice-action-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zhice-action-card {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eef2f6;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.zhice-action-card__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 7px;
  border: 2px solid #cbd5e1;
  background: #f8fafc;
}

.zhice-action-card__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
}

.zhice-action-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.zhice-action-card__tag {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
}

.zhice-action-card__out {
  margin: 8px 0 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

/* ---------- IT 系统卡片 ---------- */
.zhice-it-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zhice-it-card {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eef2f6;
  border-left: 4px solid #3b82f6;
}

.zhice-it-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.zhice-it-card__name {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  flex: 1;
}

.zhice-it-card__win {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
}

.zhice-it-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 6px;
}

.zhice-it-card__vendor {
  margin: 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
}

.zhice-table-wrap {
  overflow-x: auto;
  margin: 10px 0;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  background: #fafbfc;
}

.zhice-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 13px;
}

.zhice-table th,
.zhice-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f6;
  text-align: left;
  vertical-align: top;
}

.zhice-table th {
  background: #f1f5f9;
  font-weight: 800;
  color: #0f172a;
  font-size: 12px;
}

.zhice-table tr:last-child td { border-bottom: none; }
.zhice-table td { color: #334155; }

.zhice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
  padding: 0 2px 4px;
}

.zhice-actions .zhice-btn-outline:first-child {
  grid-column: 1 / -1;
}

.zhice-actions #zhiceDownload {
  background: linear-gradient(145deg, #0c2347, #1e4d8c);
  color: #fff;
  border-color: transparent;
  font-weight: 800;
}

.zhice-actions .zhice-btn-outline {
  padding: 11px 6px;
  font-size: 11px;
}

.zhice-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #0c2347;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  transition: background 0.12s, transform 0.1s;
}

.zhice-btn-outline:active {
  background: #f8fafc;
  transform: scale(0.98);
}

/* ---------- Tab bar icons ---------- */
.tab-btn .tab-ico--svg {
  width: 24px;
  height: 24px;
}

.tab-bar--six .tab-btn {
  font-size: 9px;
  padding: 3px 0 1px;
}

.tab-bar--six .tab-btn .tab-ico,
.tab-bar--six .tab-btn .tab-ico--svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 360px) {
  .zhice-insight-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .zhice-kpi-strip {
    grid-template-columns: 1fr 1fr;
  }

  .zhice-kpi-card--wide {
    grid-column: 1 / -1;
  }

  .zhice-tab-group__row {
    flex-wrap: nowrap;
  }

  .zhice-result-tab--full {
    margin-left: 0;
    border-left: none;
    padding-left: 10px;
  }

  .zhice-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 400px) {
  .tab-bar--six .tab-btn {
    font-size: 10px;
  }

  .zhice-hero__title {
    font-size: 21px;
  }

  .zhice-deliverable {
    padding: 14px 12px;
  }
}

/* ============================================================
   v14 · Report Reader (zr-*)
   ============================================================ */
.zhice-result {
  margin: 0 10px 24px;
}

.zr-card {
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(12, 35, 71, 0.1);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Hero */
.zr-hero {
  padding: 20px 18px 16px;
  background:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(230, 0, 18, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 60% at -10% 100%, rgba(59, 130, 246, 0.15), transparent 45%),
    linear-gradient(155deg, #071a38 0%, #0f2d5c 48%, #163d75 100%);
  color: #fff;
}

.zr-hero__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.zr-grade {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.zr-grade.zhice-grade--a {
  border-color: #4ade80;
  color: #bbf7d0;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.15);
}

.zr-grade.zhice-grade--b {
  border-color: #60a5fa;
  color: #bfdbfe;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.zr-grade.zhice-grade--c {
  border-color: #fbbf24;
  color: #fde68a;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.12);
}

.zr-grade.zhice-grade--d {
  border-color: #f87171;
  color: #fecaca;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.12);
}

.zr-hero__info {
  flex: 1;
  min-width: 0;
}

.zr-hero__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.zr-hero__name {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  word-break: break-all;
}

.zr-hero__time {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.zr-hero__purpose {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zr-hero__purpose.hidden {
  display: none;
}

.zr-hero__stats {
  display: grid;
  grid-template-columns: 72px 72px 1fr;
  gap: 8px;
  margin-top: 16px;
}

.zr-stat {
  padding: 10px 10px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zr-stat--wide {
  grid-column: auto;
}

.zr-stat__val {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.zr-stat__val--sm {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.zr-stat__lbl {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.zr-hero__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.zr-src {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.zr-src--warn {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.25);
  color: #fde68a;
}

/* Chapter nav */
.zr-nav {
  padding: 14px 14px 12px;
  background: #fafbfc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.zr-progress {
  height: 3px;
  border-radius: 999px;
  background: #e8edf3;
  margin-bottom: 12px;
  overflow: hidden;
}

.zr-progress::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--zr-progress, 10%);
  border-radius: 999px;
  background: linear-gradient(90deg, #e60012, #1e4d8c);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.zr-chapters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.zr-chapters::-webkit-scrollbar {
  display: none;
}

.zr-chapter {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 48px;
  padding: 8px 10px 7px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.zr-chapter__num {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.zr-chapter__label {
  font-size: 11px;
  font-weight: 700;
}

.zr-chapter.active {
  background: #0c2347;
  color: #fff;
  box-shadow: 0 4px 14px rgba(12, 35, 71, 0.28);
}

.zr-chapter--done::before {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
}

.zr-chapter.active.zr-chapter--done::before {
  background: #4ade80;
}

.zr-current {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zr-current__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #0c2347;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.zr-current__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.zr-current__text strong {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.zr-current__text span {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.35;
}

/* Body */
.zr-body {
  min-height: 280px;
  max-height: min(58vh, 520px);
  overflow: hidden;
  background: #fff;
}

.zr-body .zhice-result-pane {
  display: none;
  max-height: min(58vh, 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.zr-body .zhice-result-pane.active {
  display: block;
}

.zr-pane-content {
  padding: 16px 16px 20px;
}

.zr-pane-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 32px 24px;
  text-align: center;
}

.zr-pane-empty__ico {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f1f5f9, #e8edf3);
  position: relative;
}

.zr-pane-empty__ico::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 2px dashed #cbd5e1;
  border-radius: 6px;
}

.zr-pane-empty p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
}

.zr-pane-empty span {
  margin-top: 4px;
  font-size: 12px;
  color: #94a3b8;
}

/* Footer nav */
.zr-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  padding: 10px 12px 12px;
  background: #fafbfc;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.zr-footer__btn {
  border: none;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #0c2347;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: opacity 0.15s;
}

.zr-footer__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.zr-footer__btn--menu {
  padding: 11px 18px;
  background: #0c2347;
  color: #fff;
  box-shadow: 0 4px 12px rgba(12, 35, 71, 0.25);
}

/* Toolbar */
.zr-toolbar {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding: 0 2px;
}

.zr-tool {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.zr-tool--primary {
  flex: 1.4;
  background: linear-gradient(145deg, #0c2347, #1e4d8c);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(12, 35, 71, 0.28);
}

/* Bottom sheet */
.zr-sheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.zr-sheet.hidden {
  display: none;
}

.zr-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}

.zr-sheet__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 70vh;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 0 0 env(safe-area-inset-bottom, 12px);
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.15);
  animation: zr-slide-up 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zr-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.zr-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #f1f5f9;
}

.zr-sheet__head h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.zr-sheet__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 10px;
  background: #f1f5f9;
  font-size: 20px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
}

.zr-sheet__list {
  overflow-y: auto;
  max-height: calc(70vh - 60px);
  padding: 8px 12px 16px;
}

.zr-sheet__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 6px;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s;
}

.zr-sheet__item.active {
  border-color: #1e4d8c;
  background: linear-gradient(135deg, #f0f6ff, #fff);
  box-shadow: 0 2px 8px rgba(30, 77, 140, 0.12);
}

.zr-sheet__item-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
}

.zr-sheet__item.active .zr-sheet__item-num {
  background: #0c2347;
  color: #fff;
}

.zr-sheet__item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.zr-sheet__item-text strong {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.zr-sheet__item-text small {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.35;
}

/* Content refinements */
.zr-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
}

.zr-dot--blue { background: #3b82f6; }
.zr-dot--slate { background: #64748b; }
.zr-dot--teal { background: #14b8a6; }
.zr-dot--purple { background: #8b5cf6; }
.zr-dot--indigo { background: #6366f1; }
.zr-dot--amber { background: #f59e0b; }
.zr-dot--cyan { background: #06b6d4; }
.zr-dot--rose { background: #f43f5e; }
.zr-dot--green { background: #22c55e; }
.zr-dot--gold { background: #eab308; }

.zhice-profile-card {
  border-radius: 16px;
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: none;
}

.zhice-profile-card__head {
  padding-top: 14px;
  gap: 10px;
}

.zhice-profile-card__dim {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #64748b;
}

.zhice-profile-card__body {
  font-size: 14px;
  padding-top: 4px;
}

.zhice-h3 {
  font-size: 13px;
  font-weight: 800;
  color: #0c2347;
  letter-spacing: 0.02em;
  padding: 12px 0 8px;
  margin: 8px 0 0;
  border-top: 1px solid #f1f5f9;
}

.zhice-h3:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.zhice-h4 {
  font-size: 12px;
  font-weight: 800;
  color: #475569;
  margin: 14px 0 8px;
}

.zhice-q-card {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fafbfc;
}

.zhice-q-card__num,
.zhice-q-card__tag {
  width: 26px;
  height: 26px;
  font-size: 10px;
  border-radius: 8px;
  background: #0c2347;
}

.zhice-pain-card,
.zhice-it-card,
.zhice-action-card {
  border-radius: 16px;
  border-color: rgba(15, 23, 42, 0.06);
}

.zhice-score-row {
  border-radius: 14px;
  background: #fafbfc;
  border-color: rgba(15, 23, 42, 0.05);
}

.zhice-table-wrap {
  border-radius: 14px;
  border-color: rgba(15, 23, 42, 0.06);
  background: #fafbfc;
}

.zhice-insight-item {
  border-radius: 12px;
  grid-template-columns: 96px 1fr;
}

@media (max-width: 360px) {
  .zr-hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .zr-stat--wide {
    grid-column: 1 / -1;
  }

  .zr-footer__btn {
    font-size: 12px;
    padding: 10px 8px;
  }
}

/* ============================================================
   v15 · Polish
   ============================================================ */
.zr-grade {
  position: relative;
  isolation: isolate;
  z-index: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  background:
    conic-gradient(from 210deg, rgba(96, 165, 250, 0.95) 0 var(--zr-score-pct, 55%), rgba(255, 255, 255, 0.14) var(--zr-score-pct, 55%) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.zr-grade::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(155deg, #0a1f42, #14325f);
  z-index: -1;
}

.zr-grade.zhice-grade--a {
  background: conic-gradient(from 210deg, rgba(74, 222, 128, 0.95) 0 var(--zr-score-pct, 55%), rgba(255, 255, 255, 0.14) var(--zr-score-pct, 55%) 100%);
}

.zr-grade.zhice-grade--c {
  background: conic-gradient(from 210deg, rgba(251, 191, 36, 0.95) 0 var(--zr-score-pct, 55%), rgba(255, 255, 255, 0.14) var(--zr-score-pct, 55%) 100%);
}

.zr-grade.zhice-grade--d {
  background: conic-gradient(from 210deg, rgba(248, 113, 113, 0.95) 0 var(--zr-score-pct, 55%), rgba(255, 255, 255, 0.14) var(--zr-score-pct, 55%) 100%);
}

.zr-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8;
  text-transform: uppercase;
}

.zr-divider::before,
.zr-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.zr-purpose-pill {
  display: inline-block;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.zr-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.zr-nav__menu {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #0c2347;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.zr-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 0 10px;
  flex-wrap: wrap;
}

.zr-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.zr-dot.active {
  width: 22px;
  background: linear-gradient(90deg, #e60012, #1e4d8c);
}

.zr-dot--done:not(.active) {
  background: #86efac;
}

.zr-quick {
  display: flex;
  gap: 6px;
  padding-top: 2px;
}

.zr-quick__btn {
  flex: 1;
  border: none;
  border-radius: 10px;
  padding: 8px 6px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

.zr-quick__btn:active {
  transform: scale(0.98);
}

.zr-footer {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.zr-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.zr-footer__hint {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.zr-body .zhice-result-pane.zr-pane--enter .zr-pane-content,
.zr-body .zhice-result-pane.zr-pane--enter .zr-pane-empty,
.zr-body .zhice-result-pane.zr-pane--enter .zr-dash {
  animation: zr-fade-up 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zr-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dashboard blocks */
.zr-dash {
  margin-bottom: 16px;
}

.zr-dash__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.zr-dash__stat {
  text-align: center;
  padding: 12px 6px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.zr-dash__stat b {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #0c2347;
  line-height: 1.1;
}

.zr-dash__stat span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.zr-dash__block {
  margin-bottom: 12px;
}

.zr-dash__title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.zr-signal-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zr-signal {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fafbfc;
}

.zr-signal--ok {
  background: linear-gradient(135deg, #f0fdf4, #fff);
  border-color: #bbf7d0;
}

.zr-signal--warn {
  background: linear-gradient(135deg, #fffbeb, #fff);
  border-color: #fde68a;
}

.zr-signal--bad {
  background: linear-gradient(135deg, #fef2f2, #fff);
  border-color: #fecaca;
}

.zr-signal__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.zr-signal__val {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.zr-signal__hint {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}

/* Eval hero */
.zr-eval-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 14px;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #fff);
  border: 1px solid #bfdbfe;
}

.zr-eval-hero.zhice-grade--a {
  background: linear-gradient(135deg, #ecfdf5, #fff);
  border-color: #86efac;
}

.zr-eval-hero.zhice-grade--c {
  background: linear-gradient(135deg, #fffbeb, #fff);
  border-color: #fde68a;
}

.zr-eval-hero.zhice-grade--d {
  background: linear-gradient(135deg, #fef2f2, #fff);
  border-color: #fecaca;
}

.zr-eval-hero__grade {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0c2347;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.zr-eval-hero__meta strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.zr-eval-hero__meta span {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.zr-mini-scores {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zr-mini-score {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  align-items: center;
  gap: 8px;
}

.zr-mini-score__dim {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.zr-mini-score__bar {
  height: 5px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.zr-mini-score__bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1e4d8c, #3b82f6);
}

.zr-mini-score__val {
  font-size: 12px;
  font-weight: 800;
  color: #0c2347;
  text-align: right;
}

/* Products */
.zr-products {
  margin-bottom: 16px;
}

.zr-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.zr-product {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fafbfc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.zr-product__star {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  color: #e60012;
}

.zr-product__name {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

/* IT preview */
.zr-it-preview {
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.zr-it-preview__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zr-it-preview__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #eef2f6;
}

.zr-it-preview__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.zr-it-preview__name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.zr-it-preview__meta {
  font-size: 11px;
  color: #94a3b8;
}

.zr-sheet__item--done .zr-sheet__item-num::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 4px;
  border-radius: 50%;
  background: #22c55e;
  vertical-align: middle;
}

.zhice-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 380px) {
  .zhice-profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zhice-profile-card--insight {
    grid-column: 1 / -1;
  }
}

@media (max-width: 360px) {
  .zr-dash__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .zr-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   v16 · Dashboard / Timeline / Prose / Toast
   ============================================================ */
.zr-dash--hero {
  margin-bottom: 4px;
}

.zr-dash-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #fff);
  border: 1px solid #bfdbfe;
}

.zr-dash-banner.zhice-grade--a {
  background: linear-gradient(135deg, #ecfdf5, #fff);
  border-color: #86efac;
}

.zr-dash-banner.zhice-grade--c {
  background: linear-gradient(135deg, #fffbeb, #fff);
  border-color: #fde68a;
}

.zr-dash-banner.zhice-grade--d {
  background: linear-gradient(135deg, #fef2f2, #fff);
  border-color: #fecaca;
}

.zr-dash-banner__grade {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #0c2347;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.zr-dash-banner__meta {
  flex: 1;
  min-width: 0;
}

.zr-dash-banner__meta strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.zr-dash-banner__meta span {
  display: block;
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.zr-dash-banner__tag {
  display: inline-block !important;
  margin-top: 6px !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  background: #0c2347 !important;
  color: #fff !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
}

.zr-jumps {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.zr-jump {
  flex: 1;
  min-width: 90px;
  border: none;
  border-radius: 12px;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 800;
  color: #0c2347;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.zr-jump:active {
  transform: scale(0.98);
}

/* Timeline */
.zr-timeline {
  margin-bottom: 16px;
}

.zr-timeline__track {
  position: relative;
  padding-left: 18px;
}

.zr-timeline__track::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #e60012, #1e4d8c);
  border-radius: 999px;
  opacity: 0.35;
}

.zr-tl {
  position: relative;
  margin-bottom: 12px;
}

.zr-tl:last-child {
  margin-bottom: 0;
}

.zr-tl__dot {
  position: absolute;
  left: -18px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e2e8f0;
}

.zr-tl--hot .zr-tl__dot {
  background: #ef4444;
  box-shadow: 0 0 0 2px #fecaca;
}

.zr-tl--warm .zr-tl__dot {
  background: #f59e0b;
  box-shadow: 0 0 0 2px #fde68a;
}

.zr-tl--cool .zr-tl__dot {
  background: #22c55e;
  box-shadow: 0 0 0 2px #bbf7d0;
}

.zr-tl__body {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fafbfc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.zr-tl--hot .zr-tl__body {
  background: linear-gradient(135deg, #fef2f2, #fff);
  border-color: #fecaca;
}

.zr-tl__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.zr-tl__head time {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.zr-tl__win {
  font-size: 10px;
  font-weight: 800;
}

.zr-tl__name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
}

.zr-tl__meta {
  margin: 0;
  font-size: 11px;
  color: #64748b;
  line-height: 1.45;
}

/* Prose reading */
.zr-prose {
  font-size: 14px;
  line-height: 1.72;
  color: #334155;
}

.zr-prose--full {
  font-size: 13px;
  line-height: 1.75;
}

.zr-prose .zhice-h3 {
  font-size: 14px;
  margin-top: 18px;
}

.zr-prose .zhice-p {
  margin-bottom: 12px;
}

/* Toast */
.zr-toast {
  position: fixed;
  left: 50%;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(12px);
  z-index: 2000;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(12, 35, 71, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(12, 35, 71, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.zr-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.zr-toast.hidden {
  display: block;
  opacity: 0;
}

/* ============================================================
   v18 · 简洁风格
   ============================================================ */
.zhice-page {
  background: #f5f6f8;
}

.zhice-hero--simple {
  margin: 0 12px 12px;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  box-shadow: none;
  border: 1px solid #e8edf3;
}

.zhice-hero--simple .zhice-hero__inner {
  padding: 14px 16px;
}

.zhice-hero--simple .zhice-hero__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
}

.zhice-hero--simple .zhice-hero__desc {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  opacity: 1;
}

.zhice-form-card {
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid #e8edf3;
}

.zhice-submit {
  border-radius: 10px;
  box-shadow: none;
}

.zhice-empty {
  border-style: solid;
  border-color: #e8edf3;
  background: #fff;
  padding: 14px 16px;
}

.zhice-empty__lead {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}

.zhice-result {
  margin: 0 10px 20px;
}

.zr-card {
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid #e8edf3;
}

.zr-hero {
  padding: 14px 16px 12px;
  background: #fff;
  color: #0f172a;
  border-bottom: 1px solid #f1f5f9;
}

.zr-hero__top {
  align-items: center;
  gap: 10px;
}

.zr-grade {
  width: 36px;
  height: 36px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc !important;
  color: #0f172a;
  box-shadow: none;
}

.zr-grade::after {
  display: none;
}

.zr-grade.zhice-grade--a { color: #15803d; border-color: #bbf7d0; background: #f0fdf4 !important; }
.zr-grade.zhice-grade--b { color: #1d4ed8; border-color: #bfdbfe; background: #eff6ff !important; }
.zr-grade.zhice-grade--c { color: #b45309; border-color: #fde68a; background: #fffbeb !important; }
.zr-grade.zhice-grade--d { color: #b91c1c; border-color: #fecaca; background: #fef2f2 !important; }

.zr-hero__name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.zr-hero__purpose {
  margin-top: 4px;
  font-size: 12px;
  color: #64748b;
}

.zr-hero__meta {
  margin: 8px 0 0;
  font-size: 11px;
  color: #94a3b8;
}

.zr-hero__sources {
  margin-top: 8px;
}

.zr-src {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #64748b;
  border: none;
}

.zr-src--warn {
  background: #fff7ed;
  color: #c2410c;
}

.zr-nav {
  padding: 10px 14px;
  background: #fff;
}

.zr-progress {
  height: 2px;
  margin-bottom: 10px;
  background: #f1f5f9;
}

.zr-progress::after {
  background: #0c2347;
}

.zr-current {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.zr-current strong {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.zr-current span {
  font-size: 11px;
  color: #94a3b8;
}

.zr-nav__menu {
  width: auto;
  height: auto;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

.zr-body {
  min-height: 240px;
  max-height: min(62vh, 560px);
}

.zr-pane-content {
  padding: 14px 16px 18px;
}

.zr-pane-empty {
  min-height: 160px;
  padding: 24px;
}

.zr-pane-empty p {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
}

.zr-footer {
  padding: 8px 12px 10px;
  background: #fff;
}

.zr-footer__btn {
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

.zr-toolbar {
  margin-top: 10px;
}

.zr-tool {
  border-radius: 8px;
  padding: 11px 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.zr-tool--primary {
  background: #0c2347;
  box-shadow: none;
}

.zr-divider {
  margin: 14px 0 10px;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: none;
  letter-spacing: 0;
}

.zr-divider::before,
.zr-divider::after {
  display: none;
}

/* Compact dashboards */
.zr-dash--compact {
  margin-bottom: 12px;
}

.zr-dash__stats {
  gap: 6px;
  margin-bottom: 10px;
}

.zr-dash__stat {
  padding: 8px 4px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.zr-dash__stat b {
  font-size: 15px;
}

.zr-dash__stat span {
  font-size: 10px;
  color: #94a3b8;
}

.zr-notice-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  color: #9a3412;
  font-size: 12px;
  line-height: 1.45;
}

.zr-notice-list li + li {
  margin-top: 4px;
}

.zr-signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #f1f5f9;
}

.zr-signal-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f8fafc;
  font-size: 12px;
  line-height: 1.4;
}

.zr-signal-line > span:first-child {
  flex-shrink: 0;
  color: #64748b;
}

.zr-signal-line > span:last-child {
  text-align: right;
  color: #0f172a;
  font-weight: 500;
}

.zr-mini-scores--block {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.zr-mini-score {
  margin-bottom: 6px;
}

.zr-mini-score:last-child {
  margin-bottom: 0;
}

.zr-it-list,
.zr-product-list,
.zr-tl-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}

.zr-it-list li,
.zr-product-list li,
.zr-tl-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.zr-it-list li strong,
.zr-tl-list__name {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.zr-it-list li span,
.zr-tl-list__meta {
  color: #94a3b8;
  font-size: 11px;
}

.zr-tl-list__date {
  display: inline-block;
  min-width: 72px;
  color: #64748b;
  font-size: 11px;
}

.zr-product-list__tag {
  display: inline-block;
  min-width: 28px;
  margin-right: 6px;
  font-size: 10px;
  color: #94a3b8;
}

.zr-prose {
  font-size: 13px;
  line-height: 1.7;
  color: #334155;
}

.zhice-profile-card,
.zhice-pain-card,
.zhice-it-card,
.zhice-action-card,
.zhice-q-card,
.zhice-score-row {
  border-radius: 8px;
  box-shadow: none;
}

.zhice-h3 {
  font-size: 13px;
  font-weight: 700;
  padding-top: 10px;
}

/* ============================================================
   v22 · 干净整洁（统一浅色、细边框、少装饰）
   ============================================================ */
.zhice-page {
  --zc-bg: #f4f5f7;
  --zc-surface: #ffffff;
  --zc-border: #e6e9ef;
  --zc-border-soft: #eef1f5;
  --zc-text: #111827;
  --zc-muted: #6b7280;
  --zc-subtle: #9ca3af;
  --zc-accent: #0f2744;
  --zc-radius: 10px;
  --zc-gap: 12px;
  background: var(--zc-bg);
  padding: 4px 0 24px;
  color: var(--zc-text);
}

.zhice-hero,
.zhice-hero--simple,
.zhice-hero--entry,
.zhice-hero--clean {
  margin: 0 12px var(--zc-gap);
  border-radius: var(--zc-radius);
  background: var(--zc-surface);
  color: var(--zc-text);
  border: 1px solid var(--zc-border);
  box-shadow: none;
  overflow: visible;
}

.zhice-hero__inner { padding: 14px 16px; }
.zhice-hero__eyebrow { display: none; }
.zhice-hero__title {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--zc-text);
}
.zhice-hero__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--zc-muted);
  opacity: 1;
}

.zhice-form-card,
.zhice-loading__card,
.zhice-empty,
.zr-card {
  border-radius: var(--zc-radius);
  background: var(--zc-surface);
  border: 1px solid var(--zc-border);
  box-shadow: none;
}

.zhice-form-card {
  margin: 0 12px var(--zc-gap);
  padding: 16px;
}

.zhice-form-card__head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--zc-border-soft);
}

.zhice-form-card__title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--zc-text);
}
.zhice-form-card__sub {
  margin: 0;
  font-size: 12px;
  color: var(--zc-subtle);
}

.zhice-field { margin-bottom: 14px; }
.zhice-field__label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}
.zhice-field__ico { display: none; }

.zhice-input,
.zhice-textarea {
  padding: 10px 12px;
  font-size: 14px;
  color: var(--zc-text);
  background: #fff;
  border: 1px solid var(--zc-border);
  border-radius: 8px;
  box-shadow: none;
}
.zhice-input:focus,
.zhice-textarea:focus {
  background: #fff;
  border-color: #94a3b8;
  box-shadow: 0 0 0 2px rgba(15, 39, 68, 0.06);
}

.zhice-submit {
  margin-top: 2px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 650;
  border-radius: 8px;
  background: var(--zc-accent);
  box-shadow: none;
}
.zhice-submit:active:not(:disabled) {
  transform: none;
  opacity: 0.92;
}
.zhice-submit__ico { display: none; }

.zhice-loading { margin: 0 12px var(--zc-gap); }
.zhice-loading__card {
  margin: 0;
  padding: 20px 16px;
  text-align: center;
}
.zhice-loading__spinner {
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  border: 2px solid var(--zc-border);
  border-top-color: var(--zc-accent);
  border-radius: 50%;
}
.zhice-loading__title {
  font-size: 13px;
  font-weight: 650;
  color: var(--zc-text);
}
.zhice-loading__elapsed {
  margin: 4px 0 12px;
  font-size: 12px;
  color: var(--zc-subtle);
}
.zhice-step {
  padding: 7px 0;
  font-size: 12px;
  color: var(--zc-subtle);
}
.zhice-step--active {
  color: var(--zc-text);
  font-weight: 600;
}
.zhice-step--active .zhice-step__dot {
  background: var(--zc-accent);
  box-shadow: none;
}
.zhice-step--done { color: #059669; }
.zhice-step--done .zhice-step__dot { background: #059669; }
.zhice-step__dot {
  width: 8px;
  height: 8px;
  background: #d1d5db;
}

.zhice-empty {
  margin: 0 12px var(--zc-gap);
  padding: 12px 14px;
  border-style: solid;
}
.zhice-empty__chapters { display: none; }
.zhice-empty__lead {
  margin: 0;
  text-align: left;
  font-size: 12px;
  line-height: 1.55;
  color: var(--zc-muted);
  font-weight: 500;
}

.zhice-result { margin: 0 0 20px; }
.zr-card {
  margin: 0 12px;
  overflow: hidden;
}

.zr-hero {
  padding: 14px 14px 12px;
  background: #fff;
  color: var(--zc-text);
  border-bottom: 1px solid var(--zc-border-soft);
}
.zr-hero__top {
  align-items: flex-start;
  gap: 10px;
}
.zr-hero__eyebrow { display: none; }
.zr-hero__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--zc-text);
  word-break: break-all;
}
.zr-hero__time {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--zc-subtle);
}
.zr-hero__purpose {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--zc-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zr-purpose-pill {
  all: unset;
  display: inline;
  font-size: inherit;
  color: inherit;
}

.zr-grade {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  border: 1px solid var(--zc-border);
  background: #f8fafc !important;
  color: var(--zc-text) !important;
  box-shadow: none;
  isolation: auto;
}
.zr-grade::after { display: none !important; }
.zr-grade.zhice-grade--a {
  color: #047857 !important;
  border-color: #a7f3d0;
  background: #ecfdf5 !important;
}
.zr-grade.zhice-grade--b {
  color: #1d4ed8 !important;
  border-color: #bfdbfe;
  background: #eff6ff !important;
}
.zr-grade.zhice-grade--c {
  color: #b45309 !important;
  border-color: #fde68a;
  background: #fffbeb !important;
}
.zr-grade.zhice-grade--d {
  color: #b91c1c !important;
  border-color: #fecaca;
  background: #fef2f2 !important;
}

.zr-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.zr-kpi__item {
  padding: 8px 6px;
  border-radius: 8px;
  text-align: center;
  background: #f8fafc;
  border: 1px solid var(--zc-border-soft);
}
.zr-kpi__item b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--zc-text);
}
.zr-kpi__item span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--zc-subtle);
}

.zr-hero__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.zr-src {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f3f4f6;
  color: var(--zc-muted);
  border: none;
}
.zr-src--warn {
  background: #fff7ed;
  color: #c2410c;
}

.zr-nav {
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid var(--zc-border-soft);
}
.zr-progress {
  height: 2px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--zc-border-soft);
  overflow: hidden;
}
.zr-progress::after { background: var(--zc-accent); }
.zr-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0;
}
.zr-current {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.zr-current strong,
.zr-current__text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--zc-text);
}
.zr-current span,
.zr-current__text span {
  font-size: 11px;
  color: var(--zc-subtle);
}
.zr-nav__menu {
  width: auto;
  height: auto;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid var(--zc-border);
  box-shadow: none;
}

.zr-body {
  min-height: 240px;
  max-height: min(62vh, 560px);
  background: #fff;
}
.zr-body .zhice-result-pane { max-height: min(62vh, 560px); }
.zr-pane-content { padding: 14px 14px 18px; }
.zr-pane-empty {
  min-height: 160px;
  padding: 28px 16px;
}
.zr-pane-empty__ico { display: none; }
.zr-pane-empty p {
  font-size: 13px;
  font-weight: 500;
  color: var(--zc-subtle);
}
.zr-pane-empty span { display: none; }

.zr-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px 12px 10px;
  background: #fff;
  border-top: 1px solid var(--zc-border-soft);
}
.zr-footer__btn {
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid var(--zc-border);
  box-shadow: none;
}
.zr-footer__btn:disabled { opacity: 0.4; }
.zr-footer__hint {
  font-size: 11px;
  font-weight: 600;
  color: var(--zc-subtle);
  letter-spacing: 0;
}

.zr-toolbar {
  display: flex;
  gap: 8px;
  margin: 10px 12px 0;
  padding: 0;
}
.zr-tool {
  flex: 1;
  border-radius: 8px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid var(--zc-border);
  box-shadow: none;
}
.zr-tool--primary {
  flex: 1.2;
  background: var(--zc-accent);
  border-color: var(--zc-accent);
  color: #fff;
  box-shadow: none;
}

.zr-dash,
.zr-dash--compact,
.zr-dash--hero { margin-bottom: 12px; }

.zr-dash__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.zr-dash__stat {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid var(--zc-border-soft);
  box-shadow: none;
}
.zr-dash__stat b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--zc-text);
  line-height: 1.15;
}
.zr-dash__stat span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--zc-subtle);
}
.zr-dash__title {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  color: var(--zc-subtle);
}

.zr-notice-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 12px;
  line-height: 1.45;
}

.zr-signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--zc-border-soft);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.zr-signal-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  margin: 0;
  border-bottom: 1px solid var(--zc-border-soft);
  font-size: 12px;
  line-height: 1.4;
  background: transparent;
}
.zr-signal-line:last-child { border-bottom: none; }
.zr-signal-line > span:first-child {
  color: var(--zc-muted);
  font-weight: 500;
}
.zr-signal-line > span:last-child {
  text-align: right;
  color: var(--zc-text);
  font-weight: 600;
}
.zr-signal-line--ok > span:last-child { color: #047857; }
.zr-signal-line--warn > span:last-child { color: #b45309; }
.zr-signal-line--bad > span:last-child { color: #b91c1c; }

.zr-mini-scores--block {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid var(--zc-border-soft);
}
.zr-mini-score {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.zr-mini-score:last-child { margin-bottom: 0; }
.zr-mini-score__bar {
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
}
.zr-mini-score__bar i { background: var(--zc-accent); }

.zr-it-list,
.zr-product-list,
.zr-tl-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  border: 1px solid var(--zc-border-soft);
  border-radius: 8px;
  overflow: hidden;
}
.zr-it-list li,
.zr-product-list li,
.zr-tl-list li {
  padding: 9px 10px;
  border-bottom: 1px solid var(--zc-border-soft);
  font-size: 12px;
  line-height: 1.45;
  background: #fff;
}
.zr-it-list li:last-child,
.zr-product-list li:last-child,
.zr-tl-list li:last-child { border-bottom: none; }

.zr-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--zc-subtle);
}
.zr-divider::before,
.zr-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--zc-border-soft);
}

.zhice-profile-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zhice-profile-card,
.zhice-pain-card,
.zhice-it-card,
.zhice-action-card,
.zhice-q-card,
.zhice-score-row,
.zhice-insight-item,
.zhice-li-card {
  border-radius: 8px;
  border: 1px solid var(--zc-border-soft);
  background: #fff;
  box-shadow: none;
}
.zhice-profile-card { position: relative; overflow: hidden; }
.zhice-profile-card::before {
  width: 3px;
  background: #cbd5e1;
}
.zhice-profile-card__head { padding: 10px 12px 0 14px; }
.zhice-profile-card__ico { display: none; }
.zhice-profile-card__dim {
  font-size: 11px;
  font-weight: 650;
  color: var(--zc-subtle);
  letter-spacing: 0;
  text-transform: none;
}
.zhice-profile-card__body {
  padding: 6px 12px 10px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #374151;
}
.zhice-profile-card__foot {
  padding: 8px 12px 10px 14px;
  border-top: 1px solid var(--zc-border-soft);
}
.zhice-profile-card--insight {
  background: #fffbeb;
  border-color: #fde68a;
}
.zhice-src-badge {
  background: #f3f4f6;
  border: none;
  border-radius: 4px;
  padding: 2px 8px;
}

.zhice-pain-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zhice-pain-card {
  position: relative;
  padding: 12px 12px 10px 14px;
  overflow: hidden;
}
.zhice-pain-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #d1d5db;
}
.zhice-pain-card--high,
.zhice-pain-card--mid,
.zhice-pain-card--low { background: #fff; }
.zhice-pain-card--high { border-color: #fecaca; }
.zhice-pain-card--high::before { background: #ef4444; }
.zhice-pain-card--mid { border-color: #fde68a; }
.zhice-pain-card--mid::before { background: #f59e0b; }
.zhice-pain-card--low { border-color: #bbf7d0; }
.zhice-pain-card--low::before { background: #22c55e; }
.zhice-pain-card__head { margin-bottom: 6px; }
.zhice-pain-card__id {
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  background: #f3f4f6;
  padding: 2px 7px;
  border-radius: 4px;
}
.zhice-pain-card__urg {
  font-size: 10px;
  font-weight: 650;
  padding: 2px 7px;
  border-radius: 4px;
  background: #f3f4f6;
  color: var(--zc-muted);
}
.zhice-pain-card__urg--high { color: #b91c1c; background: #fef2f2; }
.zhice-pain-card__urg--mid { color: #b45309; background: #fffbeb; }
.zhice-pain-card__urg--low { color: #047857; background: #ecfdf5; }
.zhice-pain-card__desc {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  color: var(--zc-text);
}
.zhice-pain-card__meta {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--zc-border-soft);
  gap: 6px;
}
.zhice-pain-card__row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  font-size: 12px;
  line-height: 1.45;
}
.zhice-pain-card__k {
  font-weight: 650;
  color: var(--zc-subtle);
}
.zhice-pain-card__v { color: #4b5563; }

.zhice-it-card {
  padding: 10px 12px;
  border-left: 3px solid #94a3b8;
}
.zhice-it-card__name {
  font-size: 13px;
  font-weight: 650;
}
.zhice-action-card { padding: 10px 12px; }
.zhice-action-card__check {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 4px;
  border: 1.5px solid #d1d5db;
  background: #fff;
}
.zhice-q-card {
  padding: 10px 12px;
  background: #fafafa;
}
.zhice-q-card__num,
.zhice-q-card__tag {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: 10px;
  background: var(--zc-accent);
}
.zhice-score-row {
  padding: 10px 12px;
  background: #fafafa;
}
.zhice-score-row__bar span { background: var(--zc-accent); }

.zhice-h3 {
  margin: 14px 0 8px;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--zc-text);
  background: transparent;
  border-top: none;
  border-radius: 0;
}
.zhice-h3:first-child { margin-top: 0; }
.zhice-h4 {
  margin: 12px 0 6px;
  padding-left: 8px;
  border-left: 2px solid var(--zc-accent);
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}
.zr-prose {
  font-size: 13px;
  line-height: 1.65;
  color: #374151;
}
.zhice-table-wrap {
  border-radius: 8px;
  border: 1px solid var(--zc-border-soft);
  background: #fff;
}
.zhice-table th {
  background: #f8fafc;
  font-weight: 650;
}

.zr-timeline__track::before {
  background: #d1d5db;
  opacity: 1;
}
.zr-tl__body {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--zc-border-soft);
}
.zr-tl--hot .zr-tl__body,
.zr-tl--warm .zr-tl__body,
.zr-tl--cool .zr-tl__body { background: #fff; }
.zr-tl--hot .zr-tl__body { border-color: #fecaca; }
.zr-tl--warm .zr-tl__body { border-color: #fde68a; }
.zr-tl--cool .zr-tl__body { border-color: #bbf7d0; }

.zr-sheet__backdrop {
  background: rgba(17, 24, 39, 0.35);
  backdrop-filter: none;
}
.zr-sheet__panel {
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.1);
}
.zr-sheet__item {
  border-radius: 8px;
  border: 1px solid var(--zc-border-soft);
  box-shadow: none;
  margin-bottom: 6px;
}
.zr-sheet__item.active {
  border-color: #94a3b8;
  background: #f8fafc;
  box-shadow: none;
}
.zr-sheet__item.active .zr-sheet__item-num {
  background: var(--zc-accent);
  color: #fff;
}
.zr-toast {
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(17, 24, 39, 0.92);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}

.zhice-page .zhice-chip,
.zhice-page .zhice-hero__orb,
.zhice-page .zhice-hero__grid,
.zhice-page .zhice-hero__bg { display: none !important; }

@media (min-width: 380px) {
  .zhice-profile-grid {
    display: flex;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
  .zr-kpi,
  .zr-dash__stats { grid-template-columns: repeat(2, 1fr); }
  .zr-kpi__item:last-child { grid-column: auto; }
}

/* ============================================================
   v24 · 报告页更干净清爽（少边框、少脚注、轻指标）
   ============================================================ */
.zhice-page {
  --zc-bg: #f7f8fa;
  --zc-surface: #ffffff;
  --zc-border: #e8ebf0;
  --zc-border-soft: #f0f2f5;
  --zc-text: #1a1d24;
  --zc-muted: #5c6570;
  --zc-subtle: #8b939e;
  --zc-accent: #1a2b45;
  --zc-radius: 12px;
}

.zr-card {
  margin: 0 12px;
  border: none;
  border-radius: var(--zc-radius);
  box-shadow: 0 1px 2px rgba(26, 29, 36, 0.04), 0 8px 24px rgba(26, 29, 36, 0.04);
  overflow: hidden;
}

.zr-hero {
  padding: 16px 16px 14px;
  border-bottom: none;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.zr-hero__top { gap: 12px; }
.zr-hero__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--zc-text);
}
.zr-hero__time {
  margin-top: 3px;
  font-size: 11px;
  color: var(--zc-subtle);
}
.zr-hero__purpose {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--zc-muted);
}

.zr-grade {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 17px;
  border: none;
  background: #eef2f7 !important;
  color: var(--zc-accent) !important;
}
.zr-grade.zhice-grade--a { background: #e8f8f0 !important; color: #0f7a4f !important; }
.zr-grade.zhice-grade--b { background: #eaf1ff !important; color: #2b5bd7 !important; }
.zr-grade.zhice-grade--c { background: #fff6e5 !important; color: #b86a00 !important; }
.zr-grade.zhice-grade--d { background: #ffecec !important; color: #c43c3c !important; }

/* KPI：扁平分隔，不再各自成框 */
.zr-kpi {
  display: flex;
  gap: 0;
  margin-top: 14px;
  padding: 10px 0 2px;
  border-top: 1px solid var(--zc-border-soft);
  background: transparent;
}
.zr-kpi__item {
  flex: 1;
  padding: 4px 8px;
  border: none;
  border-radius: 0;
  background: transparent;
  position: relative;
}
.zr-kpi__item + .zr-kpi__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--zc-border-soft);
}
.zr-kpi__item b {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zc-text);
}
.zr-kpi__item span {
  margin-top: 4px;
  font-size: 11px;
  color: var(--zc-subtle);
}

.zr-hero__sources {
  margin-top: 12px;
  gap: 6px;
}
.zr-src {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 550;
  background: #f3f4f6;
  color: var(--zc-muted);
}

.zr-nav {
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--zc-border-soft);
  background: #fff;
}
.zr-progress {
  height: 2px;
  margin-bottom: 12px;
  background: #eef1f5;
}
.zr-progress::after {
  background: var(--zc-accent);
  border-radius: 999px;
}
.zr-current strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.zr-current span {
  font-size: 12px;
  color: var(--zc-subtle);
}
.zr-nav__menu {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--zc-border);
  background: #fff;
  color: var(--zc-muted);
  font-weight: 550;
}

.zr-body {
  background: #fafbfc;
}
.zr-pane-content {
  padding: 16px 16px 20px;
}
.zr-pane-content.zr-prose {
  font-size: 13.5px;
  line-height: 1.7;
  color: #3a424e;
}

/* 画像：定义列表，去掉彩条与重复脚注 */
.zhice-profile-legend {
  margin: 0 0 10px;
  padding: 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--zc-subtle);
  font-weight: 500;
}
.zhice-profile-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--zc-border-soft);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.zhice-profile-card,
.zhice-profile-card--blue,
.zhice-profile-card--slate,
.zhice-profile-card--teal,
.zhice-profile-card--purple,
.zhice-profile-card--indigo,
.zhice-profile-card--amber,
.zhice-profile-card--cyan,
.zhice-profile-card--rose,
.zhice-profile-card--green,
.zhice-profile-card--gold {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--zc-border-soft);
  background: #fff;
  box-shadow: none;
}
.zhice-profile-card:last-child { border-bottom: none; }
.zhice-profile-card::before { display: none !important; }
.zhice-profile-card .zr-dot { display: none !important; }

.zhice-profile-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px 0;
}
.zhice-profile-card__dim {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--zc-subtle);
}
.zhice-profile-card__body {
  padding: 4px 14px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--zc-text);
}
.zhice-profile-card__body .zhice-p,
.zhice-profile-card__body .zhice-p--compact {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.zhice-profile-card__foot { display: none !important; }

.zhice-profile-card--insight {
  background: #fffdf7;
}
.zhice-profile-card--insight .zhice-profile-card__dim {
  color: #a16207;
}

.zhice-src-badge--compact {
  flex-shrink: 0;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  background: #f3f4f6;
  color: var(--zc-subtle);
  border: none;
}
.zhice-src-badge--compact.zhice-src-tag--tyc {
  background: #eef6ff;
  color: #3b6ea5;
}
.zhice-src-badge--compact.zhice-src-tag--qlm {
  background: #f3f4f6;
  color: #5c6570;
}
.zhice-src-badge--compact.zhice-src-tag--mix {
  background: #f5f3ff;
  color: #6d5cae;
}
.zhice-src-badge__desc,
.zhice-src-badge__note { display: none; }

/* 概况统计也更轻 */
.zr-dash__stats {
  gap: 0;
  border: 1px solid var(--zc-border-soft);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
}
.zr-dash__stat {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 12px 6px;
  position: relative;
}
.zr-dash__stat + .zr-dash__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--zc-border-soft);
}
.zr-dash__stat b { font-size: 16px; }

/* v25 采购商摘要条 */
.zr-buyer {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid var(--zc-border-soft);
  border-radius: 10px;
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
}
.zr-buyer__label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 650;
  color: #64748b;
  letter-spacing: 0.02em;
}
.zr-buyer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
}
.zr-buyer__chips span {
  font-size: 11px;
  color: #64748b;
}
.zr-buyer__chips b {
  margin-right: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}
.zr-buyer__phone {
  font-variant-numeric: tabular-nums;
  color: #334155 !important;
}
.zr-buyer__top {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: #64748b;
}

/* v26 早段管线 / P0 废标 */
.zr-early {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid var(--zc-border-soft);
  border-radius: 10px;
  background: #fff;
}
.zr-early--p0 {
  border-color: #fecaca;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 100%);
}
.zr-early__label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 650;
  color: #64748b;
}
.zr-early__label span {
  margin-left: 6px;
  font-weight: 500;
  color: #94a3b8;
}
.zr-early__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.zr-early__list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: baseline;
  padding: 4px 0;
  font-size: 12px;
  color: #334155;
  border-top: 1px solid var(--zc-border-soft);
}
.zr-early__list li:first-child { border-top: none; }
.zr-early__list em {
  font-style: normal;
  font-size: 10px;
  font-weight: 650;
  color: #64748b;
}
.zr-early--p0 em { color: #b91c1c; }
.zr-early__list time {
  font-size: 10px;
  color: #94a3b8;
  white-space: nowrap;
}

.zr-signal-list {
  border: none;
  background: transparent;
}
.zr-signal-line {
  padding: 10px 0;
  border-bottom-color: var(--zc-border-soft);
  background: transparent;
}

.zr-footer {
  padding: 10px 14px 12px;
  background: #fff;
  border-top: 1px solid var(--zc-border-soft);
}
.zr-footer__btn {
  border-radius: 9px;
  border-color: var(--zc-border);
  font-weight: 550;
}
.zr-tool {
  border-radius: 9px;
  border-color: var(--zc-border);
}
.zr-tool--primary {
  background: var(--zc-accent);
  border-color: var(--zc-accent);
}

.zhice-h3 {
  margin: 18px 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--zc-subtle);
}
.zhice-h3:first-child { margin-top: 0; }

.zhice-pain-card,
.zhice-it-card,
.zhice-action-card,
.zhice-q-card {
  border-radius: 10px;
  border-color: var(--zc-border-soft);
  box-shadow: none;
}
.zhice-pain-card::before { width: 2px; }
.zhice-it-card { border-left-width: 2px; border-left-color: #c5ccd6; }

@media (max-width: 360px) {
  .zr-kpi { flex-wrap: wrap; }
  .zr-kpi__item { flex: 1 1 40%; }
  .zr-kpi__item + .zr-kpi__item::before { display: none; }
}
