:root {
  --brand-primary: #0B6F68;
  --brand-primary-dark: #084C47;
  --brand-primary-soft: #E8F4F2;
  --brand-secondary: #1F5FA8;
  --brand-secondary-soft: #EAF2FB;
  --brand-accent: #C9891A;
  --brand-accent-soft: #FFF6E5;
  --brand-success: #00B42A;
  --brand-success-dark: #087A2B;
  --brand-success-soft: #EAF8EE;
  --brand-warning: #FF7D00;
  --brand-warning-dark: #B75700;
  --brand-warning-soft: #FFF3E7;
  --brand-danger: #D64545;
  --brand-danger-soft: #FDEEEE;
  --brand-text-main: #17211F;
  --brand-text-muted: #66736F;
  --brand-bg-light: #F5F8F7;
  --brand-surface: #FFFFFF;
  --brand-surface-soft: #F7F8FA;
  --brand-line: #DDE7E4;
  --brand-line-strong: #C9D8D4;
  --brand-navy: #092F2B;
  --brand-cyan: #0A9396;
  --green: var(--brand-primary);
  --green-dark: var(--brand-navy);
  --green-deep: var(--brand-primary-dark);
  --green-soft: var(--brand-primary-soft);
  --green-mid: #9FD6CC;
  --ink: var(--brand-text-main);
  --muted: #5F6673;
  --faint: var(--brand-text-muted);
  --line: var(--brand-line);
  --bg: var(--brand-surface);
  --surface: var(--brand-bg-light);
  --amber: var(--brand-warning-dark);
  --amber-soft: var(--brand-warning-soft);
  --red: var(--brand-danger);
  --red-soft: var(--brand-danger-soft);
  --blue: var(--brand-secondary);
  --blue-soft: var(--brand-secondary-soft);
  --success: var(--brand-success);
  --success-soft: var(--brand-success-soft);
  --warning: var(--brand-warning);
  --warning-soft: var(--brand-warning-soft);
  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 1280px;
  --shadow-smooth: 0 4px 20px -2px rgba(11, 111, 104, 0.05), 0 2px 12px -1px rgba(23, 33, 31, 0.03);
  --shadow-hover-raise: 0 12px 32px -4px rgba(11, 111, 104, 0.1), 0 4px 20px -2px rgba(23, 33, 31, 0.05);
  --shadow-soft: var(--shadow-smooth);
  --shadow-lift: var(--shadow-hover-raise);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --reading-width: 800px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #FBFCFE;
  font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", "Hiragino Sans GB", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-primary); }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; height: auto; }
img[width][height],
.hc-image,
.report-cover img {
  aspect-ratio: var(--media-ratio, 16 / 10);
}

h1, h2, h3, h4 { line-height: 1.4; margin: 0; font-weight: 650; letter-spacing: 0.01em; }
p, li { overflow-wrap: anywhere; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap, .card, .section-block, .brief-panel, .lead-story, .sidebar { min-width: 0; }

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(29, 33, 41, 0.04);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 60px;
  min-width: 0;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0; }

.brand-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--brand-primary), #0A9396);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px;
  box-shadow: 0 8px 18px rgba(26, 82, 238, 0.16);
}

.brand strong { font-size: 16px; color: var(--green-dark); font-weight: 600; min-width: 0; }

.main-nav { display: flex; gap: 4px; flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }

.main-nav a {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.main-nav a:hover { color: var(--brand-primary); background: var(--brand-primary-soft); transform: translateY(-1px); }

.main-nav a.is-active {
  color: var(--brand-primary-dark);
  background: var(--brand-primary-soft);
  font-weight: 500;
}

.header-cta {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-primary), #0F6BE8);
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(26, 82, 238, 0.16);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), opacity 0.24s var(--ease);
}
.header-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover-raise); }
.header-cta:active { transform: translateY(0) scale(0.98); }

.language-switch {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 44px;
  border: 1px solid rgba(26, 82, 238, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(29, 33, 41, 0.02);
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease), transform 0.24s var(--ease);
}

.language-switch:hover {
  border-color: rgba(26, 82, 238, 0.36);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  transform: translateY(-1px);
}

.nav-toggle { display: none; }

.mobile-h5-header,
.mobile-bottom-tabs,
.mobile-search-drawer {
  display: none;
}

.mobile-h5-header,
.mobile-bottom-tabs,
.mobile-search-drawer,
.h5-report-rail,
.main-nav,
.top-directory,
.table-wrap,
.news-filterbar,
.hero-search-tabs,
.mobile-search-card nav,
.lead-story.has-carousel,
.hc-slide,
.button,
.action-button,
.header-cta,
.hero-search-tabs button,
.hero-search-box,
.hero-search-box button,
.hero-hot-tags a,
.hero-link-grid a,
.assessment-lane,
.assessment-command-copy,
.assessment-command-stats,
.company-row,
.company-focus-card,
.company-detail-identity,
.company-detail-stats,
.case-card,
.policy-card,
.quick-entry a {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.main-nav,
.top-directory,
.table-wrap,
.news-filterbar,
.hero-search-tabs,
.mobile-search-card nav,
.h5-report-rail {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}

.button,
.action-button,
.header-cta,
.file-action,
.company-detail-button,
.case-links a,
.company-actions a,
.company-actions button,
.hero-search-tabs button,
.hero-search-box,
.hero-search-box button,
.hero-hot-tags a,
.hero-link-grid a,
.assessment-lane,
.assessment-command-copy,
.assessment-command-stats,
.company-row,
.company-focus-card,
.company-detail-identity,
.company-detail-stats,
.case-card,
.policy-card,
.quick-entry a,
.mobile-bottom-tabs a,
.mobile-search-trigger {
  will-change: transform, opacity;
}

.file-action,
.company-detail-button,
.case-links a,
.company-actions a,
.company-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-h5-header svg,
.mobile-bottom-tabs svg,
.mobile-search-trigger svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Buttons ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.button.primary {
  background: linear-gradient(135deg, var(--brand-primary), #0F6BE8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 82, 238, 0.16);
}
.button.primary:hover { color: #fff; box-shadow: var(--shadow-hover-raise); transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.98); }
.button.secondary {
  border-color: rgba(26, 82, 238, 0.28);
  color: var(--brand-primary-dark);
  background: #fff;
  box-shadow: 0 1px 0 rgba(29, 33, 41, 0.02);
}
.button.secondary:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  transform: translateY(-2px);
}
.button.full { width: 100%; }
.button.secondary.active,
.button.secondary.is-active {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 9px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.action-button.primary {
  background: linear-gradient(135deg, var(--brand-primary), #0F6BE8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 82, 238, 0.16);
}

.action-button.primary:hover {
  color: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-2px);
}

.action-button.secondary {
  border-color: rgba(26, 82, 238, 0.28);
  color: var(--brand-primary-dark);
  background: #fff;
}

.action-button.secondary:hover {
  background: var(--brand-primary-soft);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.action-button:active { transform: translateY(0) scale(0.98); }

/* ===== Section scaffolding ===== */
.page-main { padding: 32px 0 64px; }

.section { margin: 0 0 48px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  font-size: 19px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-head h2::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--green);
}

.section-head .more { font-size: 13px; color: var(--muted); flex-shrink: 0; }
.section-head .more:hover { color: var(--green); }

.page-hero { padding: 36px 0 8px; }
.page-hero .kicker { margin: 0 0 4px; font-size: 13px; color: var(--green); letter-spacing: 1px; }
.page-hero h1 { font-size: 26px; color: var(--green-dark); margin: 0 0 8px; }
.page-hero .lede { margin: 0; color: var(--muted); max-width: 720px; }

.policy-command-hero {
  padding: 26px 0 22px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 8%, rgba(11, 111, 104, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f9f7 100%);
}

.policy-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.policy-command-copy,
.policy-command-panel {
  min-width: 0;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-smooth);
}

.policy-command-copy {
  padding: 24px;
}

.policy-command-copy .kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.policy-command-copy h1 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.28;
  letter-spacing: 0;
}

.policy-command-copy .lede {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.policy-deadline-strip {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.policy-deadline-strip span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid rgba(11, 111, 104, 0.1);
  border-radius: 8px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 13px;
}

.policy-deadline-strip strong {
  flex: 0 0 auto;
  color: var(--brand-navy);
  font-size: 12px;
}

.policy-command-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.policy-command-panel a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-content: center;
  min-height: 118px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.24s var(--ease), transform 0.24s var(--ease), color 0.24s var(--ease);
}

.policy-command-panel a:nth-child(2n) { border-right: 0; }
.policy-command-panel a:nth-last-child(-n + 2) { border-bottom: 0; }

.policy-command-panel a:hover {
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  transform: translateY(-1px);
}

.policy-command-panel span {
  grid-row: 1 / span 2;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 8px;
  border-radius: 7px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 700;
}

.policy-command-panel .primary span {
  background: var(--brand-primary);
  color: #fff;
}

.policy-command-panel strong {
  min-width: 0;
  color: var(--brand-navy);
  font-size: 15.5px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.policy-command-panel small {
  min-width: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.policy-command-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.policy-command-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(11, 111, 104, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-primary-dark);
  font-size: 13px;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.policy-command-tabs a:hover {
  border-color: rgba(11, 111, 104, 0.32);
  background: #fff;
  transform: translateY(-1px);
}

.policy-command-hero + .page-main {
  padding-top: 26px;
}

.policy-status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.policy-status-strip a {
  display: grid;
  min-width: 0;
  gap: 6px;
  min-height: 112px;
  padding: 13px;
  border: 1px solid rgba(11, 111, 104, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.policy-status-strip a:hover {
  border-color: rgba(11, 111, 104, 0.28);
  background: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-2px);
}

.policy-status-strip span {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 800;
}

.policy-status-strip strong {
  color: var(--brand-navy);
  font-size: 15px;
  line-height: 1.35;
}

.policy-status-strip small {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.policy-mobile-materials {
  display: none;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-tag-row a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--green-deep);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-tag-row a:hover {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  margin-bottom: 8px;
  color: var(--faint);
  font-size: 12.5px;
  line-height: 1.35;
  overflow-x: auto;
  scrollbar-width: none;
}

.breadcrumb::-webkit-scrollbar { display: none; }

.breadcrumb a,
.breadcrumb span {
  flex: 0 0 auto;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.18s ease;
}

.breadcrumb a:hover { color: var(--green-deep); }

.breadcrumb a::after {
  content: ">";
  margin-left: 7px;
  color: var(--faint);
}

/* ===== Cards & lists ===== */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.card:hover { border-color: rgba(26, 82, 238, 0.18); box-shadow: var(--shadow-hover-raise); transform: translateY(-2px); }
.card.soft { background: var(--surface); border-color: rgba(229, 232, 239, 0.82); }

.news-list { list-style: none; margin: 0; padding: 0; }

.news-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(229, 232, 239, 0.78);
  font-size: 14px;
}

.news-list li:last-child { border-bottom: none; }
.news-list a { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news-list time { color: var(--faint); font-size: 13px; flex-shrink: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  flex-shrink: 0;
  transition: background 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}

.badge.official { background: var(--brand-success-soft); color: var(--brand-success-dark); }
.badge.media { background: var(--brand-warning-soft); color: var(--brand-warning-dark); }
.badge.repost { background: var(--surface); color: var(--muted); }
.badge.policy-national { background: var(--brand-primary-soft); color: var(--brand-primary-dark); }
.badge.policy-provincial { background: var(--brand-success-soft); color: var(--brand-success-dark); }
.badge.warning { background: var(--brand-warning-soft); color: var(--brand-warning-dark); }

/* ===== Stat blocks ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.stat-grid article {
  background: var(--brand-primary-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.stat-grid article span { display: block; font-size: 12px; color: var(--brand-primary-dark); }
.stat-grid article strong { display: block; font-size: 22px; font-weight: 600; color: var(--green-dark); margin-top: 2px; }
.stat-grid article small { display: block; font-size: 12px; color: var(--brand-primary-dark); opacity: 0.75; margin-top: 2px; }

/* ===== Ad slots ===== */
.ad-slot {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--faint);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 18px;
}

.ad-slot::before {
  content: "广告";
  font-size: 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 5px;
  color: var(--faint);
}

.ad-slot.banner { min-height: 90px; }
.ad-slot.box { min-height: 220px; }
.ad-wrap { padding-top: 20px; }

.portal-info-wrap { padding-top: 20px; }

.portal-info-slot {
  display: grid;
  gap: 5px;
  align-content: center;
  min-width: 0;
  border: 1px solid rgba(11, 111, 104, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 244, 242, 0.88), rgba(234, 242, 251, 0.72));
  color: var(--brand-text-main);
  padding: 18px 20px;
  box-shadow: var(--shadow-smooth);
}

.portal-info-slot::before {
  content: "信息";
  width: fit-content;
  border: 1px solid rgba(11, 111, 104, 0.16);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  padding: 3px 7px;
}

.portal-info-slot strong {
  color: var(--brand-navy);
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.portal-info-slot span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.portal-info-slot.banner { min-height: 88px; }
.portal-info-slot.box { min-height: 180px; }

/* ===== Tables ===== */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.data-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }

.data-table th {
  text-align: left;
  background: var(--surface);
  color: var(--green-dark);
  font-weight: 600;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }

/* ===== Report article body ===== */
.article-md,
.longform-content,
.policy-reading,
.news-reading {
  max-width: var(--reading-width);
  letter-spacing: 0.02em;
}

.article-md h1, .article-md h2, .article-md h3,
.article-md h4, .article-md h5, .article-md h6 {
  margin: 1.4em 0 0.5em;
  line-height: 1.4;
  color: var(--ink);
}
.article-md h2 { font-size: 1.15em; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.article-md h3 { font-size: 1em; }
.article-md p  { margin: 0.75em 0; line-height: 1.78; }
.article-md ul { padding-left: 1.5em; margin: 0.6em 0; }
.article-md li { margin: 0.35em 0; line-height: 1.72; }
.article-md hr { border: none; border-top: 1px solid var(--line); margin: 1.4em 0; }
.article-md code { background: var(--surface); padding: 1px 5px; border-radius: var(--radius-sm); font-size: 0.9em; }
.article-md .md-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 1em 0; overflow-x: auto; display: block; }
.article-md .md-table th { background: var(--surface); color: var(--green-dark); font-weight: 600; padding: 8px 12px; border: 1px solid var(--line); text-align: left; white-space: nowrap; }
.article-md .md-table td { padding: 7px 12px; border: 1px solid var(--line); vertical-align: top; }
.article-md .md-table tr:nth-child(even) td { background: var(--surface); }

.topic-figure {
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.topic-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8fbfa;
}

.topic-figure figcaption {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ===== Forms ===== */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field-row.single { grid-template-columns: 1fr; }

label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--muted); }

input[type="text"], input[type="search"], select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  width: 100%;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease);
}

input:focus, select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(26, 82, 238, 0.12);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 12px;
  font-size: 14px;
  color: var(--green-dark);
}

.form-section-title span {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}

.assessment-save-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 111, 104, 0.14);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff, rgba(245, 248, 247, 0.92));
}

.assessment-save-status div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 10px;
  align-items: baseline;
}

.assessment-save-status span {
  color: var(--muted);
  font-size: 12px;
}

.assessment-save-status strong {
  color: var(--brand-navy);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.assessment-save-status small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.assessment-save-status button {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid rgba(26, 82, 238, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 700;
}

/* ===== Layout helpers ===== */
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.two-col > *, .grid-2 > *, .grid-3 > *, .portal-grid > * { min-width: 0; }
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.link-stack { display: flex; flex-direction: column; gap: 8px; }

.link-stack a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #fff;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.link-stack a::after { content: "→"; color: var(--faint); }
.link-stack a:hover { border-color: var(--brand-primary); background: var(--brand-primary-soft); box-shadow: var(--shadow-smooth); transform: translateY(-1px); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

.tag-row span, .tag-row a {
  background: #fff;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius-sm);
  padding: 4px 11px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.25;
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease);
}
.tag-row a:hover { background: var(--brand-primary-soft); border-color: rgba(26, 82, 238, 0.28); color: var(--brand-primary-dark); transform: translateY(-1px); }

/* ===== News portal ===== */
.news-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.news-dashboard article {
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.news-dashboard article:hover {
  border-color: rgba(26, 82, 238, 0.22);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-3px);
}

.news-dashboard span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
}

.news-dashboard strong {
  display: block;
  margin-top: 3px;
  color: var(--green-dark);
  font-size: 22px;
  line-height: 1.2;
}

.news-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.news-filterbar button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--muted);
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease);
}

.news-filterbar button:hover,
.news-filterbar button.is-active {
  border-color: rgba(26, 82, 238, 0.28);
  background: var(--brand-primary-soft);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.news-filterbar button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 20px;
  border-radius: 999px;
  background: rgba(26, 82, 238, 0.08);
  color: var(--brand-primary-dark);
  padding: 1px 7px;
  font-size: 11.5px;
  font-weight: 750;
}

.news-filterbar button.is-active span {
  background: rgba(255, 255, 255, 0.78);
}

.news-query-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(11, 111, 104, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.96), rgba(255, 255, 255, 0.96));
  color: var(--muted);
  font-size: 13px;
}

.news-query-status button {
  min-width: 86px;
  min-height: 32px;
  border: 1px solid rgba(11, 111, 104, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.news-query-status button:hover {
  border-color: rgba(11, 111, 104, 0.36);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.news-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 14px;
}

.news-lead-card,
.news-lead-aside a {
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-smooth);
}

.news-lead-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 218px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(11, 111, 104, 0.07), rgba(26, 82, 238, 0.035)),
    #fff;
}

.news-lead-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: var(--muted);
  font-size: 12.5px;
}

.news-lead-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 22px;
  line-height: 1.42;
}

.news-lead-card h3 a {
  color: inherit;
  transition: color 0.2s var(--ease);
}

.news-lead-card h3 a:hover { color: var(--brand-primary-dark); }

.news-lead-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-lead-aside {
  display: grid;
  gap: 10px;
}

.news-lead-aside a {
  display: grid;
  gap: 6px;
  min-height: 66px;
  padding: 13px 14px;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.news-lead-aside a:hover {
  border-color: rgba(26, 82, 238, 0.2);
  box-shadow: var(--shadow-hover-raise);
  transform: translate3d(0, -2px, 0);
}

.news-lead-aside span {
  color: var(--muted);
  font-size: 12px;
}

.news-lead-aside strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-entry-grid article {
  display: grid;
  min-width: 0;
  min-height: 166px;
  align-content: start;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.92)),
    #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), transform 0.28s var(--ease), background 0.28s var(--ease);
  will-change: transform, opacity;
}

.news-entry-grid article:hover {
  border-color: rgba(26, 82, 238, 0.28);
  background: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-3px);
}

.news-entry-grid .badge {
  width: fit-content;
}

.news-entry-grid h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.45;
}

.news-entry-grid p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-entry-grid .file-action {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(26, 82, 238, 0.22);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 5px 10px;
  font-size: 12.5px;
  font-weight: 700;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.news-entry-grid .file-action:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.policy-change-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.policy-change-board article,
.policy-evidence-grid article {
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-smooth);
}

.policy-change-board article {
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(11, 111, 104, 0.065), rgba(255, 176, 32, 0.045)),
    #fff;
}

.policy-change-board span,
.policy-evidence-grid span {
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 700;
}

.policy-change-board strong {
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.35;
}

.policy-change-board p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.policy-change-table {
  margin-bottom: 14px;
}

.policy-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.policy-evidence-grid article {
  display: grid;
  align-content: space-between;
  gap: 10px;
  min-height: 154px;
  padding: 16px;
}

.policy-evidence-grid h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.62;
}

.policy-evidence-grid a {
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.news-extra-links {
  margin-top: 16px;
}

.news-side-title {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.35;
}

.news-extra-links .news-side-title {
  font-size: 14.5px;
}

.source-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.source-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.source-tier-grid article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 111, 104, 0.055), rgba(26, 82, 238, 0.035)),
    #fff;
  box-shadow: var(--shadow-smooth);
}

.source-tier-grid span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.source-tier-grid strong {
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.25;
}

.source-tier-grid small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.news-sidebar-card {
  padding: 16px;
}

.news-nav-stack {
  gap: 9px;
}

.news-nav-stack a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3px 10px;
  padding: 11px 12px;
}

.news-nav-stack a::after {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.news-nav-stack strong {
  min-width: 0;
  color: var(--green-dark);
  font-size: 13.5px;
  line-height: 1.35;
}

.news-nav-stack span {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

#newsFeed {
  display: grid;
  gap: 12px;
}

.news-list .news-feed-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 250, 255, 0.82), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease), background 0.24s var(--ease);
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.news-list .news-feed-card:hover {
  border-color: rgba(26, 82, 238, 0.2);
  background: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translate3d(0, -3px, 0);
}

.news-card-body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.news-card-meta time {
  color: var(--faint);
  font-size: 12.5px;
}

.news-list .news-feed-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 17px;
  line-height: 1.45;
}

.news-list .news-feed-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  text-overflow: clip;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s var(--ease);
}

.news-list .news-feed-card h3 a:hover {
  color: var(--brand-primary-dark);
}

.news-feed-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(26, 82, 238, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(26, 82, 238, 0.06);
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.news-card-action:hover {
  border-color: rgba(26, 82, 238, 0.3);
  background: rgba(26, 82, 238, 0.1);
  transform: translateY(-1px);
}

.news-mobile-brief {
  display: none;
}

.news-empty-card {
  grid-template-columns: 1fr !important;
}

.news-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-compact-card h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 15px;
}

.news-compact-card .news-list li {
  gap: 8px;
  padding: 8px 0;
}

.news-compact-card .news-list a {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ===== Homepage ===== */
.home-hero {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 58%, #f3f7fb 100%);
  border-bottom: 1px solid var(--line);
  padding: 30px 0 34px;
}

.hero-dual-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(26, 82, 238, 0.1), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(10, 147, 150, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 58%, #f3f7fb 100%);
}

.hero-dual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.search-hub-card,
.evaluation-panel {
  min-width: 0;
  height: 100%;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-smooth);
}

.search-hub-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96)),
    #fff;
}

.search-hub-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(26, 82, 238, 0.08);
  pointer-events: none;
}

.hero-kicker,
.panel-label {
  margin: 0 0 10px;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.search-hub-card h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--brand-navy);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-search-form {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-search-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  margin-bottom: 12px;
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-search-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: background 0.24s var(--ease), color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.hero-search-tabs button.is-active {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(26, 82, 238, 0.16);
}

.hero-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid rgba(26, 82, 238, 0.16);
  border-radius: 14px;
  background: #fff;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 18px 38px -26px rgba(14, 29, 58, 0.34);
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.hero-search-box:focus-within {
  border-color: rgba(26, 82, 238, 0.58);
  box-shadow: 0 18px 46px -24px rgba(26, 82, 238, 0.32);
  transform: translateY(-1px);
}

.hero-search-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  font-size: 18px;
  line-height: 1;
}

.hero-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--brand-text-main);
  font-size: 17px;
}

.hero-search-box input::placeholder { color: #9aa3b2; }

.hero-search-box button {
  flex: 0 0 auto;
  min-width: 118px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-primary), #0a9396);
  color: #fff;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 650;
  box-shadow: 0 12px 24px -14px rgba(26, 82, 238, 0.72);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), opacity 0.24s var(--ease);
}

.hero-search-box button:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px -16px rgba(26, 82, 238, 0.78);
}

.hero-hot-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.hero-hot-tags span {
  color: var(--faint);
  font-size: 13px;
}

.hero-hot-tags a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-primary-dark);
  padding: 6px 11px;
  font-size: 13px;
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease), transform 0.24s var(--ease);
}

.hero-hot-tags a:hover {
  border-color: rgba(26, 82, 238, 0.28);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.hero-link-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-link-grid a {
  display: block;
  min-width: 0;
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  padding: 13px 14px;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.hero-link-grid a:hover {
  border-color: rgba(26, 82, 238, 0.22);
  background: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-2px);
}

.hero-link-grid strong {
  display: block;
  color: var(--brand-navy);
  font-size: 15px;
}

.hero-link-grid span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.evaluation-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(26, 82, 238, 0.18);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(145deg, #0e1d3a 0%, #164f5f 58%, #1a52ee 140%);
  color: #fff;
  box-shadow: var(--shadow-hover-raise);
}

.evaluation-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -38% 18%;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.evaluation-panel .panel-label {
  position: relative;
  color: #b8c9ff;
}

.evaluation-panel h2 {
  position: relative;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
  letter-spacing: 0;
}

.evaluation-score {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 6px 0 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.evaluation-score span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.evaluation-score strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.evaluation-points {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.evaluation-points li {
  display: flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.evaluation-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: #7ff0d6;
}

.evaluation-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 13px 18px;
  font-weight: 700;
  box-shadow: 0 18px 32px -20px rgba(0, 0, 0, 0.5);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.evaluation-cta:hover {
  color: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 36px -22px rgba(0, 0, 0, 0.56);
}

.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.trust-metrics-grid article {
  min-width: 0;
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 16px 18px;
  box-shadow: var(--shadow-smooth);
}

.trust-metrics-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.trust-metrics-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-navy);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.hero-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.hero-latest-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-latest-panel .news-list {
  margin-top: 2px;
}

.portal-home-hero {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9f7 58%, #edf5f2 100%);
  border-bottom: 1px solid var(--line);
  padding: 24px 0 28px;
}

.portal-home-hero.hero-dual-section {
  background:
    radial-gradient(circle at 88% 4%, rgba(11, 111, 104, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f9f7 58%, #edf5f2 100%);
}

.portal-search-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 18px;
  isolation: isolate;
}

.portal-search-bar .hero-search-tabs {
  margin: 0;
  border-color: rgba(11, 111, 104, 0.14);
}

.portal-search-bar .hero-search-tabs button {
  min-height: 40px;
  color: var(--brand-text-muted);
}

.portal-search-bar .hero-search-tabs button.is-active {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 10px 20px -14px rgba(11, 111, 104, 0.8);
}

.portal-search-bar .hero-search-box {
  min-height: 58px;
  border-radius: 14px;
  border-color: rgba(11, 111, 104, 0.2);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(11, 111, 104, 0.34), rgba(26, 82, 238, 0.16), rgba(255, 125, 0, 0.16)) border-box;
  box-shadow: 0 18px 46px -32px rgba(9, 47, 43, 0.42);
}

.portal-search-bar .hero-search-box:focus-within {
  border-color: transparent;
  box-shadow: 0 22px 56px -30px rgba(11, 111, 104, 0.52), 0 0 0 4px rgba(11, 111, 104, 0.08);
}

.portal-search-bar .hero-search-box button {
  min-width: 92px;
  min-height: 40px;
  padding: 10px 17px;
  background: var(--brand-primary);
  box-shadow: none;
}

.hero-suggest-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  left: 178px;
  overflow: hidden;
  border: 1px solid rgba(11, 111, 104, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px -34px rgba(9, 47, 43, 0.5), 0 8px 22px -18px rgba(26, 82, 238, 0.38);
  backdrop-filter: blur(16px);
}

.hero-suggest-panel[hidden] {
  display: none;
}

.hero-suggest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(11, 111, 104, 0.08);
  background: linear-gradient(180deg, rgba(239, 248, 246, 0.94), rgba(255, 255, 255, 0.94));
}

.hero-suggest-head span {
  color: var(--brand-text-main);
  font-size: 13px;
  font-weight: 800;
}

.hero-suggest-head small {
  color: var(--brand-text-muted);
  font-size: 12px;
}

.hero-suggest-list {
  display: grid;
  gap: 2px;
  padding: 8px;
}

.hero-suggest-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 12px;
  color: var(--brand-text-main);
  padding: 8px 10px;
  text-decoration: none;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease), color 0.18s var(--ease);
}

