/* SPA 视图切换 */
.app-view.hidden { display: none !important; }

#site-nav {
  max-width: 1600px;
  margin: 0 auto;
}

.policy-page-wrap,
.interpret-page-wrap {
  max-width: 920px;
  margin: 0 auto;
}

/* ─── 政策列表 ─── */
.policy-list { display: flex; flex-direction: column; gap: 14px; }

.policy-item {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
  border: 1px solid rgba(43, 90, 237, 0.12);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  animation: slideUp 0.45s ease both;
  transition: transform 0.2s, box-shadow 0.2s;
}

.policy-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(43, 90, 237, 0.12);
}

.policy-item .pi-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2b5aed, #7c3aed);
  border-radius: 16px 0 0 16px;
}

.policy-item .pi-main { flex: 1; min-width: 240px; padding-left: 8px; }

.policy-item .pi-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 8px;
}

.policy-item .pi-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--sub);
}

.policy-item .pi-date {
  background: #f1f4fa;
  padding: 2px 8px;
  border-radius: 4px;
}

.policy-item .pi-doc {
  color: var(--brand);
  font-weight: 600;
}

.policy-item .pi-summary {
  font-size: 13.5px;
  color: #4a5568;
  margin-top: 10px;
  line-height: 1.65;
}

.policy-item .pi-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.btn {
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.btn-ghost {
  background: rgba(43, 90, 237, 0.06);
  color: var(--brand);
  border: 1px solid rgba(43, 90, 237, 0.2);
}

.btn-ghost:hover {
  background: rgba(43, 90, 237, 0.12);
}

.btn-glow {
  background: linear-gradient(135deg, #2b5aed, #6366f1);
  color: #fff;
  box-shadow: 0 4px 16px rgba(43, 90, 237, 0.35);
}

.btn-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(43, 90, 237, 0.45);
}

.btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #e7eaf0;
  color: var(--sub);
}

.cat-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-right: 8px;
  vertical-align: middle;
}

.cat-tag.re {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: #0369a1;
}

.cat-tag.ed {
  background: linear-gradient(135deg, #fdebea, #fecaca);
  color: #c0261f;
}

.empty {
  text-align: center;
  color: var(--sub);
  padding: 60px 20px;
  font-size: 15px;
}

.empty-icon { font-size: 40px; display: block; margin-bottom: 12px; }

/* ─── 解读详情页 ─── */
.back-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sub);
  text-decoration: none;
  margin-bottom: 16px;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.back-pill:hover {
  color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(43,90,237,0.1);
}

/* Hero */
.ix-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  animation: fadeIn 0.5s ease;
}

.ix-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #2b5aed 70%, #6366f1 100%);
  opacity: 1;
}

.ix-hero-re .ix-hero-bg {
  background: linear-gradient(135deg, #0c1929 0%, #0e4d6e 35%, #0891b2 65%, #2b5aed 100%);
}

.ix-hero-ed .ix-hero-bg {
  background: linear-gradient(135deg, #1a0a2e 0%, #5b21b6 40%, #7c3aed 70%, #c0261f 100%);
}

.ix-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(99,102,241,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236,72,153,0.2) 0%, transparent 40%);
}

.ix-hero-content {
  position: relative;
  padding: 36px 28px;
  color: #fff;
}

.ix-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.2);
}

.ix-hero h1 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: -0.02em;
}

.ix-oneliner {
  font-size: 16px;
  line-height: 1.65;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}

.ix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ix-tags span {
  font-size: 11.5px;
  background: rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* TOC */
.ix-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding: 4px 0;
  animation: fadeIn 0.5s ease 0.1s both;
}

.ix-toc a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ix-toc a:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(43,90,237,0.12);
}

.ix-toc-icon { font-size: 14px; }

/* Sections */
.ix-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  margin-bottom: 16px;
  animation: slideUp 0.5s ease both;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}

.ix-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--brand), transparent) 1;
}

.ix-section-icon { font-size: 20px; }

.ix-section h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.ix-section-body { font-size: 14px; line-height: 1.7; }
.ix-section-body h3 { font-size: 14px; margin: 16px 0 8px; color: var(--sub); font-weight: 700; }

/* Flow chart */
.ix-flow h3 { margin-bottom: 16px; color: var(--sub); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }

.ix-flow-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
}

