:root {
  --ink: #15191b;
  --muted: #65706c;
  --paper: #f3f7f4;
  --panel: #ffffff;
  --line: #d7e1dc;
  --red: #c43631;
  --red-dark: #9d2925;
  --green: #0a766b;
  --green-soft: #e6f5ef;
  --gold: #b7852c;
  --blue: #2d607d;
  --teal: #42b8a8;
  --hero-ink: #0e1717;
  --hero-panel: rgba(245, 250, 246, 0.1);
  --shadow: 0 24px 80px rgba(18, 24, 24, 0.14);
  --radius: 8px;
  --motion-fast: 180ms;
  --motion-page: 320ms;
  --motion-reveal: 560ms;
  --motion-slow: 720ms;
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    Arial,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--motion-page) var(--motion-ease);
}

body[data-active-page="top"] {
  background: var(--hero-ink);
}

main {
  transition:
    opacity var(--motion-page) var(--motion-ease),
    transform var(--motion-page) var(--motion-ease);
  will-change: opacity, transform;
}

body.page-is-switching main {
  opacity: 0.54;
  pointer-events: none;
  transform: translateY(10px);
}

body[data-active-page="top"].page-is-switching main {
  opacity: 0.72;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  gap: 12px;
  padding: 14px 48px 16px;
  border-bottom: 1px solid rgba(216, 221, 215, 0.82);
  background: rgba(245, 246, 242, 0.94);
  backdrop-filter: blur(18px);
  transition:
    background var(--motion-page) var(--motion-ease),
    border-color var(--motion-page) var(--motion-ease),
    box-shadow var(--motion-page) var(--motion-ease);
}

.header-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

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

.nav-links {
  display: none;
}

.top-directory {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  overflow-x: visible;
  padding-bottom: 2px;
  color: #34393d;
  font-size: 14px;
  scrollbar-width: thin;
}

.top-directory a {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.top-directory span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.top-directory strong {
  color: #333b40;
  font-size: 11px;
  line-height: 1.35;
}

.top-directory a:hover,
.top-directory a:focus-visible,
.top-directory a.is-active {
  border-color: var(--green);
  background: #fff;
  outline: none;
  box-shadow: 0 8px 20px rgba(25, 27, 29, 0.08);
}

.top-directory a.is-active {
  background: var(--green-soft);
}

body[data-active-page="top"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 18, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

body[data-active-page="top"] .brand strong {
  color: #fff;
}

body[data-active-page="top"] .brand small {
  color: rgba(255, 255, 255, 0.6);
}

body[data-active-page="top"] .brand-mark {
  background: linear-gradient(135deg, var(--red), #e05f35);
  box-shadow: 0 14px 34px rgba(196, 54, 49, 0.28);
}

body[data-active-page="top"] .header-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #df5a32);
}

body[data-active-page="top"] .top-directory a {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

body[data-active-page="top"] .top-directory span {
  color: #ffc477;
}

body[data-active-page="top"] .top-directory strong {
  color: rgba(255, 255, 255, 0.76);
}

body[data-active-page="top"] .top-directory a:hover,
body[data-active-page="top"] .top-directory a:focus-visible,
body[data-active-page="top"] .top-directory a.is-active {
  border-color: rgba(66, 184, 168, 0.58);
  background: rgba(66, 184, 168, 0.13);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  transition: width 80ms linear;
}

.page-indicator {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 19;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.page-indicator a {
  display: grid;
  grid-template-columns: 34px 0fr;
  gap: 8px;
  align-items: center;
  width: 52px;
  padding: 7px 10px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: rgba(25, 27, 29, 0.48);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 24px rgba(25, 27, 29, 0.06);
  backdrop-filter: blur(12px);
  transition:
    width var(--motion-fast) var(--motion-ease),
    grid-template-columns var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease);
}

.page-indicator a:hover,
.page-indicator a.is-active {
  width: 94px;
  grid-template-columns: 34px 1fr;
  color: var(--ink);
  border-color: rgba(15, 107, 95, 0.22);
}

.page-indicator span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.page-indicator strong {
  opacity: 0;
  overflow: hidden;
  font-size: 13px;
  white-space: nowrap;
  transition: opacity var(--motion-fast) var(--motion-ease);
}

.page-indicator a:hover strong,
.page-indicator a.is-active strong {
  opacity: 1;
}

.scroll-progress,
.page-indicator {
  display: none !important;
}

.header-cta,
.button,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition:
    transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease);
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
}

.button {
  padding: 0 22px;
  font-size: 15px;
}

.button:hover,
.header-cta:hover,
.price-card a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(25, 27, 29, 0.12);
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: calc(100vh - 128px);
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) clamp(28px, 5vw, 72px) clamp(48px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(14, 23, 23, 0.96), rgba(14, 23, 23, 0.62) 48%, rgba(14, 23, 23, 0.88)),
    var(--hero-ink);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(196, 54, 49, 0.16), transparent 30%),
    linear-gradient(140deg, transparent 0 54%, rgba(66, 184, 168, 0.14) 54% 56%, transparent 56%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 58px);
  mix-blend-mode: screen;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 0;
  z-index: -1;
  width: 58%;
  height: 38%;
  background: linear-gradient(90deg, transparent, rgba(183, 133, 44, 0.12));
  transform: skewX(-18deg);
}