.hero-suggest-item:hover,
.hero-suggest-item.is-active {
  background: rgba(11, 111, 104, 0.07);
  color: var(--brand-primary-dark);
  transform: translateX(2px);
}

.hero-suggest-item strong,
.hero-suggest-item small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-suggest-item strong {
  font-size: 14px;
  font-weight: 800;
}

.hero-suggest-item small {
  margin-top: 3px;
  color: var(--brand-text-muted);
  font-size: 12.5px;
}

.hero-suggest-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(11, 111, 104, 0.11), rgba(26, 82, 238, 0.08));
  color: var(--brand-primary-dark);
  font-weight: 850;
}

.hero-suggest-loading {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.hero-suggest-loading span {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 111, 104, 0.08), rgba(11, 111, 104, 0.16), rgba(11, 111, 104, 0.08));
  animation: shimmer 1.1s linear infinite;
}

.hero-suggest-loading span:nth-child(2) { width: 78%; }
.hero-suggest-loading span:nth-child(3) { width: 56%; }

@keyframes shimmer {
  0% { background-position: -180px 0; }
  100% { background-position: 180px 0; }
}

.home-mobile-fastlane {
  display: none;
}

.portal-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.32fr) minmax(320px, 0.86fr);
  gap: 14px;
  align-items: stretch;
}

.hero-analysis-panel,
.portal-hero-grid .lead-story,
.portal-hero-grid .hero-latest-panel {
  min-width: 0;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-smooth);
}

.hero-analysis-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.hero-analysis-copy {
  min-width: 0;
}

.hero-analysis-panel .hero-kicker {
  color: var(--blue);
  margin-bottom: 12px;
}

.hero-analysis-panel h1 {
  color: var(--brand-navy);
  font-size: clamp(25px, 2.15vw, 32px);
  line-height: 1.26;
  margin: 0 0 12px;
  letter-spacing: 0;
}

.hero-analysis-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.hero-analysis-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-analysis-stats a {
  display: grid;
  gap: 3px;
  min-width: 0;
  min-height: 62px;
  align-content: center;
  border: 1px solid rgba(11, 111, 104, 0.1);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(239, 248, 246, 0.8), rgba(255, 255, 255, 0.96));
  padding: 10px 12px;
  color: var(--brand-text-main);
  text-decoration: none;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.hero-analysis-stats a:hover {
  border-color: rgba(11, 111, 104, 0.24);
  color: var(--brand-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -26px rgba(9, 47, 43, 0.36);
}

.hero-analysis-stats strong {
  color: var(--brand-primary-dark);
  font-size: 20px;
  line-height: 1.05;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.hero-analysis-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-analysis-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-analysis-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(11, 111, 104, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease), transform 0.22s var(--ease);
}

.hero-analysis-actions a.primary {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}

.hero-analysis-actions a:hover {
  transform: translateY(-1px);
}

.hero-analysis-actions a:not(.primary):hover {
  border-color: rgba(11, 111, 104, 0.28);
  background: rgba(239, 248, 246, 0.94);
}

.hero-analysis-panel .hero-hot-tags {
  margin-top: auto;
  padding-top: 2px;
}

.hero-analysis-panel .hero-hot-tags a {
  padding: 6px 11px;
  font-size: 12.5px;
}

.portal-hero-grid .lead-story.has-carousel {
  min-height: 332px;
  border-radius: 10px;
  box-shadow: var(--shadow-hover-raise);
}

.portal-hero-grid .lead-story:not(.has-carousel) {
  min-height: 332px;
  background: linear-gradient(135deg, #063f3b 0%, #0b6f68 60%, #1f5fa8 120%);
}

.portal-hero-grid .hc-caption {
  padding: 72px 22px 22px;
}

.portal-hero-grid .hc-caption h1,
.portal-hero-grid .hc-caption h2,
.portal-hero-grid .hc-caption h3 {
  font-size: 20px;
  line-height: 1.48;
}

.portal-hero-grid .hc-cat {
  top: 16px;
  left: 16px;
  background: rgba(6, 63, 59, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.portal-hero-grid .hero-latest-panel {
  padding: 16px 18px;
  box-shadow: var(--shadow-smooth);
  transform: none;
}

.portal-hero-grid .hero-latest-panel:hover {
  transform: none;
}

.portal-hero-grid .hero-latest-panel .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.portal-hero-grid .hero-latest-panel h2 {
  font-size: 17px;
  line-height: 1.22;
  max-width: 7.4em;
}

.portal-hero-grid .hero-latest-panel .more {
  align-self: start;
  padding-top: 4px;
}

.portal-hero-grid .home-news-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  max-width: 100%;
  overflow: hidden;
}

.portal-hero-grid .home-news-meta span {
  min-height: 24px;
  max-width: 100%;
  padding: 4px 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11.5px;
}

.portal-hero-grid .home-news-meta .desktop-only {
  display: none;
}

.portal-hero-grid .hero-latest-panel .news-list li {
  align-items: flex-start;
  gap: 8px;
  padding: 11px 0;
}

.portal-hero-grid .hero-latest-panel .news-list a {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-service-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-smooth);
  overflow: hidden;
}

.home-service-strip a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 60px;
  padding: 12px 16px;
  border-right: 1px solid var(--line);
  transition: background 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease);
}

.home-service-strip a:last-child { border-right: 0; }

.home-service-strip a:hover {
  color: var(--brand-primary-dark);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.home-service-strip span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 700;
}

.home-service-strip strong {
  min-width: 0;
  color: var(--brand-navy);
  font-size: 14.5px;
  white-space: nowrap;
}

.portal-home-hero .trust-metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  border: 1px solid rgba(9, 47, 43, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
}

.portal-home-hero .trust-metrics-grid article {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 13px 18px;
}

.portal-home-hero .trust-metrics-grid article:last-child { border-right: 0; }

.portal-home-hero .trust-metrics-grid strong {
  color: var(--brand-navy);
  font-size: clamp(20px, 2vw, 27px);
}

.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }

.headline-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.headline-card:hover {
  border-color: rgba(26, 82, 238, 0.18);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-3px);
}
.headline-card .meta { font-size: 13px; color: var(--green); margin: 0 0 6px; }
.headline-card h2 { font-size: 22px; color: var(--green-dark); margin: 0 0 10px; }
.headline-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }

.headline-list { margin-top: 14px; }

.quick-entry { display: flex; flex-direction: column; gap: 10px; }

.quick-entry a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-width: 0;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.quick-entry a:hover { border-color: rgba(26, 82, 238, 0.26); background: #fff; box-shadow: var(--shadow-hover-raise); transform: translateY(-3px); }
.quick-entry .icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600;
  flex-shrink: 0;
}
.quick-entry .icon[data-icon]::before { content: attr(data-icon); }
.quick-entry a > span:last-child { min-width: 0; }
.quick-entry strong { display: block; font-size: 15px; color: var(--green-dark); overflow-wrap: anywhere; }
.quick-entry small { display: block; font-size: 12.5px; color: var(--muted); overflow-wrap: anywhere; }

.quick-entry.enterprise-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ===== English portal ===== */
.en-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

.en-hero-card,
.en-side-card {
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  box-shadow: var(--shadow-smooth);
  position: relative;
  overflow: hidden;
}

.en-hero-card {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96)),
    #fff;
}

.en-hero-card::after,
.en-side-card::after,
.en-company-search-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 46%;
  height: 42%;
  background:
    linear-gradient(135deg, rgba(26, 82, 238, 0.08), rgba(10, 147, 150, 0.08));
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.en-hero-card > *,
.en-side-card > *,
.en-company-search-hero > * {
  position: relative;
  z-index: 1;
}

.en-hero-card h1 {
  max-width: 760px;
  color: var(--brand-navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.en-hero-card p {
  max-width: 760px;
  color: var(--muted);
  margin: 0 0 18px;
}

.en-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 20px;
  padding: 8px;
  border: 1px solid rgba(26, 82, 238, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 38px -26px rgba(14, 29, 58, 0.34);
}

.en-search-row input {
  min-width: 0;
  min-height: 46px;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: var(--brand-text-main);
}

.en-side-card {
  padding: 22px;
}

.en-side-card h2 {
  color: var(--brand-navy);
  font-size: 20px;
  margin-bottom: 14px;
}

.en-metric-list {
  display: grid;
  gap: 10px;
}

.en-metric-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.en-metric-list div:last-child {
  border-bottom: 0;
}

.en-metric-list dt {
  color: var(--muted);
}

.en-metric-list dd {
  margin: 0;
  color: var(--brand-navy);
  font-weight: 800;
  text-align: right;
}

.en-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.en-side-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(26, 82, 238, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 12.5px;
  font-weight: 800;
  padding: 6px 11px;
}

.en-home-official {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.en-home-official h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-navy);
  font-size: 15px;
  line-height: 1.35;
}

.en-home-official h3::before {
  content: "";
  width: 7px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--brand-primary));
}

.en-home-official .official-check-list {
  gap: 7px;
}

.en-home-official .official-check-list a {
  min-height: 54px;
  padding: 8px 10px 8px 8px;
}

.en-home-official .official-check-list strong {
  font-size: 12.8px;
}

.en-home-official .official-check-list span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 11.8px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.en-research-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
  min-width: 0;
}

.en-research-paths a {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.en-research-paths a:hover {
  border-color: rgba(26, 82, 238, 0.24);
  box-shadow: var(--shadow-hover-raise);
  transform: translate3d(0, -2px, 0);
}

.en-research-paths span {
  width: fit-content;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 11px;
  font-weight: 850;
}

.en-research-paths strong {
  color: var(--brand-navy);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.en-research-paths small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.en-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.en-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-smooth);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.en-info-card:hover,
.en-entry-card:hover,
.en-feature-report:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 82, 238, 0.18);
  box-shadow: var(--shadow-hover-raise);
}

.en-info-card span {
  display: block;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.en-info-card h3 {
  color: var(--brand-navy);
  font-size: 17px;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.en-info-card p,
.en-info-card li {
  color: var(--muted);
  font-size: 13.5px;
}

.en-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.en-card-links a,
.en-link-cloud a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  padding: 7px 12px;
}

.en-entry-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 14px;
  min-width: 0;
}

.en-entry-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.96));
  padding: 18px;
  box-shadow: var(--shadow-smooth);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.en-entry-card:nth-child(1) {
  background:
    linear-gradient(140deg, rgba(14, 29, 58, 0.96), rgba(26, 82, 238, 0.88));
  color: #fff;
}

.en-entry-card:nth-child(1) h3,
.en-entry-card:nth-child(1) p,
.en-entry-card:nth-child(1) .en-entry-code {
  color: #fff;
}

.en-entry-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(26, 82, 238, 0.1);
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.en-entry-card h3 {
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.en-entry-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.en-entry-action {
  align-self: end;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 900;
}

.en-entry-card:nth-child(1) .en-entry-action {
  color: #fff;
}

.en-market-section {
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow-smooth);
}

.en-filter-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.en-filter-matrix > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-bg-light);
  padding: 14px;
}

.en-filter-matrix strong {
  display: block;
  color: var(--brand-navy);
  font-size: 14px;
  margin-bottom: 10px;
}

.en-filter-matrix nav,
.en-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.en-filter-matrix a,
.en-filter-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(26, 82, 238, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 12.5px;
  font-weight: 800;
  padding: 6px 11px;
}

.en-filter-chips {
  margin-top: 16px;
  align-items: center;
}

.en-filter-chips span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.en-feature-report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.en-feature-report {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-smooth);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.en-feature-report span {
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.en-feature-report h3 {
  color: var(--brand-navy);
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.en-feature-report p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.en-workbench-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  padding: 20px;
  box-shadow: var(--shadow-smooth);
}

.en-workbench-overview h2 {
  color: var(--brand-navy);
  font-size: 22px;
  line-height: 1.35;
}

.en-seo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr) minmax(260px, 0.9fr);
  gap: 16px;
  align-items: stretch;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
  padding: 22px;
  box-shadow: var(--shadow-smooth);
}

.en-seo-panel h2 {
  max-width: 760px;
  color: var(--brand-navy);
  font-size: 23px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.en-seo-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.en-seo-panel .en-metric-list {
  align-self: center;
}

.en-seo-facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.en-seo-facts li {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
}

.en-seo-facts strong {
  color: var(--brand-navy);
  font-size: 13px;
}

.en-seo-facts span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.en-faq {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.en-faq details {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 10px;
  background: var(--brand-bg-light);
  padding: 12px 14px;
}

.en-faq details + details {
  margin-top: 10px;
}

.en-faq summary {
  cursor: pointer;
  color: var(--brand-navy);
  font-weight: 800;
  line-height: 1.45;
}

.en-faq p {
  color: var(--brand-text-main);
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 10px;
}

.en-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.en-breadcrumb {
  margin-bottom: 8px;
}

.en-detail-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.en-detail-signal-section {
  padding-top: 0 !important;
  border-top: 0 !important;
}

.en-detail-signals article {
  min-width: 0;
  min-height: 76px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  padding: 12px 13px;
  box-shadow: var(--shadow-smooth);
}

.en-detail-signals span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.en-detail-signals strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.en-company-summary {
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff 0%, #f7faff 100%);
  padding: 20px;
  color: var(--brand-text-main);
  box-shadow: var(--shadow-smooth);
}

.en-company-search-hero {
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96)),
    #fff;
  padding: 26px;
  box-shadow: var(--shadow-smooth);
  position: relative;
  overflow: hidden;
}

.en-company-search-hero h1 {
  max-width: 840px;
  color: var(--brand-navy);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.en-company-search-hero p {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 18px;
}

.en-company-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(150px, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.en-company-filter label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.en-company-filter label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.en-company-filter input,
.en-company-filter select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--brand-text-main);
  padding: 0 12px;
  outline: 0;
}

.en-company-filter input:focus,
.en-company-filter select:focus {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.08);
}

.en-report-filter {
  grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(150px, 1fr)) auto;
}

.en-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.en-company-results {
  display: grid;
  gap: 12px;
}

.en-company-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.7fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-smooth);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.en-company-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: var(--shadow-hover-raise);
}

.en-company-card .eyebrow {
  display: block;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.en-company-card h2 {
  color: var(--brand-navy);
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.en-company-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.en-company-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.en-company-card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 7px;
}

.en-company-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.en-company-card li span {
  color: var(--muted);
  font-size: 12px;
}

.en-company-card li strong {
  color: var(--brand-text-main);
  font-size: 12.5px;
  text-align: right;
}

.en-company-card nav {
  display: grid;
  gap: 8px;
  min-width: 130px;
}

.en-company-card nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 10px;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 800;
  padding: 0 12px;
}

.en-company-card nav a:first-child {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.en-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.en-pagination a,
.en-pagination span,
.en-pagination strong {
  min-width: 86px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--brand-text-main);
  font-size: 13px;
  font-weight: 800;
  padding: 0 12px;
}

.en-pagination a {
  color: var(--brand-primary);
}

.en-pagination span {
  color: var(--muted);
  background: var(--brand-bg-light);
}

.en-report-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.en-report-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-smooth);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.en-report-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: var(--shadow-hover-raise);
}

.en-report-card .eyebrow {
  display: block;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 800;
}

.en-report-card h2 {
  color: var(--brand-navy);
  font-size: 19px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.en-report-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.en-report-card nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.en-report-card nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 10px;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 800;
  padding: 0 12px;
}

.en-report-card nav a:first-child {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.en-topic-article {
  max-width: 820px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-smooth);
}

.en-topic-article section + section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.en-topic-article h2 {
  color: var(--brand-navy);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.en-topic-article p {
  color: var(--brand-text-main);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}

.en-topic-article p:last-child {
  margin-bottom: 0;
}

.en-topic-matrix {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.en-topic-matrix .section-head {
  margin-bottom: 12px;
}

.en-topic-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.en-topic-matrix article {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff 0%, #f7fbfa 100%);
  padding: 13px;
}

.en-topic-matrix span {
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.en-topic-matrix strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 14px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.en-topic-matrix p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.en-topic-matrix a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(26, 82, 238, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}

.en-topic-official-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.6fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(135deg, rgba(240, 253, 250, 0.78), rgba(255, 255, 255, 0.96)),
    #fff;
  padding: 18px;
  box-shadow: var(--shadow-smooth);
}

.en-topic-official-strip h2 {
  color: var(--brand-navy);
  font-size: 22px;
  line-height: 1.3;
}

.en-topic-official-strip .official-check-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.en-topic-official-strip .official-check-list a {
  min-height: 82px;
}

/* ===== Workbench (enterprise) ===== */
.enterprise-command-hero {
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
  background:
    radial-gradient(circle at 88% 10%, rgba(10, 147, 150, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f9f7 100%);
}

.enterprise-command-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.enterprise-command-copy,
.workbench-command-stats,
.workbench-command-surface {
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-smooth);
}

.enterprise-command-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 22px 24px;
}

.enterprise-command-copy .kicker {
  margin: 0 0 9px;
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.enterprise-command-copy h1 {
  max-width: 640px;
  color: var(--brand-navy);
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1.22;
  letter-spacing: 0;
}

.enterprise-command-copy .lede {
  max-width: 680px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.workbench-command-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.workbench-command-stats article {
  min-width: 0;
  min-height: 150px;
  padding: 18px 14px 16px;
  border: 0;
  border-right: 1px solid rgba(9, 47, 43, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.workbench-command-stats article:last-child {
  border-right: 0;
}

.workbench-command-stats span {
  display: block;
  min-height: 20px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.workbench-command-stats strong {
  display: block;
  margin: 10px 0 5px;
  color: var(--brand-navy);
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.1;
  letter-spacing: 0;
}

.workbench-command-stats small {
  display: -webkit-box;
  min-height: 34px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.workbench-command-surface {
  margin-top: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(26, 82, 238, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 249, 0.96));
}

.workbench-command-surface .workbench-search {
  grid-template-columns: minmax(280px, 1.7fr) repeat(5, minmax(116px, 1fr)) minmax(94px, auto);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.workbench-command-surface .workbench-search label {
  min-width: 0;
}

.workbench-command-surface .workbench-search select,
.workbench-query-field input {
  min-height: 50px;
  border-color: rgba(11, 111, 104, 0.18);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.workbench-command-surface .workbench-search .button {
  min-height: 50px;
  border-radius: 12px;
  box-shadow: 0 14px 28px -18px rgba(11, 111, 104, 0.68);
}

.workbench-command-surface .workbench-query-field {
  position: relative;
}

.workbench-command-surface .workbench-query-field::after {
  content: "企业库";
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  border-radius: 999px;
  background: rgba(11, 111, 104, 0.08);
  color: var(--brand-primary-dark);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  pointer-events: none;
}

.workbench-query-field input {
  padding-right: 78px;
}

.workbench-query-field input:focus {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(11, 111, 104, 0.7), rgba(26, 82, 238, 0.28)) border-box;
  box-shadow: 0 0 0 4px rgba(11, 111, 104, 0.09), 0 16px 34px -28px rgba(11, 111, 104, 0.55);
}

.workbench-presets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.workbench-presets span {
  color: var(--faint);
  font-size: 12.5px;
  font-weight: 700;
}

.workbench-presets button {
  min-height: 34px;
  border: 1px solid rgba(11, 111, 104, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.workbench-presets button:hover {
  border-color: rgba(11, 111, 104, 0.32);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.workbench-result-section {
  margin-top: 20px;
  margin-bottom: 24px;
}

.workbench-result-card {
  border-color: rgba(9, 47, 43, 0.1);
  box-shadow: none;
}

.workbench-result-card .section-head {
  margin-bottom: 10px;
}

.workbench-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px;
}

.workbench-active-filters span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(11, 111, 104, 0.12);
  background: rgba(11, 111, 104, 0.055);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 650;
}

.workbench-query-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin: 0 0 14px;
  padding: 9px 12px;
  border: 1px solid rgba(11, 111, 104, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.96), rgba(255, 255, 255, 0.96));
  color: var(--muted);
  font-size: 13px;
}

.workbench-query-status span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.workbench-query-status button {
  min-width: 86px;
  min-height: 32px;
  border: 1px solid rgba(11, 111, 104, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.workbench-query-status button:hover {
  border-color: rgba(11, 111, 104, 0.36);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.enterprise-index-section {
  margin-top: 24px;
}

.workbench-search {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-smooth);
}

.result-list { display: flex; flex-direction: column; }

.workbench-focus-section {
  margin-top: -6px;
}

.company-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.company-row:hover {
  border-color: rgba(26, 82, 238, 0.14);
  background: #fff;
  box-shadow: var(--shadow-smooth);
  transform: translateY(-2px);
}
.company-row:last-child { border-bottom-color: transparent; }
.company-row .crumbs { font-size: 12.5px; color: var(--faint); }
.company-row h4 { font-size: 15.5px; color: var(--green-dark); margin: 2px 0; }
.company-row h4 a { color: var(--green-dark); }
.company-row h4 a:hover { color: var(--red); }
.company-row p { margin: 0; font-size: 13.5px; color: var(--muted); }
.company-row .company-intro { color: var(--ink); margin: 4px 0; line-height: 1.65; }
.company-row small { color: var(--faint); font-size: 12.5px; }
.company-row .src { flex-shrink: 0; font-size: 12px; color: var(--faint); text-align: right; }

.company-focus-card {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(240px, 0.9fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-bottom-color: rgba(26, 82, 238, 0.1);
  background: #fff;
  box-shadow: var(--shadow-smooth);
}

.company-focus-card + .company-focus-card {
  margin-top: 12px;
}

.company-focus-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.company-focus-head > div {
  min-width: 0;
}

.company-focus-head h4 {
  margin: 5px 0 3px;
  font-size: 19px;
  line-height: 1.35;
}

.company-focus-head h4 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.company-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.company-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.company-pill.primary {
  border-color: rgba(26, 82, 238, 0.14);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
}

.company-pill.success {
  border-color: rgba(0, 180, 42, 0.16);
  background: var(--brand-success-soft);
  color: var(--brand-success-dark);
}

.company-pill.warning {
  border-color: rgba(255, 125, 0, 0.18);
  background: var(--brand-warning-soft);
  color: var(--brand-warning-dark);
}

.company-pill.danger {
  border-color: rgba(214, 69, 69, 0.18);
  background: var(--brand-danger-soft);
  color: var(--brand-danger);
}

.company-pill.neutral {
  border-color: var(--line);
  background: var(--surface);
  color: var(--muted);
}

.company-sector {
  color: var(--brand-primary-dark) !important;
  font-weight: 650;
}

.company-signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 11px 0 10px;
}

.company-signal-strip div {
  min-width: 0;
  min-height: 62px;
  padding: 9px 10px;
  border: 1px solid rgba(26, 82, 238, 0.13);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(247, 248, 250, 0.82), rgba(255, 255, 255, 0.96)),
    #fff;
}

.company-signal-strip dt {
  margin: 0 0 3px;
  color: var(--faint);
  font-size: 11.5px;
  font-weight: 650;
}

.company-signal-strip dd {
  margin: 0;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.company-product {
  display: block;
  margin-top: 4px;
  line-height: 1.6;
}

.company-focus-side {
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  padding: 13px;
}

.company-focus-side > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-navy);
  font-size: 13.5px;
}

.company-focus-side .company-hub-links {
  margin-top: 0;
}

.company-focus-side .company-hub-links a {
  flex: 1 1 100%;
  justify-content: flex-start;
  background: #fff;
}

.company-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 5px 0; }

.company-tags em {
  font-style: normal;
  font-size: 12px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  border-radius: var(--radius-sm);
  padding: 2px 7px;
}

.company-hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.company-hub-links a {
  max-width: 100%;
  padding: 3px 8px;
  border: 1px solid rgba(36, 91, 145, 0.16);
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.company-hub-links a:nth-last-child(-n + 5) {
  border-color: rgba(15, 118, 110, 0.16);
  background: var(--green-soft);
  color: var(--green-deep);
}

.company-hub-links a:hover {
  border-color: rgba(36, 91, 145, 0.34);
  background: #fff;
}

.company-fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 9px 0 8px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.company-fact-strip div {
  min-width: 0;
  min-height: 58px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.company-fact-strip dt {
  margin: 0 0 2px;
  color: var(--faint);
  font-size: 11.5px;
}

.company-fact-strip dd {
  margin: 0;
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}

.company-actions a,
.company-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-primary-dark);
  border-radius: var(--radius-sm);
  padding: 6px 11px;
  font-size: 12.5px;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease);
}

.company-actions a:hover,
.company-detail-button:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.company-actions a.primary {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}

.company-actions a.primary:hover {
  background: var(--brand-primary-dark);
  color: #fff;
}

.company-actions a.report-link {
  border-color: rgba(0, 180, 42, 0.2);
  background: var(--brand-success-soft);
  color: var(--brand-success-dark);
}

.company-detail {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 12px;
}

.company-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-detail-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 13px;
}

.company-detail-grid ul {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.workbench-mini-head {
  margin-bottom: 12px;
}

.workbench-field-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.bar-rows { display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: grid; grid-template-columns: 64px 1fr 56px; gap: 10px; align-items: center; font-size: 13px; }
.bar-row span { color: var(--muted); }
.bar-row strong { text-align: right; color: var(--green-dark); font-weight: 500; }
.bar-row div { background: var(--surface); border-radius: 4px; height: 10px; overflow: hidden; }
.bar-row i { display: block; height: 100%; background: var(--green); border-radius: 4px; }
.bar-row .bar-fill.w-1 { width: 10%; }
.bar-row .bar-fill.w-2 { width: 20%; }
.bar-row .bar-fill.w-3 { width: 30%; }
.bar-row .bar-fill.w-4 { width: 40%; }
.bar-row .bar-fill.w-5 { width: 50%; }
.bar-row .bar-fill.w-6 { width: 60%; }
.bar-row .bar-fill.w-7 { width: 70%; }
.bar-row .bar-fill.w-8 { width: 80%; }
.bar-row .bar-fill.w-9 { width: 90%; }
.bar-row .bar-fill.w-10 { width: 100%; }

.batch-rows { font-size: 13px; }
.batch-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr; gap: 8px; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.batch-row:last-child { border-bottom: none; }
.batch-row.head { color: var(--faint); font-size: 12px; }

.loading-note { color: var(--muted); font-size: 14px; padding: 24px; text-align: center; }

.workbench-empty-state {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 16px;
  align-items: center;
  min-height: 178px;
  padding: 22px;
  border: 1px dashed rgba(11, 111, 104, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 249, 247, 0.92), rgba(255, 255, 255, 0.96));
}

.workbench-empty-state span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 750;
}

.workbench-empty-state h3 {
  margin: 10px 0 8px;
  color: var(--brand-navy);
  font-size: 22px;
  line-height: 1.35;
}

.workbench-empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.workbench-empty-state nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.workbench-empty-state nav a,
.workbench-empty-state nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(36, 91, 145, 0.16);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--blue);
  padding: 7px 11px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.workbench-empty-state nav button {
  color: var(--brand-primary-dark);
}

.workbench-empty-state nav a:hover,
.workbench-empty-state nav button:hover {
  border-color: rgba(11, 111, 104, 0.28);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.skeleton-card,
.skeleton-detail-grid section {
  pointer-events: none;
  overflow: hidden;
}

.skeleton-card {
  min-height: 250px;
}

.skeleton-line,
.skeleton-fact-strip div,
.skeleton-actions span,
.skeleton-hub-links span,
.skeleton-detail-grid span,
.skeleton-detail-grid i {
  display: block;
  border-radius: var(--radius-sm);
  background: rgba(229, 232, 239, 0.72);
  animation: skeleton-pulse 1.25s ease-in-out infinite;
}

.skeleton-pill {
  width: 132px;
  height: 24px;
  margin-bottom: 10px;
}

.skeleton-title {
  width: min(440px, 72%);
  height: 28px;
  margin-bottom: 8px;
}

.skeleton-short {
  width: min(300px, 48%);
  height: 16px;
}

.skeleton-badge {
  width: 82px;
  height: 18px;
}

.skeleton-fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.skeleton-fact-strip div {
  min-width: 0;
  min-height: 54px;
  border: 0;
}

.skeleton-wide {
  width: 92%;
  height: 16px;
  margin-bottom: 10px;
}

.skeleton-medium {
  width: 66%;
  height: 16px;
}

.skeleton-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.skeleton-actions span {
  width: 92px;
  height: 36px;
}

.skeleton-side-title {
  width: 72px;
  height: 17px;
  margin-bottom: 12px;
}

.skeleton-hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.skeleton-hub-links span {
  width: 86px;
  height: 28px;
  border-radius: 999px;
}

.skeleton-detail-grid section {
  min-height: 132px;
}

.skeleton-detail-grid span {
  width: 88px;
  height: 18px;
  margin-bottom: 12px;
}

.skeleton-detail-grid i {
  width: 100%;
  height: 14px;
  margin-top: 9px;
}

.skeleton-detail-grid i:nth-child(4) {
  width: 68%;
}

@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.58; }
  50% { opacity: 1; }
}

