/* ============ 标书智能自检 · 全新视觉重设计 ============ */

/* ── 折叠动画 ── */
.sc-collapsible {
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
  overflow: hidden;
}

.sc-collapsible.collapsed {
  max-height: 56px;
  padding-top: 14px;
  padding-bottom: 14px;
  opacity: 0.9;
}

.sc-collapsible.collapsed .sc-hero-badge,
.sc-collapsible.collapsed .sc-hero-desc,
.sc-collapsible.collapsed .sc-hero-stats,
.sc-collapsible.collapsed .sc-scope-grid,
.sc-collapsible.collapsed .sc-scope-title {
  display: none;
}

.sc-collapsible.collapsed h1 {
  font-size: 15px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-collapsible.collapsed .sc-scope-title-collapsed {
  display: flex !important;
}

.sc-scope-title-collapsed {
  display: none;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.sc-collapse-btn {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.18s ease;
  margin-left: auto;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.sc-collapse-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(47, 111, 159, 0.06);
}

/* ── 外壳 ── */
.sc-shell {
  min-height: 100vh;
  background: #f0f4f8;
  color: var(--color-text-primary, #18324a);
}

/* ── 顶部导航栏 ── */
.sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  min-height: 56px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(202, 216, 227, 0.6);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 8px rgba(24, 50, 74, 0.06);
}

.sc-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.sc-header-left > div {
  min-width: 0;
}

.sc-back-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border, #cad8e3);
  background: #fff;
  color: var(--color-text-secondary);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s ease;
  flex-shrink: 0;
}

.sc-back-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(47, 111, 159, 0.05);
  transform: translateX(-1px);
}

.sc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-subtitle {
  display: none;
}

/* ── 主内容区 ── */
.sc-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

/* ── Hero 区块 ── */
.sc-hero {
  background: linear-gradient(135deg, #0f2d45 0%, #1a4a70 50%, #2362a0 100%);
  border-radius: 20px;
  padding: 36px 40px 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 12px 40px -8px rgba(15, 45, 69, 0.35);
}

.sc-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sc-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,170,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sc-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.sc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  margin-bottom: 14px;
}

.sc-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.sc-hero-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin: 0;
}

.sc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sc-hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.sc-hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.sc-hero-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sc-hero-stat-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.sc-hero-stat-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1px;
}

/* ── 上传区 ── */
.sc-upload-section {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-bottom: 14px;
  align-items: start;
}

@media (min-width: 720px) {
  .sc-upload-section {
    grid-template-columns: 1fr 1fr;
  }
}

.sc-upload-card {
  background: #ffffff;
  border: 1.5px solid #e2eaf2;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(24, 50, 74, 0.05);
  min-width: 0;
  overflow: hidden;
}

.sc-upload-card:hover {
  box-shadow: 0 8px 28px -6px rgba(24, 50, 74, 0.12);
  border-color: rgba(47, 111, 159, 0.3);
  transform: translateY(-1px);
}

.sc-upload-card.has-file {
  border-color: rgba(45, 124, 106, 0.4);
  background: rgba(45, 124, 106, 0.02);
}