.hero-section > #policyCanvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  min-width: 0;
  max-width: 920px;
}

.eyebrow,
.panel-kicker,
.price-label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.hero-lede {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.hero-section .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffd7b0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-intel-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 980px;
  margin: 30px 0 0;
}

.hero-intel-strip a {
  position: relative;
  overflow: hidden;
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition:
    transform var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease);
}

.hero-intel-strip a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 10%, rgba(255, 255, 255, 0.16), transparent 46%);
  transform: translateX(-120%);
  transition: transform var(--motion-slow) var(--motion-ease);
}

.hero-intel-strip a:hover,
.hero-intel-strip a:focus-visible {
  border-color: rgba(66, 184, 168, 0.72);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.hero-intel-strip a:hover::before,
.hero-intel-strip a:focus-visible::before {
  transform: translateX(120%);
}

.hero-intel-strip span,
.hero-portal-links span {
  color: #ffc477;
  font-size: 13px;
  font-weight: 900;
}

.hero-intel-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 28px;
}

.hero-section .button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius);
}

.hero-section .button.primary {
  background: linear-gradient(135deg, var(--red), #df5a32);
  box-shadow: 0 18px 42px rgba(196, 54, 49, 0.3);
}

.hero-section .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  min-height: 96px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.hero-metrics dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.hero-portal-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin-top: 24px;
}

.hero-portal-links a {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition:
    transform var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.hero-portal-links a:hover,
.hero-portal-links a:focus-visible {
  border-color: rgba(255, 196, 119, 0.7);
  background: rgba(255, 255, 255, 0.13);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.hero-portal-links strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.45;
}

.policy-console {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  align-self: center;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)),
    rgba(11, 20, 20, 0.66);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.console-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 560px;
  padding: 28px;
  color: #fff;
}

.console-content,
.status-row,
.info-card,
.dimension-card,
.price-card,
.case-card,
.expert-grid article,
.timeline article,
.lead-form {
  min-width: 0;
}

.console-content h2 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: 30px;
}

.console-masthead {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.console-masthead > span {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(66, 184, 168, 0.44);
  border-radius: 999px;
  color: #c9fff4;
  background: rgba(66, 184, 168, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.radar-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 42px),
    repeating-conic-gradient(from -18deg, rgba(66, 184, 168, 0.15) 0deg 1deg, transparent 1deg 30deg),
    rgba(8, 18, 18, 0.58);
}

.radar-sweep {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(66, 184, 168, 0.34), transparent 34deg);
  transform-origin: 50% 50%;
  animation: radarSweep 5.8s linear infinite;
  will-change: transform;
}

.radar-center {
  position: relative;
  z-index: 1;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(196, 54, 49, 0.88);
  box-shadow: 0 0 42px rgba(196, 54, 49, 0.26);
  font-size: 18px;
}

.radar-chip {
  position: absolute;
  z-index: 2;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.11);
  font-size: 12px;
  font-weight: 900;
}

.chip-policy {
  top: 14%;
  left: 12%;
}

.chip-list {
  top: 20%;
  right: 11%;
}

.chip-chain {
  right: 15%;
  bottom: 18%;
}

.chip-tool {
  left: 13%;
  bottom: 18%;
}

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

.console-stat-grid article {
  min-height: 124px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.console-stat-grid span {
  color: #ffc477;
  font-size: 13px;
  font-weight: 900;
}

.console-stat-grid strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 17px;
}