/* ===== Assessment ===== */
body[data-evaluation-state="not_started"] .evaluation-post-start {
  display: none !important;
}

body[data-evaluation-state="draft"] #evaluationGuide,
body[data-evaluation-state="completed"] #evaluationGuide {
  display: none !important;
}

.assessment-command-hero {
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
  background:
    radial-gradient(circle at 86% 8%, rgba(31, 95, 168, 0.09), transparent 28%),
    radial-gradient(circle at 10% 12%, rgba(11, 111, 104, 0.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f4f8f6 100%);
}

.assessment-command-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.64fr);
  gap: 14px;
  align-items: stretch;
}

.assessment-command-copy,
.assessment-command-stats {
  min-width: 0;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-smooth);
}

.assessment-command-copy {
  min-height: 238px;
  padding: 24px;
}

.assessment-command-copy .kicker {
  margin: 0 0 9px;
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.assessment-command-copy h1 {
  max-width: 820px;
  color: var(--brand-navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.assessment-command-copy .lede {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}

.assessment-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.assessment-command-actions .button {
  min-height: 42px;
}

.assessment-command-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.assessment-command-stats article {
  min-width: 0;
  min-height: 119px;
  padding: 18px 16px;
  border-right: 1px solid rgba(9, 47, 43, 0.08);
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
}

.assessment-command-stats article:nth-child(2n) {
  border-right: 0;
}

.assessment-command-stats article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.assessment-command-stats span {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.assessment-command-stats strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--brand-navy);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.assessment-command-stats small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.assessment-quick-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.assessment-quick-path a {
  display: grid;
  min-width: 0;
  min-height: 94px;
  align-content: space-between;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
  will-change: transform, opacity;
}

.assessment-quick-path a:hover {
  border-color: rgba(26, 82, 238, 0.22);
  box-shadow: var(--shadow-hover-raise);
  transform: translate3d(0, -3px, 0);
}

.assessment-quick-path span {
  width: fit-content;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 11px;
  font-weight: 750;
}

.assessment-quick-path strong {
  color: var(--brand-navy);
  font-size: 15px;
  line-height: 1.35;
}

.assessment-quick-path small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.assessment-state-panel {
  margin: 0 0 32px;
  padding: 22px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(237, 243, 255, 0.78), rgba(255, 255, 255, 0.96) 42%),
    #fff;
  box-shadow: var(--shadow-smooth);
}

.evaluation-guide-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.evaluation-guide-head .kicker {
  margin-bottom: 4px;
}

.evaluation-guide-head h2 {
  color: var(--brand-navy);
  font-size: 24px;
}

.evaluation-guide-head > span {
  flex-shrink: 0;
  border: 1px solid rgba(26, 82, 238, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 650;
}

.evaluation-guide-head-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.evaluation-guide-head-actions > span {
  border: 1px solid rgba(26, 82, 238, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 650;
}

.evaluation-guide-head-actions .button {
  display: none;
}

.evaluation-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.evaluation-guide-main,
.evaluation-guide-side > article {
  border: 1px solid rgba(229, 232, 239, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-smooth);
}

.evaluation-guide-main {
  padding: 18px;
}

.evaluation-guide-side {
  display: grid;
  gap: 14px;
}

.evaluation-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.evaluation-flow article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-radius: var(--radius-sm);
  background: var(--brand-bg-light);
}

.evaluation-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 700;
}

.evaluation-flow strong {
  display: block;
  color: var(--brand-navy);
  font-size: 15px;
}

.evaluation-flow small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.material-prep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.material-prep-grid article {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.material-prep-grid span {
  display: block;
  color: var(--brand-primary-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
}

.material-prep-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.evaluation-start-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.evaluation-start-row span {
  color: var(--muted);
  font-size: 13px;
}

.draft-entry-card,
.report-preview-card {
  padding: 16px;
}

.draft-entry-card {
  display: grid;
  gap: 12px;
}

.draft-entry-card span,
.report-preview-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 3px;
}

.draft-entry-card strong {
  display: block;
  color: var(--brand-navy);
  font-size: 18px;
}

.draft-entry-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.report-preview-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.assessment-main-column {
  display: flex;
  flex-direction: column;
}

.evaluation-form-section {
  order: -10;
}

.assessment-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.assessment-lane {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.assessment-lane:hover {
  border-color: rgba(26, 82, 238, 0.22);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-4px);
}

.assessment-lane span {
  align-self: flex-start;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
}

.assessment-lane strong {
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.45;
}

.assessment-lane small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.assessment-lane.primary {
  border-color: rgba(26, 82, 238, 0.2);
  background: linear-gradient(145deg, #f7faff 0%, #ffffff 72%);
}

.assessment-lane:nth-child(2) span { background: var(--brand-success-soft); color: var(--brand-success-dark); }
.assessment-lane:nth-child(3) span { background: var(--amber-soft); color: var(--amber); }
.assessment-lane:nth-child(4) span { background: var(--red-soft); color: var(--red); }

.result-panel {
  margin-top: 16px;
  border-color: rgba(15, 118, 110, 0.24);
}

.result-eyebrow {
  font-size: 12px;
  color: var(--green);
  margin: 0 0 2px;
}

.result-panel h3 {
  font-size: 20px;
  color: var(--green-dark);
}

.result-panel > p:not(.result-eyebrow):not(.fine-print) {
  color: var(--muted);
  margin: 6px 0 0;
}

.score-meter { margin: 8px 0 16px; }
.score-meter span { font-size: 13px; color: var(--muted); }
.score-meter strong { display: block; font-size: 30px; color: var(--green-dark); }
.score-meter div { background: var(--surface); height: 10px; border-radius: 5px; overflow: hidden; margin-top: 6px; }
.score-meter i { display: block; height: 100%; width: var(--score, 0%); background: var(--green); border-radius: 5px; }

.score-rule-table {
  margin-bottom: 14px;
}

.assessment-result-hero {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 16px 0;
  padding: 18px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 94% 0%, rgba(31, 95, 168, 0.11), transparent 26%),
    linear-gradient(135deg, #f7faff 0%, #fff 72%);
}

.assessment-result-hero.ready {
  border-color: rgba(0, 180, 42, 0.18);
  background:
    radial-gradient(circle at 94% 0%, rgba(0, 180, 42, 0.1), transparent 26%),
    linear-gradient(135deg, #f4fbf6 0%, #fff 72%);
}

.assessment-result-hero.watch {
  border-color: rgba(255, 125, 0, 0.18);
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 125, 0, 0.1), transparent 26%),
    linear-gradient(135deg, #fff8ed 0%, #fff 72%);
}

.assessment-result-hero.risk {
  border-color: rgba(214, 69, 69, 0.2);
  background:
    radial-gradient(circle at 94% 0%, rgba(214, 69, 69, 0.1), transparent 26%),
    linear-gradient(135deg, #fff5f5 0%, #fff 72%);
}

.assessment-result-copy {
  min-width: 0;
}

.assessment-result-copy > span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 750;
}

.assessment-result-copy strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--brand-navy);
  font-size: 22px;
  line-height: 1.3;
}

.assessment-result-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.assessment-result-copy nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.assessment-result-copy nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(26, 82, 238, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 700;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.assessment-result-copy nav a:hover {
  border-color: rgba(26, 82, 238, 0.32);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.diagnosis-dashboard {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7faff 0%, #fff 72%);
}

.score-ring {
  position: relative;
  width: 150px;
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 36%, #fff 0%, #fff 48%, transparent 49%),
    linear-gradient(145deg, rgba(237, 243, 255, 0.92), rgba(237, 249, 242, 0.9));
}

.score-ring div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.score-ring span {
  color: var(--muted);
  font-size: 12px;
}

.score-ring strong {
  color: var(--brand-navy);
  font-size: 28px;
  line-height: 1.15;
}

.score-progress {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #e5eeeb;
  appearance: none;
}

.score-progress-large {
  height: 10px;
}

.score-progress::-webkit-progress-bar {
  border-radius: 999px;
  background: #e5eeeb;
}

.score-progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary), var(--green));
}

.score-progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary), var(--green));
}

.diagnosis-summary strong {
  display: block;
  color: var(--brand-navy);
  font-size: 19px;
}

.diagnosis-summary p {
  margin: 6px 0 0;
  color: var(--muted);
}

.diagnosis-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.diagnosis-kpi-grid article {
  min-width: 0;
  min-height: 84px;
  padding: 12px;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 33, 31, 0.03);
}

.diagnosis-kpi-grid span {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.diagnosis-kpi-grid strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 6px;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 15px;
  line-height: 1.35;
}

.result-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.result-path-grid a {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #ffffff 0%, #f7faff 100%);
  color: var(--ink);
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
  will-change: transform, opacity;
}

.result-path-grid a:hover {
  border-color: rgba(26, 82, 238, 0.24);
  box-shadow: var(--shadow-hover-raise);
  transform: translate3d(0, -3px, 0);
}

.result-path-grid span {
  width: fit-content;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 750;
}

.result-path-grid strong {
  color: var(--brand-navy);
  font-size: 15px;
  line-height: 1.35;
}

.result-path-grid small {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.gap-card-list {
  margin-top: 16px;
}

.gap-card-list > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-navy);
  font-size: 14px;
}

.gap-card-list > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gap-card {
  min-width: 0;
  border: 1px solid rgba(214, 69, 69, 0.16);
  border-radius: var(--radius-sm);
  background: var(--brand-danger-soft);
  padding: 10px 12px;
}

.gap-card strong {
  display: block;
  color: var(--brand-danger);
  font-size: 14px;
}

.gap-card span {
  display: inline-flex;
  margin: 4px 0;
  color: var(--brand-danger);
  font-weight: 700;
}

.gap-card p {
  margin: 0;
  color: #7a2d2d;
  font-size: 12.5px;
  line-height: 1.55;
}

.gap-card.ok {
  border-color: rgba(0, 180, 42, 0.16);
  background: var(--brand-success-soft);
}

.gap-card.ok strong,
.gap-card.ok span {
  color: var(--brand-success-dark);
}

.gap-card.ok p {
  color: #2f6f3b;
}

.weak-list strong { font-size: 14px; color: var(--green-dark); }
.weak-list ul { margin: 6px 0 0; padding-left: 18px; font-size: 13.5px; color: var(--muted); }

.group-score-list,
.next-step-list {
  margin-top: 16px;
}

.group-score-list > strong,
.next-step-list > strong {
  display: block;
  font-size: 14px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.group-score-list > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.group-score-list article {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.group-score-list article span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
}

.group-score-list article strong {
  display: block;
  margin: 1px 0 7px;
  color: var(--green-dark);
  font-size: 15px;
}

.next-step-list > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.next-step-list a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.next-step-list a strong {
  display: block;
  color: var(--green-deep);
  font-size: 13.5px;
  margin-bottom: 3px;
}

.next-step-list a span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.material-path-list a {
  border-color: rgba(15, 118, 110, 0.2);
  background: linear-gradient(145deg, #ffffff 0%, #f5fbf9 100%);
}

.material-path-list a:first-child {
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.08);
}

.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.risk-list {
  margin-top: 12px;
  background: var(--red-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13.5px;
}
.risk-list strong { color: var(--red); display: block; }
.risk-list span { color: var(--red); opacity: 0.85; }

.fine-print { font-size: 12.5px; color: var(--faint); }

.step-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }

.step-row article {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
}

.step-row article span { display: block; font-size: 12px; color: var(--green); margin-bottom: 2px; }
.step-row article h3 { font-size: 14px; font-weight: 500; color: var(--green-dark); }

.checklist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }

.checklist-grid article { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.checklist-grid article span { font-size: 12px; color: var(--green); }
.checklist-grid article h3 { font-size: 15px; margin: 2px 0 8px; color: var(--green-dark); }
.checklist-grid article ul { margin: 0; padding-left: 18px; font-size: 13.5px; color: var(--muted); }
.checklist-grid article li { margin-bottom: 4px; }

.score-rule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.score-rule-grid article {
  min-height: 148px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.score-rule-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 600;
}

.score-rule-grid article:nth-child(2) span { background: var(--blue-soft); color: var(--blue); }
.score-rule-grid article:nth-child(5) span { background: var(--amber-soft); color: var(--amber); }

.score-rule-grid article h3 {
  font-size: 15px;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.score-rule-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.advanced-matrix {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(36, 91, 145, 0.16);
  border-radius: var(--radius);
  background: #f7fafb;
}

.advanced-matrix .kicker {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 12px;
}

.advanced-matrix h3 {
  color: var(--green-dark);
  font-size: 18px;
}

.advanced-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.advanced-items article {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.advanced-items strong {
  display: block;
  color: var(--green-dark);
  font-size: 13.5px;
  margin-bottom: 3px;
}

.advanced-items span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.sidebar-title {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.weight-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.weight-stack span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.weight-stack strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--green-deep);
  font-size: 13px;
}

/* ===== Policy workspace ===== */
.policy-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.policy-card:hover {
  border-color: rgba(26, 82, 238, 0.22);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-4px);
}

.policy-card .policy-level,
.policy-level {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  width: fit-content;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.policy-card .policy-level.provincial,
.policy-level.provincial {
  background: var(--brand-success-soft);
  color: var(--brand-success-dark);
}

.policy-card h3 {
  grid-column: 1 / -1;
  color: var(--brand-text-main);
  font-size: 16px;
  line-height: 1.45;
  transition: color 0.24s var(--ease);
}

.policy-card:hover h3,
.policy-card h3 a:hover { color: var(--brand-primary); }

.policy-card .meta {
  grid-column: 1 / -1;
  color: var(--brand-text-muted);
  font-size: 13px;
}

.policy-card p {
  grid-column: 1 / -1;
  display: -webkit-box;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.72;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.policy-card .policy-action {
  justify-self: end;
  align-self: end;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(26, 82, 238, 0.24);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 12.5px;
  font-weight: 600;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.policy-card .policy-action:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.policy-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.policy-quick-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.policy-quick-path a {
  min-width: 0;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.policy-quick-path a:hover {
  border-color: rgba(11, 111, 104, 0.28);
  background: #fff;
  transform: translateY(-1px);
}

.policy-quick-path span {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.policy-quick-path strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-navy);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.policy-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.policy-action-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 111, 104, 0.065), rgba(26, 82, 238, 0.035)),
    #fff;
  box-shadow: var(--shadow-smooth);
}

.policy-action-grid span {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 800;
}

.policy-action-grid strong {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.35;
}

.policy-action-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.68;
}

.policy-action-grid a {
  align-self: end;
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(26, 82, 238, 0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.policy-action-grid a:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
}

.regional-table-wrap {
  margin-bottom: 16px;
}

.policy-side-title {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.35;
}

.policy-sidebar-card {
  padding: 16px;
}

.policy-nav-stack {
  gap: 9px;
}

.policy-nav-stack a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3px 10px;
  padding: 11px 12px;
}

.policy-nav-stack a::after {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.policy-nav-stack strong {
  min-width: 0;
  color: var(--green-dark);
  font-size: 13.5px;
  line-height: 1.35;
}

.policy-nav-stack span {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.policy-platform-link {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.policy-hub-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 142px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.policy-hub-card:hover {
  border-color: rgba(26, 82, 238, 0.24);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-4px);
}

.policy-hub-card span {
  align-self: flex-start;
  min-width: 42px;
  padding: 2px 9px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  text-align: center;
}

.policy-hub-card.primary span {
  background: var(--brand-primary);
  color: #fff;
}

.policy-hub-card strong {
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.45;
  min-width: 0;
  overflow-wrap: anywhere;
}

.policy-hub-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  min-width: 0;
  overflow-wrap: anywhere;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.material-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.material-grid article:hover {
  border-color: rgba(26, 82, 238, 0.2);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-4px);
}

.material-grid article span {
  display: inline-flex;
  min-width: 34px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--brand-success-soft);
  color: var(--brand-success-dark);
  font-size: 12px;
  margin-bottom: 8px;
}

.material-grid h3 {
  font-size: 15px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.material-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.material-grid li { margin-bottom: 3px; }

.policy-file-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-file-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 95, 168, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 95, 168, 0.055), rgba(11, 111, 104, 0.045)),
    #fff;
  box-shadow: var(--shadow-smooth);
}

.policy-file-status span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
}

.policy-file-status strong {
  min-width: 0;
  color: var(--brand-navy);
  font-size: 14px;
  line-height: 1.5;
}

.policy-file-status a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(31, 95, 168, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 750;
}

.policy-file-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.policy-file-list article:hover {
  border-color: rgba(26, 82, 238, 0.22);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-4px);
}

.policy-file-list h3 {
  font-size: 14.5px;
  color: var(--green-dark);
  line-height: 1.45;
  margin-bottom: 4px;
}

.policy-file-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.policy-file-list .file-action {
  border: 1px solid rgba(26, 82, 238, 0.24);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  color: var(--brand-primary-dark);
  font-size: 12.5px;
  white-space: nowrap;
  background: #fff;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease);
}

.policy-file-list .file-action:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.policy-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.policy-download-grid article {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  min-height: 154px;
  padding: 16px;
}

.policy-download-grid .file-action {
  grid-column: 2;
  justify-self: start;
  margin-top: 2px;
}

.policy-file-meta {
  display: block;
  margin: -1px 0 6px;
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

/* ===== Case cards ===== */
.case-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.case-overview article {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 111, 104, 0.055), rgba(26, 82, 238, 0.035)),
    #fff;
  box-shadow: var(--shadow-smooth);
}

.case-overview span {
  color: var(--muted);
  font-size: 12px;
}

.case-overview strong {
  color: var(--green-dark);
  font-size: 21px;
  line-height: 1.15;
}

.case-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.case-filter button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 5px 16px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease);
}

.case-filter button span {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(11, 111, 104, 0.08);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}

.case-filter button:hover { border-color: rgba(26, 82, 238, 0.28); background: var(--brand-primary-soft); color: var(--brand-primary-dark); transform: translateY(-1px); }
.case-filter button.is-active { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }
.case-filter button.is-active span { background: rgba(255, 255, 255, 0.2); color: #fff; }

/* ===== Reports research library ===== */
.report-command-hero {
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
  background:
    radial-gradient(circle at 84% 8%, rgba(31, 95, 168, 0.1), transparent 27%),
    radial-gradient(circle at 12% 12%, rgba(11, 111, 104, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f9f7 100%);
}

.report-command-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.74fr);
  gap: 14px;
  align-items: stretch;
}

.report-command-copy,
.report-command-panel {
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-smooth);
}

.report-command-copy {
  min-height: 236px;
  padding: 24px;
}

.report-command-copy .kicker {
  margin: 0 0 9px;
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.report-command-copy h1 {
  max-width: 760px;
  color: var(--brand-navy);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.report-command-copy .lede {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}

.report-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.report-command-actions .button {
  min-height: 42px;
}

.report-command-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.report-command-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-command-stats article {
  min-width: 0;
  min-height: 104px;
  padding: 18px 16px;
  border-right: 1px solid rgba(9, 47, 43, 0.08);
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
}

.report-command-stats article:nth-child(2n) {
  border-right: 0;
}

.report-command-stats article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.report-command-stats span {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.report-command-stats strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--brand-navy);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: 0;
}

.report-command-stats small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.report-command-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(9, 47, 43, 0.08);
  background: rgba(245, 248, 247, 0.7);
}

.report-command-links a {
  min-width: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(11, 111, 104, 0.16);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--brand-primary-dark);
  font-size: 12.5px;
  font-weight: 650;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.report-command-links a:hover {
  border-color: rgba(11, 111, 104, 0.36);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.report-mobile-rail {
  display: none;
}

.reports-workspace {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 18px;
}

.report-topic-grid .case-card {
  min-height: 202px;
}

.report-topic-grid .case-card h3 {
  font-size: 16px;
  line-height: 1.48;
}

.report-search-section .news-filters {
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-smooth);
}

.report-presets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.report-presets span {
  color: var(--faint);
  font-size: 12.5px;
  font-weight: 700;
}

.report-presets button {
  min-height: 34px;
  border: 1px solid rgba(31, 95, 168, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.report-presets button:hover {
  border-color: rgba(31, 95, 168, 0.32);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.report-list-surface {
  border-color: rgba(9, 47, 43, 0.1);
  background: #fff;
  box-shadow: none;
}

.report-query-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin: 0 0 14px;
  padding: 9px 12px;
  border: 1px solid rgba(31, 95, 168, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.96), rgba(255, 255, 255, 0.96));
  color: var(--muted);
  font-size: 13px;
}

.report-query-status span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-query-status button {
  min-width: 86px;
  min-height: 32px;
  border: 1px solid rgba(31, 95, 168, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.report-query-status button:hover {
  border-color: rgba(31, 95, 168, 0.36);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.report-skeleton-card .skeleton-chip {
  width: 76px;
  height: 24px;
  border-radius: 999px;
}

.report-skeleton-card .skeleton-date {
  width: 88px;
  height: 20px;
  border-radius: 999px;
}

.report-skeleton-card .skeleton-title {
  width: 88%;
  height: 48px;
}

.report-skeleton-card .skeleton-paragraph {
  width: 100%;
  height: 72px;
}

.report-empty-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.report-empty-copy,
.report-empty-links {
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: var(--brand-bg-light);
  padding: 16px;
}

.report-empty-copy h3 {
  color: var(--brand-navy);
  font-size: 18px;
  margin-bottom: 8px;
}

.report-empty-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.report-empty-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: #fff;
}

.report-empty-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid rgba(11, 111, 104, 0.16);
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12.5px;
  font-weight: 650;
}

/* ===== Topic hub and detail pages ===== */
.topic-hub-hero,
.topic-detail-hero {
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
  background:
    radial-gradient(circle at 86% 10%, rgba(31, 95, 168, 0.1), transparent 28%),
    radial-gradient(circle at 12% 8%, rgba(11, 111, 104, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f9f7 100%);
}

.topic-hub-layout,
.topic-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.68fr);
  gap: 14px;
  align-items: stretch;
}

.topic-hub-copy,
.topic-detail-copy,
.topic-hub-stats,
.topic-detail-stats {
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-smooth);
}