.ix-flow-node {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(145deg, #f8faff, #fff);
  border: 2px solid rgba(43,90,237,0.25);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  overflow-wrap: anywhere;
  position: relative;
  box-shadow: 0 4px 16px rgba(43,90,237,0.08);
  transition: transform 0.2s;
}

.ix-flow-node:hover { transform: scale(1.03); }

.ix-flow-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--brand), #6366f1);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.ix-flow-label { font-weight: 700; font-size: 14px; }
.ix-flow-note { font-size: 11px; color: var(--sub); margin-top: 4px; }

.ix-flow-connector {
  flex: 0 0 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ix-flow-connector span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #6366f1);
  position: relative;
}

.ix-flow-connector span::after {
  content: "›";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
}

.ix-flow-branches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 16px 0;
}

@media (max-width: 720px) { .ix-flow-branches { grid-template-columns: 1fr; } }

.ix-flow-branch {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.ix-branch-0 {
  background: linear-gradient(160deg, #fff7ed 0%, #fff 60%);
  border-color: rgba(234,88,12,0.2);
}

.ix-branch-1 {
  background: linear-gradient(160deg, #ecfdf5 0%, #fff 60%);
  border-color: rgba(16,185,129,0.2);
}

.ix-flow-branch h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
}

.ix-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}

.ix-flow-step:last-child { border-bottom: none; }

.ix-step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 6px;
  flex-shrink: 0;
}