.console-stat-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.signal-list {
  display: grid;
  gap: 8px;
}

.signal-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-list span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.signal-list strong {
  text-align: right;
  font-size: 13px;
  line-height: 1.45;
}

.home-flow-section {
  min-height: auto;
  padding: 48px;
  border-bottom: 1px solid rgba(215, 225, 220, 0.82);
  background: linear-gradient(180deg, #ffffff, #edf4f0);
}

.home-flow-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.home-flow-section .section-heading {
  margin-bottom: 24px;
}

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

.home-flow-grid a {
  position: relative;
  min-width: 0;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(25, 27, 29, 0.06);
  transition:
    transform var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.home-flow-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 118, 107, 0.1), transparent 52%);
  opacity: 0;
  transition: opacity var(--motion-fast) var(--motion-ease);
}

.home-flow-grid a:hover,
.home-flow-grid a:focus-visible {
  border-color: var(--green);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(25, 27, 29, 0.1);
}

.home-flow-grid a:hover::before,
.home-flow-grid a:focus-visible::before {
  opacity: 1;
}

.home-flow-grid span,
.page-handoff span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.home-flow-grid h3 {
  position: relative;
  margin: 34px 0 10px;
  font-size: 24px;
  line-height: 1.22;
}

.home-flow-grid p {
  position: relative;
  margin: 0;
  color: #56605d;
  font-size: 15px;
}

.page-handoff {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  max-width: 1220px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.page-handoff a {
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  transition:
    border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease);
}

.page-handoff a:hover,
.page-handoff a:focus-visible {
  border-color: var(--green);
  background: var(--green-soft);
  outline: none;
  transform: translateY(-2px);
}

.page-handoff a:nth-child(2) {
  min-width: 150px;
  text-align: center;
}

.page-handoff a:last-child {
  text-align: right;
}

.page-handoff strong {
  color: #252c2f;
  font-size: 16px;
}

.page-handoff small {
  color: var(--muted);
  font-size: 13px;
}

.fine-print {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.band {
  padding: 76px 48px;
}

.page-section {
  min-height: calc(100vh - 210px);
}

body:not(.is-ready) .page-section {
  display: none;
}

.page-section[hidden],
.hero-section[hidden] {
  display: none;
}

body.is-content-page .top-directory {
  padding-bottom: 2px;
}

.policy-band,
.portal-band,
.service-band,
.sources-band,
.daily-band {
  background: #fff;
}

.path-band,
.experts-band,
.policy-deep-band,
.case-band,
.downloads-band,
.analysis-band {
  background:
    linear-gradient(90deg, rgba(15, 107, 95, 0.07), transparent 34%),
    #f0f3ef;
}

.regional-band {
  background:
    linear-gradient(120deg, rgba(54, 86, 111, 0.08), transparent 38%),
    #ffffff;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 800px;
}

.section-heading p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
}

.portal-headline,
.portal-columns,
.portal-foot {
  max-width: 1220px;
  margin: 0 auto;
}

.portal-headline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
  align-items: stretch;
}

.portal-lead,
.portal-mini-card,
.portal-list-card,
.portal-foot {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portal-lead {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(182, 46, 43, 0.82), rgba(15, 107, 95, 0.72)),
    #202422;
  box-shadow: var(--shadow);
}

.portal-lead h3 {
  max-width: 720px;
  margin: 16px 0;
  font-size: 34px;
  line-height: 1.2;
}

.portal-lead p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.portal-meta {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.portal-lead .portal-meta {
  color: rgba(255, 255, 255, 0.82);
}

.portal-lead .portal-link,
.portal-foot .portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.portal-lead .portal-link:hover,
.portal-lead .portal-link:focus-visible {
  color: var(--ink);
  background: #fff;
  outline: none;
}

.portal-side {
  display: grid;
  gap: 20px;
}

.portal-mini-card {
  min-height: 185px;
  padding: 24px;
  background: #fbfcfa;
}

.portal-mini-card p,
.portal-news-list time,
.portal-foot p {
  color: var(--muted);
}

.portal-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.portal-list-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(25, 27, 29, 0.05);
}

.portal-list-card.feature-list {
  background:
    linear-gradient(180deg, rgba(174, 125, 43, 0.1), transparent 46%),
    #fff;
}

.portal-card-title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.portal-card-title span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.portal-card-title h3 {
  margin: 0;
}