.topic-hub-copy,
.topic-detail-copy {
  min-height: 232px;
  padding: 24px;
}

.topic-hub-copy .kicker,
.topic-detail-copy .kicker {
  margin: 0 0 9px;
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.topic-hub-copy h1,
.topic-detail-copy h1 {
  max-width: 780px;
  color: var(--brand-navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.topic-hub-copy .lede,
.topic-detail-copy .lede {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}

.topic-hub-actions,
.topic-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.topic-hub-actions .button,
.topic-detail-actions .button {
  min-height: 42px;
}

.topic-hub-stats,
.topic-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.topic-hub-stats article,
.topic-detail-stats article {
  min-width: 0;
  min-height: 116px;
  padding: 18px 16px;
  border-right: 1px solid rgba(9, 47, 43, 0.08);
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
}

.topic-hub-stats article:nth-child(2n),
.topic-detail-stats article:nth-child(2n) {
  border-right: 0;
}

.topic-hub-stats article:nth-last-child(-n + 2),
.topic-detail-stats article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.topic-hub-stats span,
.topic-detail-stats span {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.topic-hub-stats strong,
.topic-detail-stats strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--brand-navy);
  font-size: clamp(24px, 2.3vw, 31px);
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.topic-detail-stats strong {
  font-size: clamp(20px, 2vw, 28px);
}

.topic-hub-stats small,
.topic-detail-stats small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.topic-detail-hero .fine-print,
.topic-hub-hero .fine-print {
  margin-bottom: 8px;
}

.topic-path-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.topic-path-strip a {
  display: grid;
  min-width: 0;
  gap: 6px;
  min-height: 112px;
  padding: 13px;
  border: 1px solid rgba(31, 95, 168, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.topic-path-strip a:hover {
  border-color: rgba(31, 95, 168, 0.28);
  background: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-2px);
}

.topic-path-strip span {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 800;
}

.topic-path-strip strong {
  color: var(--brand-navy);
  font-size: 15px;
  line-height: 1.35;
}

.topic-path-strip small {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.case-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }

.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.case-card:hover {
  border-color: rgba(26, 82, 238, 0.22);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-4px);
}
.case-card .case-meta { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--brand-primary); margin: 0 0 6px; }
.case-card .case-meta time { color: var(--faint); }
.case-card h3 { font-size: 15px; color: var(--green-dark); margin-bottom: 10px; font-weight: 600; transition: color 0.24s var(--ease); }
.case-card:hover h3,
.case-card h3 a:hover { color: var(--brand-primary); }
.case-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}
.case-card .case-links { display: flex; gap: 8px; font-size: 13px; flex-wrap: wrap; }

.case-links-spaced {
  margin-top: 10px;
}

.case-card .case-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border: 1px solid rgba(26, 82, 238, 0.2);
  border-radius: var(--radius-sm);
  color: var(--brand-primary-dark);
  background: #fff;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}
.case-card .case-links a:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.report-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  min-height: 248px;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.report-list-offset {
  margin-top: 8px;
}

.report-filter-card {
  margin-top: 12px;
}

.report-topic-grid {
  margin-top: 14px;
}

.topic-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 222px;
  border-color: rgba(26, 82, 238, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.92)),
    #fff;
}

.topic-card .topic-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.topic-card .topic-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 750;
}

.topic-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.48;
}

.topic-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.topic-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.topic-card-stats span {
  display: grid;
  min-width: 0;
  gap: 2px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 8px 9px;
}

.topic-card-stats strong {
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.1;
}

.topic-card-stats small {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
}

.topic-card-actions {
  align-self: end;
  margin-top: 2px;
}

.topic-card-actions a {
  min-height: 44px;
  padding-block: 9px;
}

.report-card:hover {
  border-color: rgba(26, 82, 238, 0.22);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-4px);
}

.report-card .case-meta {
  align-items: center;
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
}

.report-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 26px;
  color: var(--brand-primary);
  font-size: 12.5px;
  font-weight: 700;
}

.report-card-top time {
  margin-left: auto;
  color: var(--faint);
  font-weight: 600;
}

.report-source-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid rgba(0, 132, 117, 0.18);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(0, 132, 117, 0.07);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.report-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.report-card h3 a,
.report-card .report-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.report-card h3 a { -webkit-line-clamp: 2; }

.report-company-identity {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #f8fbfa 0%, #fff 100%);
  padding: 10px 11px;
}

.report-company-identity > a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--green-dark);
  font-size: 13.5px;
  font-weight: 760;
  line-height: 1.45;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report-company-identity div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.report-company-identity div a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  max-width: 100%;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand-primary-dark);
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.report-company-identity div a:hover {
  border-color: rgba(26, 82, 238, 0.28);
  background: var(--brand-primary-soft);
}

.report-card .report-summary {
  -webkit-line-clamp: 3;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.report-card .report-company-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: auto 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.45;
}

.report-card .report-company-line span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-card .report-company-line span:first-child { flex: 1 1 auto; }
.report-card .report-company-line span:last-child { flex: 0 0 auto; color: var(--green); }
.report-card .report-tags { margin-top: 0; min-height: 26px; }

.report-card .case-links {
  margin-top: 0;
  gap: 8px;
}

.report-card .case-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 3px 11px;
  border: 1px solid rgba(26, 82, 238, 0.22);
  border-radius: var(--radius-sm);
  color: var(--brand-primary-dark);
  background: #fff;
}

.report-card .case-links a:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
}

.report-reference-card {
  padding: 16px;
}

.report-breadcrumb {
  margin-bottom: 8px;
}

.report-hero-summary {
  max-width: 860px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.report-detail-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.report-detail-signals article {
  min-width: 0;
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid rgba(20, 105, 96, 0.12);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 249, 0.92)),
    var(--card);
  box-shadow: var(--shadow-soft);
}

.report-detail-signals span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.report-detail-signals strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report-horizontal {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(20, 105, 96, 0.12);
  border-radius: var(--radius-md);
  border-color: rgba(20, 105, 96, 0.12);
  background:
    linear-gradient(180deg, rgba(247, 251, 249, 0.92), rgba(255, 255, 255, 0.98)),
    #fff;
}

.report-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.report-horizontal-grid article,
.report-chain-board article,
.report-peer-board article {
  min-width: 0;
  border: 1px solid rgba(20, 105, 96, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.report-horizontal-grid article {
  min-height: 82px;
  padding: 12px 13px;
}

.report-horizontal-grid span,
.report-chain-board span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.report-horizontal-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.2;
}

.report-horizontal-grid small {
  display: block;
  margin-top: 5px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.35;
}

.report-horizontal-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.report-horizontal-notes p {
  margin: 0;
  padding: 12px 13px;
  border-radius: var(--radius-md);
  background: rgba(238, 247, 244, 0.72);
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
}

.report-horizontal-subtitle {
  margin: 16px 0 8px;
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.35;
}

.report-chain-board,
.report-peer-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.report-chain-board article,
.report-peer-board article {
  padding: 13px;
}

.report-chain-board strong,
.report-peer-board h3 {
  display: block;
  margin: 5px 0 8px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.45;
}

.report-chain-board p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.related-company-list.compact {
  gap: 6px;
}

.related-company-list.compact a {
  padding: 8px 9px;
  border-color: rgba(20, 105, 96, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.related-company-list.compact strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12.5px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-company-list.compact span,
.related-company-list.compact .empty-note {
  font-size: 11.5px;
  line-height: 1.45;
}

.report-mobile-actions {
  display: none;
}

.report-detail-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.report-detail-path a {
  display: flex;
  min-width: 0;
  min-height: 94px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 12px 13px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.9)),
    #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
  will-change: transform, opacity;
}

.report-detail-path a:hover {
  border-color: rgba(26, 82, 238, 0.3);
  background: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-3px);
}

.report-detail-path span {
  width: fit-content;
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
}

.report-detail-path strong {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.36;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report-detail-path small {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report-detail-path .company,
.report-detail-path .region {
  border-color: rgba(20, 105, 96, 0.14);
}

.report-detail-path .company span,
.report-detail-path .region span {
  background: rgba(0, 180, 42, 0.1);
  color: var(--green-dark);
}

.report-detail-path .policy {
  border-color: rgba(255, 125, 0, 0.16);
}

.report-detail-path .policy span {
  background: rgba(255, 125, 0, 0.1);
  color: var(--orange);
}

.report-cover-spaced,
.report-review-note {
  margin-bottom: 14px;
}

.report-hub-links {
  margin-bottom: 10px;
}

.report-hub-links .fine-print {
  margin: 0;
  line-height: 1.8;
}

.report-disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

#reportFullText,
#reportSources {
  scroll-margin-top: 88px;
}

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

.report-reference-head h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 15px;
}

.report-reference-head span {
  flex: 0 0 auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.report-reference-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.report-reference-list li {
  margin: 0;
  min-width: 0;
}

.report-reference-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.report-reference-list a:hover {
  border-color: rgba(11, 111, 104, 0.35);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.report-reference-list a span {
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--brand-secondary-soft);
  color: var(--brand-secondary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.report-reference-list a strong {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  color: var(--green-dark);
  font-size: 12.8px;
  font-weight: 600;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report-reference-empty {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 0;
}

/* ===== Region map ===== */
.region-map-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 16px; }

.amap-region-map {
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-fallback { text-align: center; color: var(--muted); font-size: 13.5px; padding: 24px; max-width: 320px; }
.map-fallback strong { display: block; color: var(--green-dark); margin-bottom: 4px; }
.amap-region-map.has-amap .map-fallback { display: none; }
.amap-region-map.has-amap .static-region-map { display: none; }

.amap-live-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.amap-region-map.has-amap .amap-live-layer {
  opacity: 1;
  pointer-events: auto;
}

.region-cards { display: flex; flex-direction: column; gap: 10px; }

.region-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.region-cards article.is-active, .region-cards article:hover { border-color: var(--green); }
.region-cards span { font-size: 13.5px; color: var(--muted); }
.region-cards strong { font-size: 17px; color: var(--green-dark); }
.region-cards small { display: block; margin-top: 2px; color: var(--faint); font-size: 12px; }
.region-cards .links { display: flex; gap: 10px; font-size: 12.5px; }
.region-cards .links a { color: var(--green); }

.static-region-map {
  width: 100%;
  padding: 18px;
}

.static-region-board {
  position: relative;
  min-height: 300px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7fbf8, #eef5f1);
  overflow: hidden;
}

.static-region-board svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.static-region-point {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 1px solid var(--region-color, var(--green));
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
  border-radius: 8px;
  padding: 5px 9px;
  min-width: 76px;
  box-shadow: 0 8px 22px rgba(15, 58, 46, 0.12);
  cursor: pointer;
  text-align: center;
}

.static-region-point span,
.static-region-point strong {
  display: block;
  line-height: 1.2;
}

.static-region-point span { font-size: 12px; color: var(--muted); }
.static-region-point strong { font-size: 13px; color: var(--region-color, var(--green)); }
.static-region-point.is-active { background: var(--region-color, var(--green)); }
.static-region-point.is-active span,
.static-region-point.is-active strong { color: #fff; }

.static-region-detail {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}

.static-region-detail p { margin: 0 0 4px; color: var(--faint); font-size: 12.5px; }
.static-region-detail strong { display: block; color: var(--green-dark); font-size: 22px; margin-bottom: 4px; }
.static-region-detail span { display: block; color: var(--muted); font-size: 13px; line-height: 1.6; }

.amap-region-label {
  background: #fff;
  border: 1px solid var(--region-color, var(--green));
  border-radius: 8px;
  padding: 4px 10px;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(10, 40, 30, 0.12);
}
.amap-region-label span { display: block; color: var(--muted); }
.amap-region-label strong { display: block; color: var(--region-color, var(--green)); font-size: 13px; }
.amap-region-label em { display: none; }

.amap-region-popup { font-size: 13px; max-width: 260px; }
.amap-region-popup .popup-kicker { color: var(--faint); margin: 0; font-size: 12px; }
.amap-region-popup h3 { font-size: 14px; margin: 2px 0; }
.amap-region-popup strong { color: var(--green); font-size: 16px; }
.amap-region-popup p { margin: 4px 0; color: var(--muted); }
.region-popup-tags { display: flex; flex-wrap: wrap; gap: 4px; margin: 6px 0; }
.region-popup-tags span { background: var(--green-soft); color: var(--green-deep); border-radius: 4px; padding: 1px 6px; font-size: 11.5px; }
.region-popup-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.region-popup-link { color: var(--green); font-size: 12.5px; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  margin-top: 48px;
  padding: 28px 0 36px;
  font-size: 13px;
  color: var(--muted);
}

.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr); gap: 32px; }

.site-footer h4 { font-size: 14px; color: var(--green-dark); margin-bottom: 8px; }
.site-footer p { margin: 0 0 8px; }

.friend-links { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.friend-links a { color: var(--muted); font-size: 12.5px; }
.friend-links a:hover { color: var(--green); }

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 10px;
}

.footer-meta-links a {
  color: var(--green-deep);
  font-size: 12.5px;
}

.company-page-hero .tag-row { margin-top: 12px; }

/* ===== Company detail pages ===== */
.company-detail-hero {
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
  background:
    radial-gradient(circle at 88% 8%, rgba(31, 95, 168, 0.09), transparent 28%),
    radial-gradient(circle at 10% 12%, rgba(11, 111, 104, 0.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f4f8f6 100%);
}

.company-detail-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.64fr);
  gap: 14px;
  align-items: stretch;
}

.company-detail-identity,
.company-detail-stats {
  min-width: 0;
  border: 1px solid rgba(9, 47, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-smooth);
}

.company-detail-identity {
  min-height: 238px;
  padding: 24px;
}

.company-detail-identity .kicker {
  margin: 0 0 9px;
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.company-detail-identity h1 {
  max-width: 820px;
  color: var(--brand-navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.company-detail-identity .lede {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}

.company-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.company-detail-actions .button {
  min-height: 42px;
}

.company-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.company-detail-stats article {
  min-width: 0;
  min-height: 119px;
  padding: 18px 16px;
  border-right: 1px solid rgba(9, 47, 43, 0.08);
  border-bottom: 1px solid rgba(9, 47, 43, 0.08);
}

.company-detail-stats article:nth-child(2n) {
  border-right: 0;
}

.company-detail-stats article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.company-detail-stats span {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.company-detail-stats strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--brand-navy);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.company-detail-stats small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.company-path-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.company-detail-hero .company-path-overview {
  margin: 14px 0 0;
}

.company-detail-hero .company-path-overview a {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.88)),
    #fff;
}

.company-path-overview a {
  display: flex;
  min-width: 0;
  min-height: 74px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.9)),
    #fff;
  box-shadow: var(--shadow-smooth);
  padding: 12px 13px;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease), background 0.24s var(--ease);
  will-change: transform, opacity;
}

.company-path-overview a:hover {
  border-color: rgba(26, 82, 238, 0.28);
  background: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-3px);
}

.company-path-overview span {
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.company-path-overview strong {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.38;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.company-path-overview .report {
  border-color: rgba(0, 180, 42, 0.18);
  background: linear-gradient(145deg, rgba(237, 249, 242, 0.88), #fff);
}

.company-path-overview .report strong {
  color: var(--green-dark);
}

.company-path-overview .score {
  border-color: rgba(255, 125, 0, 0.18);
  background: linear-gradient(145deg, rgba(255, 247, 232, 0.9), #fff);
}

.company-path-overview .en {
  border-color: rgba(26, 82, 238, 0.18);
  background: linear-gradient(145deg, rgba(237, 243, 255, 0.9), #fff);
}

.company-archive-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.company-archive-dashboard article {
  min-width: 0;
  min-height: 112px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.92)),
    #fff;
  box-shadow: var(--shadow-smooth);
  padding: 14px;
}

.company-archive-dashboard span {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.company-archive-dashboard strong {
  display: -webkit-box;
  margin: 7px 0 4px;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.35;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.company-archive-dashboard small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.company-archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.company-archive-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(26, 82, 238, 0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 700;
}

.company-archive-links a:hover {
  border-color: rgba(26, 82, 238, 0.34);
  background: var(--brand-primary-soft);
}

.company-decision-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-decision-hub article {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #fff 0%, #f8fbfa 100%);
  padding: 14px;
}

.company-decision-hub h3 {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 16px;
}

.company-decision-hub p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.company-decision-hub div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.company-decision-hub a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--green-deep);
  font-size: 12.5px;
  line-height: 1.35;
}

.company-decision-hub a:hover {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.08);
}

.company-profile-list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
}

.company-profile-list div {
  background: #fff;
  padding: 12px 14px;
}

.company-profile-list div:last-child { grid-column: 1 / -1; }
.company-profile-list dt { color: var(--faint); font-size: 12px; margin: 0 0 3px; }
.company-profile-list dd { color: var(--ink); font-size: 14px; margin: 0; overflow-wrap: anywhere; }

.company-portrait-card {
  border-color: rgba(26, 82, 238, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.company-portrait-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.company-portrait-item {
  min-width: 0;
  border: 1px solid rgba(26, 82, 238, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
}

.company-portrait-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-navy);
  font-size: 15px;
}

.company-portrait-item div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.company-portrait-item span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.company-portrait-item em {
  flex: 0 0 auto;
  font-style: normal;
  color: var(--faint);
}

.company-portrait-item.blue { background: #f3f7ff; border-color: rgba(26, 82, 238, 0.12); }
.company-portrait-item.amber { background: #fff8ed; border-color: rgba(255, 125, 0, 0.14); }
.company-portrait-item.green { background: #f2fbf5; border-color: rgba(0, 180, 42, 0.14); }
.company-portrait-item.gray { background: #f8fafc; border-color: rgba(134, 144, 156, 0.18); }

.portrait-profile-list {
  margin-top: 12px;
}

.company-long-text {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fbfcfa;
}

.company-long-text strong {
  display: block;
  color: var(--green-dark);
  font-size: 13px;
  margin-bottom: 6px;
}

.company-long-text p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.company-chain-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.company-chain-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.company-chain-list div,
.company-chain-list strong,
.company-chain-list span,
.company-chain-list em {
  display: block;
}

.company-chain-list strong { color: var(--green-dark); font-size: 13.5px; }
.company-chain-list span { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.company-chain-list em {
  font-style: normal;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  line-height: 1.7;
  white-space: nowrap;
}

.related-company-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-company-list a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.related-company-list strong {
  display: block;
  color: var(--green-dark);
  font-size: 13.5px;
}

.related-company-list span,
.related-company-list .empty-note {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}

.card.soft.official-check-card {
  overflow: hidden;
  border-color: rgba(15, 118, 110, 0.12);
  background:
    linear-gradient(180deg, rgba(240, 253, 250, 0.68), rgba(255, 255, 255, 0.96)),
    #fff;
}

.official-check-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.official-check-card h3::before {
  content: "";
  width: 8px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--brand-primary));
}

.official-check-list {
  counter-reset: official-check;
  display: grid;
  gap: 9px;
}

.official-check-list a {
  counter-increment: official-check;
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  min-height: 64px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 18px -16px rgba(9, 47, 43, 0.28);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.official-check-list a::before {
  content: counter(official-check, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
}

.official-check-list a:hover {
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: 0 14px 28px -20px rgba(9, 47, 43, 0.36);
  transform: translate3d(0, -2px, 0);
}

.official-check-list strong,
.official-check-list span {
  grid-column: 2;
  min-width: 0;
}

.official-check-list strong {
  display: block;
  color: var(--green-dark);
  font-size: 13.5px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.official-check-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* ===== Portal topbar ===== */
.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
}

.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}

.topbar-inner span { min-width: 0; }

.topbar strong { color: #fff; font-weight: 500; }
.topbar .countdown em { font-style: normal; color: var(--green-mid); font-weight: 600; }

/* ===== Ticker ===== */
.ticker-bar {
  border-bottom: 1px solid var(--line);
  background: var(--green-soft);
  overflow: hidden;
}

.ticker-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 38px;
}

.ticker-label {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: ticker-pulse 1.6s ease-in-out infinite;
}

@keyframes ticker-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.ticker-viewport { overflow: hidden; flex: 1; min-width: 0; }

.ticker-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-track a {
  font-size: 13px;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-track a time { color: var(--green); opacity: 0.7; font-size: 12px; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ===== Portal headline ===== */
.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1.1fr) 300px;
  gap: 24px;
  align-items: stretch;
  min-width: 0;
}

.lead-story {
  background:
    linear-gradient(135deg, rgba(6, 63, 59, 0.98) 0%, rgba(11, 95, 89, 0.94) 55%, rgba(36, 91, 145, 0.92) 100%);
  border-radius: var(--radius);
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: var(--shadow-lift);
}

.lead-story .meta { font-size: 12.5px; color: var(--green-mid); margin: 0 0 10px; letter-spacing: 1px; }
.lead-story h1,
.lead-story h2 { font-size: 22px; line-height: 1.5; margin: 0 0 12px; color: #fff; }
.lead-story h1 a,
.lead-story h2 a { color: #fff; }
.lead-story h1 a:hover,
.lead-story h2 a:hover { color: var(--green-mid); }
.lead-story p { margin: 0 0 18px; font-size: 14px; color: rgba(255, 255, 255, 0.78); }

.lead-story.has-carousel {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background:
    linear-gradient(135deg, rgba(8, 76, 71, 0.96), rgba(31, 95, 168, 0.9)),
    var(--brand-bg-light);
  touch-action: pan-x pan-y;
  border: 1px solid rgba(6, 63, 59, 0.12);
  box-shadow: var(--shadow-lift);
  transform: translate3d(0, 0, 0);
}

.lead-story.has-carousel::after {
  content: "左右滑动";
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 5;
  display: none;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: rgba(3, 24, 19, 0.46);
  color: rgba(255, 255, 255, 0.82);
  padding: 5px 10px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.hc-track {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.hc-track::-webkit-scrollbar { display: none; }

.hc-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 600ms ease;
  will-change: opacity;
  transform: translate3d(0, 0, 0);
}

.hc-track .hc-slide {
  position: relative;
  inset: auto;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hc-track .hc-slide:not(.is-active) .hc-image {
  transform: scale(1.03);
}

.hc-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1200 / 760;
  transform: scale(1.02);
  transition: transform 600ms ease;
  will-change: transform;
}

.hc-slide:not(.is-loaded)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.04) 8%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.04) 33%),
    linear-gradient(135deg, rgba(8, 76, 71, 0.95), rgba(31, 95, 168, 0.86));
  background-size: 220% 100%, auto;
  animation: skeletonShimmer 1.6s linear infinite;
}

.hc-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 24, 19, 0.5), rgba(3, 24, 19, 0.1) 60%),
    linear-gradient(0deg, rgba(3, 24, 19, 0.88), rgba(3, 24, 19, 0.08) 58%);
  z-index: 1;
}

.hc-slide.is-active { opacity: 1; z-index: 2; }
.hc-slide.is-active .hc-image { transform: scale(1); }
.lead-story.has-carousel.is-touching .hc-image { transform: scale(1.015); }
.hc-slide.is-missing {
  background: linear-gradient(135deg, var(--green-dark), var(--blue));
}
.hc-slide.is-missing .hc-image { display: none; }

.hc-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(4, 52, 44, 0.82);
  color: #fff;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 4px;
  z-index: 2;
}

.hc-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 20px 16px;
  background: linear-gradient(transparent, rgba(3, 24, 19, 0.9));
  z-index: 2;
}

.hc-caption h1,
.hc-caption h2,
.hc-caption h3 {
  font-size: 17.5px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hc-caption p { margin: 4px 0 0; font-size: 12.5px; color: rgba(255, 255, 255, 0.72); }

.hc-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 2px;
  z-index: 5;
}

.hc-dots button {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 200ms ease;
}

.hc-dots button::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  transition: width 200ms ease, background 200ms ease;
}

.hc-dots button.is-active::after {
  width: 18px;
  background: #fff;
}

.hc-dots button:hover { transform: translateY(-1px); }

.hc-counter {
  position: absolute;
  right: 18px;
  top: 16px;
  min-width: 52px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 999px;
  background: rgba(3, 24, 19, 0.54);
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 6;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.hc-counter b {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.hc-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 24, 19, 0.38);
  color: #fff;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, -50%, 0);
  transition: opacity 220ms ease, background 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
  backdrop-filter: blur(10px);
}

.hc-prev { left: 14px; }
.hc-next { right: 14px; }

.lead-story.has-carousel:hover .hc-nav,
.lead-story.has-carousel:focus-within .hc-nav {
  opacity: 1;
}

.hc-nav:hover {
  background: rgba(3, 24, 19, 0.64);
}

.home-news-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
}

.home-news-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(11, 111, 104, 0.07);
  color: var(--brand-text-muted);
  font-size: 12px;
  line-height: 1.2;
}

.desktop-only {
  display: inline-flex;
}

.lead-sub {
  list-style: none;
  margin: 4px 0 18px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.lead-sub li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.lead-sub li:last-child { border-bottom: none; }

.lead-sub a {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-sub a:hover { color: var(--green-mid); }
.lead-sub time { font-size: 12.5px; color: rgba(255, 255, 255, 0.45); flex-shrink: 0; }

.lead-story .tag-row { margin-top: auto; }
.lead-story .tag-row a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.lead-story .tag-row a:hover { background: rgba(255, 255, 255, 0.24); color: #fff; }

.brief-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.brief-panel:hover {
  border-color: rgba(26, 82, 238, 0.16);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-2px);
}

.compact-head { margin-bottom: 8px; }

.portal-command-panel { gap: 10px; }

.portal-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}

.portal-action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 9px;
  align-items: start;
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.portal-action:hover {
  border-color: rgba(26, 82, 238, 0.26);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-3px);
}