.sc-upload-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sc-upload-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(47, 111, 159, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-upload-card.has-file .sc-upload-icon {
  background: rgba(45, 124, 106, 0.12);
  color: var(--color-success);
}

.sc-upload-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.sc-upload-desc {
  font-size: 12px;
  color: var(--color-text-tertiary);
  margin-top: 2px;
  line-height: 1.4;
}

.sc-drop-zone {
  border: 2px dashed #c8d8e8;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.sc-drop-zone:hover {
  border-color: var(--color-primary);
  background: rgba(47, 111, 159, 0.04);
}

.sc-drop-zone:hover .dz-icon {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.sc-drop-zone.dragover {
  border-color: var(--color-primary);
  background: rgba(47, 111, 159, 0.06);
  box-shadow: 0 0 0 4px rgba(47, 111, 159, 0.08);
}

.sc-drop-zone .dz-icon {
  color: #b0c4d4;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
}

.sc-drop-zone .dz-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.sc-drop-zone .dz-hint {
  font-size: 12px;
  color: var(--color-text-tertiary);
}

/* 文件已选状态 */
.sc-file-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(45, 124, 106, 0.05);
  border: 1.5px solid rgba(45, 124, 106, 0.3);
  border-radius: 10px;
  font-size: 13px;
  min-width: 0;
}

.sc-file-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(45, 124, 106, 0.1);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-file-row-name {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-file-row-chars {
  color: var(--color-text-secondary);
  flex-shrink: 0;
  font-size: 12px;
  background: rgba(45, 124, 106, 0.08);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.sc-file-row-remove {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s ease;
  flex-shrink: 0;
}

.sc-file-row-remove:hover {
  color: var(--color-error);
  border-color: var(--color-error);
  background: rgba(185, 92, 88, 0.04);
}

/* ── 评审维度卡片 ── */
.sc-scope-card {
  background: #ffffff;
  border: 1.5px solid #e2eaf2;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(24, 50, 74, 0.05);
}

.sc-scope-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.sc-scope-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
}

.sc-scope-item:hover {
  border-color: rgba(47, 111, 159, 0.25);
  background: #fff;
  box-shadow: 0 4px 12px -4px rgba(24, 50, 74, 0.1);
  transform: translateY(-1px);
}

.sc-scope-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(47, 111, 159, 0.12), rgba(47, 111, 159, 0.06));
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sc-scope-item-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.sc-scope-item-desc {
  font-size: 11.5px;
  color: var(--color-text-tertiary);
  margin-top: 3px;
  line-height: 1.55;
}

/* ── 补充说明 ── */
.sc-supplement-card {
  background: #ffffff;
  border: 1.5px solid #e2eaf2;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(24, 50, 74, 0.05);
}

.sc-supplement-card label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.sc-supplement-card .label-hint {
  font-size: 12px;
  color: var(--color-text-tertiary);
  font-weight: 400;
}

.sc-supplement-card textarea {
  width: 100%;
  min-height: 72px;
  padding: 12px 14px;
  border: 1.5px solid #dde6ef;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: #f9fbfd;
  resize: vertical;
  transition: all 0.18s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.sc-supplement-card textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 111, 159, 0.1);
}

.sc-supplement-card textarea::placeholder {
  color: #b0bec8;
}

/* ── 操作栏 ── */
.sc-action-bar {
  background: #ffffff;
  border: 1.5px solid #e2eaf2;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(24, 50, 74, 0.05);
}

/* ── 按钮 ── */
.sc-btn {
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-family: inherit;
}

.sc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.sc-btn-primary {
  background: linear-gradient(135deg, #2a6299, var(--color-primary, #2f6f9f));
  color: #ffffff;
  box-shadow: 0 4px 14px -4px rgba(47, 111, 159, 0.45);
}

.sc-btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #1e4a6b, #2562a0);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(47, 111, 159, 0.55);
}

.sc-btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.sc-btn-secondary {
  background: #ffffff;
  color: var(--color-text-secondary);
  border-color: #dde6ef;
}

.sc-btn-secondary:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(47, 111, 159, 0.04);
}

/* ── 结果区 ── */
.sc-results {
  display: none;
}

.sc-results.visible {
  display: block;
}

.sc-result-hero {
  background: linear-gradient(135deg, #0f2d45 0%, #1e4d78 100%);
  border-radius: 16px;
  padding: 28px 32px;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px -8px rgba(15, 45, 69, 0.4);
}

.sc-result-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.sc-result-hero-item {
  text-align: center;
}

.sc-result-hero-value {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.sc-result-hero-value.small {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}

.sc-result-hero-label {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 8px;
}

/* ── 报告正文 ── */
.sc-report-card {
  background: #ffffff;
  border: 1.5px solid #e2eaf2;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(24, 50, 74, 0.06);
}

.sc-report {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-primary);
}

.sc-report h1 {
  font-size: 1.5em;
  margin: 1.2em 0 0.6em;
  font-weight: 800;
  color: var(--color-text-primary);
  border-bottom: 2px solid #e8f0f8;
  padding-bottom: 0.35em;
}

.sc-report h2 {
  font-size: 1.25em;
  margin: 1.2em 0 0.6em;
  font-weight: 700;
  color: var(--color-text-primary);
  padding-left: 12px;
  border-left: 3px solid var(--color-primary);
}

.sc-report h3 {
  font-size: 1.08em;
  margin: 1em 0 0.5em;
  font-weight: 700;
  color: var(--color-text-primary);
}

.sc-report h4 {
  font-size: 1em;
  margin: 0.9em 0 0.4em;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.sc-report table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
  font-size: 13px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2eaf2;
}

.sc-report th,
.sc-report td {
  border: 1px solid #e8eef5;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.sc-report th {
  background: linear-gradient(135deg, rgba(47, 111, 159, 0.07), rgba(47, 111, 159, 0.04));
  font-weight: 700;
  color: var(--color-text-primary);
  font-size: 12.5px;
  text-transform: none;
}

.sc-report tr:nth-child(even) td {
  background: rgba(248, 250, 252, 0.7);
}

.sc-report ul,
.sc-report ol {
  margin: 0.6em 0;
  padding-left: 1.5em;
}

.sc-report li {
  margin: 0.35em 0;
}

.sc-report code {
  font-size: 0.88em;
  background: rgba(47, 111, 159, 0.08);
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--color-primary);
  font-family: 'Menlo', 'Monaco', monospace;
}