.portal-news-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-news-list li {
  display: grid;
  gap: 5px;
}

.portal-news-list .portal-link {
  color: #293238;
  font-weight: 800;
  line-height: 1.45;
}

.portal-news-list .portal-link:hover,
.portal-news-list .portal-link:focus-visible {
  color: var(--red);
  outline: none;
}

.portal-news-list time {
  font-size: 12px;
  font-weight: 800;
}

.portal-foot {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 18px 20px;
  background: #f7f8f5;
}

.portal-foot p {
  margin: 0;
  font-size: 13px;
}

.portal-foot .portal-link {
  flex: 0 0 auto;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.portal-foot .portal-link:hover,
.portal-foot .portal-link:focus-visible {
  background: var(--green);
  border-color: var(--green);
  outline: none;
}

.policy-grid,
.pricing-grid,
.expert-grid,
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.info-card,
.dimension-card,
.price-card,
.expert-grid article,
.timeline article {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
}

.info-card {
  min-height: 250px;
  padding: 24px;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-weight: 800;
}

.info-card p,
.dimension-card p,
.timeline p,
.price-card p,
.expert-grid p,
.analysis-grid p,
.monitor-source-grid p,
.monitor-feed p {
  color: var(--muted);
}

.policy-resource-layout,
.policy-template-grid {
  display: grid;
  gap: 18px;
  max-width: 1220px;
  margin: 22px auto 0;
}

.policy-resource-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.policy-main-panel,
.policy-template-panel,
.policy-template-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 27, 29, 0.06);
}

.policy-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  background: #202422;
}

.policy-panel-head h3,
.policy-panel-head p {
  margin: 0;
}

.policy-panel-head > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.policy-resource-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.policy-resource-list article:last-child {
  border-bottom: 0;
}

.policy-resource-list h4 {
  margin: 8px 0 6px;
  font-size: 20px;
  line-height: 1.3;
}

.policy-resource-list p,
.policy-template-panel p,
.policy-template-grid p {
  color: var(--muted);
}

.policy-resource-actions,
.template-link-stack {
  display: flex;
  gap: 8px;
}

.policy-resource-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 180px;
}

.policy-resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  transition:
    transform var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease);
}

.policy-resource-link.ghost {
  color: var(--green);
  background: #fff;
}

.policy-resource-link:hover,
.policy-resource-link:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.policy-template-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.policy-template-panel h3 {
  margin-bottom: 0;
}

.template-link-stack {
  flex-direction: column;
}

.template-link-stack .policy-resource-link {
  justify-content: flex-start;
  width: 100%;
}

.policy-template-source {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.policy-template-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-template-grid article {
  min-height: 230px;
  padding: 24px;
}

.policy-template-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.policy-template-grid .policy-resource-link {
  margin-top: 10px;
}

.material-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto 22px;
  padding: 26px;
  border: 1px solid rgba(10, 118, 107, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(230, 245, 239, 0.96), rgba(255, 255, 255, 0.98) 52%),
    #fff;
  box-shadow: 0 18px 46px rgba(18, 24, 24, 0.08);
}

.material-spotlight h3 {
  max-width: 760px;
  margin: 4px 0 10px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
}

.material-spotlight p:not(.panel-kicker) {
  max-width: 820px;
  margin: 0;
  color: #46514e;
  font-size: 18px;
}

.material-downloads {
  display: grid;
  gap: 10px;
  align-content: center;
}

.material-downloads .policy-resource-link {
  min-height: 48px;
}

.material-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto 24px;
}

.material-checklist-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 27, 29, 0.05);
}

.material-checklist-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.material-checklist-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.material-checklist-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.1em;
  color: #4b5753;
}

.material-checklist-grid li::marker {
  color: var(--red);
}

.dimension-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.dimension-card {
  min-height: 220px;
  padding: 24px;
}

.dimension-card span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 21px;
  font-weight: 900;
}

.analysis-layout,
.monitor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
  align-items: start;
}

.analysis-main,
.monitor-panel,
.analysis-aside,
.monitor-feed {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 27, 29, 0.06);
}

.analysis-main {
  padding: 22px;
}

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

.analysis-grid article,
.monitor-source-grid article,
.monitor-feed article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.analysis-grid article {
  min-height: 214px;
  padding: 22px;
}