.portal-action span {
  grid-row: 1 / span 2;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  line-height: 26px;
  text-align: center;
}

.portal-action.primary span {
  background: var(--brand-primary);
  color: #fff;
}

.portal-action strong {
  display: block;
  min-width: 0;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.35;
}

.portal-action small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.portal-hub-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 4px;
}

.portal-hub-strip a {
  display: block;
  padding: 10px 11px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.portal-hub-strip a:hover {
  border-color: rgba(26, 82, 238, 0.24);
  background: var(--brand-primary-soft);
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-2px);
}

.portal-hub-strip strong {
  display: block;
  color: var(--green-dark);
  font-size: 13.5px;
  line-height: 1.35;
}

.portal-hub-strip span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.home-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-entry-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-entry-grid article {
  display: grid;
  min-width: 0;
  min-height: 172px;
  align-content: start;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(26, 82, 238, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.9)),
    #fff;
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), transform 0.28s var(--ease), background 0.28s var(--ease);
  will-change: transform, opacity;
}

.home-entry-grid article:hover {
  border-color: rgba(26, 82, 238, 0.28);
  background: #fff;
  box-shadow: var(--shadow-hover-raise);
  transform: translateY(-3px);
}

.home-entry-grid .badge {
  width: fit-content;
}

.home-entry-grid h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 15.5px;
  line-height: 1.45;
}

.home-entry-grid h3 a:hover {
  color: var(--brand-primary);
}

.home-entry-grid p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-entry-grid .file-action {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(26, 82, 238, 0.22);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 5px 10px;
  font-size: 12.5px;
  font-weight: 700;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease);
}

.home-entry-grid .file-action:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  transform: translateY(-1px);
}