.sc-report pre {
  overflow-x: auto;
  padding: 16px;
  background: #f6f9fc;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid #e2eaf2;
}

.sc-report blockquote {
  margin: 1em 0;
  padding: 14px 18px;
  border-left: 4px solid var(--color-primary);
  background: rgba(47, 111, 159, 0.04);
  border-radius: 0 10px 10px 0;
  color: var(--color-text-secondary);
}

.sc-report strong {
  color: var(--color-text-primary);
}

.sc-report .tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  margin-right: 4px;
  letter-spacing: 0.01em;
}

.sc-report .tag-high {
  background: rgba(185, 92, 88, 0.1);
  color: #b95c58;
}

.sc-report .tag-mid {
  background: rgba(173, 122, 45, 0.1);
  color: #ad7a2d;
}

.sc-report .tag-low {
  background: rgba(45, 124, 106, 0.1);
  color: #2d7c6a;
}

.sc-report .tag-pass {
  background: rgba(45, 124, 106, 0.1);
  color: #2d7c6a;
}

.sc-report .tag-fail {
  background: rgba(185, 92, 88, 0.1);
  color: #b95c58;
}

.sc-report .tag-partial {
  background: rgba(173, 122, 45, 0.1);
  color: #ad7a2d;
}

/* ── 加载 / 错误 ── */
.sc-error-box {
  background: rgba(185, 92, 88, 0.06);
  border: 1.5px solid rgba(185, 92, 88, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--color-error);
  font-size: 14px;
  margin-bottom: 20px;
}

.sc-loading-box {
  background: rgba(47, 111, 159, 0.03);
  border: 2px dashed rgba(47, 111, 159, 0.25);
  border-radius: 16px;
  padding: 56px 24px;
  text-align: center;
  color: var(--color-primary);
}

.sc-loading-box .spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(47, 111, 159, 0.12);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: sc-spin 0.9s linear infinite;
  margin: 0 auto 20px;
}

@keyframes sc-spin {
  to { transform: rotate(360deg); }
}

/* ── 报告目录 ── */
.sc-report-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 1000px) {
  .sc-report-layout {
    grid-template-columns: 220px 1fr;
  }
}

.sc-toc {
  background: #ffffff;
  border: 1.5px solid #e2eaf2;
  border-radius: 14px;
  padding: 18px;
  height: fit-content;
  position: sticky;
  top: 76px;
  box-shadow: 0 2px 8px rgba(24, 50, 74, 0.05);
}

.sc-toc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #eef2f8;
}

.sc-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12.5px;
}

.sc-toc-list li + li {
  margin-top: 6px;
}

.sc-toc-list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  line-height: 1.6;
  display: block;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.sc-toc-list a:hover {
  color: var(--color-primary);
  background: rgba(47, 111, 159, 0.06);
}

/* ── 风险高亮 ── */
.sc-report .sc-highlight-high {
  background: rgba(185, 92, 88, 0.12);
  color: #a84b47;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
}

.sc-report .sc-highlight-mid {
  background: rgba(173, 122, 45, 0.12);
  color: #9a6b22;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
}

.sc-report .sc-highlight-low {
  background: rgba(45, 124, 106, 0.12);
  color: #256b5a;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
}

.sc-report .sc-highlight-danger {
  background: rgba(185, 92, 88, 0.15);
  color: #b95c58;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
}

.sc-report .sc-highlight-warn {
  background: rgba(173, 122, 45, 0.15);
  color: #ad7a2d;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
}

/* ── 可折叠表格 ── */
.sc-table-wrap {
  margin: 14px 0;
  border: 1.5px solid #e2eaf2;
  border-radius: 12px;
  overflow: hidden;
}

.sc-table-toolbar {
  background: #f6f9fc;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eef3f8;
}

.sc-table-toggle {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: #ffffff;
  border: 1.5px solid #d8e6f0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.sc-table-toggle:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.sc-table-inner {
  padding: 0 16px 16px;
}

.sc-table-inner table {
  margin: 0;
  border: none;
}



/* ── 响应式收窄 ── */
@media (max-width: 600px) {
  .sc-hero {
    padding: 24px 20px;
  }

  .sc-hero h1 {
    font-size: 20px;
  }

  .sc-hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .sc-hero-stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 12px;
  }

  .sc-hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .sc-report-card {
    padding: 20px 16px;
  }
}