.analysis-grid span {
  display: inline-grid;
  width: 54px;
  height: 34px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.change-table-wrap {
  margin: 0;
}

.analysis-aside,
.monitor-feed {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.analysis-aside ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #394147;
}

.weight-reference {
  max-width: 1220px;
  margin: 34px auto 0;
}

.benchmark-grid,
.evidence-strip,
.weight-grid {
  display: grid;
  gap: 16px;
}

.benchmark-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.benchmark-grid article,
.weight-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 27, 29, 0.06);
}

.benchmark-grid article {
  min-height: 210px;
  padding: 22px;
}

.benchmark-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.benchmark-grid strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.benchmark-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.evidence-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.evidence-strip article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(15, 107, 95, 0.2);
  border-radius: var(--radius);
  background: var(--green-soft);
}

.evidence-strip span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.evidence-strip strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
}

.evidence-strip p {
  margin: 0;
  color: #41504c;
  font-size: 14px;
}

.evidence-strip a {
  align-self: end;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.weight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.weight-grid article {
  padding: 24px;
}

.weight-grid h3 {
  margin-bottom: 16px;
}

.weight-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #384046;
}

.weight-grid .positive h3 {
  color: var(--green);
}

.weight-grid .negative h3 {
  color: var(--red);
}

.analysis-link,
.monitor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.analysis-link:hover,
.monitor-link:hover,
.analysis-link:focus-visible,
.monitor-link:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  outline: none;
}

.monitor-panel {
  overflow: hidden;
}

.monitor-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: #fff;
  background: #202422;
}

.monitor-toolbar h3,
.monitor-toolbar p {
  margin: 0;
}

.monitor-toolbar span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

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

.monitor-source-grid article {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 20px;
}

.monitor-source-grid h4,
.monitor-feed h4 {
  margin: 9px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.monitor-source-grid .monitor-link {
  width: 100%;
  margin-top: auto;
}

.monitor-status {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 13px;
}

.daily-feed-list {
  display: grid;
  gap: 14px;
}

.daily-news-link {
  color: inherit;
}

.daily-news-link:hover,
.daily-news-link:focus-visible {
  color: var(--green);
  outline: none;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 22px 24px;
}

.keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(15, 107, 95, 0.18);
  border-radius: 999px;
  color: #255a53;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 800;
}

.monitor-feed article {
  padding: 16px;
}

.monitor-feed article span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.evidence-table-wrap,
.region-table-wrap {
  max-width: 1220px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.evidence-table,
.region-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.evidence-table th,
.evidence-table td,
.region-table th,
.region-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.evidence-table tr:last-child td,
.region-table tr:last-child td {
  border-bottom: 0;
}

.evidence-table th,
.region-table th {
  color: #fff;
  background: #202422;
  font-size: 14px;
}

.evidence-table td,
.region-table td {
  color: #384046;
}

.region-table td:nth-child(n + 2) {
  font-weight: 800;
}

.region-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  max-width: 1220px;
  margin: 24px auto 0;
  align-items: stretch;
}

.amap-panel,
.map-region-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.amap-panel {
  overflow: hidden;
  min-height: 430px;
}

.amap-region-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 430px;
  background:
    radial-gradient(circle at 65% 28%, rgba(15, 107, 95, 0.13), transparent 20%),
    radial-gradient(circle at 45% 58%, rgba(174, 125, 43, 0.14), transparent 22%),
    linear-gradient(135deg, #eef3ef, #ffffff);
}

.amap-region-map.has-amap .map-fallback {
  display: none;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.map-fallback strong {
  color: var(--ink);
  font-size: 18px;
}

.map-fallback span {
  max-width: 360px;
  font-size: 14px;
}

.amap-region-label {
  display: grid;
  gap: 2px;
  min-width: 108px;
  padding: 8px 10px;
  border: 1px solid rgba(25, 27, 29, 0.12);
  border-left: 5px solid var(--region-color, var(--red));
  border-radius: 7px;
  color: #252b2f;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(25, 27, 29, 0.12);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  transition:
    transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease);
}

.amap-region-label:hover {
  border-color: var(--region-color, var(--red));
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(25, 27, 29, 0.18);
}

.amap-region-label strong {
  color: var(--region-color, var(--red));
  font-size: 16px;
}

.amap-region-label em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.amap-region-popup {
  display: grid;
  gap: 8px;
  width: min(320px, 72vw);
  padding: 2px;
  color: #27302d;
  line-height: 1.45;
}