.latest-head {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.brief-panel .news-list li { padding: 9px 0; align-items: flex-start; }
.brief-panel .news-list li .badge { margin-top: 2px; }
.brief-panel .news-list li time { margin-top: 2px; }
.brief-panel .news-list a {
  white-space: normal;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Dark stat card ===== */
.stat-card-dark {
  background: linear-gradient(135deg, var(--green-dark), #164f5f);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: #fff;
  box-shadow: var(--shadow-lift);
}

.stat-card-dark .stat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.stat-card-dark .stat-head h2 { font-size: 15px; color: #fff; font-weight: 600; }
.stat-card-dark .stat-head a { font-size: 12.5px; color: var(--green-mid); }

.stat-card-dark .stat-grid { grid-template-columns: 1fr 1fr; }
.stat-card-dark .stat-grid article { background: rgba(255, 255, 255, 0.08); }
.stat-card-dark .stat-grid article span { color: var(--green-mid); }
.stat-card-dark .stat-grid article strong { color: #fff; font-variant-numeric: tabular-nums; }

/* ===== Section head upgrade ===== */
.section-head .en {
  font-size: 11.5px;
  color: var(--faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 2px;
}

.section-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--bg);
  box-shadow: var(--shadow-smooth);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.section-block:hover {
  border-color: rgba(26, 82, 238, 0.14);
  box-shadow: var(--shadow-hover-raise);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.section-block .section-head { margin-bottom: 10px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .two-col, .home-hero-grid, .footer-grid, .region-map-layout { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .hero-dual-grid,
  .hero-news-grid { grid-template-columns: 1fr; }
  .report-command-layout {
    grid-template-columns: 1fr;
  }
  .report-command-copy {
    min-height: 0;
  }
  .topic-hub-layout,
  .topic-detail-layout {
    grid-template-columns: 1fr;
  }
  .topic-hub-copy,
  .topic-detail-copy {
    min-height: 0;
  }
  .reports-workspace {
    grid-template-columns: 1fr;
  }
  .lead-story { min-height: 0; }
  .sidebar { position: static; }
  .enterprise-command-head {
    grid-template-columns: 1fr;
  }
  .enterprise-command-copy {
    min-height: 0;
  }
  .assessment-command-layout {
    grid-template-columns: 1fr;
  }
  .assessment-command-copy {
    min-height: 0;
  }
  .company-detail-hero-layout {
    grid-template-columns: 1fr;
  }
  .company-detail-identity {
    min-height: 0;
  }
  .workbench-command-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .workbench-command-stats article {
    min-height: 112px;
    padding: 14px 12px;
  }
  .workbench-command-surface .workbench-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .workbench-command-surface .workbench-query-field,
  .workbench-command-surface .workbench-search .button {
    grid-column: 1 / -1;
  }
  .workbench-search { grid-template-columns: 1fr 1fr; }
  .header-inner { gap: 14px; }
  .grid-3 { grid-template-columns: 1fr; }
  .company-detail-grid { grid-template-columns: 1fr; }
  .quick-entry { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-entry.enterprise-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .assessment-lanes,
  .score-rule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .advanced-matrix { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body.has-mobile-tabs {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .wrap { padding: 0 14px; }
  .breadcrumb {
    margin-right: -14px;
    padding-right: 14px;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb span {
    max-width: min(260px, 72vw);
  }
  .breadcrumb span:last-child {
    display: none;
  }
  .breadcrumb a:last-of-type::after {
    content: "";
    margin-left: 0;
  }
  .topbar,
  .ticker-bar {
    display: none;
  }

  .site-header {
    top: 0;
    border-bottom-color: rgba(26, 82, 238, 0.1);
  }

  .site-header .header-inner {
    display: none;
  }

  .mobile-h5-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    min-height: 56px;
    padding: 8px 12px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.96));
    backdrop-filter: blur(18px);
  }

  .mobile-title {
    order: 1;
    min-width: 0;
    color: var(--brand-navy);
    font-size: 16px;
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0;
  }

  .mobile-search-trigger {
    order: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 38px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-cyan));
    color: #fff;
    padding: 0 11px;
    font-size: 12.5px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px -18px rgba(11, 111, 104, 0.9);
  }

  .mobile-language-switch {
    order: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 34px;
    padding: 0 8px;
    border-radius: 9px;
    font-size: 12px;
    box-shadow: none;
  }

  .mobile-search-trigger svg {
    width: 18px;
    height: 18px;
  }

  .mobile-search-drawer {
    position: fixed;
    inset: 0;
    z-index: 160;
    display: none;
    align-items: flex-start;
    padding: 62px 14px 0;
    background: rgba(14, 29, 58, 0.24);
  }

  .mobile-search-drawer.is-open {
    display: flex;
  }

  .mobile-search-card {
    width: 100%;
    border: 1px solid rgba(26, 82, 238, 0.12);
    border-radius: 14px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 20px 44px -20px rgba(14, 29, 58, 0.38);
  }

  .mobile-search-card label {
    margin-bottom: 9px;
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-search-card > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .mobile-search-card input {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 12px;
    font-size: 15px;
  }

  .mobile-search-card button {
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--brand-primary);
    color: #fff;
    padding: 0 16px;
    font-weight: 700;
  }

  .mobile-search-card nav {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-search-card nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-search-card nav a {
    flex: 0 0 auto;
    border: 1px solid rgba(26, 82, 238, 0.12);
    border-radius: 999px;
    color: var(--brand-primary-dark);
    padding: 6px 11px;
    font-size: 13px;
  }

  .mobile-bottom-tabs {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    min-height: calc(74px + env(safe-area-inset-bottom));
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(26, 82, 238, 0.1);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 -10px 30px -22px rgba(14, 29, 58, 0.36);
  }

  .mobile-bottom-tabs a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 54px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 12px;
    color: var(--brand-text-muted);
    font-size: 11px;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bottom-tabs a:nth-child(3) {
    min-height: 58px;
    justify-content: flex-end;
    padding-bottom: 0;
    transform: translateY(-7px);
  }

  .mobile-bottom-tabs a:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 12px 24px -14px rgba(26, 82, 238, 0.8);
  }

  .mobile-bottom-tabs a:nth-child(3) svg {
    position: relative;
    z-index: 1;
    color: #fff;
    margin-bottom: 5px;
    transform: translateY(-2px);
  }

  .mobile-bottom-tabs a:nth-child(3) span {
    position: relative;
    z-index: 1;
    margin-top: 0;
    color: var(--brand-primary-dark);
    font-weight: 800;
  }

  .mobile-bottom-tabs a.is-active:not(:nth-child(3)) {
    color: var(--brand-primary-dark);
    background: var(--brand-primary-soft);
    font-weight: 700;
  }

  .mobile-bottom-tabs svg {
    width: 21px;
    height: 21px;
  }

  .topbar-inner { padding: 6px 14px; justify-content: flex-start; gap: 4px 12px; }
  .topbar-inner span:nth-child(3) { display: none; }
  .ticker-inner { height: 36px; padding: 0 14px; gap: 10px; }
  .ticker-track { gap: 32px; animation-duration: 36s; }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    height: auto;
    padding: 10px 14px 8px;
    gap: 9px 10px;
  }
  .brand strong {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-mark { width: 30px; height: 30px; border-radius: 7px; }
  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    max-width: 100%;
    display: flex;
    overflow-x: auto;
    padding-bottom: 0;
    gap: 6px;
    scroll-snap-type: x proximity;
  }
  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    white-space: nowrap;
    padding: 7px 13px;
    background: var(--surface);
    text-align: center;
    scroll-snap-align: start;
  }
  .header-cta {
    justify-self: end;
    margin-left: 0;
    padding: 6px 12px;
    font-size: 13px;
  }
  .header-inner > .language-switch {
    display: none;
  }
  .home-hero { padding: 20px 0 24px; }
  .hero-dual-grid { gap: 14px; }
  .search-hub-card,
  .evaluation-panel {
    border-radius: 10px;
    padding: 18px;
  }
  .search-hub-card h1 {
    margin-bottom: 18px;
    font-size: 28px;
  }
  .hero-search-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-search-tabs button { padding: 8px 10px; }
  .hero-search-box {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    min-height: 0;
    padding: 10px;
    border-radius: 12px;
  }
  .hero-search-box input {
    font-size: 15px;
    min-height: 38px;
  }
  .hero-search-box button {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    padding: 11px 14px;
  }
  .hero-hot-tags { gap: 6px; }
  .hero-hot-tags span {
    width: 100%;
    font-size: 12px;
  }
  .hero-hot-tags a {
    padding: 5px 9px;
    font-size: 12px;
  }
  .hero-link-grid { grid-template-columns: 1fr; gap: 8px; margin-top: 16px; }
  .en-hero-grid,
  .en-grid,
  .en-filter-matrix,
  .en-feature-report-grid,
  .en-search-row,
  .en-company-card,
  .en-report-results,
  .en-workbench-overview,
  .en-seo-panel {
    grid-template-columns: 1fr;
  }

  .en-company-filter,
  .en-report-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .en-company-filter label:first-child,
  .en-report-filter label:first-child,
  .en-filter-actions {
    grid-column: 1 / -1;
  }
  .en-hero-card,
  .en-side-card,
  .en-info-card,
  .en-company-summary,
  .en-company-search-hero,
  .en-company-card,
  .en-entry-card,
  .en-feature-report,
  .en-workbench-overview,
  .en-seo-panel {
    padding: 16px;
  }
  .en-company-search-hero {
    padding: 14px;
  }
  .en-company-search-hero p {
    display: -webkit-box;
    margin-bottom: 10px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .en-company-filter label span {
    font-size: 10.5px;
    line-height: 1.2;
  }
  .en-company-filter input,
  .en-company-filter select {
    min-height: 40px;
    border-radius: 8px;
    padding: 0 9px;
    font-size: 13px;
  }
  .en-filter-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }
  .en-filter-actions .button {
    width: 100%;
    min-height: 42px;
    padding-inline: 10px;
  }
  .en-research-paths,
  .en-entry-grid {
    display: flex;
    gap: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 2px 16px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .en-research-paths::-webkit-scrollbar,
  .en-entry-grid::-webkit-scrollbar {
    display: none;
  }
  .en-research-paths a {
    flex: 0 0 min(76vw, 270px);
    min-height: 88px;
    padding: 10px;
    scroll-snap-align: start;
  }
  .en-entry-card {
    flex: 0 0 min(82vw, 310px);
    min-height: 210px;
    scroll-snap-align: start;
  }
  .en-hero-card h1 {
    font-size: 28px;
  }
  .en-company-search-hero h1 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .en-company-card nav {
    grid-template-columns: 1fr;
    display: grid;
    min-width: 0;
  }
  .en-company-card h2 {
    font-size: 18px;
  }
  .en-report-card {
    padding: 16px;
  }
  .en-report-card h2 {
    font-size: 18px;
  }
  .en-detail-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .en-detail-signals article {
    min-height: 66px;
    padding: 10px;
  }
  .en-detail-signals strong {
    font-size: 13px;
  }
  .en-report-card nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .en-feature-report-grid {
    gap: 10px;
  }
  .en-entry-card,
  .en-feature-report {
    min-height: 0;
  }
  .en-filter-matrix nav,
  .en-side-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .en-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
    margin: 10px 0 0;
    padding: 0;
    overflow: visible;
  }
  .en-filter-chips::-webkit-scrollbar {
    display: none;
  }
  .en-filter-chips span {
    flex: 0 0 100%;
    align-self: center;
    font-size: 10.5px;
  }
  .en-filter-chips a {
    flex: 1 1 calc(50% - 6px);
    max-width: 100%;
    min-height: 30px;
    padding: 4px 9px;
    overflow: hidden;
    font-size: 11.5px;
    justify-content: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .en-filter-matrix a,
  .en-side-actions a {
    justify-content: center;
    width: 100%;
  }
  .en-workbench-overview {
    gap: 10px;
    padding: 12px;
  }
  .en-workbench-overview .kicker {
    margin-bottom: 4px;
    font-size: 11px;
  }
  .en-workbench-overview h2 {
    font-size: 16px;
    line-height: 1.35;
  }
  .en-workbench-overview .en-metric-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .en-workbench-overview .en-metric-list div {
    display: grid;
    gap: 2px;
    min-height: 58px;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 8px;
    background: #fff;
    padding: 8px;
  }
  .en-workbench-overview .en-metric-list dt {
    font-size: 11px;
    line-height: 1.25;
  }
  .en-workbench-overview .en-metric-list dd {
    text-align: left;
    font-size: 18px;
    line-height: 1.1;
  }
  .en-link-cloud {
    display: grid;
    grid-template-columns: 1fr;
  }
  .en-link-cloud a,
  .en-card-links a {
    width: 100%;
    min-height: 40px;
  }
  .en-pagination {
    justify-content: stretch;
  }
  .en-pagination a,
  .en-pagination span,
  .en-pagination strong {
    flex: 1;
    min-width: 0;
  }
  .evaluation-panel h2 { font-size: 24px; }
  .evaluation-score { padding: 13px; margin-bottom: 14px; }
  .evaluation-score strong { font-size: 26px; }
  .evaluation-points li { font-size: 13.5px; }
  .trust-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }
  .trust-metrics-grid article {
    padding: 12px;
    border-radius: 8px;
  }
  .trust-metrics-grid span { font-size: 12px; }
  .trust-metrics-grid strong { font-size: 22px; }
  .hero-news-grid { gap: 12px; margin-top: 12px; }
  .h5-report-rail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0;
    margin-right: 0;
  }

  .h5-report-rail::-webkit-scrollbar {
    display: none;
  }

  .h5-report-rail .report-card {
    max-width: none;
    min-width: 0;
    width: 100%;
    scroll-snap-align: none;
  }

  .portal-grid { gap: 14px; }
  .lead-story { padding: 20px; border-radius: 8px; }
  .lead-story.has-carousel { min-height: 260px; }
  .lead-story h1, .lead-story h2 { font-size: 19px; }
  .lead-story p { font-size: 13.5px; }
  .hc-caption { padding: 64px 16px 14px; }
  .hc-caption h1, .hc-caption h2, .hc-caption h3 { font-size: 16px; }
  .portal-action-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portal-hub-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-entry-grid,
  .home-entry-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .home-entry-grid article {
    min-height: 148px;
    padding: 12px;
  }
  .home-entry-grid h3 {
    font-size: 13.5px;
  }
  .home-entry-grid p {
    -webkit-line-clamp: 2;
    font-size: 12.5px;
  }
  .home-entry-grid .file-action {
    min-height: 44px;
    padding-block: 8px;
  }
  .portal-action {
    min-height: 0;
    padding: 10px;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .portal-action span {
    grid-row: auto;
    width: fit-content;
    min-width: 0;
    height: 22px;
    line-height: 22px;
    font-size: 11.5px;
  }
  .portal-action strong { font-size: 13px; }
  .portal-action small {
    -webkit-line-clamp: 1;
    font-size: 11.5px;
  }
  .portal-hub-strip a { padding: 9px; }
  .portal-hub-strip strong { font-size: 12.5px; }
  .portal-hub-strip span { font-size: 11.5px; }
  .lead-sub li {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px 8px;
  }
  .lead-sub a {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .lead-sub time { margin-left: auto; }
  .brief-panel, .stat-card-dark, .section-block, .card { padding: 14px; border-radius: 8px; }
  .stat-card-dark .stat-head { flex-wrap: wrap; gap: 4px 10px; }
  .stat-card-dark .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .stat-grid article { padding: 8px 6px; }
  .stat-grid article span { font-size: 11px; }
  .stat-grid article strong { font-size: 17px; }
  .home-hero .quick-entry { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .quick-entry { grid-template-columns: 1fr; gap: 8px; }
  .quick-entry.enterprise-index { grid-template-columns: 1fr; }
  .quick-entry a { padding: 12px; }
  .home-hero .quick-entry a {
    display: block;
    padding: 9px;
    text-align: center;
  }
  .home-hero .quick-entry .icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 5px;
    border-radius: 7px;
  }
  .home-hero .quick-entry strong { font-size: 12.5px; }
  .home-hero .quick-entry small { display: none; }
  .portal-command-panel .latest-head,
  .portal-command-panel #homeFeed {
    display: none;
  }
  .news-list li {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5px 8px;
  }
  .news-list a {
    flex-basis: 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news-list time { margin-left: auto; }
  .section-head { gap: 8px; margin-bottom: 14px; }
  .section-head h2 { font-size: 17px; }
  .report-command-hero {
    padding: 14px 0 18px;
  }
  .report-command-copy {
    padding: 15px 16px;
  }
  .report-command-copy .kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  .report-command-copy h1 {
    font-size: 22px;
    line-height: 1.28;
  }
  .report-command-copy .lede {
    font-size: 13px;
    line-height: 1.58;
  }
  .report-command-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }
  .report-command-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 7px;
    font-size: 12.5px;
  }
  .report-command-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 7px;
  }
  .report-command-stats article {
    min-width: 0;
    min-height: 60px;
    padding: 7px 9px;
    border: 1px solid rgba(9, 47, 43, 0.08);
    border-radius: 8px;
  }
  .report-command-stats article:nth-child(2n),
  .report-command-stats article:nth-last-child(-n + 2) {
    border: 1px solid rgba(9, 47, 43, 0.08);
  }
  .report-command-stats strong {
    margin: 2px 0 0;
    font-size: 17px;
    overflow-wrap: anywhere;
  }
  .report-command-stats small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .report-command-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }
  .report-command-links a {
    min-height: 32px;
    padding: 5px 7px;
    font-size: 11.5px;
  }
  .report-presets {
    gap: 7px;
  }
  .report-presets span {
    flex: 1 0 100%;
  }
  .report-presets button {
    min-height: 44px;
    padding: 8px 12px;
  }
  .report-query-status {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding: 10px;
  }
  .report-query-status button {
    width: 100%;
    min-height: 44px;
  }
  .report-topic-grid .case-card {
    min-height: 0;
  }
  .topic-card {
    min-height: 0;
    gap: 9px;
    padding: 14px;
  }
  .topic-card h3 {
    font-size: 15px;
  }
  .topic-card p {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
  .topic-card-actions a {
    min-height: 44px;
    padding-block: 9px;
  }
  .report-mobile-rail {
    display: block;
    margin-top: 10px;
  }
  .report-mobile-rail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
  }
  .report-mobile-rail-head h2 {
    margin: 0;
    color: var(--brand-navy);
    font-size: 16px;
    line-height: 1.35;
  }
  .report-mobile-rail-head a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(31, 95, 168, 0.08);
    color: var(--blue);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 750;
  }
  .report-mobile-rail-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .report-mobile-rail-track a {
    min-width: 0;
    min-height: 106px;
    display: grid;
    align-content: start;
    gap: 4px;
    border: 1px solid rgba(31, 95, 168, 0.13);
    border-radius: 10px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.92)),
      #fff;
    box-shadow: var(--shadow-smooth);
    padding: 9px 10px;
  }
  .report-mobile-rail-track a:nth-child(n + 3) {
    display: none;
  }
  .report-mobile-rail-track span {
    color: var(--blue);
    font-size: 11.5px;
    font-weight: 760;
    line-height: 1.35;
  }
  .report-mobile-rail-track strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--brand-navy);
    font-size: 13px;
    line-height: 1.36;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .report-mobile-rail-track small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .report-empty-hub {
    grid-template-columns: 1fr;
  }
  .report-empty-copy,
  .report-empty-links {
    padding: 13px;
  }
  .report-empty-links {
    grid-template-columns: 1fr;
  }
  .topic-hub-hero,
  .topic-detail-hero {
    padding: 14px 0 18px;
  }
  .topic-hub-copy,
  .topic-detail-copy {
    padding: 15px 16px;
  }
  .topic-hub-copy .kicker,
  .topic-detail-copy .kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  .topic-hub-copy h1,
  .topic-detail-copy h1 {
    font-size: 22px;
    line-height: 1.28;
  }
  .topic-hub-copy .lede,
  .topic-detail-copy .lede {
    font-size: 13px;
    line-height: 1.58;
  }
  .topic-hub-actions,
  .topic-detail-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }
  .topic-hub-actions .button,
  .topic-detail-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 7px;
    font-size: 12.5px;
  }
  .topic-hub-stats,
  .topic-detail-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 7px;
  }
  .topic-hub-stats article,
  .topic-detail-stats article {
    min-width: 0;
    min-height: 62px;
    padding: 7px 9px;
    border: 1px solid rgba(9, 47, 43, 0.08);
    border-radius: 8px;
  }
  .topic-hub-stats article:nth-child(2n),
  .topic-detail-stats article:nth-child(2n),
  .topic-hub-stats article:nth-last-child(-n + 2),
  .topic-detail-stats article:nth-last-child(-n + 2) {
    border: 1px solid rgba(9, 47, 43, 0.08);
  }
  .topic-hub-stats strong,
  .topic-detail-stats strong {
    margin: 2px 0 0;
    font-size: 17px;
    overflow-wrap: anywhere;
  }
  .topic-hub-stats small,
  .topic-detail-stats small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .topic-path-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
  }
  .topic-path-strip a {
    min-height: 58px;
    align-content: center;
    gap: 4px;
    padding: 8px;
  }
  .topic-path-strip span {
    min-height: 22px;
    padding: 2px 6px;
    font-size: 10.5px;
  }
  .topic-path-strip strong {
    font-size: 12px;
  }
  .topic-path-strip small {
    display: none;
  }
  .assessment-command-hero {
    padding: 14px 0 18px;
  }
  .assessment-command-copy {
    padding: 15px 16px;
  }
  .assessment-command-copy .kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  .assessment-command-copy h1 {
    font-size: 22px;
    line-height: 1.28;
  }
  .assessment-command-copy .lede {
    font-size: 13px;
    line-height: 1.58;
  }
  .assessment-command-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }
  .assessment-command-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 8px;
  }
  .assessment-command-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }
  .assessment-command-stats article {
    min-width: 0;
    min-height: 72px;
    padding: 9px 10px;
    border: 1px solid rgba(9, 47, 43, 0.08);
    border-radius: 8px;
  }
  .assessment-command-stats article:nth-child(2n),
  .assessment-command-stats article:nth-last-child(-n + 2) {
    border: 1px solid rgba(9, 47, 43, 0.08);
  }
  .assessment-command-stats strong {
    margin: 4px 0 1px;
    font-size: 18px;
    overflow-wrap: anywhere;
  }
  .assessment-command-stats small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .assessment-quick-path {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 0 0 12px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .assessment-quick-path a {
    min-width: 0;
    min-height: 60px;
    align-content: center;
    gap: 5px;
    padding: 8px;
    scroll-snap-align: none;
    transform: translate3d(0, 0, 0);
  }
  .assessment-quick-path span {
    padding: 2px 6px;
    font-size: 10.5px;
  }
  .assessment-quick-path strong {
    font-size: 12.5px;
  }
  .assessment-quick-path small {
    display: none;
  }
  .company-detail-hero {
    padding: 14px 0 18px;
  }
  .company-detail-identity {
    padding: 15px 16px;
  }
  .company-detail-identity .kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  .company-detail-identity h1 {
    font-size: 22px;
    line-height: 1.28;
  }
  .company-detail-identity .lede {
    font-size: 13px;
    line-height: 1.58;
  }
  .company-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }
  .company-detail-actions .button {
    width: 100%;
    min-height: 44px;
  }
  .company-detail-actions .button.primary {
    grid-column: 1 / -1;
  }
  .company-detail-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 7px;
  }
  .company-detail-stats article {
    min-width: 0;
    min-height: 66px;
    padding: 7px 9px;
    border: 1px solid rgba(9, 47, 43, 0.08);
    border-radius: 8px;
  }
  .company-detail-stats article:nth-child(2n),
  .company-detail-stats article:nth-last-child(-n + 2) {
    border: 1px solid rgba(9, 47, 43, 0.08);
  }
  .company-detail-stats strong {
    margin: 2px 0 0;
    font-size: 16px;
  }
  .company-detail-stats small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .company-path-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 10px;
  }
  .company-path-overview a {
    min-height: 58px;
    padding: 8px;
  }
  .company-path-overview span {
    font-size: 11px;
  }
  .company-path-overview strong {
    font-size: 12px;
    -webkit-line-clamp: 1;
  }
  .enterprise-command-hero {
    padding: 14px 0 18px;
  }
  .enterprise-command-copy {
    padding: 17px 16px;
  }
  .enterprise-command-copy .kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  .enterprise-command-copy h1 {
    font-size: 24px;
  }
  .enterprise-command-copy .lede {
    font-size: 13.5px;
    line-height: 1.58;
  }
  .workbench-command-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .workbench-command-stats article {
    min-width: 0;
    min-height: 96px;
    padding: 12px;
    border: 1px solid rgba(9, 47, 43, 0.08);
    border-radius: 8px;
  }
  .workbench-command-stats article:nth-child(2n) {
    border-right: 1px solid rgba(9, 47, 43, 0.08);
  }
  .workbench-command-stats article:nth-last-child(-n + 1) {
    border-bottom: 1px solid rgba(9, 47, 43, 0.08);
  }
  .workbench-command-stats article:last-child:nth-child(odd) {
    border-right: 1px solid rgba(9, 47, 43, 0.08);
  }
  .workbench-command-stats strong {
    margin: 6px 0 3px;
    font-size: 23px;
  }
  .workbench-command-stats small {
    min-height: 0;
  }
  .workbench-command-surface {
    margin-top: 12px;
    padding: 12px;
  }
  .workbench-command-surface .workbench-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .workbench-command-surface .workbench-query-field,
  .workbench-command-surface .workbench-search .button {
    grid-column: 1 / -1;
  }
  .workbench-result-section {
    margin-top: 16px;
    margin-bottom: 22px;
  }
  .workbench-result-card {
    padding: 13px;
  }
  .workbench-query-status {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding: 10px;
  }
  .workbench-query-status button {
    width: 100%;
    min-height: 44px;
  }
  .enterprise-index-section {
    margin-top: 20px;
  }
  .field-row, .grid-2, .workbench-search { grid-template-columns: 1fr; }
  input[type="text"],
  input[type="search"],
  input[type="number"],
  select,
  textarea {
    min-height: 44px;
    font-size: 15px;
  }

  .button,
  .action-button,
  .news-filterbar button,
  .case-filter button {
    min-height: 44px;
  }

  .case-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .case-overview article {
    min-height: 62px;
    padding: 10px;
  }

  .case-overview strong {
    font-size: 18px;
  }

  .case-filter {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .case-filter button {
    flex: 0 1 auto;
    white-space: normal;
  }

  #leadForm.is-mobile-wizard {
    padding: 16px;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .assessment-save-status {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }

  .assessment-save-status button {
    min-height: 44px;
    width: 100%;
  }

  .mobile-wizard-head {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
  }

  .mobile-wizard-head strong {
    color: var(--brand-navy);
    font-size: 16px;
  }

  .mobile-wizard-head span {
    color: var(--muted);
    font-size: 13px;
  }

  .mobile-wizard-progress {
    display: block;
    width: 100%;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: var(--surface);
    overflow: hidden;
    appearance: none;
  }

  .mobile-wizard-progress::-webkit-progress-bar {
    border-radius: 999px;
    background: var(--surface);
  }

  .mobile-wizard-progress::-webkit-progress-value {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-primary), #0a9396);
    transition: width 0.24s var(--ease);
  }

  .mobile-wizard-progress::-moz-progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-primary), #0a9396);
  }

  .mobile-step-hidden {
    display: none !important;
  }

  #leadForm.is-mobile-wizard .form-section-title {
    margin: 6px 0 14px;
  }

  #leadForm.is-mobile-wizard .field-row {
    gap: 12px;
    margin-bottom: 12px;
  }

  #leadForm.is-mobile-wizard label {
    gap: 7px;
    font-size: 13.5px;
  }

  .mobile-wizard-controls {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    z-index: 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
    padding: 8px 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 28px -24px rgba(14, 29, 58, 0.38);
  }

  .mobile-wizard-controls button {
    min-height: 46px;
    border-radius: 10px;
  }

  .mobile-wizard-prev {
    border: 1px solid rgba(26, 82, 238, 0.18);
    background: #fff;
    color: var(--brand-primary-dark);
  }

  .mobile-wizard-next {
    border: 0;
    background: var(--brand-primary);
    color: #fff;
    font-weight: 700;
  }

  .mobile-wizard-prev:disabled {
    opacity: 0.45;
  }

  #leadForm.is-mobile-wizard > button[type="submit"] {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    z-index: 13;
    margin-top: 12px;
    min-height: 48px;
    box-shadow: 0 -10px 28px -24px rgba(14, 29, 58, 0.38);
  }

  .data-table {
    min-width: 100%;
    table-layout: fixed;
    font-size: 13.5px;
  }
  .data-table th,
  .data-table td {
    padding: 9px 10px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .article-md .md-table {
    display: block;
    width: 100%;
    border: 0;
    font-size: 13.5px;
    overflow: visible;
  }
  .article-md .md-table thead {
    display: none;
  }
  .article-md .md-table tbody,
  .article-md .md-table tr,
  .article-md .md-table td {
    display: block;
    width: 100%;
  }
  .article-md .md-table tr {
    margin: 12px 0;
    overflow: hidden;
    border: 1px solid rgba(9, 47, 43, 0.1);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-smooth);
  }
  .article-md .md-table td,
  .article-md .md-table tr:nth-child(even) td {
    border: 0;
    border-bottom: 1px solid rgba(9, 47, 43, 0.08);
    background: #fff;
  }
  .article-md .md-table td:last-child {
    border-bottom: 0;
  }
  .article-md .md-table td[data-label] {
    display: grid;
    grid-template-columns: minmax(82px, 34%) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 12px;
    overflow-wrap: anywhere;
  }
  .article-md .md-table td[data-label]::before {
    content: attr(data-label);
    color: var(--brand-primary-dark);
    font-weight: 700;
    line-height: 1.55;
  }
  .article-md .md-kv-table tr {
    margin: 10px 0;
  }
  .article-md .md-kv-table .md-kv-label {
    display: none;
  }
  .article-md .md-kv-table .md-kv-value {
    border-bottom: 0;
  }
  .article-md .md-kv-table .md-kv-value[data-label] {
    grid-template-columns: minmax(92px, 30%) minmax(0, 1fr);
    min-height: 48px;
  }
  .article-md .md-kv-table .md-kv-value[data-label]::before {
    color: var(--faint);
  }
  .assessment-state-panel {
    padding: 14px;
    margin-bottom: 22px;
  }
  .evaluation-guide-head {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
  }
  .evaluation-guide-head h2 {
    font-size: 20px;
  }
  .evaluation-guide-head-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }
  .evaluation-guide-head-actions > span {
    justify-self: start;
    font-size: 11.5px;
  }
  .evaluation-guide-head-actions .button {
    display: inline-flex;
    min-height: 44px;
    justify-content: center;
  }
  .evaluation-guide-grid,
  .evaluation-flow {
    grid-template-columns: 1fr;
  }
  .evaluation-flow {
    gap: 8px;
    margin-bottom: 10px;
  }
  .evaluation-flow article {
    display: grid;
    grid-template-columns: auto minmax(0, 0.64fr) minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 9px 10px;
  }
  .evaluation-flow span {
    margin-bottom: 0;
  }
  .evaluation-flow strong {
    font-size: 13.5px;
  }
  .evaluation-flow small {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.38;
  }
  .material-prep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .material-prep-grid article {
    min-height: 86px;
    padding: 10px;
  }
  .material-prep-grid span {
    margin-bottom: 4px;
    font-size: 12.5px;
    line-height: 1.35;
  }
  .material-prep-grid p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .evaluation-guide-main,
  .draft-entry-card,
  .report-preview-card {
    padding: 14px;
  }
  .evaluation-start-row {
    display: grid;
  }
  .evaluation-start-row .button {
    width: 100%;
  }
  .assessment-lanes,
  .score-rule-grid,
  .advanced-items,
  .diagnosis-kpi-grid,
  .result-path-grid,
  .group-score-list > div,
  .next-step-list > div { grid-template-columns: 1fr; }
  .assessment-lane { min-height: 0; padding: 14px; }
  .score-rule-grid article { min-height: 0; }
  .advanced-matrix { padding: 14px; gap: 12px; }
  .result-actions .button { flex: 1 1 140px; }
  .assessment-result-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 14px;
  }
  .assessment-result-copy nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .assessment-result-copy nav a {
    justify-content: center;
    min-height: 44px;
  }
  .diagnosis-dashboard {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 14px;
  }

  .score-ring {
    width: 132px;
    height: 132px;
  }

  .gap-card-list > div {
    grid-template-columns: 1fr;
  }

  .policy-action-grid,
  .policy-hub-grid,
  .material-grid { grid-template-columns: 1fr; }
  .news-dashboard,
  .news-group-grid,
  .policy-change-board,
  .policy-evidence-grid { grid-template-columns: 1fr; }
  .policy-change-board,
  .policy-evidence-grid {
    gap: 10px;
  }
  .source-tier-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .source-tier-grid article {
    min-height: 68px;
    padding: 11px;
  }
  .news-sidebar-card {
    padding: 14px;
  }
  .policy-sidebar-card {
    padding: 14px;
  }
  .policy-status-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .policy-status-strip a {
    min-height: 0;
  }
  .policy-file-status {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .policy-file-status span {
    justify-self: start;
  }
  .policy-file-status a {
    min-height: 44px;
  }
  .policy-nav-stack a {
    padding: 10px 11px;
  }
  .news-nav-stack a {
    padding: 10px 11px;
  }
  .policy-change-board article,
  .policy-action-grid article,
  .policy-evidence-grid article {
    min-height: 0;
    padding: 14px;
  }
  .policy-change-board strong {
    font-size: 16px;
  }
  .policy-evidence-grid h3 {
    font-size: 13.5px;
  }
  .news-filterbar {
    gap: 7px;
  }
  #newsBoard {
    margin-bottom: 18px;
  }
  .news-dashboard {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }
  .news-dashboard article {
    min-height: 58px;
    padding: 8px 7px;
    border-radius: 8px;
  }
  .news-dashboard span {
    font-size: 11px;
    line-height: 1.25;
  }
  .news-dashboard strong {
    margin-top: 2px;
    font-size: 15px;
  }
  .news-filterbar button {
    min-height: 44px;
    padding: 8px 11px;
  }
  .news-filterbar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }
  .news-filterbar button {
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    padding: 6px 5px;
    font-size: 12px;
  }
  .news-query-status {
    align-items: center;
    flex-direction: row;
    gap: 8px;
    min-height: 38px;
    margin-top: 8px;
    padding: 7px 9px;
  }
  .news-query-status button {
    width: auto;
    min-height: 32px;
  }
  .news-mobile-brief {
    display: block;
    margin: 10px 0 9px;
    padding: 12px;
    border: 1px solid rgba(11, 111, 104, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-smooth);
  }
  .news-mobile-brief-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
  }
  .news-mobile-brief-head h2 {
    margin: 0;
    color: var(--brand-navy);
    font-size: 16px;
    line-height: 1.35;
  }
  .news-mobile-brief-head a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(11, 111, 104, 0.09);
    color: var(--brand-primary-dark);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 750;
  }
  .news-mobile-brief-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .news-mobile-brief-list a {
    display: grid;
    min-width: 0;
    gap: 4px;
    min-height: 82px;
    padding: 8px 9px;
    border: 1px solid rgba(31, 95, 168, 0.12);
    border-radius: 10px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.92)),
      #fff;
  }
  .news-mobile-brief-list span {
    display: -webkit-box;
    overflow: hidden;
    color: var(--blue);
    font-size: 11.5px;
    font-weight: 760;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .news-mobile-brief-list strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--brand-navy);
    font-size: 13px;
    line-height: 1.36;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  #newsFeed {
    gap: 8px;
  }
  .news-list .news-feed-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
  }
  .news-card-body {
    gap: 5px;
  }
  .news-card-meta {
    gap: 5px 7px;
    font-size: 11.5px;
    line-height: 1.3;
  }
  .news-card-meta time {
    font-size: 11.5px;
  }
  .news-list .news-feed-card h3 {
    font-size: 14.5px;
    line-height: 1.38;
  }
  .news-list .news-feed-card h3 a {
    -webkit-line-clamp: 2;
  }
  .news-feed-card p {
    font-size: 12.5px;
    line-height: 1.48;
    -webkit-line-clamp: 1;
  }
  .news-card-action {
    min-width: 50px;
    min-height: 34px;
    padding: 7px 9px;
    font-size: 12px;
  }
  .news-lead-section {
    display: none;
  }
  .news-lead-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .news-lead-card {
    min-height: 0;
    padding: 16px;
  }
  .news-lead-card h3 {
    font-size: 18px;
    line-height: 1.45;
  }
  .news-lead-card p {
    font-size: 13.5px;
    -webkit-line-clamp: 3;
  }
  .news-lead-aside {
    gap: 8px;
  }
  .news-lead-aside a {
    min-height: 58px;
    padding: 11px 12px;
  }
  .news-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .news-entry-grid article {
    min-height: 146px;
    padding: 12px;
  }
  .news-entry-grid h3 {
    font-size: 13.5px;
  }
  .news-entry-grid p {
    -webkit-line-clamp: 2;
    font-size: 12.5px;
  }
  .news-entry-grid .file-action {
    min-height: 44px;
    padding-block: 8px;
  }
  #newsFeed {
    gap: 10px;
  }
  .news-list .news-feed-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }
  .news-card-meta {
    gap: 6px 8px;
    font-size: 12px;
  }
  .news-card-meta time {
    font-size: 12px;
    margin-left: 0;
  }
  .news-list .news-feed-card h3 {
    font-size: 16px;
    line-height: 1.48;
  }
  .news-feed-card p {
    font-size: 13.5px;
    line-height: 1.62;
  }
  .news-card-action {
    justify-self: start;
    min-width: 86px;
    min-height: 44px;
  }
  .policy-file-list article {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .policy-download-grid {
    grid-template-columns: 1fr;
  }
  .policy-download-grid .file-action {
    grid-column: auto;
  }
  .policy-file-list .file-action {
    justify-self: start;
  }
  .page-hero h1 { font-size: 22px; }
  .page-main { padding: 24px 0 44px; }
  .section { margin-bottom: 32px; }
  .workbench-search { padding: 12px; }
  .workbench-focus-section {
    margin-top: -10px;
  }
  .workbench-presets {
    gap: 7px;
  }
  .workbench-presets span {
    flex: 1 0 100%;
  }
  .workbench-presets button {
    min-height: 44px;
    padding: 8px 12px;
  }
  .workbench-empty-state {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 16px;
  }
  .workbench-empty-state h3 {
    font-size: 19px;
  }
  .workbench-empty-state nav {
    justify-content: flex-start;
  }
  .workbench-empty-state nav a,
  .workbench-empty-state nav button {
    min-height: 44px;
  }

  .company-focus-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    overflow: hidden;
  }

  .company-focus-main,
  .company-focus-side,
  .company-signal-strip,
  .company-fact-strip,
  .company-actions,
  .company-hub-links {
    min-width: 0;
    max-width: 100%;
  }

  .company-focus-head {
    display: block;
  }

  .company-focus-head h4 {
    margin-top: 6px;
    font-size: 17px;
  }

  .company-focus-head .src {
    display: inline-block;
    margin-top: 4px;
    text-align: left;
  }

  .company-pills {
    gap: 5px;
  }

  .company-pill {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 11.5px;
  }

  .company-focus-side {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .company-focus-side > strong {
    display: none;
  }

  .company-focus-side .company-hub-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 2px;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .company-focus-side .company-hub-links::-webkit-scrollbar {
    display: none;
  }

  .company-focus-side .company-hub-links a {
    flex: 0 0 auto;
    min-height: 34px;
    max-width: 150px;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .company-focus-side .company-hub-links a:nth-child(n + 5) {
    display: none;
  }

  .company-row { flex-direction: column; gap: 6px; }
  .company-row > div { min-width: 0; }
  .company-row .src { text-align: left; }
  .company-signal-strip,
  .company-fact-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-signal-strip {
    gap: 7px;
    margin: 9px 0 8px;
  }
  .company-signal-strip div { min-height: 54px; padding: 7px 8px; }
  .company-signal-strip dd { font-size: 12.5px; }
  .company-signal-strip dd,
  .company-fact-strip dd {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .company-intro {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 4px;
    font-size: 13px;
    line-height: 1.56;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .company-sector {
    display: -webkit-box;
    overflow: hidden;
    margin: 4px 0 6px;
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .company-fact-strip {
    display: none;
  }
  .company-fact-strip div {
    min-height: 50px;
    padding: 7px 8px;
  }
  .company-product {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .company-tags {
    display: none;
  }
  .company-actions {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 8px 0 2px;
    padding: 0;
    background: transparent;
  }
  .company-actions a,
  .company-detail-button {
    min-width: 0;
    min-height: 42px;
    padding: 8px 7px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .company-detail { padding: 10px; }
  .company-detail-grid ul { padding-left: 14px; }
  .company-profile-list,
  .company-portrait-grid,
  .company-chain-list { grid-template-columns: 1fr; }
  .company-decision-hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .company-decision-hub article {
    min-width: 0;
    padding: 10px;
  }
  .company-decision-hub h3 {
    font-size: 13.5px;
  }
  .company-decision-hub p {
    display: none;
  }
  .company-decision-hub div {
    gap: 5px;
    margin-top: 7px;
  }
  .company-decision-hub a {
    max-width: 100%;
    min-height: 30px;
    padding: 4px 7px;
    font-size: 11.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .company-decision-hub a:nth-child(n + 5) {
    display: none;
  }
  .company-archive-dashboard {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .company-archive-dashboard article {
    min-height: 0;
    padding: 12px;
  }
  .company-archive-links a {
    min-height: 44px;
    padding-block: 8px;
  }
  .company-profile-list div:last-child { grid-column: auto; }
  .batch-row { grid-template-columns: 1fr 1fr; }
  .batch-row.head { display: none; }
  .checklist-grid, .case-grid { grid-template-columns: 1fr; }
  .case-card .case-meta { gap: 8px; flex-wrap: wrap; }
  .case-card .case-links { flex-wrap: wrap; }
  .report-card { min-height: 0; padding: 14px; }
  .report-card-top {
    align-items: flex-start;
  }
  .report-card-top time {
    margin-left: 0;
  }
  .report-card h3 { font-size: 15.5px; }
  .report-company-identity {
    padding: 9px;
  }
  .report-card .report-company-line { flex-wrap: wrap; }
  .report-card .report-company-line span { white-space: normal; }
  .report-card .case-links a {
    flex: 1 1 120px;
    justify-content: center;
    min-height: 44px;
    padding-block: 9px;
  }
  .report-reference-card { padding: 14px; }
  .page-hero .report-hero-summary {
    display: -webkit-box;
    margin-top: 9px;
    overflow: hidden;
    font-size: 12.5px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .page-hero .tag-row {
    gap: 6px;
    margin-top: 10px;
  }
  .page-hero .tag-row span,
  .page-hero .tag-row a {
    min-height: 28px;
    padding: 4px 8px;
    font-size: 11.5px;
  }
  .report-detail-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }
  .report-detail-signals article {
    min-height: 56px;
    padding: 8px 9px;
  }
  .report-detail-signals span {
    margin-bottom: 3px;
    font-size: 11px;
  }
  .report-detail-signals strong {
    font-size: 12.5px;
    line-height: 1.35;
    -webkit-line-clamp: 1;
  }
  .report-horizontal {
    margin-bottom: 12px;
    padding: 14px;
  }
  .report-horizontal .section-head {
    margin-bottom: 10px;
  }
  .report-horizontal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .report-horizontal-grid article {
    min-height: 64px;
    padding: 9px;
  }
  .report-horizontal-grid span,
  .report-chain-board span {
    font-size: 11px;
  }
  .report-horizontal-grid strong {
    margin-top: 3px;
    font-size: 16px;
  }
  .report-horizontal-grid small {
    margin-top: 3px;
    font-size: 11px;
  }
  .report-horizontal-notes,
  .report-chain-board,
  .report-peer-board {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 9px;
  }
  .report-horizontal-notes p,
  .report-chain-board article,
  .report-peer-board article {
    padding: 10px;
  }
  .report-horizontal-notes p {
    font-size: 12.5px;
    line-height: 1.62;
  }
  .report-chain-board strong,
  .report-peer-board h3 {
    font-size: 13px;
  }
  .related-company-list.compact a {
    min-height: 44px;
    padding: 9px;
  }
  .report-mobile-actions {
    display: grid;
    grid-template-columns: 1.08fr 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  .report-mobile-actions a {
    display: inline-flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 9px 8px;
    border: 1px solid rgba(20, 105, 96, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.94);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 780;
    line-height: 1.2;
    text-align: center;
    box-shadow: var(--shadow-smooth);
    transform: translate3d(0, 0, 0);
    transition: border-color 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease), transform 0.22s var(--ease);
    will-change: transform, opacity;
  }
  .report-mobile-actions a:active {
    transform: translate3d(0, 1px, 0);
  }
  .report-mobile-actions a.primary {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(26, 82, 238, 0.14);
  }
  .report-detail-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }
  .report-detail-path a {
    min-height: 50px;
    padding: 8px;
    gap: 4px;
  }
  .report-detail-path a:nth-child(n + 3) {
    display: none;
  }
  .report-detail-path span {
    min-height: 20px;
    padding: 1px 7px;
    font-size: 10px;
  }
  .report-detail-path strong {
    font-size: 12.5px;
    -webkit-line-clamp: 1;
  }
  .report-detail-path small {
    display: none;
  }
  #reportFullText > .section-block {
    padding: 12px;
    margin-bottom: 14px;
  }
  #reportFullText > .section-block .section-head {
    margin-bottom: 8px;
  }
  #reportFullText .company-decision-hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  #reportFullText .company-decision-hub article {
    min-height: 0;
    padding: 10px;
  }
  #reportFullText .company-decision-hub article:nth-child(n + 3) {
    display: none;
  }
  #reportFullText .company-decision-hub h3 {
    font-size: 13px;
    line-height: 1.3;
  }
  #reportFullText .company-decision-hub p {
    display: none;
  }
  #reportFullText .company-decision-hub div {
    gap: 5px;
    margin-top: 7px;
  }
  #reportFullText .company-decision-hub a {
    min-height: 28px;
    padding: 4px 7px;
    font-size: 11.5px;
  }
  #reportFullText .company-decision-hub a:nth-child(n + 3) {
    display: none;
  }
  #reportFullText .article-md {
    padding-top: 0;
  }
  .report-reference-list a {
    min-height: 44px;
    padding: 9px;
  }
  .report-command-hero {
    padding: 12px 0 14px;
  }
  .report-command-layout {
    gap: 8px;
  }
  .report-command-copy {
    min-height: 0;
    padding: 12px 14px;
  }
  .report-command-copy h1 {
    font-size: 20px;
    line-height: 1.26;
  }
  .report-command-copy .lede {
    display: none;
  }
  .report-command-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
  }
  .report-command-actions .button {
    min-height: 40px;
    font-size: 12.5px;
  }
  .report-mobile-rail {
    display: none;
  }
  .report-command-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .report-command-stats article {
    min-height: 58px;
    padding: 8px 9px;
    border: 1px solid rgba(9, 47, 43, 0.08) !important;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
  }
  .report-command-stats article:nth-child(n + 4) {
    display: none;
  }
  .report-command-stats span {
    font-size: 10.5px;
    line-height: 1.2;
  }
  .report-command-stats strong {
    margin: 3px 0 0;
    font-size: 17px;
  }
  .report-command-stats small {
    display: none;
  }
  .report-command-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .report-command-links a {
    min-height: 34px;
    padding: 5px 7px;
    font-size: 11.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .report-command-links a:nth-child(n + 3) {
    display: none;
  }
  .report-topic-section {
    margin-bottom: 10px;
  }
  .report-topic-grid {
    gap: 8px;
  }
  .report-topic-grid .case-card {
    min-height: 0;
    padding: 12px;
  }
  .report-topic-grid .case-card:nth-child(n + 3) {
    display: none;
  }
  .report-topic-grid .case-card h3 {
    font-size: 14.5px;
    line-height: 1.35;
    margin-bottom: 7px;
  }
  .report-topic-grid .case-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 8px;
    font-size: 12.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .report-topic-grid .case-links a {
    min-height: 34px;
    padding-block: 6px;
  }
  .report-search-section .news-filters {
    padding: 10px;
  }
  .report-search-section .news-filters label {
    font-size: 0;
    gap: 5px;
  }
  .report-search-section .news-filters input,
  .report-search-section .news-filters select,
  .report-search-section .news-filters button {
    min-height: 40px;
    font-size: 13px;
  }
  .report-presets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }
  .report-presets span {
    display: none;
  }
  .report-presets button {
    min-width: 0;
    min-height: 34px;
    padding: 5px 8px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .report-presets button:nth-of-type(n + 4) {
    display: none;
  }
  .report-list-surface {
    padding: 12px;
  }
  .report-list-surface .section-head {
    margin-bottom: 8px;
  }
  .report-query-status {
    min-height: 34px;
    margin-bottom: 8px;
    padding: 5px 8px;
    gap: 8px;
    font-size: 12px;
  }
  .report-query-status span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .report-query-status button {
    flex: 0 0 auto;
    min-width: 68px;
    min-height: 28px;
    padding: 3px 8px;
    font-size: 11.5px;
  }
  .report-card {
    gap: 8px;
    padding: 12px;
  }
  .report-card .report-summary {
    -webkit-line-clamp: 2;
    font-size: 12.5px;
    line-height: 1.5;
  }
  .report-card .case-links a {
    min-height: 36px;
    padding-block: 7px;
    font-size: 12px;
  }
  .amap-region-map { min-height: 360px; }
  .static-region-map { padding: 12px; }
  .static-region-board { min-height: 360px; }
  .static-region-point { min-width: 68px; padding: 4px 7px; }
  .region-cards article { align-items: flex-start; flex-direction: column; }
  .region-cards .links { flex-wrap: wrap; }
  .friend-links { gap: 6px 10px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 12px; }
  .header-inner { padding-left: 12px; padding-right: 12px; }
  .brand { gap: 8px; }
  .brand strong { font-size: 14px; }
  .header-cta { padding: 6px 10px; }
  .main-nav a { padding: 6px 10px; font-size: 13px; }
  .ticker-label { display: none; }
  .lead-story.has-carousel { min-height: 270px; }
  .hc-caption h1, .hc-caption h2, .hc-caption h3 { font-size: 15px; }
  .stat-grid article strong { font-size: 18px; }
  .static-region-board { min-height: 320px; }
  .static-region-point {
    min-width: 58px;
    padding: 3px 5px;
    transform: translate(-50%, -50%) scale(0.92);
  }
  .static-region-point span { font-size: 10.5px; }
  .static-region-point strong { font-size: 12px; }
}