.ix-flow-final {
  text-align: center;
  margin-top: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 14px;
  font-weight: 700;
  color: #065f46;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ix-final-icon {
  width: 32px; height: 32px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* 窄屏：主流程改为纵向，等宽铺满且文案完整换行 */
@media (max-width: 760px) {
  .ix-flow-row { flex-direction: column; align-items: stretch; margin-bottom: 12px; }
  .ix-flow-node {
    flex: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .ix-flow-connector {
    flex: none;
    width: auto;
    height: 26px;
  }
  .ix-flow-connector span {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), #6366f1);
  }
  .ix-flow-connector span::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -7px;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* Comparison (grid, three columns) */
.ix-cmp-wrap {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.ix-cmp {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ix-cmp-row {
  display: grid;
  grid-template-columns: minmax(104px, 13%) minmax(0, 1fr) minmax(0, 1.55fr);
  align-items: start;
  border-top: 1px solid #eef1f6;
}

.ix-cmp-row:first-child { border-top: none; }

.ix-cmp-cell {
  min-width: 0;
  padding: 13px 14px;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  font-size: 13.5px;
  line-height: 1.65;
  color: #111827;
}

.ix-cmp-cell.ix-cmp-old,
.ix-cmp-cell.ix-cmp-new { border-left: 1px solid #dbe1ec; }

.ix-cmp-head { background: #f4f7fc; }
.ix-cmp-head .ix-cmp-cell { font-size: 13px; font-weight: 800; color: var(--ink); padding-top: 11px; padding-bottom: 11px; }

.ix-cmp-aspect { font-weight: 700; }

.ix-cmp-col-label {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 999px;
}
.ix-cmp-col-label.old { background: #eceff5; color: #5a6478; }
.ix-cmp-col-label.new { background: #ffe9e6; color: #c0261f; }

.ix-cmp-hl { background: #fff8f6; }

.ix-red { color: #dc2626; font-style: normal; font-weight: 700; }

.ix-slogan-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.ix-slogan-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  background: #fafbfd;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.ix-slogan-old { color: #111827; font-size: 13.5px; text-align: right; }
.ix-slogan-new { color: #dc2626; font-size: 14px; font-weight: 800; }
.ix-slogan-arrow { color: #111827; font-size: 20px; font-weight: 800; }

@media (max-width: 860px) {
  .ix-cmp-head { display: none; }
  .ix-cmp-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    row-gap: 2px;
    padding: 12px 14px;
    border-top: 1px dashed #e6ebf3;
  }
  .ix-cmp-cell { padding: 6px 0; }
  .ix-cmp-row .ix-cmp-aspect { grid-column: 1 / -1; font-size: 15px; padding-bottom: 4px; }
  .ix-cmp-row .ix-cmp-old { padding-right: 10px; }
  .ix-cmp-row .ix-cmp-old { border-left: none; }
  .ix-cmp-row .ix-cmp-new { border-left: 1px solid #dbe1ec; }
  .ix-cmp-row .ix-cmp-old::before,
  .ix-cmp-row .ix-cmp-new::before {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
  }
  .ix-cmp-row .ix-cmp-old::before { color: #8a94a8; content: "以前"; }
  .ix-cmp-row .ix-cmp-new::before { color: #c0261f; content: "现在"; }
}

@media (max-width: 520px) {
  .ix-cmp-row { grid-template-columns: 1fr; }
  .ix-cmp-old { padding-right: 0; }
  .ix-cmp-row .ix-cmp-old,
  .ix-cmp-row .ix-cmp-new { border-left: none; }
  .ix-cmp-row .ix-cmp-new { border-top: 1px dashed #e6ebf3; }
}

@media (max-width: 600px) {
  .ix-slogan-card { grid-template-columns: 1fr; text-align: center; }
  .ix-slogan-old { text-align: center; }
  .ix-slogan-arrow { transform: rotate(90deg); }
}

/* Scope */
.ix-scope-date {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: linear-gradient(135deg, #eef4ff, #f5f3ff);
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(43,90,237,0.15);
}

.ix-date-icon { font-size: 28px; }

.ix-scope-date strong { font-size: 18px; color: var(--brand); }
.ix-scope-date span { font-size: 13px; color: var(--sub); }

.ix-pill-group { margin: 12px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ix-pill-label { font-size: 12px; font-weight: 700; color: var(--sub); min-width: 36px; }

.ix-pill {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.ix-pill-ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.ix-pill-no { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.ix-rules { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }

.ix-rule {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  background: #f8faff;
  border-radius: 10px;
  border-left: 4px solid var(--brand);
  font-size: 13px;
}

.ix-rule-if { font-weight: 700; color: var(--brand); }
.ix-rule-then { color: var(--ink); }

/* Cases */
.ix-cases { display: flex; flex-direction: column; gap: 14px; }

.ix-case {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fafbff 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  animation: slideUp 0.45s ease both;
  transition: box-shadow 0.2s;
}

.ix-case:hover { box-shadow: 0 8px 32px rgba(43,90,237,0.1); }

.ix-case-num {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), #6366f1);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}

.ix-case h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.ix-case-scenario { color: var(--sub); font-size: 13px; margin-bottom: 10px; }

.ix-case-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.ix-case-timeline span {
  font-size: 11.5px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #eef4ff, #e0e7ff);
  color: var(--brand);
  border-radius: 6px;
  font-weight: 600;
}

.ix-case-rule { font-size: 12px; color: var(--sub); margin-bottom: 8px; }
.ix-case-rule em { font-style: normal; font-weight: 700; color: var(--brand); }

.ix-case-outcome {
  padding: 10px 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #065f46;
}

/* Audience */
.ix-audience {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.ix-aud-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ix-aud-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.ix-aud-head {
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #f8faff, #eef4ff);
  border-bottom: 1px solid var(--line);
}

.ix-aud-block { padding: 12px 18px; font-size: 13px; }
.ix-aud-block ul { list-style: none; padding: 0; margin: 0; }
.ix-aud-block li { padding: 4px 0 4px 16px; position: relative; line-height: 1.55; }

.ix-aud-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ix-aud-good .ix-aud-label { color: #059669; }
.ix-aud-good li::before { content: "✓"; position: absolute; left: 0; color: #059669; font-weight: 700; }

.ix-aud-warn .ix-aud-label { color: #c0261f; }
.ix-aud-warn li { color: #3f4654; font-weight: 500; }
.ix-aud-warn li em.ix-red { color: #dc2626; font-weight: 800; }
.ix-aud-warn li::before { content: "!"; position: absolute; left: 0; color: #c0261f; font-weight: 700; }

.ix-aud-act .ix-aud-label { color: var(--brand); }
.ix-aud-act li::before { content: "→"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* FAQ accordion */
.ix-faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.ix-faq.open {
  box-shadow: 0 4px 20px rgba(43,90,237,0.1);
  border-color: rgba(43,90,237,0.3);
}

.ix-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.ix-faq-q:hover { background: #f8faff; }

.ix-faq-chevron {
  font-size: 20px;
  color: var(--brand);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.ix-faq.open .ix-faq-chevron { transform: rotate(90deg); }

.ix-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #4a5568;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.ix-faq.open .ix-faq-a {
  max-height: 300px;
  padding: 0 18px 16px;
}

/* Summary */
.ix-summary {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #b9ccff 0%, #dbe6ff 55%, #eef3ff 100%);
  border: 1px solid #9db9f5;
  box-shadow: 0 10px 28px rgba(43, 90, 237, 0.16);
  padding: 2px;
}

.ix-summary-inner {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px;
  color: var(--ink);
}

.ix-summary h3 {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.ix-summary h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--brand), #6366f1);
}

.ix-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.ix-summary-cell {
  background: #f2f6ff;
  border: 1px solid #dbe5fb;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--ink);
}

.ix-summary-cell span {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-bottom: 4px;
}

.ix-summary-changes {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.ix-summary-changes span {
  flex: 0 1 auto;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  padding: 6px 14px;
  background: #e6edff;
  color: #1e3bb8;
  border-radius: 999px;
  border: 1px solid #b9cbfa;
  font-weight: 600;
}

@media (max-width: 720px) {
  .ix-summary-changes { justify-content: flex-start; }
}

/* Official link */
.ix-official {
  margin-top: 20px;
  text-align: center;
}

.ix-official a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2b5aed, #6366f1);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(43,90,237,0.35);
  transition: all 0.2s;
}

.ix-official a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(43,90,237,0.45);
}

.ix-arrow { font-size: 18px; }

.not-found {
  text-align: center;
  padding: 80px 20px;
}

.nf-icon { font-size: 48px; margin-bottom: 16px; }

.interpret-foot { margin-top: 24px; }

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 720px) {
  .policy-page-wrap, .interpret-page-wrap, #site-nav { padding-left: 12px; padding-right: 12px; }
  .ix-hero h1 { font-size: 18px; }
  .ix-hero-content { padding: 24px 18px; }
  .policy-item { padding: 16px; }
}

/* ═══════════════ 政策监测中心（落地页）═══════════════ */
.center-wrap { max-width: 1280px; }

/* —— Hero —— */
.mc-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.9fr);
  gap: 30px;
  align-items: center;
  color: #fff;
  padding: 34px 38px;
  border-radius: 22px;
  margin-bottom: 18px;
  overflow: hidden;
  background: linear-gradient(130deg, #0b1f3a 0%, #14305c 42%, #1e4fa8 78%, #2b5aed 100%);
  box-shadow: 0 14px 44px rgba(20, 48, 92, 0.28);
}

.mc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 120%, rgba(99, 102, 241, 0.5) 0%, transparent 46%),
    radial-gradient(circle at 95% -20%, rgba(56, 189, 248, 0.35) 0%, transparent 42%);
}

.mc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 15% 30%, #000 0%, transparent 70%);
}

.mc-hero-body, .mc-stats { position: relative; z-index: 1; }

.mc-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.mc-hero h1 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.mc-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #7dd3fc, #c7d2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mc-sub {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
}

.mc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mc-hero-meta span {
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 13px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.mc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mc-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.mc-stat-n {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.mc-stat-l { font-size: 11.5px; color: rgba(255, 255, 255, 0.68); margin-top: 4px; font-weight: 600; }

.mc-stat.s-total .mc-stat-n { color: #fff; }
.mc-stat.s-nat .mc-stat-n { color: #7dd3fc; }
.mc-stat.s-wh .mc-stat-n { color: #86efac; }
.mc-stat.s-int .mc-stat-n { color: #fcd34d; }

/* —— 筛选工具条 —— */
.mc-toolbar select.mc-sel { min-width: 190px; max-width: 320px; }
.mc-toolbar #mc-q { flex: 1; min-width: 180px; max-width: 340px; }

/* chip 激活色：领域 */
.chip.on.cre { background: #0369a1; border-color: #0369a1; color: #fff; font-weight: 700; }
.chip.on.ced { background: #c0261f; border-color: #c0261f; color: #fff; font-weight: 700; }
.chip.on.cbo { background: #7a4fd0; border-color: #7a4fd0; color: #fff; font-weight: 700; }
/* chip 激活色：级别 */
.chip.on.cn { background: #1e3a8a; border-color: #1e3a8a; color: #fff; font-weight: 700; }
.chip.on.cw { background: #0e8a4d; border-color: #0e8a4d; color: #fff; font-weight: 700; }
.chip.on.cl { background: #64748b; border-color: #64748b; color: #fff; font-weight: 700; }

/* —— 标题栏 —— */
.mc-headline {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 4px 2px 12px;
}

.mc-headline h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mc-headline .mc-hint { font-size: 12px; color: var(--sub); margin-left: auto; }

/* —— 政策卡片列表 —— */
.mc-list { display: flex; flex-direction: column; gap: 12px; }

.mc-item {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: 16px;
  padding: 16px 18px;
  overflow: hidden;
  animation: slideUp 0.4s ease both;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.mc-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(27, 50, 92, 0.1);
  border-color: rgba(43, 90, 237, 0.28);
}

.mc-item:not(.mc-item-plain) { border-left-color: #2b5aed; }
.mc-item.mc-item-plain { border-left-color: #d7dce6; }

.mc-date {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #f2f5fb;
  border-radius: 12px;
  padding: 6px 4px;
  color: var(--ink);
}

.mc-d { font-size: 21px; font-weight: 800; line-height: 1.1; }
.mc-ym { font-size: 10.5px; color: var(--sub); font-weight: 600; }
.mc-date-none { background: #f7f8fa; color: var(--tk); }

.mc-main { min-width: 0; }

.mc-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.mc-title-row .cat-tag { margin-right: 0; vertical-align: baseline; }

.mc-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
  min-width: 0;
}

.mc-title:hover { color: var(--brand); }

.mc-lv {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2.5px 9px;
  border-radius: 999px;
  border: 1px solid;
  white-space: nowrap;
}

.mc-lv.nat { background: #e8f1ff; color: #1c5fd8; border-color: #c5d9f7; }
.mc-lv.wh { background: #e8f5ee; color: #0e8a4d; border-color: #a7dcc8; }
.mc-lv.lg { background: #f2f3f6; color: #6b7280; border-color: #e0e3ea; }

.cat-tag.bo {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #6d28d9;
}

.mc-new {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2.5px 9px;
  border-radius: 999px;
  background: #fff4e0;
  color: #b45309;
  border: 1px solid #f6cf88;
  white-space: nowrap;
}

.mc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
  color: var(--sub);
}

.mc-src::before { content: "🏛 "; font-size: 10px; }
.mc-doc { font-size: 11.5px; }

.mc-summary {
  margin-top: 9px;
  font-size: 13.2px;
  line-height: 1.7;
  color: #465265;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-summary-empty {
  display: block;
  color: var(--tk);
  font-size: 12.5px;
  -webkit-line-clamp: unset;
}

.mc-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 96px;
}

.mc-btn { justify-content: center; padding: 8px 14px; font-size: 12.5px; }

.mc-wait {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #8a93a5;
  background: #f4f6f9;
  border: 1px dashed #d3d9e2;
  border-radius: 10px;
  padding: 8px 12px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4cad4;
}

.mc-item:not(.mc-item-plain) .mc-wait { display: none; }

/* 空态 */
.mc-reset { margin-top: 16px; }

@media (max-width: 960px) {
  .mc-hero { grid-template-columns: 1fr; padding: 26px 24px; }
  .mc-stats { max-width: 460px; }
}

@media (max-width: 720px) {
  .mc-item { grid-template-columns: 1fr; gap: 10px; }
  .mc-date { flex-direction: row; justify-content: flex-start; gap: 8px; align-self: auto; padding: 6px 12px; }
  .mc-date .mc-d { font-size: 15px; }
  .mc-actions { flex-direction: row; flex-wrap: wrap; }
  .mc-actions .mc-btn { flex: 1; }
  .mc-headline .mc-hint { margin-left: 0; width: 100%; }
}

/* chip 激活色：规划期 */
.chip.on.cp { background: #4338ca; border-color: #4338ca; color: #fff; font-weight: 700; }

/* ===== 主题子分类：⭐ 重点 / neutral / 次要 skip ===== */
.mc-focus {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 2px 9px 2px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff3d6, #ffe5a8);
  color: #8a5a00;
  border: 1px solid rgba(180, 130, 0, 0.18);
  white-space: nowrap;
}
.mc-skip-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f2f3f5;
  color: #8a8f99;
  border: 1px solid #e5e7eb;
  white-space: nowrap;
}

/* 重点卡：金色竖条 + 浅亮背景 */
.mc-item-focus {
  background: linear-gradient(180deg, rgba(255, 248, 224, 0.55), #ffffff 70%);
  border-left: 3px solid #d4a017;
  box-shadow: 0 6px 16px rgba(212, 160, 23, 0.06);
}
.mc-item-focus .mc-title { color: #1a2538; }

/* 次要卡：整张降权（淡灰、紧凑、不显示摘要） */
.mc-item-skip {
  background: #fafbfc;
  opacity: 0.78;
  padding: 14px 18px;
  border: 1px dashed #e6e8ec;
  box-shadow: none;
}
.mc-item-skip:hover {
  opacity: 1;
  border-color: #d3d6dc;
}
.mc-item-skip .mc-title {
  color: #6b7280;
  font-size: 14px;
}
.mc-item-skip .mc-summary { display: none; }
.mc-item-skip .mc-date {
  background: #f4f5f7;
  color: #98a0ab;
  border-color: #ebedf0;
}
.mc-item-skip .mc-date .mc-d { font-size: 15px; }
.mc-item-skip .mc-actions .mc-btn {
  font-size: 12px;
  padding: 6px 10px;
}

/* 主题 chip 颜色 */
.chip.cf { background: linear-gradient(135deg, #fff3d6, #ffe5a8); color: #8a5a00; border-color: rgba(180,130,0,0.25); }
.chip.cf.on { background: #d4a017; color: #fff; border-color: #b8860b; }
.chip.cns { background: #eef0f4; color: #4b5563; }
.chip.cns.on { background: #4b5563; color: #fff; }

/* —— 五年规划对照区（年份 ↔ 纲要） —— */
.mc-plan {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(43, 90, 237, 0.16);
  border-left: 4px solid #2b5aed;
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 14px;
  animation: fadeIn 0.45s ease 0.05s both;
}

.mp-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #7c8db5;
  margin-bottom: 6px;
}

.mp-lead h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mp-lead h3 em { font-style: normal; color: var(--brand); font-weight: 800; }

.mp-tagline {
  margin: 8px 0 14px;
  color: #5a6478;
  font-size: 13px;
  line-height: 1.7;
  max-width: 780px;
}

.mp-years { display: flex; flex-wrap: wrap; gap: 8px; }

.mp-yr {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px;
  color: #7b8498;
  font-weight: 600;
  transition: all 0.2s;
}

.mp-yr b { font-size: 14px; color: var(--ink); font-weight: 800; }
.mp-yr i { font-style: normal; color: #98a2b6; font-weight: 600; }

.mp-yr.on {
  background: linear-gradient(135deg, #2b5aed, #6366f1);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(43, 90, 237, 0.28);
}

.mp-yr.on b { color: #fff; }
.mp-yr.on i { color: rgba(255, 255, 255, 0.78); }

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

.mp-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.18s, box-shadow 0.18s;
}

.mp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27, 50, 92, 0.1);
}

.mp-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.mp-kind {
  font-size: 10.5px;
  font-weight: 700;
  color: #4b5c7e;
  background: #eef2fa;
  padding: 2.5px 9px;
  border-radius: 999px;
}

.mp-date { margin-left: auto; font-size: 11px; color: var(--tk); font-weight: 600; }

.mp-title { font-size: 15px; font-weight: 800; color: var(--ink); line-height: 1.45; }

.mp-meta { font-size: 11.5px; color: #7b8498; line-height: 1.6; }

.mp-scale {
  font-size: 11.5px;
  color: #5b6b84;
  background: #f7f9fc;
  border-radius: 8px;
  padding: 6px 10px;
}

.mp-rel { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }

.mp-rel li { font-size: 12px; line-height: 1.62; color: #465265; }

.mp-rel-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  margin-right: 6px;
}

.mp-rel-tag.ed { background: #fdebea; color: #c0261f; }
.mp-rel-tag.re { background: #e0f2fe; color: #0369a1; }

.mp-actions { margin-top: auto; padding-top: 10px; }
.mp-actions .mc-btn { justify-content: center; }

/* 政策卡片上的规划期角标 */
.mc-plan-yr {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2.5px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
  white-space: nowrap;
}

.mc-plan-hint { font-size: 11px; color: var(--tk); margin-left: 4px; flex-basis: 100%; }

@media (max-width: 640px) {
  .mc-plan { padding: 16px 14px; }
  .mp-cards { grid-template-columns: 1fr; }
  .mp-date { margin-left: 0; }
}