.amap-region-popup .popup-kicker {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.amap-region-popup h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.amap-region-popup > strong {
  color: var(--green);
  font-size: 26px;
  line-height: 1;
}

.amap-region-popup p {
  margin: 0;
  color: #4d5855;
  font-size: 13px;
}

.region-popup-tags,
.region-popup-actions,
.region-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-popup-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: #255a53;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
}

.region-popup-link,
.region-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.region-popup-link:hover,
.region-popup-link:focus-visible,
.region-card-link:hover,
.region-card-link:focus-visible {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
  outline: none;
}

.map-region-list {
  display: grid;
  gap: 12px;
}

.map-region-list article {
  display: grid;
  gap: 5px;
  padding: 18px;
  cursor: pointer;
  transition:
    border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.map-region-list article:hover,
.map-region-list article:focus-visible,
.map-region-list article.is-active {
  border-color: var(--green);
  background: var(--green-soft);
  outline: none;
  box-shadow: 0 12px 28px rgba(25, 27, 29, 0.08);
}

.map-region-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.map-region-list strong {
  font-size: 26px;
  line-height: 1.1;
}

.map-region-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.region-bars {
  display: grid;
  gap: 14px;
  max-width: 1220px;
  margin: 24px auto;
}

.region-bars article {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.region-bars strong,
.region-bars span {
  display: block;
}

.region-bars strong {
  font-size: 18px;
}

.region-bars article > div > span {
  color: var(--muted);
  font-size: 14px;
}

.bar {
  overflow: hidden;
  height: 14px;
  background: #e5e9e4;
  border-radius: 999px;
}

.bar span {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: inherit;
}

.region-insights,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.region-insights article,
.case-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.region-insights article {
  min-height: 240px;
  padding: 24px;
}

.region-insights p,
.case-card p {
  color: var(--muted);
}

.data-note {
  max-width: 1220px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  align-items: start;
}

.download-panel,
.audit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 27, 29, 0.06);
}

.download-panel {
  overflow: hidden;
}

.download-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  color: #fff;
  background: #202422;
}

.download-toolbar h3,
.download-toolbar p {
  margin: 0;
}

.download-toolbar span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.download-list {
  display: grid;
}

.download-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.download-row:last-child {
  border-bottom: 0;
}

.download-row h4 {
  margin: 8px 0 6px;
  font-size: 19px;
  line-height: 1.32;
}

.download-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.source-badge.official {
  color: #fff;
  background: var(--green);
}

.source-badge.media {
  color: #fff;
  background: var(--blue);
}

.source-badge.repost {
  color: #fff;
  background: var(--gold);
}

.download-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfcfa;
  font-weight: 800;
}

.download-action:hover,
.download-action:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  outline: none;
}

.audit-card {
  position: sticky;
  top: 188px;
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.audit-card-head {
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 107, 95, 0.96), rgba(54, 86, 111, 0.94)),
    #18211f;
}

.audit-card-head h3,
.audit-card-head p {
  margin: 0;
}

.audit-card-head h3 {
  margin-top: 6px;
  font-size: 25px;
  line-height: 1.25;
}

.audit-card-head > p:last-child {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.audit-summary {
  display: grid;
  gap: 5px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfa;
}

.audit-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.audit-summary strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.audit-flow {
  display: grid;
  padding: 4px 24px 0;
}

.audit-flow article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.audit-flow article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.audit-flow strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

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

.source-grade {
  display: grid;
  gap: 0;
  padding: 12px 24px 22px;
}

.source-grade span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

.source-grade strong {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
}

.source-grade em {
  font-style: normal;
}

.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1220px;
  margin: 0 auto 22px;
}

.case-filter-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #384046;
  background: #fff;
  box-shadow: 0 8px 18px rgba(25, 27, 29, 0.04);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  transition:
    color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.case-filter-button:hover,
.case-filter-button:focus-visible {
  border-color: rgba(15, 107, 95, 0.42);
  color: var(--green);
  outline: none;
  transform: translateY(-1px);
}

.case-filter-button.is-active {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 26px rgba(15, 107, 95, 0.18);
}

.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
}

.case-card[hidden] {
  display: none;
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
}

.case-meta span {
  color: var(--red);
}

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

.case-points {
  display: grid;
  gap: 10px;
  margin: 8px 0 22px;
  padding-left: 18px;
  color: #384046;
}

.case-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.case-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 0;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfcfa;
  font-weight: 800;
}