/* ===== Pagination ===== */
#reportPager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 28px 0 8px;
  flex-wrap: wrap;
}
.pager-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  transition: background 140ms, border-color 140ms, color 140ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pager-btn:hover:not(:disabled) {
  border-color: var(--green-mid);
  color: var(--green-deep);
  background: var(--green-soft);
}
.pager-btn.pager-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}
.pager-btn.pager-arrow {
  color: var(--muted);
  background: var(--surface);
  font-size: 16px;
}
.pager-btn.pager-arrow:hover:not(:disabled) {
  background: var(--green-soft);
  border-color: var(--green-mid);
  color: var(--green-deep);
}
.pager-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.pager-ellipsis {
  color: var(--muted);
  font-size: 14px;
  padding: 0 2px;
  line-height: 36px;
  user-select: none;
}
.pager-info {
  color: var(--muted);
  font-size: 13px;
  margin-left: 8px;
  white-space: nowrap;
}
.pager-jump {
  width: 64px;
  height: 36px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  text-align: center;
  margin-left: 8px;
  transition: border-color 140ms;
}
.pager-jump:focus {
  outline: none;
  border-color: var(--green-mid);
}
.pager-jump::placeholder { color: var(--muted); font-size: 12px; }

/* ===== SSR archive hubs ===== */
.archive-switchboard {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.055), rgba(36, 91, 145, 0.035)),
    #fff;
}

.archive-switchboard-offset {
  margin-top: 8px;
}

.archive-link-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.archive-link-row strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: var(--radius-sm);
  background: var(--green-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.archive-link-row span {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.archive-link-row a {
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-dark);
  font-size: 12.5px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.archive-link-row a:hover {
  border-color: rgba(15, 118, 110, 0.35);
  background: #fff;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .archive-switchboard { padding: 12px; }
  .archive-link-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .archive-link-row strong {
    justify-content: flex-start;
    width: fit-content;
    padding: 0 10px;
    min-height: 26px;
  }
  .archive-link-row span { gap: 6px; }
  .archive-link-row a { padding: 5px 8px; font-size: 12px; }
}

/* ===== Product Design B homepage overrides ===== */
@media (max-width: 1080px) {
  .portal-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  }

  .hero-analysis-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }

  .hero-analysis-copy {
    grid-row: span 2;
  }

  .hero-analysis-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-analysis-actions {
    grid-column: 2;
  }

  .hero-analysis-panel .hero-hot-tags {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 0;
    justify-content: flex-start;
  }

  .home-service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-service-strip a:nth-child(3) {
    border-right: 0;
  }

  .home-service-strip a:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .portal-home-hero {
    padding: 16px 0 18px;
  }

  .portal-search-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .portal-search-bar .hero-search-tabs {
    display: flex;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .portal-search-bar .hero-search-tabs::-webkit-scrollbar { display: none; }

  .portal-search-bar .hero-search-tabs button {
    flex: 1 0 auto;
    min-height: 44px;
    padding: 8px 13px;
  }

  .portal-search-bar .hero-search-box {
    display: flex;
    align-items: center;
    min-height: 48px;
    gap: 8px;
    padding: 6px 6px 6px 12px;
  }

  .portal-search-bar .hero-search-box input {
    font-size: 14.5px;
  }

  .portal-search-bar .hero-search-box button {
    grid-column: auto;
    width: auto;
    min-width: 72px;
    min-height: 40px;
    padding: 9px 12px;
  }

  .home-mobile-fastlane {
    display: flex;
    gap: 8px;
    margin: 0 -14px 10px;
    padding: 0 14px 2px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-mobile-fastlane::-webkit-scrollbar { display: none; }

  .home-mobile-fastlane a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    flex: 0 0 132px;
    min-width: 132px;
    min-height: 54px;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(11, 111, 104, 0.12);
    border-radius: 12px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 247, 0.9)),
      #fff;
    box-shadow: var(--shadow-smooth);
    -webkit-tap-highlight-color: transparent;
    scroll-snap-align: start;
  }

  .home-mobile-fastlane span {
    width: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px;
    border-radius: 9px;
    background: rgba(11, 111, 104, 0.1);
    color: var(--brand-primary-dark);
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1;
  }

  .home-mobile-fastlane strong {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    color: var(--brand-navy);
    font-size: 13px;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .portal-hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-analysis-panel {
    display: none;
  }

  .portal-hero-grid .lead-story {
    order: 1;
  }

  .portal-hero-grid .hero-latest-panel {
    order: 2;
  }

  .hero-analysis-panel h1 {
    font-size: 23px;
    line-height: 1.34;
    margin-bottom: 8px;
  }

  .hero-analysis-panel p {
    font-size: 13.5px;
  }

  .hero-analysis-panel .hero-hot-tags {
    justify-content: flex-start;
  }

  .portal-hero-grid .lead-story.has-carousel,
  .portal-hero-grid .lead-story:not(.has-carousel) {
    min-height: 228px;
  }

  .lead-story.has-carousel::after {
    display: none;
  }

  .portal-hero-grid .hc-caption {
    padding: 58px 16px 48px;
  }

  .portal-hero-grid .hc-caption h1,
  .portal-hero-grid .hc-caption h2,
  .portal-hero-grid .hc-caption h3 {
    font-size: 16px;
    line-height: 1.42;
  }

  .portal-hero-grid .hc-dots {
    left: 52px;
    right: 52px;
    bottom: 20px;
    gap: 6px;
  }

  .portal-hero-grid .hc-dots button {
    flex: 1;
    width: auto;
    min-width: 24px;
    height: 28px;
  }

  .portal-hero-grid .hc-dots button::after {
    top: 13px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.34);
  }

  .portal-hero-grid .hc-dots button.is-active::after {
    width: 100%;
    background: #fff;
  }

  .portal-hero-grid .hero-latest-panel {
    padding: 16px 14px 14px;
  }

  .portal-hero-grid .hero-latest-panel .compact-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .portal-hero-grid .hero-latest-panel .news-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 6px 10px;
    min-height: 68px;
    padding: 12px 0;
  }

  .portal-hero-grid .hero-latest-panel .news-list a {
    flex: initial;
    flex-basis: auto;
    width: auto;
    line-height: 1.48;
    -webkit-line-clamp: 2;
  }

  .portal-hero-grid .hero-latest-panel .news-list time {
    grid-column: 2;
    margin-left: 0;
    padding-top: 0;
    font-size: 12px;
    white-space: nowrap;
    color: var(--brand-text-muted);
  }

  .portal-hero-grid .hero-latest-panel .news-list li:nth-child(n+4) {
    display: none;
  }

  .hc-counter {
    top: 12px;
    right: 12px;
    height: 28px;
    min-width: 48px;
    font-size: 11.5px;
  }

  .hc-nav {
    display: none;
  }

  .hc-prev { left: 12px; }
  .hc-next { right: 66px; }

  .hc-dots {
    right: 12px;
    bottom: 60px;
  }

  .home-news-meta {
    grid-column: 1 / -1;
    gap: 6px;
    margin-top: 0;
  }

  .home-news-meta span {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 12px;
    line-height: 1.25;
  }

  .home-news-meta .desktop-only {
    display: none;
  }

  .portal-hero-grid .hero-latest-panel h2 {
    max-width: 7em;
    font-size: 20px;
    line-height: 1.25;
  }

  .home-service-strip {
    display: none;
  }

  .portal-home-hero .trust-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }

  .portal-home-hero .trust-metrics-grid article {
    min-height: 58px;
    padding: 8px 12px;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .portal-home-hero .trust-metrics-grid span {
    font-size: 11px;
    line-height: 1.25;
  }

  .portal-home-hero .trust-metrics-grid strong {
    font-size: 19px;
    line-height: 1.18;
  }

  .portal-home-hero .trust-metrics-grid article:nth-child(-n + 2) {
    border-top: 0;
  }

  .portal-home-hero .trust-metrics-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .policy-command-hero {
    padding: 16px 0 18px;
  }

  .policy-command-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .policy-command-copy {
    padding: 16px;
  }

  .policy-command-copy h1 {
    font-size: 22px;
    line-height: 1.34;
  }

  .policy-command-copy .lede {
    font-size: 13.5px;
  }

  .policy-deadline-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 7px;
    margin-top: 12px;
  }

  .policy-deadline-strip span {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 7px 9px;
    align-items: start;
    justify-content: start;
    font-size: 12px;
    line-height: 1.35;
  }

  .policy-deadline-strip strong {
    display: block;
    margin-bottom: 3px;
  }

  .policy-command-panel {
    grid-template-columns: 1fr;
  }

  .policy-command-panel a,
  .policy-command-panel a:nth-child(2n),
  .policy-command-panel a:nth-last-child(-n + 2) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 3px 9px;
    min-height: 50px;
    padding: 7px 9px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-command-panel a:nth-child(2n) {
    border-right: 0;
  }

  .policy-command-panel a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .policy-command-panel a:last-child {
    border-bottom: 0;
  }

  .policy-command-panel span {
    grid-row: span 2;
    min-width: 38px;
    height: 26px;
    margin-bottom: 0;
  }

  .policy-command-panel strong {
    display: block;
    font-size: 13px;
  }

  .policy-command-panel small {
    display: block;
    margin-top: 0;
    font-size: 11.5px;
    line-height: 1.28;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .policy-command-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
    overflow: visible;
    padding-bottom: 2px;
  }

  .policy-command-tabs a {
    justify-content: center;
    min-width: 0;
    min-height: 34px;
    padding: 6px 8px;
    font-size: 12px;
    text-align: center;
  }

  .policy-command-tabs a:nth-child(n + 7) {
    display: none;
  }

  .policy-quick-path {
    display: none;
  }

  .policy-quick-path a {
    min-width: 0;
    min-height: 64px;
    padding: 10px 11px;
  }

  .policy-mobile-materials {
    display: block;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(11, 111, 104, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-smooth);
  }

  .policy-mobile-materials-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
  }

  .policy-mobile-materials-head h2 {
    margin: 0;
    color: var(--brand-navy);
    font-size: 16px;
    line-height: 1.35;
  }

  .policy-mobile-materials-head a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(11, 111, 104, 0.09);
    color: var(--brand-primary-dark);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 750;
  }

  .policy-mobile-materials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .policy-mobile-materials-grid a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    min-width: 0;
    min-height: 52px;
    align-items: start;
    padding: 8px 9px;
    border: 1px solid rgba(11, 111, 104, 0.12);
    border-radius: 10px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.92)),
      #fff;
  }

  .policy-mobile-materials-grid span {
    grid-row: auto;
    width: fit-content;
    min-width: 28px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary-dark);
    font-size: 11px;
    font-weight: 820;
  }

  .policy-mobile-materials-grid strong {
    min-width: 0;
    color: var(--brand-navy);
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .policy-mobile-materials-grid small {
    display: none;
  }

  .policy-status-strip {
    display: none;
  }
}

@media (max-width: 420px) {
  .portal-search-bar .hero-search-icon {
    display: none;
  }

  .portal-search-bar .hero-search-box {
    padding-left: 10px;
  }

  .portal-hero-grid .lead-story.has-carousel,
  .portal-hero-grid .lead-story:not(.has-carousel) {
    min-height: 248px;
  }
}

@media (max-width: 720px) {
  .enterprise-command-hero > .wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .enterprise-command-head {
    display: contents;
  }

  .enterprise-command-copy {
    order: 1;
    min-height: 0;
    padding: 12px 14px;
  }

  .enterprise-command-copy h1 {
    font-size: 20px;
    line-height: 1.28;
  }

  .enterprise-command-copy .lede {
    display: none;
  }

  .workbench-command-surface {
    order: 2;
    margin-top: 0;
    padding: 10px;
  }

  .workbench-command-surface .workbench-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .workbench-command-surface .workbench-search label {
    gap: 5px;
    font-size: 0;
  }

  .workbench-command-surface .workbench-query-field,
  .workbench-command-surface .workbench-search .button {
    grid-column: 1 / -1;
  }

  .workbench-query-field input,
  .workbench-command-surface .workbench-search select,
  .workbench-command-surface .workbench-search .button {
    min-height: 40px;
    font-size: 13px;
  }

  .workbench-presets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-wrap: initial;
    gap: 6px;
    margin: 8px 0 0;
    padding: 0;
    overflow: visible;
  }

  .workbench-presets span {
    display: none;
  }

  .workbench-presets button {
    min-width: 0;
    min-height: 34px;
    padding: 5px 10px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .workbench-presets button:nth-of-type(n + 4) {
    display: none;
  }

  .workbench-command-stats {
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .workbench-command-stats article {
    min-width: 0;
    min-height: 58px;
    padding: 8px 9px;
    border: 1px solid rgba(9, 47, 43, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-smooth);
  }

  .workbench-command-stats article:nth-child(n + 4) {
    display: none;
  }

  .workbench-command-stats strong {
    margin: 3px 0 0;
    font-size: 17px;
  }

  .workbench-command-stats span {
    min-height: 0;
    font-size: 10.5px;
    line-height: 1.2;
  }

  .workbench-command-stats small {
    display: none;
  }
}

.topic-card .topic-card-actions a {
  min-height: 44px;
  padding-top: 9px;
  padding-bottom: 9px;
}

@media (max-width: 720px) {
  .company-detail-hero {
    padding: 12px 0 14px;
  }

  .company-detail-hero-layout {
    gap: 8px;
  }

  .company-detail-identity {
    min-height: 0;
    padding: 12px 14px;
  }

  .company-detail-identity .kicker {
    margin-bottom: 6px;
    font-size: 11.5px;
  }

  .company-detail-identity h1 {
    font-size: 20px;
    line-height: 1.28;
  }

  .company-detail-identity .lede {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .company-detail-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 9px;
  }

  .company-detail-actions .button,
  .company-detail-actions .button.primary {
    grid-column: auto;
    min-height: 38px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .company-detail-actions .button:nth-child(n + 3) {
    display: none;
  }

  .company-detail-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .company-detail-stats article {
    min-height: 58px;
    padding: 8px 9px;
    border: 1px solid rgba(9, 47, 43, 0.08) !important;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
  }

  .company-detail-stats article:nth-child(n + 4) {
    display: none;
  }

  .company-detail-stats span {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .company-detail-stats strong {
    margin: 3px 0 0;
    font-size: 15.5px;
    line-height: 1.2;
  }

  .company-detail-stats small {
    display: none;
  }

  .company-detail-hero .company-path-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 9px;
  }

  .company-detail-hero .company-path-overview a {
    min-height: 48px;
    padding: 7px;
  }

  .company-detail-hero .company-path-overview a:nth-child(n + 4) {
    display: none;
  }

  .company-path-overview span {
    font-size: 10.5px;
  }

  .company-path-overview strong {
    font-size: 11.5px;
    line-height: 1.25;
    -webkit-line-clamp: 1;
  }

  .company-portrait-card {
    padding: 12px;
  }

  .company-portrait-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .company-portrait-item {
    min-height: 0;
    padding: 10px;
  }

  .company-portrait-item:nth-child(n + 3) {
    display: none;
  }

  .company-portrait-item strong {
    font-size: 13px;
  }

  .company-portrait-item div {
    gap: 5px;
  }

  .company-portrait-item span {
    min-height: 24px;
    padding: 3px 7px;
    font-size: 11px;
  }

  .portrait-profile-list,
  .company-profile-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .portrait-profile-list div,
  .company-profile-list div {
    min-height: 54px;
    padding: 8px;
  }

  .portrait-profile-list div:nth-child(n + 7),
  .company-profile-list div:nth-child(n + 7) {
    display: none;
  }

  .company-profile-list dt {
    font-size: 11px;
  }

  .company-profile-list dd {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12.5px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 720px) {
  .policy-command-hero {
    padding: 12px 0 14px;
  }

  .policy-command-grid {
    gap: 8px;
  }

  .policy-command-copy {
    padding: 12px 14px;
  }

  .policy-command-copy h1 {
    font-size: 20px;
    line-height: 1.26;
  }

  .policy-command-copy .lede {
    display: none;
  }

  .policy-deadline-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
  }

  .policy-deadline-strip span {
    min-height: 50px;
    padding: 7px;
    font-size: 11px;
  }

  .policy-deadline-strip span:nth-child(n + 4) {
    display: none;
  }

  .policy-command-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .policy-command-panel a,
  .policy-command-panel a:nth-child(2n),
  .policy-command-panel a:nth-last-child(-n + 2) {
    min-height: 56px;
    padding: 8px;
    border: 1px solid rgba(9, 47, 43, 0.08);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
  }

  .policy-command-panel a:nth-child(n + 5) {
    display: none;
  }

  .policy-command-panel span {
    min-width: 28px;
    height: 22px;
    font-size: 10.5px;
  }

  .policy-command-panel strong {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .policy-command-panel small {
    display: none;
  }

  .policy-mobile-materials {
    margin-top: 8px;
    padding: 10px;
  }

  .policy-mobile-materials-head {
    margin-bottom: 6px;
  }

  .policy-mobile-materials-grid a {
    min-height: 48px;
    padding: 7px;
  }

  .policy-mobile-materials-grid a:nth-child(n + 5) {
    display: none;
  }

  .policy-command-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  .policy-command-tabs a {
    min-height: 32px;
    padding: 5px 6px;
    font-size: 11.5px;
  }

  .policy-command-tabs a:nth-child(n + 5) {
    display: none;
  }

  .policy-command-hero + .page-main {
    padding-top: 18px;
  }

  .policy-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .policy-action-grid article {
    min-height: 0;
    padding: 10px;
  }

  .policy-action-grid article:nth-child(n + 3) {
    display: none;
  }

  .policy-action-grid p {
    display: none;
  }

  .policy-action-grid a {
    min-height: 32px;
    margin-top: 6px;
    padding: 5px 8px;
    font-size: 11.5px;
  }

  .policy-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .policy-hub-card {
    min-height: 0;
    padding: 10px;
  }

  .policy-hub-card:nth-child(n + 3) {
    display: none;
  }

  .policy-hub-card strong {
    font-size: 13px;
    line-height: 1.32;
  }

  .policy-hub-card small {
    display: none;
  }

  .policy-file-list {
    gap: 8px;
  }

  .policy-file-list article {
    padding: 11px 12px;
  }

  .policy-file-list h3 {
    font-size: 13.5px;
  }

  .policy-file-list p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .policy-file-list .file-action {
    min-height: 34px;
    padding: 6px 10px;
  }

  .policy-download-grid article {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .assessment-command-hero {
    padding: 12px 0 14px;
  }

  .assessment-command-layout {
    gap: 8px;
  }

  .assessment-command-copy {
    min-height: 0;
    padding: 12px 14px;
  }

  .assessment-command-copy h1 {
    font-size: 20px;
    line-height: 1.26;
  }

  .assessment-command-copy .lede {
    display: none;
  }

  .assessment-command-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }

  .assessment-command-actions .button {
    min-height: 40px;
    font-size: 12.5px;
  }

  .assessment-command-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .assessment-command-stats article {
    min-height: 58px;
    padding: 8px 9px;
    border: 1px solid rgba(9, 47, 43, 0.08) !important;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
  }

  .assessment-command-stats article:nth-child(n + 4) {
    display: none;
  }

  .assessment-command-stats span {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .assessment-command-stats strong {
    margin: 3px 0 0;
    font-size: 17px;
  }

  .assessment-command-stats small {
    display: none;
  }

  .assessment-quick-path {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 10px;
  }

  .assessment-quick-path a {
    min-height: 54px;
    padding: 7px 6px;
  }

  .assessment-quick-path a:nth-child(n + 5) {
    display: none;
  }

  .assessment-quick-path span {
    font-size: 10px;
  }

  .assessment-quick-path strong {
    font-size: 11.5px;
    line-height: 1.2;
  }

  .assessment-state-panel {
    padding: 12px;
    margin-bottom: 18px;
  }

  .evaluation-guide-head {
    gap: 8px;
    margin-bottom: 9px;
  }

  .evaluation-guide-head .kicker,
  .evaluation-guide-head > span,
  .evaluation-guide-head-actions > span {
    display: none;
  }

  .evaluation-guide-head h2 {
    font-size: 18px;
    line-height: 1.32;
  }

  .evaluation-guide-head-actions {
    display: block;
  }

  .evaluation-guide-head-actions .button {
    width: 100%;
    min-height: 42px;
  }

  .evaluation-guide-grid {
    display: block;
  }

  .evaluation-guide-side {
    display: none;
  }

  .evaluation-guide-main {
    padding: 10px;
  }

  .evaluation-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 8px;
  }

  .evaluation-flow article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 58px;
    gap: 6px;
    padding: 8px;
  }

  .evaluation-flow article:nth-child(n + 5) {
    display: none;
  }

  .evaluation-flow span {
    min-width: 26px;
    height: 22px;
    font-size: 10.5px;
  }

  .evaluation-flow strong {
    font-size: 12.5px;
  }

  .evaluation-flow small {
    display: none;
  }

  .material-prep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .material-prep-grid article {
    min-height: 54px;
    padding: 8px;
  }

  .material-prep-grid article:nth-child(n + 3) {
    display: none;
  }

  .material-prep-grid span {
    margin: 0;
    font-size: 12px;
  }

  .material-prep-grid p {
    display: none;
  }

  .evaluation-start-row {
    margin-top: 9px;
    padding-top: 9px;
  }

  .evaluation-start-row span {
    display: none;
  }

  .evaluation-start-row .button {
    min-height: 42px;
  }
}

@media (max-width: 720px) {
  .topic-detail-hero {
    padding: 12px 0 14px;
  }

  .topic-detail-layout {
    gap: 8px;
  }

  .topic-detail-copy {
    min-height: 0;
    padding: 12px 14px;
  }

  .topic-detail-copy h1 {
    font-size: 20px;
    line-height: 1.26;
  }

  .topic-detail-copy .lede {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .topic-detail-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
  }

  .topic-detail-actions .button {
    min-height: 38px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .topic-detail-actions .button:nth-child(n + 3) {
    display: none;
  }

  .topic-detail-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .topic-detail-stats article {
    min-height: 58px;
    padding: 8px 9px;
    border: 1px solid rgba(9, 47, 43, 0.08) !important;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
  }

  .topic-detail-stats article:nth-child(n + 4) {
    display: none;
  }

  .topic-detail-stats span {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .topic-detail-stats strong {
    margin: 3px 0 0;
    font-size: 15px;
    line-height: 1.2;
  }

  .topic-detail-stats small {
    display: none;
  }

  .topic-detail-hero + .page-main .two-col > div {
    display: flex;
    flex-direction: column;
  }

  .topic-detail-hero + .page-main .two-col > div > section {
    order: 20;
  }

  .topic-detail-hero + .page-main #topicArticle {
    order: 1;
  }

  .topic-detail-hero + .page-main .two-col > div > section:has(.report-card) {
    order: 2;
  }

  .topic-detail-hero + .page-main .two-col > div > section:has(.related-company-list),
  .topic-detail-hero + .page-main .two-col > div > section:has(table) {
    order: 30;
  }

  .topic-detail-hero + .page-main .section-block {
    padding: 12px;
    margin-bottom: 14px;
  }

  .topic-detail-hero + .page-main .article-md p {
    line-height: 1.62;
  }

  .topic-detail-hero + .page-main .article-md p:nth-of-type(n + 4) {
    display: none;
  }

  .topic-detail-hero + .page-main .section-block:has(table) .table-wrap {
    max-height: 210px;
    overflow: hidden;
  }

  .topic-detail-hero + .page-main .section:has(.report-card) .case-grid {
    gap: 8px;
  }

  .topic-detail-hero + .page-main .section:has(.report-card) .report-card {
    padding: 12px;
  }

  .topic-detail-hero + .page-main .section:has(.report-card) .report-card:nth-child(n + 4) {
    display: none;
  }

  .topic-detail-hero + .page-main .related-company-list a:nth-child(n + 7) {
    display: none;
  }
}

@media (max-width: 720px) {
  .topic-hub-hero {
    padding: 12px 0 14px;
  }

  .topic-hub-layout {
    gap: 8px;
  }

  .topic-hub-copy {
    min-height: 0;
    padding: 12px 14px;
  }

  .topic-hub-copy h1 {
    font-size: 20px;
    line-height: 1.26;
  }

  .topic-hub-copy .lede {
    display: none;
  }

  .topic-hub-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
  }

  .topic-hub-actions .button {
    min-height: 38px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .topic-hub-actions .button:nth-child(n + 3) {
    display: none;
  }

  .topic-hub-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .topic-hub-stats article {
    min-height: 58px;
    padding: 8px 9px;
    border: 1px solid rgba(9, 47, 43, 0.08) !important;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
  }

  .topic-hub-stats article:nth-child(n + 4) {
    display: none;
  }

  .topic-hub-stats span {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .topic-hub-stats strong {
    margin: 3px 0 0;
    font-size: 16px;
  }

  .topic-hub-stats small {
    display: none;
  }

  .topic-path-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  .topic-path-strip a {
    min-height: 50px;
    padding: 7px 6px;
  }

  .topic-path-strip span {
    min-height: 20px;
    padding: 1px 6px;
    font-size: 10px;
  }

  .topic-path-strip strong {
    font-size: 11.5px;
    line-height: 1.22;
  }

  .topic-hub-hero + .page-main {
    padding-top: 18px;
  }

  .topic-hub-hero + .page-main > .section-block:nth-of-type(1),
  .topic-hub-hero + .page-main > .section-block:nth-of-type(2) {
    padding: 12px;
    margin-bottom: 14px;
  }

  .topic-hub-hero + .page-main > .section-block:nth-of-type(1) .section-head,
  .topic-hub-hero + .page-main > .section-block:nth-of-type(2) .section-head {
    margin-bottom: 8px;
  }

  .topic-hub-hero + .page-main > .section-block:nth-of-type(1) .table-wrap,
  .topic-hub-hero + .page-main > .section-block:nth-of-type(2) .table-wrap {
    max-height: 176px;
    overflow: hidden;
  }

  .topic-hub-hero + .page-main > .section-block:nth-of-type(1) .data-table tr:nth-child(n + 4),
  .topic-hub-hero + .page-main > .section-block:nth-of-type(2) .data-table tr:nth-child(n + 4) {
    display: none;
  }

  .topic-hub-hero + .page-main .topic-card {
    gap: 7px 8px;
    padding: 10px;
  }

  .topic-hub-hero + .page-main .topic-card h3 {
    font-size: 13.5px;
    line-height: 1.32;
  }

  .topic-hub-hero + .page-main .topic-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .topic-hub-hero + .page-main .topic-card-stats span {
    min-height: 38px;
    padding: 5px 6px;
  }

  .topic-hub-hero + .page-main .topic-card-actions a {
    min-width: 68px;
    min-height: 38px;
    padding: 7px;
  }
}

@media (max-width: 720px) {
  .topic-hub-hero + .page-main .table-wrap,
  .topic-detail-hero + .page-main .table-wrap {
    margin-left: -2px;
    margin-right: -2px;
    overflow-x: auto;
    border: 1px solid rgba(9, 47, 43, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-smooth);
    -webkit-overflow-scrolling: touch;
  }

  .topic-hub-hero + .page-main .data-table,
  .topic-detail-hero + .page-main .data-table {
    min-width: 100%;
    table-layout: fixed;
    font-size: 12.5px;
  }

  .topic-hub-hero + .page-main .data-table th,
  .topic-detail-hero + .page-main .data-table th {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--brand-bg-light);
  }

  .topic-hub-hero + .page-main .data-table td,
  .topic-detail-hero + .page-main .data-table td,
  .topic-hub-hero + .page-main .data-table th,
  .topic-detail-hero + .page-main .data-table th {
    padding: 8px 9px;
    white-space: normal;
  }

  .topic-hub-hero + .page-main .topic-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding: 12px;
  }

  .topic-hub-hero + .page-main .topic-card .topic-card-meta,
  .topic-hub-hero + .page-main .topic-card h3,
  .topic-hub-hero + .page-main .topic-card p {
    grid-column: 1 / -1;
  }

  .topic-hub-hero + .page-main .topic-card-stats {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
  }

  .topic-hub-hero + .page-main .topic-card-stats span {
    min-height: 44px;
    padding: 6px 7px;
  }

  .topic-hub-hero + .page-main .topic-card-stats strong {
    font-size: 15px;
  }

  .topic-hub-hero + .page-main .topic-card-stats small {
    font-size: 10.5px;
  }

  .topic-hub-hero + .page-main .topic-card-actions {
    grid-column: 2;
    align-self: stretch;
    display: flex;
    margin: 0;
  }

  .topic-hub-hero + .page-main .topic-card-actions a {
    min-width: 74px;
    min-height: 44px;
    padding-inline: 9px;
  }
}

@media (max-width: 720px) {
  .workbench-result-card .section-head {
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  .workbench-result-card .section-head h2 {
    font-size: 17px;
  }

  .workbench-active-filters {
    flex-wrap: nowrap;
    margin: 0 -13px 5px;
    padding: 0 13px 2px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .workbench-active-filters::-webkit-scrollbar {
    display: none;
  }

  .workbench-active-filters span {
    flex: 0 0 auto;
    min-height: 22px;
    padding: 2px 7px;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .workbench-query-status {
    min-height: 34px;
    margin-bottom: 8px;
    padding: 5px 8px;
    gap: 8px;
    font-size: 12px;
  }

  .workbench-query-status span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .workbench-query-status button {
    flex: 0 0 auto;
    min-width: 68px;
    min-height: 28px;
    padding: 3px 8px;
    font-size: 11.5px;
  }

  .company-focus-card {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 12px;
  }

  .company-focus-head {
    gap: 8px;
  }

  .company-focus-head h4 {
    margin: 4px 0 2px;
    font-size: 16px;
    line-height: 1.32;
  }

  .company-focus-head .src {
    display: none;
  }

  .company-pills {
    flex-wrap: nowrap;
    gap: 5px;
    overflow: hidden;
  }

  .company-pill {
    flex: 0 0 auto;
    min-height: 21px;
    padding: 2px 7px;
    font-size: 10.8px;
  }

  .company-pill:nth-child(n + 4) {
    display: none;
  }

  .company-signal-strip {
    display: flex;
    gap: 6px;
    margin: 8px -12px 6px;
    padding: 0 12px 2px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .company-signal-strip::-webkit-scrollbar {
    display: none;
  }

  .company-signal-strip div {
    flex: 0 0 88px;
    min-height: 48px;
    padding: 7px;
  }

  .company-signal-strip dt {
    margin-bottom: 2px;
    font-size: 10.8px;
  }

  .company-signal-strip dd {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .company-row .company-intro {
    display: -webkit-box;
    overflow: hidden;
    margin: 5px 0 0;
    font-size: 12.5px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .company-sector,
  .company-product {
    display: none;
  }

  .company-focus-side {
    border: 0;
    background: transparent;
    padding: 0;
  }

  .company-focus-side > strong {
    display: none;
  }

  .company-focus-side .company-hub-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .company-focus-side .company-hub-links a {
    justify-content: center;
    min-height: 30px;
    padding: 4px 6px;
    font-size: 11.5px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .company-focus-side .company-hub-links a:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 720px) {
  .en-hero-grid {
    gap: 10px;
  }

  .en-hero-card,
  .en-side-card,
  .en-company-search-hero,
  .en-company-card,
  .en-report-card,
  .en-entry-card,
  .en-feature-report {
    border-radius: 10px;
  }

  .en-hero-card {
    padding: 14px;
  }

  .en-hero-card h1 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.18;
  }

  .en-hero-card p {
    display: -webkit-box;
    margin-bottom: 10px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .en-search-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 10px;
    padding: 6px;
    border-radius: 10px;
  }

  .en-search-row input {
    min-height: 36px;
    padding-inline: 8px;
    font-size: 13px;
  }

  .en-search-row .button {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
  }

  .en-side-card {
    padding: 12px;
  }

  .en-side-card h2 {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .en-metric-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .en-metric-list div {
    display: grid;
    gap: 3px;
    min-height: 50px;
    padding: 8px;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 8px;
    background: #fff;
  }

  .en-metric-list dt {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .en-metric-list dd {
    font-size: 15px;
    line-height: 1.15;
    text-align: left;
  }

  .en-side-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .en-side-actions a {
    justify-content: center;
    min-height: 32px;
    padding: 5px 7px;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .en-home-official {
    margin-top: 10px;
    padding-top: 10px;
  }

  .en-home-official h3 {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .en-home-official h3::before {
    width: 6px;
    height: 18px;
  }

  .en-home-official .official-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .en-home-official .official-check-list a {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
    min-height: 58px;
    padding: 7px;
  }

  .en-home-official .official-check-list a::before {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    font-size: 9.5px;
  }

  .en-home-official .official-check-list strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .en-home-official .official-check-list span {
    display: none;
  }

  .en-research-paths,
  .en-entry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 7px;
    margin: 8px 0 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .en-research-paths a {
    min-height: 58px;
    padding: 8px;
    scroll-snap-align: unset;
  }

  .en-research-paths span {
    font-size: 10px;
  }

  .en-research-paths strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .en-research-paths small {
    display: none;
  }

  .en-entry-card {
    min-height: 118px;
    padding: 10px;
    scroll-snap-align: unset;
  }

  .en-entry-card h2,
  .en-entry-card h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .en-entry-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .en-entry-card:nth-child(n + 5) {
    display: none;
  }

  .en-company-search-hero {
    padding: 12px;
  }

  .en-company-search-hero h1 {
    font-size: 20px;
    line-height: 1.22;
  }

  .en-company-search-hero p {
    font-size: 12.5px;
    line-height: 1.45;
    -webkit-line-clamp: 1;
  }

  .en-company-filter,
  .en-report-filter {
    gap: 7px;
    margin-top: 8px;
  }

  .en-company-filter label span {
    margin-bottom: 3px;
    font-size: 9.5px;
  }

  .en-company-filter input,
  .en-company-filter select {
    min-height: 36px;
    font-size: 12px;
  }

  .en-filter-actions .button {
    min-height: 38px;
    font-size: 12px;
  }

  .en-company-card,
  .en-report-card {
    padding: 12px;
  }

  .en-company-card h2,
  .en-report-card h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .en-company-card p,
  .en-report-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .en-company-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  .en-company-card li {
    min-height: 44px;
    padding: 6px 7px;
  }

  .en-company-card li span,
  .en-company-card li strong {
    font-size: 11px;
  }

  .en-company-card nav,
  .en-report-card nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 9px;
  }

  .en-company-card nav a,
  .en-report-card nav a {
    justify-content: center;
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .en-topic-article {
    padding: 14px;
  }

  .en-topic-article section + section,
  .en-topic-matrix {
    margin-top: 16px;
    padding-top: 14px;
  }

  .en-topic-article h2,
  .en-topic-matrix .section-head h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .en-topic-article p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .en-topic-matrix-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .en-topic-matrix article {
    gap: 6px;
    padding: 10px;
  }

  .en-topic-matrix strong {
    font-size: 13.5px;
    -webkit-line-clamp: 2;
  }

  .en-topic-matrix p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .en-topic-official-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
  }

  .en-topic-official-strip h2 {
    font-size: 17px;
    line-height: 1.28;
  }

  .en-topic-official-strip .official-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .en-topic-official-strip .official-check-list a {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
    min-height: 58px;
    padding: 7px;
  }

  .en-topic-official-strip .official-check-list a::before {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    font-size: 9.5px;
  }

  .en-topic-official-strip .official-check-list strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .en-topic-official-strip .official-check-list span {
    display: none;
  }
}

@media (max-width: 720px) {
  input,
  select,
  textarea,
  .hero-search-box input,
  .portal-search-bar .hero-search-box input,
  .mobile-search-card input,
  .workbench-query-field input,
  .workbench-search input,
  .workbench-search select,
  .report-search-section .news-filters input,
  .report-search-section .news-filters select,
  .en-search-row input,
  .en-company-filter input,
  .en-company-filter select {
    font-size: 16px !important;
  }
}

/* ===== Mobile pixel refactor layer ===== */
@media (max-width: 720px) {
  :root {
    --mobile-max-width: 480px;
    --mobile-pad: 16px;
    --mobile-gap-sm: 8px;
    --mobile-gap-md: 12px;
    --mobile-gap-lg: 16px;
    --mobile-bg: #f5f8f7;
    --mobile-card: #fff;
    --mobile-line: #e8efed;
    --mobile-shadow: 0 2px 10px rgba(9, 47, 43, 0.045);
    --mobile-sticky-shadow: 0 4px 14px rgba(9, 47, 43, 0.07);
  }

  body {
    background: var(--mobile-bg);
  }

  body.has-mobile-tabs {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .wrap {
    padding-right: var(--mobile-pad);
    padding-left: var(--mobile-pad);
  }

  .topbar {
    display: block;
    background: #fff8e8;
    border-bottom: 1px solid rgba(250, 173, 20, 0.16);
  }

  .topbar-inner {
    min-height: 32px;
    padding: 0 var(--mobile-pad);
    gap: 8px;
    color: #b55a00;
    font-size: 12px;
    line-height: 1.25;
  }

  .topbar-inner span:first-child {
    display: none;
  }

  .topbar-inner .countdown {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    max-width: 52%;
    min-height: 20px;
    overflow: hidden;
    border-radius: 4px;
    color: #b55a00;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar-inner .countdown::before {
    content: "进行中";
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    margin-right: 6px;
    padding: 0 5px;
    border-radius: 4px;
    background: var(--brand-warning);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
  }

  .topbar-inner .countdown em {
    color: var(--brand-danger);
    font-weight: 800;
  }

  .topbar-inner span:nth-child(3) {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #b55a00;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar strong,
  .topbar-inner span:nth-child(3) strong {
    color: #b55a00;
    font-weight: 650;
  }

  .topbar-inner span:nth-child(3)::before {
    content: "| ";
    color: rgba(181, 90, 0, 0.5);
  }

  .site-header {
    top: 0;
    box-shadow: var(--mobile-sticky-shadow);
  }

  .mobile-h5-header {
    min-height: 52px;
    padding: 8px var(--mobile-pad);
    gap: 8px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
  }

  .mobile-title {
    color: var(--brand-navy);
    font-size: 18px;
    font-weight: 850;
  }

  .mobile-language-switch {
    min-width: 44px;
    min-height: 38px;
    border: 1px solid var(--mobile-line);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-primary-dark);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-search-trigger {
    min-width: 78px;
    min-height: 40px;
    border-radius: 999px;
    padding: 0 14px;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(11, 111, 104, 0.16);
  }

  .portal-home-hero {
    padding: 10px 0 16px;
    background: var(--mobile-bg);
  }

  .portal-search-bar {
    gap: 10px;
    margin: 0 0 12px;
  }

  .portal-search-bar .hero-search-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    min-height: 44px;
    overflow: hidden;
    border: 1px solid var(--mobile-line);
    border-radius: 999px;
    background: #fff;
    padding: 4px;
  }

  .portal-search-bar .hero-search-tabs button {
    min-height: 36px;
    border-radius: 999px;
    padding: 0 8px;
    color: var(--brand-text-muted);
    font-size: 14px;
    font-weight: 750;
  }

  .portal-search-bar .hero-search-tabs button.is-active {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: none;
  }

  .portal-search-bar .hero-search-box {
    height: 48px;
    min-height: 48px;
    border: 1px solid var(--mobile-line);
    border-radius: 12px;
    padding: 4px 6px 4px 12px;
    background: #fff;
    box-shadow: var(--mobile-shadow);
  }

  .portal-search-bar .hero-search-icon {
    display: inline-flex;
    width: 22px;
    justify-content: center;
    color: var(--brand-text-muted);
    font-size: 18px;
  }

  .portal-search-bar .hero-search-box input {
    color: var(--brand-text-main);
    font-size: 16px;
  }

  .portal-search-bar .hero-search-box input::placeholder {
    color: #9aa4a0;
  }

  .portal-search-bar .hero-search-box button {
    min-width: 72px;
    min-height: 38px;
    border-radius: 10px;
    background: var(--brand-primary);
    font-size: 14px;
  }

  .home-mobile-fastlane {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 12px;
    padding: 12px 10px;
    overflow: visible;
    border: 1px solid var(--mobile-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--mobile-shadow);
  }

  .home-mobile-fastlane a {
    display: flex;
    min-width: 0;
    min-height: 72px;
    flex: initial;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    scroll-snap-align: none;
  }

  .home-mobile-fastlane span {
    width: 42px;
    min-height: 42px;
    border-radius: 50%;
    background: var(--brand-primary-soft);
    color: var(--brand-primary-dark);
    font-size: 12px;
    line-height: 1.05;
  }

  .home-mobile-fastlane strong {
    display: block;
    color: var(--brand-text-main);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .portal-hero-grid {
    gap: 12px;
  }

  .portal-hero-grid .lead-story.has-carousel,
  .portal-hero-grid .lead-story:not(.has-carousel) {
    min-height: 236px;
    border-radius: 14px;
    box-shadow: var(--mobile-shadow);
  }

  .portal-hero-grid .hc-cat {
    top: 12px;
    left: 12px;
    min-height: 28px;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12px;
  }

  .hc-counter {
    min-width: 52px;
    height: 30px;
    border-radius: 999px;
    font-size: 12px;
  }

  .portal-hero-grid .hc-caption {
    padding: 64px 16px 48px;
  }

  .portal-hero-grid .hc-caption h1,
  .portal-hero-grid .hc-caption h2,
  .portal-hero-grid .hc-caption h3 {
    font-size: 18px;
    line-height: 1.38;
    -webkit-line-clamp: 2;
  }

  .portal-hero-grid .hc-caption p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.35;
  }

  .portal-hero-grid .hc-dots {
    left: 64px;
    right: 64px;
    bottom: 18px;
  }

  .portal-hero-grid .hero-latest-panel {
    border: 1px solid var(--mobile-line);
    border-radius: 14px;
    background: #fff;
    padding: 14px var(--mobile-pad);
    box-shadow: var(--mobile-shadow);
  }

  .portal-hero-grid .hero-latest-panel .compact-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    border-bottom: 1px solid var(--mobile-line);
  }

  .portal-hero-grid .hero-latest-panel h2 {
    max-width: none;
    font-size: 18px;
    line-height: 1.28;
  }

  .portal-hero-grid .hero-latest-panel .more {
    min-height: 32px;
    color: var(--brand-text-muted);
    font-size: 13px;
  }

  .home-news-meta {
    gap: 6px;
  }

  .home-news-meta span {
    min-height: 26px;
    border-radius: 999px;
    background: #f2f7f5;
    color: var(--brand-text-muted);
    font-size: 12px;
  }

  .portal-hero-grid .hero-latest-panel .news-list li {
    min-height: 74px;
    padding: 14px 0;
  }

  .portal-hero-grid .hero-latest-panel .news-list a {
    color: var(--brand-text-main);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .portal-hero-grid .hero-latest-panel .news-list time {
    font-size: 12px;
  }

  .badge {
    min-height: 24px;
    border-radius: 6px;
    padding: 3px 7px;
    font-size: 11px;
  }

  .portal-home-hero .trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .portal-home-hero .trust-metrics-grid article {
    min-height: 82px;
    border: 1px solid var(--mobile-line);
    border-radius: 12px;
    background: #fff;
    padding: 13px 14px;
    box-shadow: var(--mobile-shadow);
  }

  .portal-home-hero .trust-metrics-grid article:nth-child(-n + 2),
  .portal-home-hero .trust-metrics-grid article:nth-child(2n) {
    border: 1px solid var(--mobile-line);
  }

  .portal-home-hero .trust-metrics-grid span {
    color: var(--brand-text-muted);
    font-size: 12px;
  }

  .portal-home-hero .trust-metrics-grid strong {
    margin-top: 5px;
    color: var(--brand-navy);
    font-size: 26px;
    line-height: 1.1;
  }

  .mobile-bottom-tabs {
    left: 50%;
    right: auto;
    width: 100%;
    max-width: var(--mobile-max-width);
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding: 5px 8px calc(5px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    border-top: 1px solid var(--mobile-line);
    box-shadow: 0 -2px 12px rgba(9, 47, 43, 0.06);
  }

  .mobile-bottom-tabs a {
    min-height: 48px;
    border-radius: 12px;
    font-size: 10.5px;
  }

  .mobile-bottom-tabs a:nth-child(3) {
    min-height: 48px;
    justify-content: center;
    padding-bottom: 0;
    transform: none;
  }

  .mobile-bottom-tabs a:nth-child(3)::before {
    display: none;
  }

  .mobile-bottom-tabs a:nth-child(3) svg {
    color: currentColor;
    margin-bottom: 2px;
    transform: none;
  }

  .mobile-bottom-tabs a:nth-child(3) span {
    color: currentColor;
    font-weight: inherit;
  }

  .mobile-bottom-tabs a.is-active {
    background: var(--brand-primary-soft);
    color: var(--brand-primary-dark);
    font-weight: 800;
  }

  .mobile-bottom-tabs svg {
    width: 22px;
    height: 22px;
  }
}

/* ===== Search Experience Polish ===== */
.hero-suggest-loading span {
  background-size: 220px 100%;
}

@media (max-width: 860px) {
  .portal-search-bar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-suggest-panel {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    max-height: min(58vh, 420px);
    overflow-y: auto;
    border-radius: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-suggest-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 11px 12px 8px;
  }

  .hero-suggest-list {
    padding: 6px;
  }

  .hero-suggest-item {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 52px;
    padding: 8px;
  }

  .hero-suggest-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .hero-suggest-item strong {
    font-size: 14px;
  }

  .hero-suggest-item small {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .portal-search-bar .hero-search-box {
    height: auto;
    min-height: 54px;
    padding: 6px 6px 6px 10px;
    border-radius: 14px;
  }

  .portal-search-bar .hero-search-box input {
    font-size: 16px;
    line-height: 1.35;
  }

  .portal-search-bar .hero-search-box button {
    min-width: 68px;
    min-height: 40px;
    padding: 8px 12px;
  }

  .workbench-command-surface .workbench-query-field::after {
    right: 9px;
    bottom: 8px;
    height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }

  .workbench-query-field input {
    padding-right: 66px;
  }
}

/* ===== Enterprise / Reports Search Surface Polish ===== */
body[data-nav="reports"] .report-command-hero > .wrap,
body[data-nav="reports"] .page-main.wrap {
  max-width: 1180px;
}

body[data-nav="reports"] .page-main.wrap {
  padding-left: clamp(22px, 4vw, 40px);
  padding-right: clamp(22px, 4vw, 40px);
}

body[data-nav="reports"] .reports-workspace {
  grid-template-columns: minmax(0, 1fr) minmax(276px, 304px);
  gap: 28px;
}

.workbench-search-title,
.report-search-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 0 2px;
}

.workbench-search-title strong,
.report-search-title strong {
  color: var(--brand-navy);
  font-size: 17px;
  line-height: 1.3;
}

.workbench-search-title span,
.report-search-title span {
  color: var(--faint);
  font-size: 12.5px;
  font-weight: 650;
}

.workbench-command-surface {
  padding: 20px;
  border-color: rgba(11, 111, 104, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(10, 147, 150, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.98));
  box-shadow: 0 18px 42px -34px rgba(9, 47, 43, 0.38), 0 2px 12px rgba(9, 47, 43, 0.04);
}

.workbench-command-surface .workbench-search {
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(128px, auto);
  gap: 12px;
  align-items: end;
}

.workbench-command-surface .workbench-query-field {
  isolation: isolate;
  grid-column: 1 / 6;
  grid-row: 1;
  color: var(--brand-primary-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.workbench-command-surface .workbench-search .button {
  grid-column: 6;
  grid-row: 1;
}

.workbench-command-surface .workbench-search label:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}

.workbench-command-surface .workbench-search label:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}

.workbench-command-surface .workbench-search label:nth-of-type(4) {
  grid-column: 3;
  grid-row: 2;
}

.workbench-command-surface .workbench-search label:nth-of-type(5) {
  grid-column: 4;
  grid-row: 2;
}

.workbench-command-surface .workbench-search label:nth-of-type(6) {
  grid-column: 5;
  grid-row: 2;
}

.workbench-command-surface .workbench-query-field::before,
.report-search-section .field-row label:first-child::before {
  content: "查";
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-cyan));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  pointer-events: none;
}

.workbench-command-surface .workbench-query-field input,
.report-search-section .field-row label:first-child input {
  min-height: 66px;
  padding-left: 58px;
  border: 2px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(11, 111, 104, 0.98), rgba(31, 95, 168, 0.42), rgba(10, 147, 150, 0.88)) border-box;
  color: var(--brand-navy);
  font-size: 18px;
  font-weight: 750;
  box-shadow: 0 20px 42px -30px rgba(9, 47, 43, 0.75), 0 0 0 5px rgba(11, 111, 104, 0.045);
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease), background 0.22s var(--ease);
}

.workbench-command-surface .workbench-query-field input::placeholder,
.report-search-section .field-row label:first-child input::placeholder {
  color: rgba(102, 115, 111, 0.82);
  font-weight: 500;
}

.workbench-command-surface .workbench-query-field:focus-within input,
.report-search-section .field-row label:first-child:focus-within input {
  box-shadow: 0 0 0 6px rgba(11, 111, 104, 0.12), 0 24px 46px -28px rgba(9, 47, 43, 0.76);
  transform: translateY(-2px);
}

.workbench-command-surface .workbench-search select,
.report-search-section .news-filters select {
  min-height: 50px;
  border-color: rgba(11, 111, 104, 0.16);
  border-radius: 12px;
  background-color: #fff;
}

.workbench-command-surface .workbench-search .button {
  min-height: 66px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 850;
}

.report-search-section .news-filters {
  padding: 18px;
  border-color: rgba(31, 95, 168, 0.13);
  background:
    radial-gradient(circle at 98% 0%, rgba(31, 95, 168, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 252, 0.98));
  box-shadow: 0 16px 40px -34px rgba(31, 95, 168, 0.42), 0 2px 12px rgba(9, 47, 43, 0.04);
}

.report-search-section .field-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.report-search-section .field-row label:first-child {
  position: relative;
  grid-column: 1 / -1;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.report-search-section .field-row label:first-child::after {
  content: "研报库";
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  border-radius: 999px;
  background: rgba(31, 95, 168, 0.08);
  color: var(--blue);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  pointer-events: none;
}

.report-search-section .field-row label:first-child input {
  padding-left: 58px;
  padding-right: 78px;
}

.report-list-surface {
  padding: 18px;
  border-radius: var(--radius);
}

@media (max-width: 1040px) {
  body[data-nav="reports"] .reports-workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body[data-nav="reports"] .page-main.wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .workbench-search-title,
  .report-search-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
  }

  .workbench-command-surface {
    padding: 12px;
  }

  .workbench-command-surface .workbench-search,
  .report-search-section .field-row {
    grid-template-columns: 1fr;
  }

  .workbench-command-surface .workbench-query-field,
  .workbench-command-surface .workbench-search .button {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .workbench-command-surface .workbench-search label:nth-of-type(n + 2) {
    grid-column: auto;
    grid-row: auto;
  }

  .workbench-command-surface .workbench-search label,
  .report-search-section .news-filters label {
    font-size: 12px;
  }

  .workbench-command-surface .workbench-query-field input,
  .report-search-section .field-row label:first-child input,
  .workbench-command-surface .workbench-search .button {
    min-height: 56px;
    font-size: 16px;
  }

  .workbench-command-surface .workbench-search select,
  .report-search-section .news-filters select {
    min-height: 44px;
    font-size: 14px;
  }

  .report-search-section .news-filters {
    padding: 12px;
  }

  .report-list-surface {
    padding: 14px;
  }
}