.case-link:hover {
  border-color: var(--green);
  color: var(--green);
}

.case-source-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  max-width: 1220px;
  margin: 22px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 107, 95, 0.07), rgba(183, 133, 44, 0.06)),
    #fff;
  box-shadow: 0 14px 34px rgba(25, 27, 29, 0.06);
}

.case-source-board h3,
.case-source-board p {
  margin: 0;
}

.case-source-board h3 {
  margin: 6px 0 8px;
}

.case-source-board p:not(.panel-kicker) {
  color: var(--muted);
}

.case-source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.case-source-list .case-link {
  min-height: 38px;
  background: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
}

.timeline article {
  min-height: 292px;
  padding: 24px;
  border-width: 0 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.price-card {
  min-height: 300px;
  padding: 26px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card.featured {
  border-color: rgba(182, 46, 43, 0.45);
  box-shadow: 0 18px 42px rgba(182, 46, 43, 0.13);
}

.price-card h3 {
  margin-bottom: 14px;
  font-size: 38px;
}

.price-card a {
  width: 100%;
  margin-top: 22px;
  color: #fff;
  background: var(--ink);
}

.expert-grid article {
  min-height: 244px;
  padding: 26px;
}

.avatar {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
}

.avatar.policy {
  background: var(--red);
}

.avatar.finance {
  background: var(--green);
}

.avatar.ip {
  background: var(--blue);
}

.avatar.capital {
  background: var(--gold);
}

.selfcheck-band {
  background:
    linear-gradient(120deg, rgba(182, 46, 43, 0.08), transparent 42%),
    #202422;
  color: #fff;
}

.selfcheck-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
  gap: 34px;
  max-width: 1220px;
  margin: 0 auto;
  align-items: start;
}

.selfcheck-copy {
  position: sticky;
  top: 104px;
}

.selfcheck-copy h2 {
  max-width: 560px;
}

.selfcheck-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.compliance-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.compliance-note span {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.form-section-title:first-child {
  padding-top: 0;
}

.form-section-title span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
}

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

.field-row.single {
  grid-template-columns: minmax(0, 1fr);
}

label {
  display: grid;
  gap: 7px;
  color: #34393d;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfd5d0;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfcfa;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 107, 95, 0.14);
}

.result-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  max-width: 1220px;
  margin: 24px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

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

.result-panel h3 {
  color: #fff;
}

.result-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.result-breakdown {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.score-meter {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.score-meter span,
.weak-list strong,
.risk-list strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

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

.score-meter div {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.score-meter i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.weak-list,
.risk-list {
  max-width: 640px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.weak-list ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.risk-list span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto;
}

.source-list a {
  position: relative;
  min-height: 68px;
  padding: 18px 48px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  color: #2f3940;
  font-weight: 700;
}

.source-list a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--red);
  content: ">";
  font-size: 18px;
  font-weight: 900;
  transform: translateY(-50%);
}

.source-list a:hover {
  border-color: var(--green);
  color: var(--green);
}

.source-list a:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 107, 95, 0.14);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity var(--motion-reveal) var(--motion-ease),
    transform var(--motion-reveal) var(--motion-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.stagger-1 {
  transition-delay: 80ms;
}

.reveal.stagger-2 {
  transition-delay: 160ms;
}

.reveal.stagger-3 {
  transition-delay: 240ms;
}

@keyframes radarSweep {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 30px 48px;
  color: rgba(255, 255, 255, 0.7);
  background: #141817;
  font-size: 13px;
}

.site-footer p,
.friend-links {
  margin: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.footer-main p:first-child {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.friend-links span {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.friend-links a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
}

.friend-links a:hover,
.friend-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  outline: none;
}

@media (max-width: 1060px) {
  .site-header {
    padding: 14px 28px;
  }

  .nav-links {
    display: none;
  }

	  .hero-section,
		  .selfcheck-layout,
		  .analysis-layout,
		  .monitor-layout,
		  .material-spotlight,
		  .policy-resource-layout,
		  .region-map-layout,
		  .portal-headline {
		    grid-template-columns: minmax(0, 1fr);
		  }

  .hero-copy,
  .policy-console,
  .console-content {
    min-height: auto;
  }

	  .policy-console {
	    max-width: 760px;
	    min-height: 470px;
	  }

	  .console-content {
	    min-height: 470px;
	  }

  .policy-grid,
  .dimension-grid,
  .expert-grid,
	  .home-flow-grid,
	  .timeline,
	  .region-insights,
	  .download-layout,
	  .material-checklist-grid,
	  .policy-template-grid,
		  .monitor-source-grid,
		  .console-stat-grid,
		  .portal-columns {
		    grid-template-columns: repeat(2, minmax(0, 1fr));
		  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-source-board {
    grid-template-columns: 1fr;
  }

  .audit-card,
  .analysis-aside,
  .monitor-feed {
    position: static;
  }

  .portal-lead {
    min-height: 330px;
  }

  .timeline {
    gap: 0;
  }

  .timeline article {
    border-width: 0 1px 1px 0;
  }

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

  .selfcheck-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .top-directory {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
}

  .top-directory a {
    flex: 0 0 150px;
    min-height: 76px;
    padding: 10px 12px;
  }

  .top-directory span {
    font-size: 13px;
  }

  .top-directory strong {
    font-size: 12px;
  }
}

@media (max-width: 1180px) {
  .page-indicator {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero-section,
  .band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .top-directory {
    margin-right: -16px;
    padding-right: 16px;
  }

  .hero-section {
    padding-top: 38px;
  }

	  .hero-copy,
	  .hero-lede,
	  .hero-intel-strip,
	  .hero-metrics,
	  .policy-console {
	    width: calc(100vw - 36px);
	    max-width: calc(100vw - 36px);
	  }

  h1 {
    max-width: calc(100vw - 36px);
    font-size: 34px;
    line-height: 1.14;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lede {
    font-size: 17px;
  }

	  .hero-metrics,
	  .hero-intel-strip,
	  .hero-portal-links,
	  .home-flow-grid,
	  .policy-grid,
  .dimension-grid,
  .pricing-grid,
  .expert-grid,
  .analysis-grid,
  .analysis-layout,
	  .monitor-layout,
	  .material-spotlight,
		  .monitor-source-grid,
		  .console-stat-grid,
		  .policy-resource-layout,
		  .policy-template-grid,
		  .region-map-layout,
	  .portal-headline,
  .portal-columns,
  .benchmark-grid,
  .evidence-strip,
  .weight-grid,
  .timeline,
  .region-insights,
  .case-grid,
  .material-checklist-grid,
  .download-layout,
  .field-row,
  .source-list,
  .result-panel {
    grid-template-columns: 1fr;
  }

  .home-flow-section {
    padding: 38px 18px 54px;
  }

  .page-handoff {
    grid-template-columns: 1fr;
  }

  .page-handoff a,
  .page-handoff a:last-child {
    text-align: left;
  }

	  .download-toolbar,
	  .download-row,
	  .policy-panel-head,
	  .policy-resource-list article,
	  .monitor-toolbar,
	  .portal-foot {
	    grid-template-columns: 1fr;
	  }

  .download-toolbar {
    align-items: flex-start;
  }

	  .monitor-toolbar {
	    align-items: flex-start;
	  }

	  .policy-panel-head {
	    display: grid;
	    align-items: flex-start;
	  }

	  .policy-resource-actions {
	    justify-content: flex-start;
	    min-width: 0;
	  }

  .download-action,
  .monitor-link,
  .analysis-link,
  .portal-foot .portal-link {
    width: 100%;
  }

  .portal-lead {
    padding: 24px;
  }

  .portal-lead h3 {
    font-size: 27px;
  }

  .portal-foot {
    display: grid;
  }

  .region-bars article {
    grid-template-columns: 1fr;
  }

  .amap-panel,
  .amap-region-map {
    min-height: 360px;
  }

  .map-region-list {
    grid-template-columns: 1fr;
  }

  .evidence-table,
  .region-table {
    min-width: 720px;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .policy-console {
    min-height: 430px;
  }

	  .console-content {
	    min-height: 430px;
	    padding: 24px;
	  }

	  .console-masthead,
	  .signal-list div {
	    flex-direction: column;
	  }

	  .signal-list strong {
	    text-align: left;
	  }

  .timeline article,
  .timeline article:nth-child(2n) {
    border-width: 0 0 1px;
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .lead-form {
    padding: 20px;
  }

  .result-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .case-filter,
  .case-source-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-filter-button,
  .case-link-row .case-link,
  .case-source-list .case-link {
    width: 100%;
  }

  .site-footer {
    padding: 24px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .page-indicator a,
  .scroll-progress {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
