
    :root {
      --orange: #ff6b16;
      --ink: #111113;
      --muted: #6f737b;
      --soft: #f6f7f9;
      --line: rgba(17, 17, 19, .08);
      --dark: #111113;
      --dark-soft: #1b1d22;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--ink);
      background: #fff;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
      background: rgba(255, 255, 255, .92);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }
    .header-inner {
      width: 100%;
      max-width: 1400px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand { display: inline-flex; align-items: center; height: 36px; flex: 0 0 auto; }
    .brand img { display: block; width: 148px; height: auto; }
    nav { display: flex; gap: 24px; font-size: 13px; color: var(--muted); }
    nav a {
      color: inherit;
      cursor: pointer;
      transition: color .25s var(--ease);
      white-space: nowrap;
    }
    nav a:hover,
    nav a.is-active { color: var(--orange); }

    .wrap {
      width: min(1400px, calc(100% - 80px));
      margin: 0 auto;
    }

    .governance-page {
      min-height: calc(100vh - 64px);
      background: #fff;
    }
    .governance-hero {
      min-height: calc(100vh - 64px);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 78% 28%, rgba(255, 107, 22, .16), transparent 30%),
        linear-gradient(135deg, #fff 0%, #f8f9fb 58%, #fff 100%);
    }
    .governance-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(17,17,19,.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(17,17,19,.035) 1px, transparent 1px);
      background-size: 72px 72px;
      opacity: .55;
      pointer-events: none;
    }
    .governance-hero .wrap {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 34px;
      align-content: center;
      padding: 84px 0 96px;
    }
    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
      align-items: center;
      gap: clamp(38px, 5vw, 92px);
    }
    .hero-content {
      display: grid;
      gap: 26px;
      min-width: 0;
    }
    .hero-kicker {
      margin: 0;
      color: var(--orange);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .12em;
    }
    .governance-hero h1 {
      margin: 0;
      max-width: 900px;
      font-size: clamp(54px, 6.4vw, 104px);
      line-height: .98;
      letter-spacing: 0;
      font-weight: 900;
    }
    .governance-hero h1 span {
      display: block;
      color: var(--orange);
    }
    .hero-copy {
      margin: 0;
      max-width: 760px;
      color: #4f5661;
      font-size: clamp(17px, 1.25vw, 21px);
      line-height: 1.8;
      font-weight: 600;
    }
    .hero-visual {
      position: relative;
      min-height: 540px;
      display: grid;
      place-items: center;
      isolation: isolate;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      width: min(84%, 420px);
      aspect-ratio: 1;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(255,107,22,.18), transparent 56%),
        conic-gradient(from 120deg, rgba(255,107,22,.12), rgba(17,17,19,.04), rgba(255,107,22,.14), rgba(17,17,19,.04), rgba(255,107,22,.12));
      filter: blur(.1px);
      z-index: -1;
    }
    .governance-orbit {
      position: relative;
      width: min(100%, 520px);
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
    }
    .governance-orbit::before,
    .governance-orbit::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(17,17,19,.10);
    }
    .governance-orbit::before { inset: 10%; }
    .governance-orbit::after { inset: 23%; border-style: dashed; }
    .orbit-core {
      position: relative;
      z-index: 2;
      width: min(48%, 228px);
      aspect-ratio: 1;
      border-radius: 34px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 24px;
      color: #fff;
      background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.22), transparent 32%),
        linear-gradient(145deg, #ff7a1a 0%, #f45b10 42%, #121417 100%);
      box-shadow: 0 26px 44px -28px rgba(255,107,22,.9), 0 14px 28px -22px rgba(17,17,19,.7);
    }
    .orbit-core strong {
      display: block;
      font-size: clamp(22px, 2.1vw, 32px);
      line-height: 1.12;
      font-weight: 950;
    }
    .orbit-core span {
      display: block;
      margin-top: 10px;
      color: rgba(255,255,255,.78);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.45;
    }
    .orbit-node {
      position: absolute;
      z-index: 3;
      width: 132px;
      min-height: 78px;
      display: grid;
      align-content: center;
      gap: 4px;
      padding: 13px 14px;
      border-radius: 18px;
      border: 1px solid rgba(17,17,19,.08);
      background: rgba(255,255,255,.9);
      box-shadow: 0 14px 22px -18px rgba(17,17,19,.58), 0 2px 4px -3px rgba(17,17,19,.28);
      backdrop-filter: blur(12px);
    }
    .orbit-node strong {
      color: #17191d;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 900;
    }
    .orbit-node span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 700;
    }
    .orbit-node:nth-child(2) { left: 2%; top: 14%; }
    .orbit-node:nth-child(3) { right: 0; top: 18%; }
    .orbit-node:nth-child(4) { right: 2%; bottom: 16%; }
    .orbit-node:nth-child(5) { left: 5%; bottom: 14%; }
    .orbit-node:nth-child(6) { left: 50%; top: 0; transform: translateX(-50%); }
    .orbit-node:nth-child(7) { left: 50%; bottom: 0; transform: translateX(-50%); }
    .hero-invest-card {
      position: absolute;
      right: 4%;
      bottom: 4%;
      z-index: 4;
      width: min(58%, 286px);
      padding: 18px 20px;
      border-radius: 22px;
      background: rgba(17,17,19,.92);
      color: #fff;
      box-shadow: 0 18px 32px -22px rgba(17,17,19,.8);
    }
    .hero-invest-card span {
      display: block;
      color: rgba(255,255,255,.55);
      font-size: 12px;
      font-weight: 850;
    }
    .hero-invest-card strong {
      display: block;
      margin-top: 5px;
      color: var(--orange);
      font-size: clamp(26px, 3vw, 42px);
      line-height: 1;
      font-weight: 950;
    }
    .hero-invest-card p {
      margin: 9px 0 0;
      color: rgba(255,255,255,.76);
      font-size: 13px;
      line-height: 1.55;
      font-weight: 700;
    }
    .governance-hero {
      min-height: calc(100svh - 64px);
      color: #fff;
      background:
        radial-gradient(circle at 72% 34%, rgba(255, 107, 22, .26), transparent 28%),
        radial-gradient(circle at 16% 78%, rgba(255, 255, 255, .08), transparent 30%),
        linear-gradient(135deg, #070809 0%, #111318 56%, #1b120d 100%);
      isolation: isolate;
    }
    .governance-hero::before {
      background:
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 72px 72px;
      opacity: .46;
      mask-image: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18));
    }
    .governance-hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 34%;
      background: linear-gradient(180deg, transparent, rgba(255,255,255,.06));
      pointer-events: none;
      z-index: 0;
    }
    .governance-hero .wrap {
      padding: clamp(78px, 9vh, 118px) 0 clamp(72px, 8vh, 108px);
    }
    .hero-layout {
      grid-template-columns: minmax(0, .98fr) minmax(380px, .68fr);
      gap: clamp(42px, 6vw, 96px);
    }
    .hero-content {
      gap: 28px;
      align-content: space-between;
    }
    .hero-kicker {
      color: rgba(255,255,255,.58);
      font-size: 14px;
      letter-spacing: .16em;
    }
    .governance-hero h1 {
      max-width: 860px;
      color: #fff;
      font-size: clamp(56px, 5.4vw, 86px);
      line-height: 1.04;
      font-weight: 950;
    }
    .governance-hero h1 span {
      color: #ff6b16;
      white-space: nowrap;
    }
    .hero-copy {
      max-width: 690px;
      color: rgba(255,255,255,.72);
      font-size: clamp(17px, 1.18vw, 20px);
      line-height: 1.82;
      font-weight: 650;
    }
    .hero-copy span {
      display: block;
    }
    .hero-investment-statement {
      max-width: 760px;
      margin: 0;
      color: var(--orange);
      font-size: clamp(30px, 3.1vw, 50px);
      line-height: 1.28;
      font-weight: 900;
    }
    .hero-visual {
      min-height: 500px;
      place-items: stretch;
    }
    .hero-command-card {
      position: relative;
      display: grid;
      align-content: space-between;
      min-height: 500px;
      padding: 30px;
      border-radius: 30px;
      overflow: hidden;
      background:
        radial-gradient(circle at 22% 18%, rgba(255,255,255,.14), transparent 24%),
        radial-gradient(circle at 78% 78%, rgba(255,107,22,.24), transparent 30%),
        rgba(255,255,255,.075);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 28px 60px -42px rgba(0,0,0,.88);
      backdrop-filter: blur(18px) saturate(1.25);
    }
    .hero-command-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .55;
      pointer-events: none;
    }
    .hero-command-card > * {
      position: relative;
      z-index: 1;
    }
    .command-top {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: flex-start;
    }
    .command-top span {
      color: rgba(255,255,255,.52);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .08em;
    }
    .command-top strong {
      display: block;
      margin-top: 8px;
      max-width: 250px;
      color: #fff;
      font-size: clamp(28px, 3vw, 46px);
      line-height: 1.05;
      font-weight: 950;
    }
    .command-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,107,22,.18);
      border: 1px solid rgba(255,107,22,.32);
      font-size: 12px;
      font-weight: 850;
      white-space: nowrap;
    }
    .command-status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 5px rgba(255,107,22,.16);
    }
    .command-flow {
      display: grid;
      gap: 12px;
      margin: 34px 0;
    }
    .command-flow-row {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.09);
    }
    .command-flow-row i {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 15px;
      background: rgba(255,107,22,.16);
      color: var(--orange);
      font-style: normal;
      font-size: 18px;
      font-weight: 950;
    }
    .command-flow-row strong {
      display: block;
      color: #fff;
      font-size: 15px;
      line-height: 1.22;
      font-weight: 900;
    }
    .command-flow-row span {
      display: block;
      margin-top: 5px;
      color: rgba(255,255,255,.56);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 650;
    }
    .command-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .command-bottom div {
      min-height: 112px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(17,17,19,.72);
      border: 1px solid rgba(255,255,255,.08);
    }
    .command-bottom strong {
      display: block;
      color: var(--orange);
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1;
      font-weight: 950;
    }
    .command-bottom span {
      display: block;
      margin-top: 10px;
      color: rgba(255,255,255,.62);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 700;
    }

    .governance-section {
      position: relative;
      padding: clamp(78px, 9vw, 128px) 0;
      overflow: hidden;
    }
    .governance-section.is-soft {
      background: var(--soft);
    }
    .governance-section.is-dark {
      background: var(--dark);
      color: #fff;
    }
    .section-head {
      max-width: 900px;
      margin: 0 0 42px;
    }
    .section-head.is-center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .section-head h2 {
      margin: 0;
      font-size: clamp(36px, 4.8vw, 68px);
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 950;
    }
    .section-head h2 span {
      color: var(--orange);
    }
    .section-head p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: clamp(16px, 1.35vw, 20px);
      line-height: 1.8;
      font-weight: 650;
    }
    .is-dark .section-head p {
      color: rgba(255,255,255,.62);
    }
    .value-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
    .value-card {
      position: relative;
      min-height: 236px;
      padding: 28px 28px 26px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(17,17,19,.08);
      box-shadow: 0 9px 10px -9px rgba(17,17,19,.38), 0 2px 3px -3px rgba(17,17,19,.22);
      overflow: hidden;
    }
    .value-card::after {
      content: "";
      position: absolute;
      right: -34px;
      top: -34px;
      width: 104px;
      height: 104px;
      border-radius: 50%;
      background: rgba(255,107,22,.10);
    }
    .value-card .num,
    .dark-card .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,107,22,.12);
      color: var(--orange);
      font-size: 13px;
      font-weight: 950;
    }
    .value-card h3,
    .dark-card h3,
    .path-step h3 {
      margin: 22px 0 10px;
      color: var(--ink);
      font-size: 24px;
      line-height: 1.18;
      font-weight: 900;
    }
    .value-card p,
    .path-step p {
      margin: 0;
      color: #5d636d;
      font-size: 15px;
      line-height: 1.75;
      font-weight: 600;
    }
    .closed-loop {
      display: grid;
      grid-template-columns: minmax(320px, .8fr) minmax(0, 1fr);
      gap: clamp(28px, 4vw, 58px);
      align-items: center;
    }
    .loop-board {
      position: relative;
      min-height: 520px;
      border-radius: 34px;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,107,22,.20), transparent 34%),
        linear-gradient(145deg, #171a20 0%, #0b0c0f 100%);
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 24px 40px -34px rgba(17,17,19,.9);
      overflow: hidden;
    }
    .loop-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 56px 56px;
      opacity: .42;
    }
    .loop-center {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 190px;
      height: 190px;
      border-radius: 32px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 22px;
      background: var(--orange);
      color: #fff;
      box-shadow: 0 0 0 14px rgba(255,107,22,.13), 0 26px 34px -26px rgba(255,107,22,.92);
      font-size: 28px;
      line-height: 1.12;
      font-weight: 950;
    }
    .loop-item {
      position: absolute;
      width: 160px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.92);
      color: #14161a;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 850;
      box-shadow: 0 12px 20px -18px rgba(0,0,0,.72);
    }
    .loop-item small {
      display: block;
      margin-top: 4px;
      color: #747a83;
      font-size: 12px;
      line-height: 1.35;
      font-weight: 700;
    }
    .loop-item:nth-child(2) { left: 7%; top: 11%; }
    .loop-item:nth-child(3) { right: 7%; top: 11%; }
    .loop-item:nth-child(4) { right: 6%; top: 42%; }
    .loop-item:nth-child(5) { right: 10%; bottom: 10%; }
    .loop-item:nth-child(6) { left: 10%; bottom: 10%; }
    .loop-item:nth-child(7) { left: 6%; top: 42%; }
    .loop-copy {
      display: grid;
      gap: 18px;
    }
    .dark-card {
      padding: 26px 28px;
      border-radius: 22px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    }
    .dark-card h3 {
      color: #fff;
      margin-top: 18px;
    }
    .dark-card p {
      margin: 0;
      color: rgba(255,255,255,.62);
      font-size: 15px;
      line-height: 1.75;
      font-weight: 600;
    }
    .asset-band {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(340px, .7fr);
      gap: clamp(28px, 4vw, 58px);
      align-items: stretch;
    }
    .asset-proof {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .proof-card {
      min-height: 148px;
      padding: 24px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(17,17,19,.08);
      box-shadow: 0 9px 10px -9px rgba(17,17,19,.36), 0 2px 3px -3px rgba(17,17,19,.20);
    }
    .proof-card strong {
      display: block;
      color: var(--orange);
      font-size: clamp(28px, 3.5vw, 48px);
      line-height: 1;
      font-weight: 950;
    }
    .proof-card span {
      display: block;
      margin-top: 12px;
      color: #363a40;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 850;
    }
    .asset-panel {
      position: relative;
      min-height: 100%;
      padding: 34px;
      border-radius: 30px;
      color: #fff;
      background:
        radial-gradient(circle at 26% 18%, rgba(255,255,255,.17), transparent 24%),
        radial-gradient(circle at 82% 72%, rgba(255,107,22,.26), transparent 34%),
        linear-gradient(145deg, #1c2027 0%, #111113 68%, #22160f 100%);
      overflow: hidden;
    }
    .asset-panel::before {
      content: "";
      position: absolute;
      inset: 28px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 24px;
      pointer-events: none;
    }
    .asset-panel h3 {
      position: relative;
      margin: 0;
      color: #fff;
      font-size: clamp(28px, 3.4vw, 48px);
      line-height: 1.08;
      font-weight: 950;
    }
    .asset-panel p {
      position: relative;
      margin: 20px 0 0;
      color: rgba(255,255,255,.68);
      font-size: 16px;
      line-height: 1.8;
      font-weight: 650;
    }
    .asset-tags {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }
    .asset-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.86);
      border: 1px solid rgba(255,255,255,.10);
      font-size: 13px;
      font-weight: 850;
    }
    .path-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      counter-reset: step;
    }
    .path-step {
      position: relative;
      min-height: 260px;
      padding: 28px 24px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(17,17,19,.08);
      box-shadow: 0 9px 10px -9px rgba(17,17,19,.34), 0 2px 3px -3px rgba(17,17,19,.20);
    }
    .path-step::before {
      counter-increment: step;
      content: "0" counter(step);
      color: var(--orange);
      font-size: 13px;
      font-weight: 950;
    }
    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
      padding: clamp(30px, 5vw, 56px);
      border-radius: 34px;
      background:
        radial-gradient(circle at 82% 20%, rgba(255,107,22,.18), transparent 30%),
        linear-gradient(145deg, #15171c 0%, #0f1012 100%);
      color: #fff;
      overflow: hidden;
    }
    .cta-panel h2 {
      margin: 0;
      font-size: clamp(30px, 4.2vw, 58px);
      line-height: 1.12;
      font-weight: 950;
    }
    .cta-panel p {
      margin: 16px 0 0;
      max-width: 780px;
      color: rgba(255,255,255,.62);
      font-size: 17px;
      line-height: 1.75;
      font-weight: 650;
    }
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
    }
    .cta-actions a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 900;
      white-space: nowrap;
      border: 1px solid rgba(255,255,255,.14);
      color: #fff;
    }
    .cta-actions a:first-child {
      background: var(--orange);
      border-color: var(--orange);
      box-shadow: 0 14px 20px -16px rgba(255,107,22,.9);
    }
    .governance-section[data-reveal] {
      opacity: 0;
      transform: translate3d(0, 28px, 0) scale(.982);
      transform-origin: center top;
      will-change: opacity, transform;
    }
    .governance-section[data-reveal].is-visible {
      animation: governanceBreathIn .92s cubic-bezier(.2,.72,.18,1) both;
    }
    @keyframes governanceBreathIn {
      0% {
        opacity: 0;
        transform: translate3d(0, 28px, 0) scale(.982);
      }
      64% {
        opacity: 1;
        transform: translate3d(0, -3px, 0) scale(1.006);
      }
      100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
      }
    }

    .mobile-stagger-toggle,
    .mobile-stagger-menu { display: none; }

    .site-floating-actions {
      position: fixed;
      right: 22px;
      bottom: 28px;
      z-index: 9000;
      display: grid;
      gap: 12px;
      pointer-events: none;
    }
    .site-floating-actions a,
    .site-floating-actions button {
      position: relative;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(17,17,19,.08);
      border-radius: 50%;
      background: rgba(255,255,255,.96);
      color: var(--orange);
      display: grid;
      place-items: center;
      cursor: pointer;
      pointer-events: auto;
      font: 800 18px/1 Arial, "Microsoft YaHei", sans-serif;
      box-shadow: 0 0 14px -10px rgba(17, 17, 19, .58), 0 9px 10px -8px rgba(17, 17, 19, .48), 0 2px 3px -2px rgba(17, 17, 19, .28);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .site-floating-actions a:hover,
    .site-floating-actions button:hover {
      transform: translateY(-2px);
      background: #fff;
      box-shadow: 0 0 16px -9px rgba(17, 17, 19, .62), 0 12px 12px -8px rgba(17, 17, 19, .52), 0 2px 4px -2px rgba(17, 17, 19, .3);
    }
    .site-floating-actions button {
      appearance: none;
      padding: 0;
    }
    .site-float-top-mark {
      display: grid;
      justify-items: center;
      align-content: center;
      gap: 2px;
      transform: translateY(-1px);
    }
    .site-float-top-mark span {
      font-size: 22px;
      line-height: 18px;
    }
    .site-float-top-mark i {
      width: 13px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      display: block;
    }
    .site-float-home-mark {
      font-size: 22px;
      line-height: 1;
      transform: translateY(-1px);
    }
    @media (hover: hover) and (pointer: fine) {
      .site-floating-actions [data-float-tip]::after {
        content: attr(data-float-tip);
        position: absolute;
        top: 50%;
        right: calc(100% + 10px);
        transform: translate(6px, -50%);
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(17, 17, 19, .88);
        color: #fff;
        font: 600 12px/1 "Microsoft YaHei", Arial, sans-serif;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease, transform .18s ease;
        box-shadow: 0 8px 18px -12px rgba(17, 17, 19, .55);
      }
      .site-floating-actions [data-float-tip]:hover::after,
      .site-floating-actions [data-float-tip]:focus-visible::after {
        opacity: 1;
        transform: translate(0, -50%);
      }
    }

    @media (max-width: 900px) {
      header {
        height: 60px;
        padding: 0 18px;
      }
      .brand img { width: 138px; }
      nav { display: none; }
      .wrap { width: min(100% - 36px, 720px); }
      .governance-hero {
        min-height: calc(100vh - 60px);
      }
      .governance-hero .wrap {
        padding: 72px 0 86px;
      }
      .hero-layout,
      .closed-loop,
      .asset-band,
      .cta-panel {
        grid-template-columns: 1fr;
      }
      .governance-hero h1 {
        font-size: clamp(42px, 11vw, 64px);
      }
      .hero-copy {
        font-size: 16px;
      }
      .hero-copy span {
        display: inline;
      }
      .hero-visual {
        min-height: auto;
      }
      .hero-command-card {
        min-height: 0;
        padding: 24px;
      }
      .command-bottom {
        grid-template-columns: 1fr;
      }
      .command-top {
        display: grid;
      }
      .command-status {
        width: fit-content;
      }
      .site-floating-actions {
        right: 14px;
        bottom: 18px;
        gap: 10px;
      }
      .site-floating-actions a,
      .site-floating-actions button {
        width: 42px;
        height: 42px;
        font-size: 16px;
      }
      .site-float-top-mark span,
      .site-float-home-mark {
        font-size: 20px;
      }
      .site-float-top-mark i {
        width: 12px;
      }
      .value-grid,
      .path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .loop-board {
        min-height: 470px;
      }
      .cta-actions {
        justify-content: flex-start;
      }

      .mobile-stagger-toggle {
        position: relative;
        z-index: 181;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        height: 38px;
        padding: 0 13px;
        border: 1px solid rgba(17,17,19,.08);
        border-radius: 999px;
        background: rgba(255,255,255,.92);
        color: var(--ink);
        box-shadow: 0 8px 16px rgba(17,17,19,.08);
      }
      .mobile-stagger-toggle-text {
        position: relative;
        display: grid;
        overflow: hidden;
        height: 18px;
        min-width: 28px;
        font-size: 13px;
        font-weight: 900;
        line-height: 18px;
      }
      .mobile-stagger-toggle-text span {
        grid-area: 1 / 1;
        transition: transform .42s var(--ease), opacity .3s var(--ease);
      }
      .mobile-stagger-toggle-text span:last-child {
        opacity: 0;
        transform: translateY(18px);
      }
      body.mobile-menu-open .mobile-stagger-toggle-text span:first-child {
        opacity: 0;
        transform: translateY(-18px);
      }
      body.mobile-menu-open .mobile-stagger-toggle-text span:last-child {
        opacity: 1;
        transform: translateY(0);
      }
      .mobile-stagger-icon {
        width: 17px;
        height: 12px;
        display: inline-block;
        border-top: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        position: relative;
      }
      .mobile-stagger-icon::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        border-top: 2px solid currentColor;
        transform: translateY(-50%);
      }
      .mobile-stagger-menu {
        position: fixed;
        inset: 0;
        z-index: 170;
        display: block;
        pointer-events: none;
      }
      .mobile-stagger-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.18);
        opacity: 0;
        transition: opacity .38s var(--ease);
      }
      .mobile-stagger-layer,
      .mobile-stagger-panel {
        position: absolute;
        inset: 0 0 0 auto;
        width: min(86vw, 360px);
        transform: translateX(102%);
        transition: transform .58s var(--ease);
      }
      .mobile-stagger-layer.is-white { background: rgba(255,255,255,.98); transition-delay: .03s; }
      .mobile-stagger-layer.is-orange { background: var(--orange); width: min(82vw, 344px); transition-delay: .08s; }
      .mobile-stagger-panel {
        width: min(78vw, 328px);
        padding: calc(env(safe-area-inset-top, 0px) + 60px) 28px 28px;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #111113;
        color: #fff;
        transition-delay: .13s;
      }
      body.mobile-menu-open {
        overflow: hidden;
      }
      body.mobile-menu-open .mobile-stagger-menu {
        pointer-events: auto;
      }
      body.mobile-menu-open .mobile-stagger-backdrop {
        opacity: 1;
      }
      body.mobile-menu-open .mobile-stagger-layer,
      body.mobile-menu-open .mobile-stagger-panel {
        transform: translateX(0);
      }
      .mobile-stagger-list {
        display: grid;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .mobile-stagger-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 42px;
        color: rgba(255,255,255,.78);
        font-size: 20px;
        font-weight: 900;
        opacity: 0;
        transform: translateX(22px);
        transition: color .25s var(--ease), opacity .42s var(--ease), transform .42s var(--ease);
      }
      .mobile-stagger-list a::before {
        content: attr(data-index);
        color: rgba(255,255,255,.35);
        font-size: 12px;
        font-weight: 800;
      }
      .mobile-stagger-list a.is-active,
      .mobile-stagger-list a:hover {
        color: var(--orange);
      }
      body.mobile-menu-open .mobile-stagger-list a {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(.18s + var(--i) * .035s);
      }
    }

    @media (max-width: 640px) {
      .wrap {
        width: min(100% - 32px, 560px);
        max-width: calc(100vw - 32px);
      }
      .hero-content {
        gap: 20px;
        max-width: 100%;
      }
      .governance-hero h1,
      .hero-copy,
      .hero-command-card {
        max-width: 100%;
      }
      .governance-hero h1 {
        font-size: clamp(38px, 10.4vw, 48px);
        line-height: 1.06;
        overflow-wrap: anywhere;
      }
      .governance-hero h1 span {
        white-space: normal;
      }
      .hero-copy {
        overflow-wrap: anywhere;
        line-height: 1.78;
      }
      .hero-visual {
        min-height: 0;
        align-content: start;
        gap: 12px;
      }
      .governance-orbit {
        width: 100%;
        aspect-ratio: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }
      .governance-orbit::before,
      .governance-orbit::after {
        display: none;
      }
      .orbit-core {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 152px;
        aspect-ratio: auto;
        border-radius: 26px;
      }
      .orbit-node {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 136px;
        width: 100%;
        min-height: 64px;
      }
      .value-grid,
      .asset-proof,
      .path-grid {
        grid-template-columns: 1fr;
      }
      .value-card,
      .path-step {
        min-height: auto;
      }
      .loop-board {
        min-height: 680px;
        border-radius: 28px;
      }
      .loop-center {
        width: 160px;
        height: 160px;
        font-size: 23px;
      }
      .loop-item {
        left: 50% !important;
        right: auto !important;
        width: min(78%, 230px);
        transform: translateX(-50%);
      }
      .loop-item:nth-child(2) { top: 5%; }
      .loop-item:nth-child(3) { top: 18%; }
      .loop-item:nth-child(4) { top: 31%; }
      .loop-item:nth-child(5) { top: auto; bottom: 31%; }
      .loop-item:nth-child(6) { top: auto; bottom: 18%; }
      .loop-item:nth-child(7) { top: auto; bottom: 5%; }
      .asset-panel {
        padding: 28px;
      }
      .asset-panel::before {
        inset: 18px;
      }
      .cta-panel {
        border-radius: 26px;
      }
      .cta-actions a {
        width: 100%;
      }
    }

    .governance-hero {
      min-height: min(calc(88svh - 64px), 820px);
      color: var(--ink);
      background: #fff;
      border-bottom: 0;
      isolation: isolate;
    }
    .governance-hero::before {
      --network-opacity: .42;
      content: "";
      display: block;
      position: absolute;
      z-index: 0;
      inset: 0;
      background: url("/assets/images/smart-city/city-governance-network-20260712.png") center / cover no-repeat;
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 8%, #000 26%, #000 100%);
      mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 8%, #000 26%, #000 100%);
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      pointer-events: none;
      transform-origin: center;
      transform: translateY(-21%) scale(1.08);
      animation: governanceNetworkBreathIn 1.15s cubic-bezier(.2,.72,.18,1) .02s both;
    }
    .governance-hero::after {
      display: none;
    }
    .governance-hero .wrap {
      padding: clamp(52px, 5.5vh, 78px) 0 clamp(48px, 5vh, 72px);
    }
    .hero-layout {
      grid-template-columns: minmax(0, 1fr) minmax(460px, .86fr);
      gap: clamp(42px, 5vw, 76px);
      align-items: stretch;
    }
    .hero-content {
      gap: 28px;
      align-self: stretch;
      align-content: start;
      grid-auto-rows: max-content;
    }
    .governance-hero h1 {
      max-width: 860px;
      color: #111113;
      font-size: clamp(54px, 5.6vw, 92px);
      line-height: 1.03;
      font-weight: 950;
    }
    .governance-hero h1 span {
      display: block;
      color: inherit;
      white-space: nowrap;
    }
    .governance-hero h1 span:last-child {
      color: var(--orange);
      font-size: .79em;
      line-height: 1.3;
    }
    .hero-copy {
      max-width: 780px;
      color: #4f5661;
      font-size: clamp(17px, 1.18vw, 20px);
      line-height: 1.84;
      font-weight: 650;
    }
    .hero-copy span {
      display: block;
    }
    .hero-visual {
      min-height: 0;
      height: auto;
      align-self: stretch;
      place-items: stretch;
    }
    .governance-hero .hero-visual::before {
      display: none;
    }
    .governance-hero h1,
    .governance-hero .hero-copy,
    .governance-hero .hero-investment-statement,
    .governance-hero .hero-visual {
      opacity: 0;
      will-change: opacity, transform;
      animation: governanceBreathIn .96s cubic-bezier(.2,.72,.18,1) both;
    }
    .governance-hero h1 {
      transform-origin: left center;
      animation-delay: .06s;
    }
    .governance-hero .hero-copy {
      transform-origin: left center;
      animation-delay: .18s;
    }
    .governance-hero .hero-investment-statement {
      transform-origin: left center;
      animation-delay: .26s;
    }
    .governance-hero .hero-visual {
      transform-origin: center;
      animation-delay: .30s;
    }
    .hero-command-card.governance-map-card {
      position: relative;
      display: grid;
      align-items: stretch;
      min-height: 0;
      height: 100%;
      padding: 0;
      border-radius: 0;
      color: var(--ink);
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      overflow: visible;
    }
    .hero-command-card.governance-map-card::before {
      display: none;
    }
    .hero-command-card.governance-map-card::after {
      display: none;
    }
    .map-card-rail {
      position: relative;
      z-index: 1;
      width: calc(100% - clamp(14px, 2.4vw, 34px));
      height: 100%;
      overflow: visible;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      perspective: 1600px;
    }
    .map-card-rail::before { display: none; }
    .map-card-track {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      padding: 0;
      transform-style: preserve-3d;
    }
    .map-node {
      position: absolute;
      inset: 0;
      width: 100%;
      min-width: 0;
      min-height: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: clamp(20px, 2.2vw, 34px);
      padding: clamp(28px, 2.8vw, 44px);
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(17,17,19,.08);
      box-shadow: 0 18px 42px -38px rgba(17,17,19,.30);
      overflow: hidden;
      box-sizing: border-box;
      opacity: 0;
      transform:
        translate3d(var(--stack-x, 0px), var(--stack-y, 0px), var(--stack-z, 0px))
        scale(var(--stack-scale, 1));
      transform-origin: center;
      backface-visibility: hidden;
      will-change: transform, opacity;
      pointer-events: none;
    }
    .map-node:first-child { opacity: 1; }
    .map-card-track.is-ready .map-node {
      transition:
        transform .72s cubic-bezier(.22,.72,.24,1),
        opacity .46s ease,
        background-color .46s ease,
        border-color .46s ease,
        box-shadow .46s ease;
      transition-delay: var(--stack-delay, 0ms);
    }
    .map-node.is-active {
      background: #fff;
      border-color: rgba(255,107,22,.22);
      box-shadow: 0 26px 64px -48px rgba(17,17,19,.42);
    }
    .map-node[data-stack-slot="1"] {
      background: #fffaf7;
      border-color: rgba(255,107,22,.20);
      box-shadow: 0 20px 44px -34px rgba(17,17,19,.28);
    }
    .map-node[data-stack-slot="2"] {
      background: #fafafa;
      border-color: rgba(17,17,19,.12);
      box-shadow: 0 20px 44px -34px rgba(17,17,19,.24);
    }
    .map-node[data-stack-slot="3"] {
      background: #f7f8f9;
      border-color: rgba(17,17,19,.11);
      box-shadow: 0 20px 44px -34px rgba(17,17,19,.20);
    }
    .map-node[data-stack-slot="4"] {
      background: #f3f5f7;
      border-color: rgba(17,17,19,.10);
      box-shadow: 0 20px 44px -34px rgba(17,17,19,.16);
    }
    .map-node.is-leaving {
      z-index: 10 !important;
      animation: governanceCardExitRight .82s cubic-bezier(.2,.7,.2,1) both !important;
      transition: none !important;
      pointer-events: none !important;
    }
    @keyframes governanceCardExitRight {
      0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        box-shadow: 0 26px 64px -48px rgba(17,17,19,.42);
      }
      62% {
        opacity: .86;
        transform: translate3d(112px, -3px, 92px) rotate(1.8deg) scale(1.012);
        box-shadow: -28px 22px 48px -30px rgba(255,107,22,.34);
      }
      100% {
        opacity: 0;
        transform: translate3d(190px, -5px, 150px) rotate(3.2deg) scale(1.024);
        box-shadow: -40px 24px 56px -34px rgba(255,107,22,.16);
      }
    }
    @keyframes governanceNetworkBreathIn {
      0% {
        opacity: 0;
        transform: translateY(-16%) scale(1.12);
      }
      100% {
        opacity: var(--network-opacity);
        transform: translateY(-21%) scale(1.08);
      }
    }
    .map-node::before { display: none; }
    .map-node strong,
    .map-node p {
      position: relative;
      z-index: 1;
      display: block;
    }
    .map-node strong {
      color: var(--orange);
      max-width: 100%;
      font-size: clamp(38px, 3.35vw, 52px);
      line-height: 1.08;
      font-weight: 950;
    }
    .map-node strong::after {
      content: "";
      display: block;
      width: 52px;
      height: 3px;
      margin-top: 9px;
      border-radius: 999px;
      background: rgba(255,107,22,.72);
    }
    .map-node p {
      max-width: 30em;
      margin: 0;
      color: #59616d;
      font-size: clamp(17px, 1.22vw, 20px);
      line-height: 1.72;
      font-weight: 650;
    }
    .hero-home-return {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: max-content;
      height: 42px;
      margin-top: 2px;
      padding: 0 17px;
      border: 1px solid rgba(255,107,22,.24);
      border-radius: 999px;
      color: var(--orange);
      background: rgba(255,255,255,.54);
      backdrop-filter: blur(16px) saturate(150%);
      -webkit-backdrop-filter: blur(16px) saturate(150%);
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      text-decoration: none;
      transform-origin: left center;
      will-change: opacity, transform;
      animation: governanceBreathIn .96s cubic-bezier(.2,.72,.18,1) .30s backwards;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 16px 24px -20px rgba(17,17,19,.46), 0 6px 18px -14px rgba(255,107,22,.58);
      transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
    }
    .hero-home-return:hover {
      transform: translateY(-2px);
      border-color: rgba(255,107,22,.46);
      background: rgba(255,255,255,.76);
    }
    .hero-home-return:focus-visible {
      outline: 3px solid rgba(255,107,22,.22);
      outline-offset: 3px;
    }
    @media (prefers-reduced-motion: reduce) {
      .map-card-track.is-ready .map-node { transition: none !important; }
      .map-node.is-leaving { animation: none !important; }
      .governance-hero::before {
        opacity: var(--network-opacity) !important;
        transform: translateY(-4%) scale(1.08) !important;
        animation: none !important;
      }
      .governance-hero h1,
      .governance-hero .hero-copy,
      .governance-hero .hero-investment-statement,
      .governance-hero .hero-home-return,
      .governance-hero .hero-visual,
      .governance-section[data-reveal],
      .governance-section[data-reveal].is-visible {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }
    }

    .governance-section {
      padding: clamp(76px, 8vw, 116px) 0;
    }
    .section-head {
      max-width: 940px;
      margin-bottom: 40px;
    }
    .section-head h2,
    .insight-statement h2 {
      margin: 0;
      color: #111113;
      font-size: clamp(34px, 4.2vw, 58px);
      line-height: 1.12;
      font-weight: 950;
    }
    .section-head h2 span,
    .insight-statement h2 span {
      color: var(--orange);
    }
    .insight-statement h2 {
      font-size: clamp(62px, 5.4vw, 78px);
      line-height: 1.02;
      white-space: nowrap;
    }
    .insight-statement h2 span {
      display: block;
      margin-top: 14px;
      font-size: clamp(36px, 3.2vw, 46px);
      line-height: 1.08;
      white-space: nowrap;
    }
    .section-head p,
    .insight-statement p {
      margin: 18px 0 0;
      color: #626974;
      font-size: clamp(16px, 1.25vw, 19px);
      line-height: 1.82;
      font-weight: 650;
    }
    .pressure-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }
    .pressure-card,
    .solution-loop article,
    .tech-path article,
    .cooperation-grid article {
      position: relative;
      min-height: 220px;
      padding: 24px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(17,17,19,.08);
      box-shadow: 0 10px 16px -14px rgba(17,17,19,.32);
      overflow: hidden;
    }
    .pressure-card {
      grid-column: span 4;
    }
    .pressure-card:nth-child(1),
    .pressure-card:nth-child(2) {
      grid-column: span 6;
      min-height: 188px;
      padding: 30px;
    }
    .pressure-card:nth-child(1) {
      color: #111113;
      background:
        radial-gradient(circle at 88% 18%, rgba(255,107,22,.16), transparent 32%),
        linear-gradient(145deg, #fff7f2 0%, #fff 72%);
      border-color: rgba(255,107,22,.18);
    }
    .pressure-card:nth-child(1) h3,
    .pressure-card:nth-child(1) p {
      color: #111113;
    }
    .pressure-card:nth-child(1) p {
      color: #626974;
    }
    .pressure-card:nth-child(1)::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 5px;
      background: var(--orange);
    }
    .pressure-card:nth-child(6) {
      grid-column: 1 / -1;
      min-height: 150px;
      display: grid;
      grid-template-columns: 52px minmax(220px, .28fr) minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      padding: 28px 30px;
    }
    .pressure-card:nth-child(6) h3,
    .pressure-card:nth-child(6) p {
      margin: 0;
    }
    .pressure-card span,
    .solution-loop i,
    .tech-path span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,107,22,.12);
      color: var(--orange);
      font-style: normal;
      font-size: 13px;
      font-weight: 950;
    }
    .pressure-card h3,
    .solution-loop h3,
    .tech-path h3,
    .cooperation-grid h3 {
      margin: 20px 0 10px;
      color: #111113;
      font-size: 22px;
      line-height: 1.22;
      font-weight: 950;
    }
    .pressure-card p,
    .solution-loop p,
    .tech-path p,
    .cooperation-grid p {
      margin: 0;
      color: #626974;
      font-size: 15px;
      line-height: 1.72;
      font-weight: 620;
    }
    .insight-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(38px, 5vw, 64px);
      align-items: start;
    }
    .change-layout {
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(380px, 1fr);
      gap: clamp(34px, 5vw, 72px);
      align-items: center;
    }
    .insight-statement {
      padding-right: 0;
    }
    .insight-list {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border-top: 4px solid var(--orange);
      border-bottom: 1px solid rgba(17,17,19,.12);
      box-shadow: none;
      overflow: visible;
    }
    .insight-list::before {
      display: none;
    }
    .insight-list article {
      position: relative;
      min-height: 300px;
      padding: 30px 26px 34px;
      background: transparent;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.10);
      box-shadow: none;
    }
    .insight-list article:last-child {
      border-right: 0;
    }
    .insight-list article::before {
      display: none;
    }
    .insight-stage {
      display: block;
      margin: 0 0 22px;
      color: var(--orange);
      font-size: 15px;
      line-height: 1;
      font-weight: 900;
    }
    .insight-list strong {
      display: block;
      color: #111113;
      font-size: clamp(22px, 1.8vw, 28px);
      line-height: 1.18;
      font-weight: 950;
    }
    .insight-list ul {
      list-style: none;
      margin: 26px 0 0;
      padding: 0;
    }
    .insight-list li {
      padding: 9px 0;
      border-top: 1px solid rgba(17,17,19,.08);
      color: #626974;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 650;
    }
    .solution-loop {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 16px;
    }
    .solution-loop article {
      grid-column: span 3;
      min-height: 220px;
      background:
        linear-gradient(180deg, rgba(255,107,22,.06), rgba(255,255,255,0) 42%),
        #fff;
    }
    .solution-loop article:nth-child(1),
    .solution-loop article:nth-child(2) {
      grid-column: span 6;
      min-height: 204px;
      padding: 30px;
    }
    .solution-loop article:nth-child(1) {
      background:
        radial-gradient(circle at 88% 18%, rgba(255,107,22,.16), transparent 32%),
        linear-gradient(145deg, #fff 0%, #f6f7f9 100%);
    }
    .tech-path {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0;
      border: 1px solid rgba(17,17,19,.08);
      border-radius: 22px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 12px 20px -18px rgba(17,17,19,.32);
    }
    .tech-path article {
      min-height: 282px;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.08);
      border-radius: 0;
      box-shadow: none;
    }
    .tech-path article:last-child {
      border-right: 0;
    }
    .tech-path span {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      font-size: 20px;
    }
    .tech-path article:nth-child(even) {
      background: #fafafa;
    }
    .cooperation-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .cooperation-grid article {
      min-height: 244px;
      padding-top: 30px;
    }
    .cooperation-grid article::before {
      content: "";
      position: absolute;
      left: 24px;
      top: 0;
      width: 58px;
      height: 5px;
      border-radius: 999px;
      background: var(--orange);
    }
    .cooperation-grid article:nth-child(4) {
      grid-column: 1 / -1;
      min-height: auto;
      display: grid;
      grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
      gap: 28px;
      align-items: center;
      padding: 30px 34px;
      color: #111113;
      background:
        radial-gradient(circle at 90% 28%, rgba(255,107,22,.16), transparent 30%),
        linear-gradient(145deg, #fff7f2 0%, #fff 74%);
      border-color: rgba(255,107,22,.18);
    }
    .cooperation-grid article:nth-child(4) h3 {
      margin: 0;
      color: #111113;
      font-size: clamp(24px, 2.4vw, 34px);
    }
    .cooperation-grid article:nth-child(4) p {
      color: #626974;
      font-size: 16px;
    }
    .change-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .change-grid span {
      display: flex;
      align-items: center;
      min-height: 58px;
      padding: 0 18px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(17,17,19,.08);
      color: #111113;
      font-size: 17px;
      font-weight: 900;
      box-shadow: 0 8px 14px -14px rgba(17,17,19,.3);
    }
    .proof-panel {
      padding: clamp(28px, 4vw, 40px);
      border-radius: 26px;
      color: #111113;
      background:
        radial-gradient(circle at 86% 18%, rgba(255,107,22,.14), transparent 30%),
        linear-gradient(145deg, #fff 0%, #f8f9fb 100%);
      border: 1px solid rgba(17,17,19,.08);
      box-shadow: 0 18px 34px -30px rgba(17,17,19,.42);
    }
    .proof-panel h3 {
      margin: 0;
      color: #111113;
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.12;
      font-weight: 950;
    }
    .proof-panel p {
      margin: 16px 0 22px;
      color: #626974;
      font-size: 16px;
      line-height: 1.75;
      font-weight: 650;
    }
    .proof-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .proof-metrics div {
      min-height: 122px;
      padding: 18px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(17,17,19,.08);
      box-shadow: 0 9px 14px -14px rgba(17,17,19,.28);
    }
    .proof-metrics strong {
      display: block;
      color: var(--orange);
      font-size: clamp(30px, 3vw, 44px);
      line-height: 1;
      font-weight: 950;
    }
    .proof-metrics span {
      display: block;
      margin-top: 10px;
      color: #626974;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 750;
    }
    .cta-panel {
      grid-template-columns: minmax(0, 1fr) auto;
      color: #111113;
      background:
        radial-gradient(circle at 90% 18%, rgba(255,107,22,.16), transparent 30%),
        linear-gradient(135deg, #fff7f2 0%, #fff 58%, #f8f9fb 100%);
      border-radius: 28px;
      border: 1px solid rgba(255,107,22,.16);
      box-shadow: 0 18px 34px -30px rgba(17,17,19,.38);
    }
    .cta-panel h2 {
      max-width: 860px;
      font-size: clamp(30px, 4vw, 54px);
      color: #111113;
    }
    .cta-panel p {
      color: #626974;
    }
    .cta-panel .cta-actions a {
      border-color: rgba(255,107,22,.24);
      color: var(--orange);
      background: #fff;
    }
    .cta-panel .cta-actions a:first-child {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      box-shadow: 0 14px 20px -18px rgba(255,107,22,.8);
    }

    @media (max-width: 1180px) {
      .pressure-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .pressure-card,
      .pressure-card:nth-child(1),
      .pressure-card:nth-child(2),
      .pressure-card:nth-child(6) {
        grid-column: auto;
      }
      .solution-loop {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .solution-loop article,
      .solution-loop article:nth-child(1),
      .solution-loop article:nth-child(2) {
        grid-column: auto;
      }
      .tech-path {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .tech-path article {
        border-right: 1px solid rgba(17,17,19,.08);
        border-bottom: 1px solid rgba(17,17,19,.08);
      }
      .tech-path article:nth-child(3),
      .tech-path article:nth-child(6) {
        border-right: 0;
      }
      .tech-path article:nth-child(n + 4) {
        border-bottom: 0;
      }
    }
    @media (max-width: 1100px) {
      .hero-layout {
        grid-template-columns: 1fr;
      }
      .hero-command-card.governance-map-card {
        min-height: auto;
      }
      .map-card-rail,
      .map-card-track {
        height: 360px;
        min-height: 360px;
      }
      .map-node {
        min-height: 360px;
      }
    }
    @media (max-width: 900px) {
      .header-inner {
        min-width: 0;
        gap: 12px;
      }
      .brand {
        min-width: 0;
      }
      .mobile-stagger-toggle {
        flex: 0 0 auto;
      }
      .governance-hero {
        min-height: auto;
      }
      .hero-layout,
      .insight-layout,
      .change-layout,
      .cta-panel {
        grid-template-columns: 1fr;
      }
      .governance-hero h1 {
        font-size: clamp(42px, 9vw, 64px);
      }
      .hero-command-card.governance-map-card {
        display: grid;
        min-height: auto;
      }
      .hero-command-card.governance-map-card::after {
        display: none;
      }
      .map-node {
        width: 100%;
        min-width: 0;
        height: 100%;
        min-height: 360px;
        justify-self: stretch;
      }
      .governance-map-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .map-card-rail {
        grid-column: 1 / -1;
      }
      .map-card-rail,
      .map-card-track {
        height: 360px;
        min-height: 360px;
      }
      .insight-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .insight-list article:nth-child(2n) {
        border-right: 0;
      }
      .insight-list article:nth-child(n + 3) {
        border-top: 1px solid rgba(17,17,19,.10);
      }
      .pressure-grid,
      .cooperation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .cooperation-grid article:nth-child(4) {
        grid-template-columns: 1fr;
      }
      .pressure-card:nth-child(6) {
        grid-template-columns: 1fr;
      }
      .cta-actions {
        justify-content: flex-start;
      }
    }
    @media (max-width: 640px) {
      .governance-hero .wrap {
        padding: 58px 0 70px;
      }
      .governance-hero h1 {
        font-size: clamp(36px, 9.6vw, 46px);
        line-height: 1.08;
      }
      .governance-hero::before { --network-opacity: .28; }
      .governance-hero h1 span {
        white-space: normal;
      }
      .hero-copy span {
        display: inline;
      }
      .hero-command-card.governance-map-card {
        padding: 0;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
      }
      .governance-map-card,
      .pressure-grid,
      .solution-loop,
      .tech-path,
      .cooperation-grid,
      .change-grid,
      .proof-metrics {
        grid-template-columns: 1fr;
      }
      .map-card-rail {
        display: block;
        width: calc(100% - 12px);
        height: 300px;
        min-height: 300px;
      }
      .map-card-track {
        width: 100%;
        height: 300px;
        min-height: 300px;
        padding: 0;
      }
      .map-node {
        inset: 0;
        min-width: 0;
        height: 100%;
        min-height: 300px;
        gap: 28px;
        padding: 28px;
        border: 1px solid rgba(17,17,19,.08);
        border-radius: 14px;
      }
      .map-node strong { font-size: clamp(32px, 10vw, 42px); }
      .map-node p { font-size: 16px; }
      .insight-statement h2 {
        font-size: clamp(38px, 10.8vw, 42px);
      }
      .insight-statement h2 span {
        margin-top: 10px;
        font-size: clamp(22px, 6.3vw, 25px);
      }
      .insight-list {
        grid-template-columns: 1fr;
      }
      .insight-list article,
      .insight-list article:nth-child(2n) {
        min-height: auto;
        border-right: 0;
      }
      .insight-list article + article {
        border-top: 1px solid rgba(17,17,19,.10);
      }
      .pressure-card,
      .solution-loop article,
      .tech-path article,
      .cooperation-grid article {
        min-height: auto;
      }
      .pressure-card:nth-child(1),
      .pressure-card:nth-child(2),
      .solution-loop article:nth-child(1),
      .solution-loop article:nth-child(2) {
        padding: 24px;
      }
      .tech-path {
        border-radius: 18px;
      }
      .tech-path article {
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.08);
      }
      .tech-path article:last-child {
        border-bottom: 0;
      }
      .cta-panel {
        border-radius: 24px;
      }
      .cta-actions a {
        width: 100%;
      }
    }

    /* ===== 城市治理正文：结构与节奏优化 ===== */
    .governance-page .governance-section {
      padding: clamp(88px, 8vw, 128px) 0;
    }
    .governance-page .section-head,
    .governance-page .section-head.is-center {
      width: 100%;
      max-width: 980px;
      margin: 0 0 clamp(42px, 5vw, 64px);
      text-align: left;
      justify-items: start;
    }
    .governance-page .section-head h2 {
      max-width: 900px;
    }
    .governance-page .section-head p {
      max-width: 860px;
    }

    /* 治理压力：由卡片网格改为可扫描的问题清单 */
    .governance-page .pressure-grid {
      display: block;
      border-top: 4px solid var(--orange);
    }
    .governance-page .pressure-card,
    .governance-page .pressure-card:nth-child(1),
    .governance-page .pressure-card:nth-child(2),
    .governance-page .pressure-card:nth-child(6) {
      display: grid;
      grid-template-columns: 58px minmax(220px, .32fr) minmax(0, 1fr);
      gap: clamp(18px, 3vw, 44px);
      align-items: center;
      min-height: 0;
      padding: 27px 0;
      border: 0;
      border-bottom: 1px solid rgba(17,17,19,.11);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
      transition: background-color .28s var(--ease), box-shadow .28s var(--ease);
    }
    .governance-page .pressure-card:nth-child(1)::before {
      display: none;
    }
    .governance-page .pressure-card span {
      width: auto;
      height: auto;
      justify-content: flex-start;
      border-radius: 0;
      background: transparent;
      font-size: 15px;
    }
    .governance-page .pressure-card h3,
    .governance-page .pressure-card:nth-child(6) h3 {
      margin: 0;
      font-size: clamp(20px, 1.7vw, 26px);
    }
    .governance-page .pressure-card p,
    .governance-page .pressure-card:nth-child(6) p {
      margin: 0;
      font-size: 16px;
      line-height: 1.72;
    }
    .governance-page .pressure-card:hover {
      background: rgba(255,107,22,.045);
      box-shadow: inset 4px 0 0 var(--orange);
    }
    .governance-page .pressure-card:hover h3 {
      color: var(--orange);
    }

    /* 判断：保持开放式能力链 */
    .governance-page .insight-list article {
      transition: background-color .28s var(--ease);
    }
    .governance-page .insight-list article:hover {
      background: rgba(255,255,255,.78);
    }

    /* 治理方向：双列行动矩阵 */
    .governance-page .solution-loop {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      border-top: 4px solid var(--orange);
      border-bottom: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .solution-loop article,
    .governance-page .solution-loop article:nth-child(1),
    .governance-page .solution-loop article:nth-child(2) {
      grid-column: auto;
      min-height: 218px;
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      grid-template-rows: auto 1fr;
      column-gap: 20px;
      align-content: start;
      padding: 30px 28px;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.10);
      border-bottom: 1px solid rgba(17,17,19,.10);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      transition: background-color .28s var(--ease);
    }
    .governance-page .solution-loop article:nth-child(2n) {
      border-right: 0;
    }
    .governance-page .solution-loop article:nth-child(n + 5) {
      border-bottom: 0;
    }
    .governance-page .solution-loop article:hover {
      background: #fff;
    }
    .governance-page .solution-loop i {
      grid-row: 1 / span 2;
      width: 40px;
      height: 40px;
      border-radius: 12px;
    }
    .governance-page .solution-loop h3 {
      margin: 2px 0 12px;
      font-size: clamp(22px, 1.8vw, 28px);
    }
    .governance-page .solution-loop p {
      grid-column: 2;
      font-size: 16px;
    }

    /* 技术路径：连续流程轨道 */
    .governance-page .tech-path {
      position: relative;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0;
      border: 0;
      border-top: 4px solid var(--orange);
      border-bottom: 1px solid rgba(17,17,19,.11);
      border-radius: 0;
      overflow: visible;
      background: transparent;
      box-shadow: none;
    }
    .governance-page .tech-path article,
    .governance-page .tech-path article:nth-child(even) {
      min-height: 294px;
      padding: 30px 20px;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.10);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      transition: background-color .28s var(--ease);
    }
    .governance-page .tech-path article:last-child {
      border-right: 0;
    }
    .governance-page .tech-path article:hover {
      background: #fff;
    }
    .governance-page .tech-path span {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      color: #fff;
      background: var(--orange);
      font-size: 20px;
    }
    .governance-page .tech-path h3 {
      margin-top: 26px;
      font-size: 20px;
    }

    /* 合作方式：四方职责协同链 */
    .governance-page .cooperation-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      border-top: 4px solid var(--orange);
      border-bottom: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .cooperation-grid article,
    .governance-page .cooperation-grid article:nth-child(4) {
      grid-column: auto;
      min-height: 276px;
      display: block;
      padding: 32px 26px;
      color: #111113;
      background: transparent;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.10);
      border-radius: 0;
      box-shadow: none;
      transition: background-color .28s var(--ease);
    }
    .governance-page .cooperation-grid article:last-child {
      border-right: 0;
    }
    .governance-page .cooperation-grid article::before {
      display: none;
    }
    .governance-page .cooperation-grid article:hover {
      background: rgba(255,107,22,.045);
    }
    .governance-page .cooperation-grid h3,
    .governance-page .cooperation-grid article:nth-child(4) h3 {
      margin: 0 0 18px;
      color: #111113;
      font-size: clamp(22px, 1.8vw, 28px);
    }
    .governance-page .cooperation-grid p,
    .governance-page .cooperation-grid article:nth-child(4) p {
      color: #626974;
      font-size: 16px;
      line-height: 1.72;
    }

    /* 实际改变与案例：结果清单 + 数据证明 */
    .governance-page .change-layout {
      grid-template-columns: minmax(0, .78fr) minmax(460px, 1fr);
      gap: clamp(48px, 6vw, 88px);
      align-items: stretch;
    }
    .governance-page .change-grid {
      display: block;
      border-top: 4px solid var(--orange);
    }
    .governance-page .change-grid span {
      position: relative;
      min-height: 0;
      padding: 16px 0 16px 24px;
      border: 0;
      border-bottom: 1px solid rgba(17,17,19,.10);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      font-size: 17px;
    }
    .governance-page .change-grid span::before {
      content: "";
      position: absolute;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
    }
    .governance-page .proof-panel {
      height: 100%;
      padding: 8px 0 0 clamp(30px, 4vw, 54px);
      border: 0;
      border-left: 4px solid var(--orange);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .governance-page .proof-panel p {
      max-width: 720px;
      margin-bottom: 28px;
    }
    .governance-page .proof-metrics {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0 24px;
      border-top: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .proof-metrics div {
      min-height: 118px;
      padding: 22px 0;
      border: 0;
      border-bottom: 1px solid rgba(17,17,19,.10);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    /* 分项呼吸进入，避免整块同时浮现 */
    .governance-page .governance-section[data-reveal],
    .governance-page .governance-section[data-reveal].is-visible {
      opacity: 1;
      transform: none;
      animation: none;
      will-change: auto;
    }
    .governance-page .governance-breathe-item {
      opacity: 0;
      transform: translate3d(0, 22px, 0) scale(.986);
      transform-origin: center top;
      will-change: opacity, transform;
    }

    .governance-page .governance-section.is-visible .governance-breathe-item {
        animation: governanceBreathIn .82s cubic-bezier(.2, .72, .18, 1) both;
        animation-delay: var(--governance-item-delay, 0ms);
    }

    .governance-page .governance-section.is-visible .governance-breathe-item {
      animation: governanceBreathIn .82s cubic-bezier(.2,.72,.18,1) both;
      animation-delay: var(--governance-item-delay, 0ms);
    }

    @media (max-width: 1100px) {
      .governance-page .tech-path {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .governance-page .tech-path article:nth-child(3n) {
        border-right: 0;
      }
      .governance-page .tech-path article:nth-child(n + 4) {
        border-top: 1px solid rgba(17,17,19,.10);
      }
      .governance-page .cooperation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .governance-page .cooperation-grid article:nth-child(2n) {
        border-right: 0;
      }
      .governance-page .cooperation-grid article:nth-child(n + 3) {
        border-top: 1px solid rgba(17,17,19,.10);
      }
      .governance-page .change-layout {
        grid-template-columns: 1fr;
      }
      .governance-page .proof-panel {
        padding: 34px 0 0;
        border-left: 0;
        border-top: 4px solid var(--orange);
      }
    }

    @media (max-width: 760px) {
      .governance-page .governance-section {
        padding: 72px 0;
      }
      .governance-page .pressure-card,
      .governance-page .pressure-card:nth-child(1),
      .governance-page .pressure-card:nth-child(2),
      .governance-page .pressure-card:nth-child(6) {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 0;
      }
      .governance-page .pressure-card p,
      .governance-page .pressure-card:nth-child(6) p {
        grid-column: 2;
      }
      .governance-page .solution-loop,
      .governance-page .tech-path,
      .governance-page .cooperation-grid {
        grid-template-columns: 1fr;
      }
      .governance-page .solution-loop article,
      .governance-page .solution-loop article:nth-child(1),
      .governance-page .solution-loop article:nth-child(2),
      .governance-page .tech-path article,
      .governance-page .tech-path article:nth-child(even),
      .governance-page .cooperation-grid article,
      .governance-page .cooperation-grid article:nth-child(4) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.10);
      }
      .governance-page .solution-loop article:nth-child(n + 5),
      .governance-page .tech-path article:nth-child(n + 4),
      .governance-page .cooperation-grid article:nth-child(n + 3) {
        border-top: 0;
      }
      .governance-page .solution-loop article:last-child,
      .governance-page .tech-path article:last-child,
      .governance-page .cooperation-grid article:last-child {
        border-bottom: 0;
      }
      .governance-page .tech-path article {
        padding: 26px 20px;
      }
      .governance-page .proof-metrics {
        grid-template-columns: 1fr;
      }
      .governance-page .change-grid span {
        font-size: 16px;
      }
    }

    /* ===== 城市治理正文：结构化叙事 V2 ===== */
    .governance-page .governance-pressure-section,
    .governance-page .governance-solution-section,
    .governance-page .governance-cooperation-section {
      background: #fff;
    }
    .governance-page .governance-insight-section,
    .governance-page .governance-tech-section,
    .governance-page .governance-outcome-section,
    .governance-page .governance-cta-section {
      background: #f6f7f8;
    }
    .governance-page .governance-outcome-section {
      padding-bottom: clamp(48px, 5vw, 72px);
    }
    .governance-page .governance-cta-section {
      padding-top: 0;
    }

    /* 压力汇聚：核心节点 + 即时/长期两类压力 */
    .governance-page .pressure-system {
      display: grid;
      grid-template-columns: minmax(280px, .66fr) minmax(0, 1.5fr);
      gap: clamp(34px, 4.6vw, 72px);
      align-items: stretch;
    }
    .governance-page .pressure-core {
      display: grid;
      align-content: start;
      min-height: 100%;
      padding: clamp(30px, 3.4vw, 48px);
      border-left: 4px solid var(--orange);
      border-radius: 0 8px 8px 0;
      background: #fff7f1;
    }
    .governance-page .pressure-core-label {
      color: var(--orange);
      font-size: 14px;
      line-height: 1.4;
      font-weight: 850;
    }
    .governance-page .pressure-core > strong {
      display: block;
      margin: 22px 0 18px;
      color: #111113;
      font-size: clamp(44px, 4.2vw, 68px);
      line-height: 1;
      font-weight: 950;
    }
    .governance-page .pressure-core > p {
      max-width: 20em;
      margin: 0;
      color: #5f6670;
      font-size: 17px;
      line-height: 1.78;
    }
    .governance-page .pressure-core-axis {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: auto;
      padding-top: 32px;
      border-top: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .pressure-core-axis span {
      padding: 0 12px;
      color: #373d45;
      font-size: 13px;
      line-height: 1.5;
      font-weight: 800;
      text-align: center;
      border-right: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .pressure-core-axis span:first-child { padding-left: 0; text-align: left; }
    .governance-page .pressure-core-axis span:last-child { padding-right: 0; text-align: right; border-right: 0; }
    .governance-page .pressure-groups {
      display: grid;
      gap: clamp(28px, 3vw, 42px);
    }
    .governance-page .pressure-group {
      display: grid;
      grid-template-columns: minmax(180px, .48fr) minmax(0, 1fr);
      gap: clamp(22px, 3vw, 40px);
      border-top: 1px solid rgba(17,17,19,.14);
    }
    .governance-page .pressure-group-head {
      display: grid;
      align-content: start;
      gap: 16px;
      padding: 24px 0;
    }
    .governance-page .pressure-group-head > span {
      color: var(--orange);
      font-size: 13px;
      font-weight: 900;
    }
    .governance-page .pressure-group-head strong {
      display: block;
      color: #111113;
      font-size: clamp(20px, 1.7vw, 25px);
      line-height: 1.3;
      font-weight: 900;
    }
    .governance-page .pressure-group-head p {
      margin: 9px 0 0;
      color: #737983;
      font-size: 14px;
      line-height: 1.65;
    }
    .governance-page .pressure-group-list {
      display: block;
    }
    .governance-page .pressure-group-list .pressure-card,
    .governance-page .pressure-group-list .pressure-card:nth-child(1),
    .governance-page .pressure-group-list .pressure-card:nth-child(2),
    .governance-page .pressure-group-list .pressure-card:nth-child(3) {
      display: grid;
      grid-template-columns: 38px minmax(150px, .48fr) minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      min-height: 0;
      padding: 20px 0;
      border: 0;
      border-bottom: 1px solid rgba(17,17,19,.09);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .governance-page .pressure-group-list .pressure-card:last-child { border-bottom: 0; }
    .governance-page .pressure-group-list .pressure-card span {
      color: var(--orange);
      font-size: 13px;
      font-weight: 900;
    }
    .governance-page .pressure-group-list .pressure-card h3 {
      margin: 0;
      color: #17191d;
      font-size: clamp(18px, 1.45vw, 22px);
      line-height: 1.35;
    }
    .governance-page .pressure-group-list .pressure-card p {
      margin: 0;
      color: #676e78;
      font-size: 15px;
      line-height: 1.68;
    }
    .governance-page .pressure-group-list .pressure-card:hover {
      background: transparent;
      box-shadow: none;
    }
    .governance-page .pressure-group-list .pressure-card:hover h3 { color: var(--orange); }

    /* 治理判断：由四块并列改为连续能力链 */
    .governance-page .insight-layout {
      grid-template-columns: minmax(300px, .68fr) minmax(0, 1.42fr);
      gap: clamp(52px, 7vw, 108px);
      align-items: start;
    }
    .governance-page .insight-statement {
      padding: 4px 0 0;
    }
    .governance-page .insight-statement h2 {
      max-width: 10em;
      margin: 0;
      font-size: clamp(42px, 4.4vw, 68px);
      line-height: 1.08;
    }
    .governance-page .insight-statement h2 span {
      display: block;
      margin-top: 16px;
      font-size: .58em;
      line-height: 1.28;
    }
    .governance-page .insight-list {
      display: block;
      counter-reset: insight-stage;
      border-top: 4px solid var(--orange);
    }
    .governance-page .insight-list article,
    .governance-page .insight-list article:nth-child(2n) {
      counter-increment: insight-stage;
      display: grid;
      grid-template-columns: minmax(100px, .42fr) minmax(170px, .72fr) minmax(0, 1fr);
      gap: clamp(16px, 2.4vw, 34px);
      align-items: center;
      min-height: 0;
      padding: 25px 0;
      border: 0;
      border-bottom: 1px solid rgba(17,17,19,.11);
      background: transparent;
    }
    .governance-page .insight-list article:last-child { border-bottom: 0; }
    .governance-page .insight-list article:hover { background: transparent; }
    .governance-page .insight-stage {
      margin: 0;
      color: var(--orange);
      font-size: 13px;
      font-weight: 900;
    }
    .governance-page .insight-stage::before {
      content: "0" counter(insight-stage);
      display: block;
      margin-bottom: 8px;
      color: rgba(17,17,19,.32);
      font-size: 12px;
    }
    .governance-page .insight-list strong {
      color: #15171a;
      font-size: clamp(20px, 1.65vw, 25px);
      line-height: 1.35;
      font-weight: 900;
    }
    .governance-page .insight-list ul {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 18px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .governance-page .insight-list li {
      position: relative;
      padding: 0 0 0 14px;
      color: #6a717b;
      font-size: 14px;
      line-height: 1.55;
    }
    .governance-page .insight-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .68em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255,107,22,.72);
    }

    /* 治理方向：现场治理与持续运营双轨 */
    .governance-page .solution-system {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border: 1px solid rgba(17,17,19,.10);
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
    }
    .governance-page .solution-track {
      min-width: 0;
      border-right: 1px solid rgba(17,17,19,.10);
    }
    .governance-page .solution-track:last-child { border-right: 0; }
    .governance-page .solution-track-head {
      display: flex;
      align-items: center;
      min-height: 152px;
      padding: 30px 32px;
      border-bottom: 1px solid rgba(17,17,19,.10);
      background: #f5f6f7;
    }
    .governance-page .solution-track:last-child .solution-track-head { background: #fff7f1; }
    .governance-page .solution-track-head h3 {
      margin: 0;
      color: #111113;
      font-size: clamp(27px, 2.4vw, 36px);
      line-height: 1.2;
      font-weight: 950;
    }
    .governance-page .solution-track .solution-loop {
      display: block;
      border: 0;
    }
    .governance-page .solution-track .solution-loop article,
    .governance-page .solution-track .solution-loop article:nth-child(1),
    .governance-page .solution-track .solution-loop article:nth-child(2),
    .governance-page .solution-track .solution-loop article:nth-child(3) {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      grid-template-rows: auto auto;
      gap: 8px 18px;
      align-content: start;
      min-height: 0;
      padding: 25px 32px;
      border: 0;
      border-bottom: 1px solid rgba(17,17,19,.09);
      background: transparent;
    }
    .governance-page .solution-track .solution-loop article:last-child { border-bottom: 0; }
    .governance-page .solution-track .solution-loop article:hover { background: rgba(17,17,19,.025); }
    .governance-page .solution-track .solution-loop i {
      grid-row: 1 / span 2;
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border-radius: 8px;
      color: var(--orange);
      background: #fff1e8;
      font-size: 13px;
      font-style: normal;
      font-weight: 900;
    }
    .governance-page .solution-track .solution-loop h3 {
      margin: 2px 0 0;
      font-size: clamp(20px, 1.55vw, 24px);
    }
    .governance-page .solution-track .solution-loop p {
      grid-column: 2;
      margin: 0;
      color: #676e78;
      font-size: 15px;
      line-height: 1.68;
    }

    /* 技术路径：六个连续节点 */
    .governance-page .tech-path {
      position: relative;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0;
      border: 0;
      background: transparent;
      overflow: visible;
    }
    .governance-page .tech-path article,
    .governance-page .tech-path article:nth-child(even) {
      position: relative;
      min-height: 0;
      padding: 0 20px 22px;
      border: 0;
      background: transparent;
    }
    .governance-page .tech-path article::before {
      content: "";
      position: absolute;
      z-index: 0;
      top: 23px;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(255,107,22,.28);
    }
    .governance-page .tech-path article:first-child::before { left: 50%; }
    .governance-page .tech-path article:last-child::before { right: 50%; }
    .governance-page .tech-path article:hover { background: transparent; }
    .governance-page .tech-path span {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin: 0 0 24px;
      border-radius: 50%;
      color: #fff;
      background: var(--orange);
      box-shadow: 0 0 0 8px #f6f7f8;
      font-size: 18px;
      font-weight: 900;
    }
    .governance-page .tech-path h3 {
      margin: 0 0 14px;
      color: #15171a;
      font-size: clamp(18px, 1.38vw, 21px);
      line-height: 1.35;
    }
    .governance-page .tech-path p {
      margin: 0;
      color: #6a717b;
      font-size: 14px;
      line-height: 1.68;
    }

    /* 合作方式：四方职责顺序与闭环结果 */
    .governance-page .cooperation-grid {
      counter-reset: cooperation-role;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      border: 1px solid rgba(17,17,19,.10);
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
    }
    .governance-page .cooperation-grid article,
    .governance-page .cooperation-grid article:nth-child(4) {
      counter-increment: cooperation-role;
      min-height: 300px;
      padding: 32px 28px;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.10);
      background: #fff;
    }
    .governance-page .cooperation-grid article:last-child {
      border-right: 0;
      background: #fff7f1;
    }
    .governance-page .cooperation-grid article::before {
      content: "0" counter(cooperation-role);
      position: static;
      display: block;
      width: auto;
      height: auto;
      margin: 0 0 48px;
      color: var(--orange);
      background: transparent;
      font-size: 14px;
      line-height: 1;
      font-weight: 900;
    }
    .governance-page .cooperation-grid article:hover { background: #f8f9fa; }
    .governance-page .cooperation-grid article:last-child:hover { background: #fff4ec; }
    .governance-page .cooperation-grid h3,
    .governance-page .cooperation-grid article:nth-child(4) h3 {
      margin: 0 0 18px;
      color: #15171a;
      font-size: clamp(22px, 1.8vw, 28px);
      line-height: 1.28;
    }
    .governance-page .cooperation-grid article:nth-child(3) h3 { color: var(--orange); }
    .governance-page .cooperation-grid p,
    .governance-page .cooperation-grid article:nth-child(4) p {
      margin: 0;
      color: #676e78;
      font-size: 15px;
      line-height: 1.75;
    }

    /* 实际改变：三类变化 + 样板数据证明 */
    .governance-page .change-layout {
      grid-template-columns: minmax(0, .82fr) minmax(460px, 1.12fr);
      gap: clamp(48px, 6vw, 92px);
      align-items: stretch;
    }
    .governance-page .change-grid {
      display: block;
      border: 0;
    }
    .governance-page .change-group {
      display: grid;
      grid-template-columns: 110px repeat(2, minmax(0, 1fr));
      gap: 18px;
      align-items: center;
      padding: 21px 0;
      border-top: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .change-group:last-child { border-bottom: 1px solid rgba(17,17,19,.11); }
    .governance-page .change-group > strong {
      color: var(--orange);
      font-size: 14px;
      line-height: 1.5;
      font-weight: 900;
    }
    .governance-page .change-grid .change-group span {
      min-height: 0;
      padding: 0 0 0 18px;
      border: 0;
      border-left: 1px solid rgba(17,17,19,.10);
      background: transparent;
      color: #3f454d;
      font-size: 15px;
      line-height: 1.62;
    }
    .governance-page .change-grid .change-group span::before { display: none; }
    .governance-page .proof-panel {
      height: 100%;
      padding: clamp(30px, 3.8vw, 50px);
      border: 1px solid rgba(17,17,19,.10);
      border-top: 4px solid var(--orange);
      border-radius: 8px;
      background: #fff;
      box-shadow: none;
    }
    .governance-page .proof-panel h3 {
      margin: 0 0 18px;
      color: #111113;
      font-size: clamp(28px, 2.5vw, 38px);
      line-height: 1.2;
    }
    .governance-page .proof-panel p {
      max-width: 720px;
      margin: 0 0 30px;
      color: #666d77;
      font-size: 15px;
      line-height: 1.76;
    }
    .governance-page .proof-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      border-top: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .proof-metrics div {
      display: grid;
      align-content: start;
      min-height: 126px;
      padding: 22px 20px 22px 0;
      border: 0;
      border-bottom: 1px solid rgba(17,17,19,.09);
      background: transparent;
    }
    .governance-page .proof-metrics div:nth-child(2n) { padding-left: 20px; border-left: 1px solid rgba(17,17,19,.09); }
    .governance-page .proof-metrics strong {
      color: var(--orange);
      font-size: clamp(36px, 3.2vw, 48px);
      line-height: 1;
      font-weight: 950;
    }
    .governance-page .proof-metrics span {
      margin-top: 12px;
      color: #59616b;
      font-size: 13px;
      line-height: 1.55;
    }

    @media (max-width: 1100px) {
      .governance-page .pressure-system,
      .governance-page .insight-layout,
      .governance-page .change-layout {
        grid-template-columns: 1fr;
      }
      .governance-page .pressure-core {
        min-height: 310px;
      }
      .governance-page .pressure-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .governance-page .pressure-group {
        grid-template-columns: 1fr;
        align-content: start;
      }
      .governance-page .insight-statement h2 { max-width: 12em; }
      .governance-page .tech-path {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 52px;
      }
      .governance-page .tech-path article:nth-child(3)::before,
      .governance-page .tech-path article:nth-child(6)::before { right: 50%; }
      .governance-page .tech-path article:nth-child(4)::before { left: 50%; }
      .governance-page .cooperation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .governance-page .cooperation-grid article,
      .governance-page .cooperation-grid article:nth-child(4) {
        min-height: 260px;
      }
      .governance-page .cooperation-grid article:nth-child(2n) { border-right: 0; }
      .governance-page .cooperation-grid article:nth-child(n + 3) { border-top: 1px solid rgba(17,17,19,.10); }
      .governance-page .proof-panel {
        padding: clamp(30px, 5vw, 48px);
      }
    }

    @media (max-width: 900px) {
      .governance-page .pressure-groups,
      .governance-page .solution-system {
        grid-template-columns: 1fr;
      }
      .governance-page .solution-track {
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.10);
      }
      .governance-page .solution-track:last-child { border-bottom: 0; }
    }

    @media (max-width: 760px) {
      .governance-page .pressure-core {
        min-height: 0;
        padding: 28px 24px;
      }
      .governance-page .pressure-core > strong { font-size: 46px; }
      .governance-page .pressure-core-axis { margin-top: 34px; padding-top: 22px; }
      .governance-page .pressure-group {
        gap: 0;
      }
      .governance-page .pressure-group-head {
        grid-template-columns: 88px minmax(0, 1fr);
        align-items: start;
      }
      .governance-page .pressure-group-head > span { padding-top: 5px; }
      .governance-page .pressure-group-list .pressure-card,
      .governance-page .pressure-group-list .pressure-card:nth-child(1),
      .governance-page .pressure-group-list .pressure-card:nth-child(2),
      .governance-page .pressure-group-list .pressure-card:nth-child(3) {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
        padding: 20px 0;
      }
      .governance-page .pressure-group-list .pressure-card p { grid-column: 2; }
      .governance-page .insight-list article,
      .governance-page .insight-list article:nth-child(2n) {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px 18px;
        padding: 23px 0;
      }
      .governance-page .insight-list ul {
        grid-column: 2;
      }
      .governance-page .solution-track-head {
        min-height: 0;
        padding: 26px 24px;
      }
      .governance-page .solution-track .solution-loop article,
      .governance-page .solution-track .solution-loop article:nth-child(1),
      .governance-page .solution-track .solution-loop article:nth-child(2),
      .governance-page .solution-track .solution-loop article:nth-child(3) {
        padding: 22px 24px;
      }
      .governance-page .tech-path {
        grid-template-columns: 1fr;
        row-gap: 0;
      }
      .governance-page .tech-path article,
      .governance-page .tech-path article:nth-child(even) {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 8px 16px;
        padding: 0 0 28px;
      }
      .governance-page .tech-path article::before,
      .governance-page .tech-path article:first-child::before,
      .governance-page .tech-path article:last-child::before,
      .governance-page .tech-path article:nth-child(3)::before,
      .governance-page .tech-path article:nth-child(4)::before,
      .governance-page .tech-path article:nth-child(6)::before {
        top: 0;
        bottom: 0;
        left: 23px;
        right: auto;
        width: 2px;
        height: auto;
      }
      .governance-page .tech-path article:first-child::before { top: 24px; }
      .governance-page .tech-path article:last-child::before { bottom: calc(100% - 24px); }
      .governance-page .tech-path span {
        grid-row: 1 / span 2;
        margin: 0;
      }
      .governance-page .tech-path h3 { margin: 3px 0 4px; }
      .governance-page .tech-path p { grid-column: 2; }
      .governance-page .cooperation-grid {
        grid-template-columns: 1fr;
      }
      .governance-page .cooperation-grid article,
      .governance-page .cooperation-grid article:nth-child(4) {
        min-height: 0;
        padding: 28px 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.10);
      }
      .governance-page .cooperation-grid article:last-child { border-bottom: 0; }
      .governance-page .cooperation-grid article::before { margin-bottom: 28px; }
      .governance-page .change-group {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .governance-page .change-grid .change-group span {
        padding: 10px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(17,17,19,.08);
      }
      .governance-page .proof-metrics {
        grid-template-columns: 1fr;
      }
      .governance-page .proof-metrics div:nth-child(2n) {
        padding-left: 0;
        border-left: 0;
      }
    }

    /* 标题断句与层级纵深 */
    .governance-page {
      --governance-shadow: 0 24px 54px -40px rgba(17,17,19,.38), 0 8px 18px -16px rgba(17,17,19,.22), inset 0 1px 0 rgba(255,255,255,.92);
      --governance-shadow-hover: 0 28px 62px -40px rgba(17,17,19,.44), 0 12px 24px -16px rgba(17,17,19,.26), inset 0 1px 0 rgba(255,255,255,.96);
    }
    .governance-page .section-head h2 {
      max-width: none;
      font-size: 54px;
      line-height: 1.06;
      white-space: nowrap;
    }
    .governance-page .section-head h2 .title-line {
      display: block;
      margin: 0;
      color: #111113;
      white-space: inherit;
    }
    .governance-page .section-head h2 .title-line.is-accent {
      margin-top: 6px;
      color: var(--orange);
    }
    .governance-page .cooperation-title-mobile-break {
      display: none;
    }
    .governance-page .governance-tech-section .section-head h2 .title-line.is-accent {
      font-size: .8em;
    }
    .governance-page .insight-statement h2 {
      max-width: none;
      font-size: 48px;
      line-height: 1.05;
      white-space: normal;
    }
    .governance-page .insight-statement h2 .insight-title-main,
    .governance-page .insight-statement h2 .insight-title-sub {
      display: block;
      white-space: nowrap;
    }
    .governance-page .insight-statement h2 .insight-title-main {
      margin: 0;
      color: #111113;
      font-size: 48px;
      line-height: 1.05;
    }
    .governance-page .insight-statement h2 .insight-title-sub {
      margin: 14px 0 0;
      color: var(--orange);
      font-size: 26px;
      line-height: 1.24;
    }
    .governance-page .cta-panel h2 {
      max-width: 760px;
      font-size: 40px;
      line-height: 1.16;
    }

    .governance-page .pressure-core,
    .governance-page .pressure-group,
    .governance-page .insight-list,
    .governance-page .solution-system,
    .governance-page .cooperation-grid,
    .governance-page .proof-panel,
    .governance-page .cta-panel {
      box-shadow: var(--governance-shadow);
    }
    .governance-page .pressure-core {
      border-top: 1px solid rgba(255,107,22,.13);
      border-right: 1px solid rgba(255,107,22,.13);
      border-bottom: 1px solid rgba(255,107,22,.13);
    }
    .governance-page .pressure-group {
      padding: 18px 24px;
      border: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: #fff;
      transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
    }
    .governance-page .pressure-group:hover {
      transform: translateY(-3px);
      border-color: rgba(255,107,22,.20);
      box-shadow: var(--governance-shadow-hover);
    }
    .governance-page .insight-list {
      padding: 0 28px;
      border-right: 1px solid rgba(17,17,19,.09);
      border-bottom: 1px solid rgba(17,17,19,.09);
      border-left: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: #fff;
    }
    .governance-page .solution-system,
    .governance-page .cooperation-grid,
    .governance-page .proof-panel {
      border-color: rgba(17,17,19,.09);
    }
    .governance-page .solution-track-head {
      box-shadow: inset 0 1px 0 rgba(255,255,255,.88), inset 0 -1px 0 rgba(17,17,19,.04);
    }
    .governance-page .tech-path span {
      box-shadow: 0 13px 26px -15px rgba(255,107,22,.82), 0 0 0 8px #f6f7f8, inset 0 1px 0 rgba(255,255,255,.38);
      transition: transform .28s var(--ease), box-shadow .28s var(--ease);
    }
    .governance-page .tech-path article:hover span {
      transform: translateY(-3px);
      box-shadow: 0 18px 32px -15px rgba(255,107,22,.92), 0 0 0 8px #f6f7f8, inset 0 1px 0 rgba(255,255,255,.46);
    }
    .governance-page .cooperation-grid article {
      box-shadow: inset -1px 0 0 rgba(255,255,255,.72);
    }
    .governance-page .change-grid {
      display: grid;
      gap: 14px;
    }
    .governance-page .change-group,
    .governance-page .change-group:last-child {
      padding: 20px;
      border: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 18px 38px -34px rgba(17,17,19,.38), 0 5px 12px -10px rgba(17,17,19,.22), inset 0 1px 0 rgba(255,255,255,.92);
      transition: border-color .28s var(--ease), box-shadow .28s var(--ease);
    }
    .governance-page .change-group:hover {
      border-color: rgba(255,107,22,.20);
      box-shadow: 0 22px 46px -34px rgba(17,17,19,.44), 0 8px 16px -10px rgba(17,17,19,.24), inset 0 1px 0 rgba(255,255,255,.96);
    }
    .governance-page .cta-panel {
      border-radius: 8px;
      box-shadow: 0 26px 58px -42px rgba(17,17,19,.40), 0 8px 20px -16px rgba(255,107,22,.24), inset 0 1px 0 rgba(255,255,255,.94);
    }

    @media (max-width: 1100px) {
      .governance-page .section-head h2 { font-size: 48px; }
      .governance-page .insight-statement h2,
      .governance-page .insight-statement h2 .insight-title-main { font-size: 48px; }
      .governance-page .insight-statement h2 .insight-title-sub { font-size: 26px; }
      .governance-page .cta-panel h2 { font-size: 36px; }
    }

    @media (max-width: 760px) {
      .governance-page .section-head h2 {
        font-size: 38px;
        line-height: 1.08;
        white-space: normal;
      }
      .governance-page .section-head h2 .title-line { white-space: normal; }
      .governance-page .cooperation-title-mobile-break { display: block; }
      .governance-page .insight-statement h2,
      .governance-page .insight-statement h2 .insight-title-main { font-size: 38px; }
      .governance-page .insight-statement h2 .insight-title-sub {
        font-size: 22px;
        white-space: normal;
      }
      .governance-page .cta-panel h2 { font-size: 30px; }
      .governance-page .pressure-group { padding: 12px 20px; }
      .governance-page .insight-list { padding: 0 20px; }
    }

    @media (max-width: 420px) {
      .governance-page .section-head h2 { font-size: 34px; }
      .governance-page .insight-statement h2,
      .governance-page .insight-statement h2 .insight-title-main { font-size: 34px; }
      .governance-page .insight-statement h2 .insight-title-sub { font-size: 20px; }
    }

    /* 五处结构校正：消除无效留白，强化层级关系 */
    .governance-page .pressure-system {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .governance-page .pressure-core {
      grid-template-areas:
        "label copy axis"
        "title copy axis";
      grid-template-columns: minmax(210px, .52fr) minmax(280px, .88fr) minmax(360px, 1.18fr);
      grid-template-rows: auto auto;
      gap: 8px 38px;
      align-items: center;
      min-height: 0;
      padding: 32px 38px;
    }
    .governance-page .pressure-core-label {
      grid-area: label;
      align-self: end;
    }
    .governance-page .pressure-core > strong {
      grid-area: title;
      align-self: start;
      margin: 8px 0 0;
      font-size: 48px;
    }
    .governance-page .pressure-core > p {
      grid-area: copy;
      max-width: 34em;
      align-self: center;
    }
    .governance-page .pressure-core-axis {
      grid-area: axis;
      align-self: stretch;
      align-items: center;
      margin: 0;
      padding: 0 0 0 32px;
      border-top: 0;
      border-left: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .pressure-groups {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }
    .governance-page .pressure-group {
      grid-template-columns: 1fr;
      gap: 0;
      align-content: start;
    }
    .governance-page .pressure-group-head {
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      padding: 10px 0 22px;
    }
    .governance-page .pressure-group-head > span { padding-top: 5px; }
    .governance-page .pressure-group-list .pressure-card,
    .governance-page .pressure-group-list .pressure-card:nth-child(1),
    .governance-page .pressure-group-list .pressure-card:nth-child(2),
    .governance-page .pressure-group-list .pressure-card:nth-child(3) {
      grid-template-columns: 36px minmax(188px, .56fr) minmax(0, 1fr);
      gap: 14px;
      padding: 20px 0;
    }
    .governance-page .pressure-group-list .pressure-card h3 {
      font-size: 20px;
      white-space: nowrap;
    }

    .governance-page .insight-layout {
      grid-template-columns: 1fr;
      gap: 42px;
    }
    .governance-page .insight-statement h2 { max-width: none; }
    .governance-page .insight-list article,
    .governance-page .insight-list article:nth-child(2n) {
      counter-increment: none;
      grid-template-columns: 130px 285px minmax(0, 1fr);
    }
    .governance-page .insight-list { counter-reset: none; }
    .governance-page .insight-stage {
      font-size: clamp(16px, 1.25vw, 18px);
      line-height: 1.35;
    }
    .governance-page .insight-stage::before {
      content: none;
      display: none;
    }
    .governance-page .insight-list li {
      font-size: clamp(16px, 1.18vw, 18px);
      line-height: 1.5;
    }

    .governance-page .solution-track .solution-loop p {
      grid-column: 1;
      font-size: clamp(17px, 1.25vw, 19px);
      line-height: 1.68;
    }
    .governance-page .solution-track {
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
    }
    .governance-page .solution-track .solution-loop {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, minmax(0, 1fr));
      height: 100%;
    }
    .governance-page .solution-track .solution-loop article,
    .governance-page .solution-track .solution-loop article:nth-child(1),
    .governance-page .solution-track .solution-loop article:nth-child(2),
    .governance-page .solution-track .solution-loop article:nth-child(3) {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      gap: 8px;
      align-content: center;
      min-height: 128px;
      padding: 24px 32px;
    }
    .governance-page .solution-track .solution-loop i { display: none; }
    .governance-page .solution-track .solution-loop h3 {
      margin: 0;
      font-size: clamp(24px, 1.85vw, 29px);
      line-height: 1.28;
    }

    .governance-page .tech-path .tech-icon-wrap {
      border-radius: 14px;
    }
    .governance-page .tech-path .tech-icon-wrap svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .governance-page .ai-productivity-bridge {
      display: grid;
      grid-template-columns: minmax(280px, .78fr) minmax(0, 1.35fr);
      gap: clamp(36px, 5vw, 76px);
      align-items: stretch;
      margin-top: clamp(48px, 6vw, 78px);
      padding: clamp(32px, 4vw, 52px);
      border: 1px solid rgba(17,17,19,.09);
      border-top: 4px solid var(--orange);
      border-radius: 8px;
      background: linear-gradient(145deg, #fff 0%, #fff 68%, #fff7f1 100%);
      box-shadow: var(--governance-shadow);
    }
    .governance-page .ai-productivity-lead {
      display: grid;
      align-content: center;
    }
    .governance-page .ai-productivity-lead > span {
      margin-bottom: 12px;
      color: var(--orange);
      font-size: 15px;
      line-height: 1.4;
      font-weight: 900;
    }
    .governance-page .ai-productivity-lead h3 {
      margin: 0 0 18px;
      color: #111113;
      font-size: clamp(30px, 3vw, 44px);
      line-height: 1.14;
      font-weight: 950;
    }
    .governance-page .ai-productivity-lead p {
      margin: 0;
      color: #5f6670;
      font-size: clamp(16px, 1.2vw, 18px);
      line-height: 1.76;
      font-weight: 630;
    }
    .governance-page .ai-productivity-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
    }
    .governance-page .ai-productivity-points article {
      display: grid;
      align-content: start;
      min-height: 232px;
      padding: 8px 24px;
      border-left: 1px solid rgba(17,17,19,.09);
    }
    .governance-page .ai-productivity-points article:first-child { border-left: 0; }
    .governance-page .ai-productivity-icon {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin-bottom: 24px;
      border: 1px solid rgba(255,107,22,.18);
      border-radius: 8px;
      color: var(--orange);
      background: #fff5ed;
      box-shadow: 0 12px 22px -18px rgba(255,107,22,.9);
    }
    .governance-page .ai-productivity-icon svg {
      width: 23px;
      height: 23px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .governance-page .ai-productivity-points h4 {
      margin: 0 0 12px;
      color: #1b1d21;
      font-size: clamp(20px, 1.6vw, 25px);
      line-height: 1.28;
      font-weight: 930;
    }
    .governance-page .ai-productivity-points p {
      margin: 0;
      color: #666d77;
      font-size: 15px;
      line-height: 1.72;
      font-weight: 620;
    }

    .governance-page .cooperation-grid {
      grid-template-columns: minmax(0, 1.65fr) minmax(320px, .72fr);
      grid-template-rows: repeat(3, minmax(0, 1fr));
      gap: 14px 20px;
      border: 0;
      border-radius: 0;
      overflow: visible;
      background: transparent;
      box-shadow: none;
    }
    .governance-page .cooperation-grid article::before {
      content: none;
      display: none;
    }
    .governance-page .cooperation-grid .cooperation-role,
    .governance-page .cooperation-grid .cooperation-role:nth-child(2n),
    .governance-page .cooperation-grid .cooperation-role:nth-child(n + 3) {
      grid-column: 1;
      display: grid;
      grid-template-columns: 58px minmax(176px, .36fr) minmax(0, 1fr);
      gap: 22px;
      align-items: center;
      min-height: 126px;
      padding: 22px 26px;
      border: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--governance-shadow);
      transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
    }
    .governance-page .cooperation-grid .cooperation-role:hover {
      transform: translateY(-2px);
      border-color: rgba(255,107,22,.20);
      box-shadow: 0 24px 46px -34px rgba(17,17,19,.46), 0 8px 18px -12px rgba(17,17,19,.24);
    }
    .governance-page .cooperation-grid .cooperation-role::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -18px;
      width: 16px;
      height: 12px;
      transform: translateY(-50%);
      clip-path: polygon(0 42%, 68% 42%, 68% 0, 100% 50%, 68% 100%, 68% 58%, 0 58%);
      background: rgba(255,107,22,.48);
    }
    .governance-page .cooperation-icon {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border: 1px solid rgba(255,107,22,.18);
      border-radius: 14px;
      color: var(--orange);
      background: #fff7f1;
      box-shadow: 0 12px 24px -18px rgba(255,107,22,.82), inset 0 1px 0 rgba(255,255,255,.9);
    }
    .governance-page .cooperation-icon svg {
      width: 25px;
      height: 25px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .governance-page .cooperation-grid .cooperation-role h3 {
      margin: 0;
      color: #17191c;
      font-size: clamp(21px, 1.65vw, 27px);
      line-height: 1.25;
    }
    .governance-page .cooperation-grid .cooperation-role:nth-child(3) h3 { color: var(--orange); }
    .governance-page .cooperation-grid .cooperation-role p {
      margin: 0;
      font-size: clamp(16px, 1.18vw, 18px);
      line-height: 1.68;
    }
    .governance-page .cooperation-grid .cooperation-outcome,
    .governance-page .cooperation-grid .cooperation-outcome:last-child,
    .governance-page .cooperation-grid .cooperation-outcome:nth-child(4) {
      grid-column: 2;
      grid-row: 1 / 4;
      display: grid;
      grid-template-columns: 1fr;
      align-content: center;
      gap: 0;
      min-height: 406px;
      padding: 36px 34px;
      border: 1px solid rgba(255,107,22,.18);
      border-radius: 8px;
      background: linear-gradient(145deg, #fff7f1 0%, #fff 78%);
      box-shadow: var(--governance-shadow);
    }
    .governance-page .cooperation-outcome .cooperation-icon {
      width: 62px;
      height: 62px;
      margin-bottom: 32px;
      color: #fff;
      background: var(--orange);
      border-color: var(--orange);
      box-shadow: 0 18px 32px -20px rgba(255,107,22,.9), inset 0 1px 0 rgba(255,255,255,.25);
    }
    .governance-page .cooperation-grid .cooperation-outcome h3,
    .governance-page .cooperation-grid .cooperation-outcome:nth-child(4) h3 {
      margin: 0 0 18px;
      color: #15171a;
      font-size: clamp(26px, 2.2vw, 34px);
      line-height: 1.2;
    }
    .governance-page .cooperation-grid .cooperation-outcome p,
    .governance-page .cooperation-grid .cooperation-outcome:nth-child(4) p {
      margin: 0 0 26px;
      color: #626974;
      font-size: clamp(16px, 1.18vw, 18px);
      line-height: 1.7;
    }
    .governance-page .cooperation-outcome ul {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .governance-page .cooperation-outcome li {
      padding: 7px 10px;
      border: 1px solid rgba(255,107,22,.14);
      border-radius: 4px;
      color: #555c65;
      background: rgba(255,255,255,.82);
      font-size: clamp(14px, 1vw, 16px);
      line-height: 1.4;
      font-weight: 760;
    }

    .governance-page .capital-cycle {
      margin-top: clamp(44px, 5.5vw, 74px);
    }
    .governance-page .capital-cycle-head {
      display: grid;
      grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
      gap: clamp(34px, 5vw, 76px);
      align-items: end;
      margin-bottom: 26px;
    }
    .governance-page .capital-cycle-heading > span {
      display: block;
      margin-bottom: 11px;
      color: var(--orange);
      font-size: 15px;
      line-height: 1.4;
      font-weight: 900;
    }
    .governance-page .capital-cycle-heading h3 {
      margin: 0;
      color: #111113;
      font-size: clamp(30px, 2.65vw, 40px);
      line-height: 1.16;
      font-weight: 950;
    }
    .governance-page .capital-cycle-head > p {
      margin: 0;
      color: #5f6670;
      font-size: clamp(18px, 1.38vw, 21px);
      line-height: 1.72;
      font-weight: 630;
    }
    .governance-page .capital-cycle-steps {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border-top: 1px solid rgba(17,17,19,.11);
      border-bottom: 1px solid rgba(17,17,19,.11);
      background: rgba(255,255,255,.65);
    }
    .governance-page .capital-cycle-steps article {
      position: relative;
      min-height: 218px;
      padding: 26px 24px 24px;
      border-right: 1px solid rgba(17,17,19,.09);
    }
    .governance-page .capital-cycle-steps article:last-child { border-right: 0; }
    .governance-page .capital-cycle-steps article:not(:last-child)::after {
      content: "";
      position: absolute;
      z-index: 2;
      top: 43px;
      right: -7px;
      width: 12px;
      height: 12px;
      border-top: 2px solid var(--orange);
      border-right: 2px solid var(--orange);
      transform: rotate(45deg);
      background: #fff;
    }
    .governance-page .capital-cycle-icon {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 24px;
      border-radius: 8px;
      color: #fff;
      background: var(--orange);
      box-shadow: 0 14px 24px -18px rgba(255,107,22,.9), inset 0 1px 0 rgba(255,255,255,.32);
    }
    .governance-page .capital-cycle-icon svg {
      width: 21px;
      height: 21px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .governance-page .capital-cycle-steps h4 {
      margin: 0 0 11px;
      min-height: 2.56em;
      color: #202328;
      font-size: clamp(18px, 1.45vw, 23px);
      line-height: 1.28;
      font-weight: 930;
    }
    .governance-page .capital-cycle-steps p {
      margin: 0;
      color: #68707a;
      font-size: clamp(14px, 1vw, 16px);
      line-height: 1.68;
      font-weight: 620;
    }
    .governance-page .capital-cycle-summary {
      margin: 20px 0 0;
      padding: 18px 22px;
      border-left: 4px solid var(--orange);
      color: #40464e;
      background: linear-gradient(90deg, #fff3e9 0%, rgba(255,255,255,.74) 100%);
      font-size: clamp(16px, 1.2vw, 18px);
      line-height: 1.72;
      font-weight: 720;
    }

    /* 城市经济增量：解释税源与岗位如何由持续运营形成 */
    .governance-page .economic-impact {
      margin-top: clamp(42px, 5vw, 72px);
      padding-top: clamp(36px, 4.5vw, 58px);
      border-top: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .economic-impact-head {
      display: grid;
      grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
      gap: clamp(34px, 5vw, 76px);
      align-items: end;
      margin-bottom: 28px;
    }
    .governance-page .economic-impact-heading h3 {
      max-width: 590px;
      margin: 0;
      color: #111113;
      font-size: clamp(32px, 3.4vw, 48px);
      line-height: 1.14;
      font-weight: 950;
    }
    .governance-page .economic-impact-head > p {
      max-width: 760px;
      margin: 0;
      color: #5f6670;
      font-size: clamp(17px, 1.28vw, 19px);
      line-height: 1.78;
      font-weight: 640;
    }
    .governance-page .economic-impact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }
    .governance-page .economic-impact-item {
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      gap: 22px;
      align-items: start;
      min-height: 360px;
      padding: clamp(26px, 3vw, 38px);
      border: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: linear-gradient(145deg, #fff 0%, #fff 68%, #fff8f3 100%);
      box-shadow: var(--governance-shadow);
      transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
    }
    .governance-page .economic-impact-item:hover {
      transform: translateY(-3px);
      border-color: rgba(255,107,22,.22);
      box-shadow: var(--governance-shadow-hover);
    }
    .governance-page .economic-impact-icon {
      display: grid;
      place-items: center;
      width: 64px;
      height: 64px;
      border: 1px solid rgba(255,107,22,.18);
      border-radius: 8px;
      color: var(--orange);
      background: #fff5ed;
      box-shadow: 0 14px 26px -20px rgba(255,107,22,.88), inset 0 1px 0 rgba(255,255,255,.94);
    }
    .governance-page .economic-impact-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .governance-page .economic-impact-item h4 {
      margin: 0;
      color: #17191c;
      font-size: clamp(26px, 2.15vw, 34px);
      line-height: 1.2;
      font-weight: 950;
    }
    .governance-page .economic-impact-item h4::after {
      content: "";
      display: block;
      width: 54px;
      height: 3px;
      margin: 13px 0 18px;
      border-radius: 2px;
      background: var(--orange);
    }
    .governance-page .economic-impact-item p {
      margin: 0;
      color: #5f6670;
      font-size: clamp(16px, 1.17vw, 18px);
      line-height: 1.78;
      font-weight: 620;
    }
    .governance-page .economic-impact-item ul {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      margin: 26px 0 0;
      padding: 18px 0 0;
      border-top: 1px solid rgba(17,17,19,.09);
      list-style: none;
    }
    .governance-page .economic-impact-item li {
      position: relative;
      min-height: 48px;
      padding: 0 14px 0 16px;
      border-right: 1px solid rgba(17,17,19,.08);
      color: #454b54;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 800;
    }
    .governance-page .economic-impact-item li:last-child { border-right: 0; }
    .governance-page .economic-impact-item li::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 0;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--orange);
    }
    .governance-page .economic-impact-note {
      margin: 18px 0 0;
      padding-left: 17px;
      border-left: 3px solid rgba(255,107,22,.48);
      color: #777e87;
      font-size: 14px;
      line-height: 1.65;
      font-weight: 650;
    }

    .governance-page .change-layout {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
      gap: 28px;
      align-items: stretch;
    }
    .governance-page .change-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, minmax(0, 1fr));
      height: auto;
      align-content: stretch;
    }
    .governance-page .change-group,
    .governance-page .change-group:last-child {
      min-height: 104px;
      grid-template-columns: minmax(112px, .52fr) repeat(2, minmax(0, 1fr));
      gap: 20px;
      padding: 18px 22px;
    }
    .governance-page .change-group > strong {
      font-size: 18px;
      line-height: 1.3;
    }
    .governance-page .change-grid .change-group > span {
      display: grid;
      align-content: center;
      gap: 5px;
      padding-left: 20px;
    }
    .governance-page .change-group small {
      display: block;
      color: #858b93;
      font-size: 13px;
      line-height: 1.3;
      font-weight: 760;
    }
    .governance-page .change-group b {
      display: block;
      color: #25282d;
      font-size: clamp(18px, 1.45vw, 22px);
      line-height: 1.28;
      font-weight: 900;
    }
    .governance-page .proof-panel {
      height: auto;
      padding: 36px 38px;
    }
    .governance-page .proof-metrics div {
      min-height: 104px;
      padding-top: 18px;
      padding-bottom: 18px;
    }

    @media (max-width: 1100px) {
      .governance-page .pressure-core {
        grid-template-areas:
          "label copy"
          "title copy"
          "axis axis";
        grid-template-columns: minmax(210px, .56fr) minmax(0, 1fr);
        min-height: 0;
      }
      .governance-page .pressure-core-axis {
        margin-top: 24px;
        padding: 22px 0 0;
        border-top: 1px solid rgba(17,17,19,.11);
        border-left: 0;
      }
      .governance-page .insight-list article,
      .governance-page .insight-list article:nth-child(2n) {
        grid-template-columns: 130px 240px minmax(0, 1fr);
      }
      .governance-page .ai-productivity-bridge {
        grid-template-columns: 1fr;
        gap: 34px;
      }
      .governance-page .capital-cycle-head {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
      }
      .governance-page .economic-impact-head {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
      }
      .governance-page .economic-impact-grid { grid-template-columns: 1fr; }
      .governance-page .economic-impact-item { min-height: 0; }
      .governance-page .change-layout { grid-template-columns: 1fr; }
      .governance-page .change-grid { grid-template-rows: repeat(4, auto); }
      .governance-page .proof-panel { padding: 34px; }
    }

    @media (max-width: 900px) {
      .governance-page .pressure-groups { grid-template-columns: 1fr; }
      .governance-page .solution-track { grid-template-rows: auto auto; }
      .governance-page .solution-track .solution-loop {
        grid-template-rows: none;
        height: auto;
      }
      .governance-page .solution-track .solution-loop article,
      .governance-page .solution-track .solution-loop article:nth-child(1),
      .governance-page .solution-track .solution-loop article:nth-child(2),
      .governance-page .solution-track .solution-loop article:nth-child(3) {
        min-height: 0;
      }
      .governance-page .cooperation-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
      }
      .governance-page .cooperation-grid article,
      .governance-page .cooperation-grid article:nth-child(2n),
      .governance-page .cooperation-grid article:nth-child(n + 3) {
        min-height: 0;
      }
      .governance-page .cooperation-grid .cooperation-role,
      .governance-page .cooperation-grid .cooperation-role:nth-child(2n),
      .governance-page .cooperation-grid .cooperation-role:nth-child(n + 3) {
        grid-column: 1;
        grid-template-columns: 58px minmax(170px, .38fr) minmax(0, 1fr);
      }
      .governance-page .cooperation-grid .cooperation-role::after { display: none; }
      .governance-page .cooperation-grid .cooperation-outcome,
      .governance-page .cooperation-grid .cooperation-outcome:last-child,
      .governance-page .cooperation-grid .cooperation-outcome:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
        min-height: 0;
      }
      .governance-page .capital-cycle-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .governance-page .capital-cycle-steps article {
        border-bottom: 1px solid rgba(17,17,19,.09);
      }
      .governance-page .capital-cycle-steps article:nth-child(2n) { border-right: 0; }
      .governance-page .capital-cycle-steps article:not(:last-child)::after { display: none; }
      .governance-page .capital-cycle-steps article:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
      }
    }

    @media (max-width: 760px) {
      .governance-page .pressure-core {
        grid-template-areas:
          "label"
          "title"
          "copy"
          "axis";
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .governance-page .pressure-core > p { margin-top: 10px; }
      .governance-page .pressure-group-list .pressure-card,
      .governance-page .pressure-group-list .pressure-card:nth-child(1),
      .governance-page .pressure-group-list .pressure-card:nth-child(2),
      .governance-page .pressure-group-list .pressure-card:nth-child(3) {
        grid-template-columns: 34px minmax(0, 1fr);
      }
      .governance-page .pressure-group-list .pressure-card h3 { white-space: normal; }
      .governance-page .pressure-group-list .pressure-card p { grid-column: 2; }
      .governance-page .solution-track .solution-loop article,
      .governance-page .solution-track .solution-loop article:nth-child(1),
      .governance-page .solution-track .solution-loop article:nth-child(2),
      .governance-page .solution-track .solution-loop article:nth-child(3) {
        padding: 22px 24px;
      }
      .governance-page .insight-list article,
      .governance-page .insight-list article:nth-child(2n) {
        grid-template-columns: 92px minmax(0, 1fr);
      }
      .governance-page .cooperation-grid article:last-child,
      .governance-page .cooperation-grid article:nth-child(4) {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .governance-page .cooperation-grid .cooperation-role,
      .governance-page .cooperation-grid .cooperation-role:nth-child(2n),
      .governance-page .cooperation-grid .cooperation-role:nth-child(n + 3) {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 16px;
        padding: 22px 20px;
      }
      .governance-page .cooperation-grid .cooperation-role p { grid-column: 2; }
      .governance-page .cooperation-icon {
        width: 48px;
        height: 48px;
      }
      .governance-page .cooperation-grid .cooperation-outcome,
      .governance-page .cooperation-grid .cooperation-outcome:last-child,
      .governance-page .cooperation-grid .cooperation-outcome:nth-child(4) {
        padding: 28px 24px;
      }
      .governance-page .ai-productivity-bridge {
        margin-top: 38px;
        padding: 28px 24px;
      }
      .governance-page .ai-productivity-points {
        grid-template-columns: 1fr;
      }
      .governance-page .ai-productivity-points article {
        grid-template-columns: 48px minmax(0, 1fr);
        min-height: 0;
        gap: 16px;
        padding: 20px 0;
        border-top: 1px solid rgba(17,17,19,.09);
        border-left: 0;
      }
      .governance-page .ai-productivity-points article:first-child { border-top: 0; }
      .governance-page .ai-productivity-icon {
        grid-row: 1 / 3;
        margin: 0;
      }
      .governance-page .ai-productivity-points h4,
      .governance-page .ai-productivity-points p { grid-column: 2; }
      .governance-page .capital-cycle { margin-top: 38px; }
      .governance-page .capital-cycle-steps { grid-template-columns: 1fr; }
      .governance-page .capital-cycle-steps article {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 8px 16px;
        min-height: 0;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.09);
      }
      .governance-page .capital-cycle-steps article:last-child { border-bottom: 0; }
      .governance-page .capital-cycle-steps article::after { display: none; }
      .governance-page .capital-cycle-icon {
        grid-row: 1 / 3;
        margin: 0;
      }
      .governance-page .capital-cycle-steps h4,
      .governance-page .capital-cycle-steps p { grid-column: 2; }
      .governance-page .capital-cycle-steps h4 { min-height: 0; }
      .governance-page .capital-cycle-summary {
        padding: 16px 18px;
        font-size: 17px;
      }
      .governance-page .economic-impact {
        margin-top: 38px;
        padding-top: 32px;
      }
      .governance-page .economic-impact-heading h3 { font-size: 32px; }
      .governance-page .economic-impact-item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
        padding: 24px 20px;
      }
      .governance-page .economic-impact-icon {
        width: 52px;
        height: 52px;
      }
      .governance-page .economic-impact-icon svg {
        width: 24px;
        height: 24px;
      }
      .governance-page .economic-impact-item h4 { font-size: 26px; }
      .governance-page .economic-impact-item ul {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .governance-page .economic-impact-item li {
        min-height: 0;
        padding-bottom: 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.07);
      }
      .governance-page .economic-impact-item li:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }
      .governance-page .economic-impact-note { font-size: 13px; }
      .governance-page .change-group,
      .governance-page .change-group:last-child { min-height: 0; }
      .governance-page .change-grid .change-group > span { padding: 12px 0 0; }
      .governance-page .proof-panel { padding: 28px 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .governance-page .governance-breathe-item,
      .governance-page .governance-section.is-visible .governance-breathe-item {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }
    }
    /* 城市治理能力链：桌面端横向四卡，平板与手机逐级收列 */
    .governance-page .governance-insight-section .insight-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }
    .governance-page .governance-insight-section .insight-list article,
    .governance-page .governance-insight-section .insight-list article:nth-child(2n) {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      min-width: 0;
      min-height: 338px;
      padding: 28px 26px 26px;
      border: 1px solid rgba(17,17,19,.09);
      border-top: 4px solid var(--orange);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 20px 42px -34px rgba(17,17,19,.42), 0 8px 18px -15px rgba(17,17,19,.24), inset 0 1px 0 rgba(255,255,255,.96);
      transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
    }
    .governance-page .governance-insight-section .insight-list article:hover {
      transform: translateY(-4px);
      border-color: rgba(255,107,22,.24);
      background: #fff;
      box-shadow: 0 26px 48px -34px rgba(17,17,19,.46), 0 12px 24px -16px rgba(255,107,22,.22), inset 0 1px 0 rgba(255,255,255,.98);
    }
    .governance-page .governance-insight-section .insight-stage {
      margin-bottom: 17px;
      font-size: 18px;
      line-height: 1.35;
    }
    .governance-page .governance-insight-section .insight-list strong {
      display: block;
      min-height: 1.35em;
      padding-bottom: 17px;
      font-size: clamp(24px, 1.72vw, 28px);
      line-height: 1.35;
      border-bottom: 1px solid rgba(17,17,19,.10);
    }
    .governance-page .governance-insight-section .insight-list ul {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 19px;
    }
    .governance-page .governance-insight-section .insight-list li {
      display: flex;
      align-items: center;
      min-height: 52px;
      padding: 11px 12px;
      border: 1px solid rgba(17,17,19,.075);
      border-radius: 6px;
      color: #4f5660;
      background: linear-gradient(145deg, #f7f8f9 0%, #fff 100%);
      box-shadow: 0 10px 20px -18px rgba(17,17,19,.34), inset 0 1px 0 rgba(255,255,255,.94);
      font-size: clamp(16px, 1.08vw, 18px);
      line-height: 1.4;
      font-weight: 760;
    }
    .governance-page .governance-insight-section .insight-list li::before {
      position: static;
      flex: 0 0 auto;
      width: 6px;
      height: 6px;
      margin-right: 9px;
    }
    @media (max-width: 1100px) {
      .governance-page .governance-insight-section .insight-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .governance-page .governance-insight-section .insight-list article,
      .governance-page .governance-insight-section .insight-list article:nth-child(2n) {
        min-height: 300px;
      }
    }
    @media (max-width: 620px) {
      .governance-page .governance-insight-section .insight-list {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .governance-page .governance-insight-section .insight-list article,
      .governance-page .governance-insight-section .insight-list article:nth-child(2n) {
        min-height: 0;
        padding: 24px 22px;
      }
      .governance-page .governance-insight-section .insight-list strong {
        min-height: 0;
      }
    }
    @media (max-width: 420px) {
      .governance-page .governance-insight-section .insight-list ul {
        grid-template-columns: 1fr;
      }
      .governance-page .governance-insight-section .insight-list li {
        min-height: 48px;
      }
    }
    .governance-page .governance-pressure-section .section-head h2 {
      font-size: 64px;
      line-height: 1.04;
    }
    .governance-page .governance-hero h1 span:first-child {
      font-size: .74em;
      line-height: 1.16;
    }
    @media (max-width: 1100px) {
      .governance-page .governance-pressure-section .section-head h2 {
        font-size: 54px;
      }
    }
    @media (max-width: 760px) {
      .governance-page .governance-pressure-section .section-head h2 {
        font-size: 44px;
      }
    }
    @media (max-width: 420px) {
      .governance-page .governance-pressure-section .section-head h2 {
        font-size: 38px;
      }
    }
    .governance-page .governance-carbon-section {
      background: #f6f7f8;
    }
    .governance-page .governance-stamp-head {
      display: grid;
      grid-template-columns: minmax(0, 900px) minmax(210px, 1fr);
      grid-template-areas:
        "title seal"
        "copy seal";
      column-gap: clamp(38px, 5.5vw, 86px);
      align-items: center;
      max-width: none;
    }
    .governance-page .section-head.is-center.governance-stamp-head {
      max-width: none;
    }
    .governance-page .governance-stamp-head h2 {
      grid-area: title;
    }
    .governance-page .governance-stamp-head > p {
      grid-area: copy;
    }
    .governance-page .governance-section-seal {
      position: relative;
      grid-area: seal;
      justify-self: center;
      align-self: start;
      display: grid;
      place-content: center;
      width: clamp(210px, 20vw, 272px);
      min-height: 128px;
      padding: 20px 24px;
      border: 4px solid rgba(238, 83, 24, .84);
      color: rgba(229, 73, 17, .9);
      background: rgba(255, 107, 22, .025);
      box-shadow:
        inset 0 0 0 4px #f6f7f8,
        inset 0 0 0 6px rgba(238, 83, 24, .62),
        0 10px 22px -18px rgba(185, 54, 10, .72);
      transform: none;
      font-family: "STKaiti", "KaiTi", "FangSong", serif;
      text-align: center;
      text-shadow: 0 1px 0 rgba(255, 255, 255, .45);
    }
    .governance-page .governance-section-seal::before,
    .governance-page .governance-section-seal::after {
      content: "";
      position: absolute;
      pointer-events: none;
    }
    .governance-page .governance-section-seal::before {
      inset: 11px;
      border: 1px solid rgba(238, 83, 24, .38);
    }
    .governance-page .governance-section-seal::after {
      inset: 0;
      opacity: .18;
      background: repeating-linear-gradient(
        178deg,
        transparent 0 11px,
        rgba(246, 247, 248, .9) 12px,
        transparent 14px 22px
      );
      mix-blend-mode: screen;
    }
    .governance-page .governance-section-seal span {
      display: block;
      position: relative;
      z-index: 1;
      font-size: clamp(23px, 2vw, 29px);
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: 0;
      white-space: nowrap;
    }
    @media (max-width: 1080px) {
      .governance-page .governance-stamp-head {
        grid-template-columns: minmax(0, 1fr) 210px;
        column-gap: 30px;
      }
      .governance-page .governance-section-seal {
        width: 200px;
        min-height: 118px;
      }
    }
    @media (max-width: 760px) {
      .governance-page .governance-stamp-head {
        grid-template-columns: 1fr;
        grid-template-areas:
          "title"
          "copy"
          "seal";
        row-gap: 0;
      }
      .governance-page .governance-section-seal {
        justify-self: start;
        width: 190px;
        min-height: 108px;
        margin-top: 26px;
        padding: 17px 20px;
      }
      .governance-page .governance-section-seal span {
        font-size: 22px;
      }
    }
    .governance-page .carbon-accountability-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 38px;
    }
    .governance-page .carbon-policy-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
    }
    .governance-page .carbon-policy-link {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      min-height: 112px;
      padding: 20px 22px;
      border: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: rgba(255,255,255,.88);
      box-shadow: 0 16px 34px -30px rgba(17,17,19,.42), 0 6px 14px -12px rgba(17,17,19,.18), inset 0 1px 0 rgba(255,255,255,.96);
      transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
    }
    .governance-page .carbon-policy-link:hover {
      transform: translateY(-3px);
      border-color: rgba(255,107,22,.22);
      box-shadow: 0 22px 42px -30px rgba(17,17,19,.46), 0 9px 18px -13px rgba(255,107,22,.18), inset 0 1px 0 rgba(255,255,255,.98);
    }
    .governance-page .carbon-policy-link strong {
      color: #282c31;
      font-size: clamp(16px, 1.12vw, 18px);
      line-height: 1.55;
      font-weight: 850;
    }
    .governance-page .carbon-policy-link a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 17px;
      border: 1px solid rgba(255,107,22,.28);
      border-radius: 999px;
      color: var(--orange);
      background: #fff8f2;
      font-size: 14px;
      line-height: 1;
      font-weight: 850;
      white-space: nowrap;
      transition: color .24s var(--ease), background-color .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
    }
    .governance-page .carbon-policy-link a:hover {
      color: #fff;
      background: var(--orange);
      border-color: var(--orange);
      box-shadow: 0 12px 24px -16px rgba(255,107,22,.82);
    }
    .governance-page .carbon-accountability-grid article {
      min-height: 250px;
      padding: 28px 26px;
      border: 1px solid rgba(17,17,19,.09);
      border-top: 4px solid var(--orange);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 22px 46px -36px rgba(17,17,19,.42), 0 9px 20px -16px rgba(17,17,19,.22), inset 0 1px 0 rgba(255,255,255,.96);
      transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
    }
    .governance-page .carbon-accountability-grid article:hover {
      transform: translateY(-4px);
      border-color: rgba(255,107,22,.24);
      box-shadow: 0 28px 54px -36px rgba(17,17,19,.46), 0 12px 25px -17px rgba(255,107,22,.24), inset 0 1px 0 rgba(255,255,255,.98);
    }
    .governance-page .carbon-accountability-icon {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin-bottom: 25px;
      border-radius: 8px;
      color: var(--orange);
      background: #fff5ed;
      border: 1px solid rgba(255,107,22,.18);
      box-shadow: 0 13px 26px -19px rgba(255,107,22,.72), inset 0 1px 0 rgba(255,255,255,.96);
    }
    .governance-page .carbon-accountability-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .governance-page .carbon-accountability-grid h3 {
      margin: 0 0 13px;
      color: #16181b;
      font-size: clamp(23px, 1.7vw, 28px);
      line-height: 1.28;
      font-weight: 930;
    }
    .governance-page .carbon-accountability-grid p {
      margin: 0;
      color: #626a74;
      font-size: clamp(16px, 1.15vw, 18px);
      line-height: 1.72;
      font-weight: 630;
    }
    .governance-page .carbon-accountability-note {
      display: grid;
      grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
      gap: clamp(28px, 4vw, 64px);
      align-items: center;
      margin-top: 20px;
      padding: 24px 28px;
      border-left: 4px solid var(--orange);
      background: linear-gradient(90deg, #fff1e6 0%, rgba(255,255,255,.86) 100%);
      box-shadow: 0 18px 38px -34px rgba(17,17,19,.38), inset 0 1px 0 rgba(255,255,255,.9);
    }
    .governance-page .carbon-accountability-note strong {
      color: #202328;
      font-size: clamp(22px, 1.7vw, 27px);
      line-height: 1.35;
      font-weight: 930;
    }
    .governance-page .carbon-accountability-note p {
      margin: 0;
      color: #555d67;
      font-size: clamp(16px, 1.15vw, 18px);
      line-height: 1.72;
      font-weight: 650;
    }
    @media (max-width: 900px) {
      .governance-page .carbon-policy-links {
        grid-template-columns: 1fr;
      }
      .governance-page .carbon-accountability-grid {
        grid-template-columns: 1fr;
      }
      .governance-page .carbon-accountability-grid article {
        min-height: 0;
      }
      .governance-page .carbon-accountability-note {
        grid-template-columns: 1fr;
        gap: 12px;
      }
    }
    @media (max-width: 620px) {
      .governance-page .carbon-policy-links {
        margin-top: 26px;
      }
      .governance-page .carbon-policy-link {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 19px 20px;
      }
      .governance-page .carbon-policy-link a {
        justify-self: start;
      }
      .governance-page .carbon-accountability-grid {
        margin-top: 28px;
        gap: 14px;
      }
      .governance-page .carbon-accountability-grid article {
        padding: 24px 22px;
      }
      .governance-page .carbon-accountability-note {
        padding: 20px 20px;
      }
    }
    .governance-page .carbon-duty-panel,
    .governance-page .carbon-evidence-panel {
      margin-top: 20px;
      border: 1px solid rgba(17,17,19,.09);
      border-top: 4px solid var(--orange);
      border-radius: 8px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 24px 50px -38px rgba(17,17,19,.44), 0 9px 20px -16px rgba(17,17,19,.22), inset 0 1px 0 rgba(255,255,255,.96);
    }
    .governance-page .carbon-duty-panel {
      display: grid;
      grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    }
    .governance-page .carbon-duty-lead {
      padding: 34px 32px;
      background: linear-gradient(145deg, #fff6ef 0%, #fff 88%);
    }
    .governance-page .carbon-duty-lead h3,
    .governance-page .carbon-evidence-head h3 {
      margin: 0;
      color: #15171a;
      font-size: clamp(30px, 2.65vw, 40px);
      line-height: 1.16;
      font-weight: 950;
    }
    .governance-page .carbon-duty-lead p,
    .governance-page .carbon-evidence-head p {
      margin: 20px 0 0;
      color: #5c646e;
      font-size: clamp(16px, 1.18vw, 18px);
      line-height: 1.76;
      font-weight: 640;
    }
    .governance-page .carbon-duty-source {
      display: grid;
      container-type: inline-size;
      gap: 7px;
      margin-top: 22px;
      padding: 14px 16px;
      border: 1px solid rgba(255,107,22,.24);
      border-radius: 7px;
      color: #24282d;
      background: rgba(255,255,255,.84);
      text-decoration: none;
      box-shadow: 0 15px 28px -24px rgba(17,17,19,.38), inset 0 1px 0 rgba(255,255,255,.96);
      transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease), background-color .24s var(--ease);
    }
    .governance-page .carbon-duty-source:hover {
      transform: translateY(-2px);
      border-color: rgba(255,107,22,.46);
      background: #fff;
      box-shadow: 0 19px 34px -24px rgba(17,17,19,.44), 0 9px 20px -16px rgba(255,107,22,.28);
    }
    .governance-page .carbon-duty-source:focus-visible {
      outline: 3px solid rgba(255,107,22,.2);
      outline-offset: 3px;
    }
    .governance-page .carbon-duty-source-title {
      font-size: min(16px, 3.9cqi);
      line-height: 1.48;
      font-weight: 850;
      white-space: nowrap;
    }
    .governance-page .carbon-duty-source-action {
      color: var(--orange);
      font-size: 13px;
      line-height: 1.2;
      font-weight: 850;
    }
    .governance-page .carbon-duty-impact {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .governance-page .carbon-duty-impact article {
      min-height: 190px;
      padding: 28px 26px;
      border-left: 1px solid rgba(17,17,19,.09);
      border-bottom: 1px solid rgba(17,17,19,.09);
      background: #fff;
    }
    .governance-page .carbon-duty-impact article:nth-child(n + 3) {
      border-bottom: 0;
    }
    .governance-page .carbon-duty-impact strong {
      display: block;
      margin-bottom: 12px;
      color: #202328;
      font-size: clamp(21px, 1.55vw, 25px);
      line-height: 1.3;
      font-weight: 930;
    }
    .governance-page .carbon-duty-impact p {
      margin: 0;
      color: #626a74;
      font-size: clamp(15px, 1.08vw, 17px);
      line-height: 1.7;
      font-weight: 630;
    }
    .governance-page .carbon-evidence-panel {
      padding: 32px;
    }
    .governance-page .carbon-evidence-head {
      display: grid;
      grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr);
      gap: clamp(30px, 4.5vw, 70px);
      align-items: end;
    }
    .governance-page .carbon-evidence-head p {
      margin: 0;
    }
    .governance-page .carbon-evidence-flow {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      margin-top: 30px;
      border-top: 1px solid rgba(17,17,19,.11);
      border-bottom: 1px solid rgba(17,17,19,.11);
    }
    .governance-page .carbon-evidence-flow article {
      position: relative;
      min-height: 174px;
      padding: 24px 20px;
      border-right: 1px solid rgba(17,17,19,.09);
    }
    .governance-page .carbon-evidence-flow article:last-child {
      border-right: 0;
    }
    .governance-page .carbon-evidence-flow article:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 31px;
      right: -6px;
      z-index: 2;
      width: 10px;
      height: 10px;
      border-top: 2px solid var(--orange);
      border-right: 2px solid var(--orange);
      background: #fff;
      transform: rotate(45deg);
    }
    .governance-page .carbon-evidence-flow span {
      display: block;
      margin-bottom: 13px;
      color: var(--orange);
      font-size: 14px;
      line-height: 1.4;
      font-weight: 900;
    }
    .governance-page .carbon-evidence-flow strong {
      display: block;
      margin-bottom: 10px;
      color: #212429;
      font-size: clamp(19px, 1.4vw, 23px);
      line-height: 1.3;
      font-weight: 930;
    }
    .governance-page .carbon-evidence-flow p {
      margin: 0;
      color: #676f79;
      font-size: 15px;
      line-height: 1.65;
      font-weight: 620;
    }
    .governance-page .carbon-evidence-result {
      display: grid;
      grid-template-columns: minmax(250px, .56fr) minmax(0, 1.44fr);
      gap: 28px;
      align-items: center;
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 4px solid var(--orange);
      background: linear-gradient(90deg, #fff0e4 0%, rgba(255,255,255,.78) 100%);
    }
    .governance-page .carbon-evidence-result strong {
      color: #202328;
      font-size: clamp(20px, 1.5vw, 24px);
      line-height: 1.35;
      font-weight: 930;
    }
    .governance-page .carbon-evidence-result p {
      margin: 0;
      color: #555d67;
      font-size: clamp(16px, 1.1vw, 18px);
      line-height: 1.7;
      font-weight: 650;
    }
    @media (max-width: 1000px) {
      .governance-page .carbon-duty-panel,
      .governance-page .carbon-evidence-head,
      .governance-page .carbon-evidence-result {
        grid-template-columns: 1fr;
      }
      .governance-page .carbon-evidence-head {
        gap: 16px;
        align-items: start;
      }
      .governance-page .carbon-evidence-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .governance-page .carbon-evidence-flow article {
        border-bottom: 1px solid rgba(17,17,19,.09);
      }
      .governance-page .carbon-evidence-flow article:nth-child(2n) {
        border-right: 0;
      }
      .governance-page .carbon-evidence-flow article:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
      }
      .governance-page .carbon-evidence-flow article::after {
        display: none;
      }
    }
    @media (max-width: 620px) {
      .governance-page .carbon-duty-lead,
      .governance-page .carbon-evidence-panel {
        padding: 26px 22px;
      }
      .governance-page .carbon-duty-impact {
        grid-template-columns: 1fr;
      }
      .governance-page .carbon-duty-impact article,
      .governance-page .carbon-duty-impact article:nth-child(n + 3) {
        min-height: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(17,17,19,.09);
      }
      .governance-page .carbon-duty-impact article:last-child {
        border-bottom: 0;
      }
      .governance-page .carbon-evidence-flow {
        grid-template-columns: 1fr;
      }
      .governance-page .carbon-evidence-flow article,
      .governance-page .carbon-evidence-flow article:last-child {
        grid-column: auto;
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.09);
      }
      .governance-page .carbon-evidence-flow article:last-child {
        border-bottom: 0;
      }
      .governance-page .carbon-evidence-result {
        gap: 10px;
      }
    }

    /* 双碳板块：政策入口与履职内容分层呈现，避免连续卡片堆叠 */
    .governance-page .carbon-policy-band {
      display: grid;
      grid-template-columns: minmax(210px, .34fr) minmax(0, 1.66fr);
      margin-top: 36px;
      border: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: rgba(255,255,255,.9);
      overflow: hidden;
      box-shadow: 0 20px 44px -34px rgba(17,17,19,.42), 0 7px 18px -15px rgba(17,17,19,.2), inset 0 1px 0 rgba(255,255,255,.96);
    }
    .governance-page .carbon-policy-band-title {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 28px 30px;
      border-right: 1px solid rgba(255,107,22,.13);
      background: linear-gradient(145deg, #fff2e7 0%, #fffaf6 100%);
    }
    .governance-page .carbon-policy-band-title strong {
      color: #1b1e22;
      font-size: clamp(24px, 2vw, 30px);
      line-height: 1.35;
      font-weight: 930;
    }
    .governance-page .carbon-policy-band .carbon-policy-links {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      margin-top: 0;
    }
    .governance-page .carbon-policy-band .carbon-policy-link {
      min-height: 92px;
      padding: 18px 20px;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.08);
      border-bottom: 1px solid rgba(17,17,19,.08);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .governance-page .carbon-policy-band .carbon-policy-link:nth-child(2n) { border-right: 0; }
    .governance-page .carbon-policy-band .carbon-policy-link:nth-child(n + 3) { border-bottom: 0; }
    .governance-page .carbon-policy-band .carbon-policy-link:hover {
      transform: none;
      border-color: rgba(17,17,19,.08);
      background: rgba(255,107,22,.035);
      box-shadow: none;
    }
    .governance-page .carbon-policy-band .carbon-policy-link strong {
      font-size: clamp(15px, 1.02vw, 17px);
      line-height: 1.5;
    }
    .governance-page .carbon-policy-band .carbon-policy-link a {
      min-height: 36px;
      padding: 0 14px;
      font-size: 13px;
    }

    .governance-page .carbon-accountability-console {
      margin-top: 48px;
      border: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 28px 58px -42px rgba(17,17,19,.48), 0 12px 26px -20px rgba(17,17,19,.24), inset 0 1px 0 rgba(255,255,255,.98);
    }
    .governance-page .carbon-console-tabs {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      padding: 0;
      border-bottom: 1px solid rgba(17,17,19,.09);
      background: #f0f2f4;
    }
    .governance-page .carbon-console-tabs button {
      position: relative;
      width: 100%;
      min-width: 0;
      min-height: 64px;
      padding: 0 22px;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.08);
      border-radius: 0;
      color: #59616b;
      background: transparent;
      font-family: inherit;
      font-size: clamp(18px, 1.35vw, 21px);
      line-height: 1;
      font-weight: 850;
      cursor: pointer;
      transition: color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
    }
    .governance-page .carbon-console-tabs button:last-child { border-right: 0; }
    .governance-page .carbon-console-tabs button:hover { color: var(--orange); }
    .governance-page .carbon-console-tabs button.is-active {
      color: #1a1d21;
      background: #fff;
      box-shadow: 0 8px 20px -16px rgba(17,17,19,.45), inset 0 1px 0 rgba(255,255,255,.98);
    }
    .governance-page .carbon-console-tabs button.is-active::after {
      content: "";
      position: absolute;
      right: 28px;
      bottom: 0;
      left: 28px;
      height: 2px;
      background: var(--orange);
    }
    .governance-page .carbon-console-view[hidden] { display: none !important; }
    .governance-page .carbon-console-view.is-active { animation: carbonViewIn .42s var(--ease) both; }
    @keyframes carbonViewIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .governance-page .carbon-console-view.is-active { animation: none; }
    }
    .governance-page .carbon-accountability-console .carbon-duty-panel,
    .governance-page .carbon-accountability-console .carbon-evidence-panel {
      margin-top: 0;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }
    .governance-page .carbon-accountability-console .carbon-duty-impact article {
      min-height: 168px;
      padding-top: 25px;
      padding-bottom: 25px;
    }
    .governance-page .carbon-accountability-console .carbon-evidence-panel { padding: 30px 32px 32px; }
    .governance-page .carbon-accountability-console .carbon-evidence-flow { margin-top: 24px; }
    .governance-page .carbon-accountability-console .carbon-evidence-flow article {
      min-height: 154px;
      padding-top: 21px;
      padding-bottom: 21px;
    }
    .governance-page .carbon-accountability-console .carbon-evidence-result { margin-top: 18px; }
    @media (max-width: 900px) {
      .governance-page .carbon-policy-band { grid-template-columns: 1fr; }
      .governance-page .carbon-policy-band-title {
        flex-direction: row;
        justify-content: flex-start;
        align-items: baseline;
        gap: 14px;
        padding: 20px 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,107,22,.13);
      }
    }
    @media (max-width: 620px) {
      .governance-page .carbon-policy-band .carbon-policy-links { grid-template-columns: 1fr; }
      .governance-page .carbon-policy-band .carbon-policy-link,
      .governance-page .carbon-policy-band .carbon-policy-link:nth-child(2n),
      .governance-page .carbon-policy-band .carbon-policy-link:nth-child(n + 3) {
        grid-template-columns: 1fr auto;
        min-height: 0;
        padding: 16px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.08);
      }
      .governance-page .carbon-policy-band .carbon-policy-link:last-child { border-bottom: 0; }
      .governance-page .carbon-accountability-console { margin-top: 34px; }
      .governance-page .carbon-console-tabs { overflow: hidden; }
      .governance-page .carbon-console-tabs button {
        min-width: 0;
        min-height: 52px;
        padding: 0 12px;
        font-size: 17px;
      }
      .governance-page .carbon-accountability-console .carbon-duty-lead,
      .governance-page .carbon-accountability-console .carbon-evidence-panel { padding: 24px 20px; }
    }

      /* 政策导航中心：分类浏览，单条解读，避免政策卡片一次性铺满页面。 */
    .governance-page .policy-center {
      display: grid;
      grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr);
      align-items: stretch;
      gap: 24px;
      margin-top: 42px;
    }
    .governance-page .policy-browser {
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 0;
      border: 1px solid rgba(17,17,19,.09);
      border-radius: 8px;
      background: rgba(255,255,255,.94);
      box-shadow: 0 30px 64px -44px rgba(17,17,19,.5), 0 12px 28px -22px rgba(17,17,19,.26), inset 0 1px 0 rgba(255,255,255,.98);
    }
    .governance-page .policy-category-tabs {
      display: grid;
      flex: 0 0 auto;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border-bottom: 1px solid rgba(17,17,19,.09);
      background: #f0f2f4;
    }
    .governance-page .policy-category-tab {
      position: relative;
      min-height: 68px;
      padding: 0 14px;
      border: 0;
      border-right: 1px solid rgba(17,17,19,.08);
      color: #626a74;
      background: transparent;
      font-family: inherit;
      font-size: clamp(15px, 1.12vw, 18px);
      line-height: 1.25;
      font-weight: 850;
      cursor: pointer;
      transition: color .24s var(--ease), background-color .24s var(--ease), box-shadow .24s var(--ease);
    }
    .governance-page .policy-category-tab:last-child { border-right: 0; }
    .governance-page .policy-category-tab:hover { color: var(--orange); }
    .governance-page .policy-category-tab.is-active {
      color: #17191c;
      background: #fff;
      box-shadow: 0 10px 22px -20px rgba(17,17,19,.52);
    }
    .governance-page .policy-category-tab.is-active::after {
      content: "";
      position: absolute;
      right: 18px;
      bottom: 0;
      left: 18px;
      height: 3px;
      background: var(--orange);
    }
    .governance-page .policy-center-body {
      display: grid;
      flex: 1 1 auto;
      grid-template-columns: minmax(280px, .74fr) minmax(0, 1.26fr);
      min-height: 0;
    }
    .governance-page .policy-video-slot {
      display: flex;
      align-items: flex-start;
      padding: 0;
    }
    .governance-page .policy-video-placeholder {
      position: relative;
      display: block;
      min-width: 0;
      width: 100%;
      min-height: 0;
      aspect-ratio: 9 / 16;
      padding: 0;
      border: 1px solid rgba(255,107,22,.25);
      border-radius: 6px;
      background:
        linear-gradient(rgba(255,107,22,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,22,.055) 1px, transparent 1px),
        linear-gradient(155deg, #fffdfb 0%, #fff7f0 58%, #fff 100%);
      background-size: 28px 28px, 28px 28px, auto;
      overflow: hidden;
      box-shadow: 0 24px 44px -32px rgba(17,17,19,.48), inset 0 1px 0 rgba(255,255,255,.98);
    }
    .governance-page .policy-video-media {
      display: block;
      width: 100%;
      aspect-ratio: 9 / 16;
      border: 1px solid rgba(255,107,22,.25);
      border-radius: 6px;
      background: #111;
      object-fit: cover;
      box-shadow: 0 24px 44px -32px rgba(17,17,19,.48);
    }
    /* .governance-page .policy-video-placeholder::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 66px;
      height: 66px;
      border: 1px solid rgba(255,107,22,.42);
      border-radius: 50%;
      background: rgba(255,255,255,.9);
      box-shadow: 0 16px 34px -20px rgba(255,107,22,.55);
      transform: translate(-50%, -62%);
    } */
    /* .governance-page .policy-video-placeholder::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 13px solid var(--orange);
      transform: translate(-36%, -83%);
    } */
    .governance-page .policy-directory {
      position: relative;
      z-index: 1;
      padding: 28px 18px 28px 28px;
      border-right: 1px solid rgba(17,17,19,.08);
      background: linear-gradient(145deg, rgba(248,249,250,.96), rgba(255,255,255,.96));
      box-shadow: 12px 16px 30px -28px rgba(17,17,19,.52);
    }
    .governance-page .policy-directory-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
      padding: 0 10px 18px;
    }
    .governance-page .policy-directory-head strong {
      color: #1b1e22;
      font-size: 21px;
      line-height: 1.25;
      font-weight: 920;
    }
    .governance-page .policy-directory-head span {
      color: #8a919b;
      font-size: 13px;
      line-height: 1.4;
      font-weight: 720;
    }
    .governance-page .policy-directory-list {
      display: grid;
      gap: 10px;
      max-height: none;
      padding-right: 0;
      overflow: visible;
      overscroll-behavior: contain;
      scrollbar-color: rgba(255,107,22,.32) transparent;
      scrollbar-width: thin;
    }
    .governance-page .policy-directory-list.is-scrollable {
      max-height: 436px;
      padding-right: 6px;
      overflow-y: auto;
    }
    .governance-page .policy-directory-item {
      width: 100%;
      padding: 17px 18px;
      border: 1px solid rgba(17,17,19,.08);
      border-radius: 6px;
      color: #25292f;
      background: rgba(255,255,255,.88);
      text-align: left;
      font-family: inherit;
      cursor: pointer;
      box-shadow: 0 14px 26px -19px rgba(17,17,19,.34), 0 2px 8px -6px rgba(17,17,19,.22);
      transition: transform .22s var(--ease), border-color .22s var(--ease), background-color .22s var(--ease), box-shadow .22s var(--ease);
    }
    .governance-page .policy-directory-item:hover {
      transform: translateY(-2px);
      border-color: rgba(255,107,22,.28);
      box-shadow: 0 18px 30px -24px rgba(17,17,19,.45);
    }
    .governance-page .policy-directory-item.is-active {
      border-color: rgba(255,107,22,.46);
      background: linear-gradient(135deg, #fff5ec 0%, #fff 74%);
      box-shadow: 0 18px 34px -21px rgba(255,107,22,.46), 0 5px 14px -11px rgba(17,17,19,.3), inset 3px 0 0 var(--orange);
    }
    .governance-page .policy-directory-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 7px;
      color: #8a919b;
      font-size: 12px;
      line-height: 1.3;
      font-weight: 760;
    }
    .governance-page .policy-directory-item strong {
      display: block;
      color: inherit;
      font-size: 16px;
      line-height: 1.52;
      font-weight: 880;
    }
    .governance-page .policy-detail {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(32px, 4.2vw, 58px);
      background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,250,246,.92)),
        radial-gradient(circle at 86% 12%, rgba(255,107,22,.11), transparent 38%);
    }
    .governance-page .policy-detail-kicker {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--orange);
      font-size: 14px;
      line-height: 1.4;
      font-weight: 880;
    }
    .governance-page .policy-detail-kicker::before {
      content: "";
      width: 34px;
      height: 3px;
      border-radius: 999px;
      background: var(--orange);
    }
    .governance-page .policy-detail h3 {
      max-width: 820px;
      margin: 18px 0 14px;
      color: #141619;
      font-size: clamp(25px, 2.35vw, 36px);
      line-height: 1.2;
      font-weight: 940;
      text-wrap: balance;
    }
    .governance-page .policy-detail h3.is-long-title {
      margin-top: 15px;
      font-size: clamp(22px, 2vw, 31px);
      line-height: 1.22;
    }
    .governance-page .policy-detail h3.is-extra-long-title {
      font-size: clamp(20px, 1.8vw, 28px);
      line-height: 1.24;
    }
    .governance-page .policy-detail-source {
      margin: 0 0 28px;
      color: #7b838d;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 720;
    }
    .governance-page .policy-detail-copy {
      display: grid;
      gap: 20px;
    }
    .governance-page .policy-detail-block {
      padding-top: 18px;
      border-top: 1px solid rgba(17,17,19,.09);
    }
    .governance-page .policy-detail-block strong {
      display: block;
      margin-bottom: 8px;
      color: #1b1e22;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 900;
    }
    .governance-page .policy-detail-block p {
      margin: 0;
      color: #5e6670;
      font-size: clamp(15px, 1.08vw, 17px);
      line-height: 1.85;
      font-weight: 650;
    }
    .governance-page .policy-source-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
      min-height: 46px;
      margin-top: 28px;
      padding: 0 20px;
      border: 1px solid rgba(255,107,22,.42);
      border-radius: 999px;
      color: #d8540f;
      background: #fff;
      font-size: 14px;
      line-height: 1;
      font-weight: 860;
      text-decoration: none;
      box-shadow: 0 14px 26px -22px rgba(255,107,22,.56);
      transition: color .22s var(--ease), background-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
    }
    .governance-page .policy-source-button:hover {
      color: #fff;
      background: var(--orange);
      transform: translateY(-2px);
      box-shadow: 0 18px 30px -22px rgba(255,107,22,.7);
    }
    .governance-page .policy-source-button:focus-visible,
    .governance-page .policy-category-tab:focus-visible,
    .governance-page .policy-directory-item:focus-visible {
      outline: 3px solid rgba(255,107,22,.25);
      outline-offset: 3px;
    }

      @media (min-width: 1121px) {
      .governance-page .policy-browser { overflow: hidden; }
      .governance-page .policy-center-body {
        height: auto;
        min-height: 0;
        grid-template-rows: minmax(0, 1fr);
        overflow: hidden;
      }
      .governance-page .policy-directory {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding: 24px 0 0;
        overflow: hidden;
      }
      .governance-page .policy-directory-head {
        padding: 0 24px 18px;
      }
      .governance-page .policy-directory-list {
        flex: 1;
        gap: 0;
        border-top: 1px solid rgba(17,17,19,.08);
        grid-auto-rows: minmax(0, 1fr);
      }
      .governance-page .policy-directory-list.is-scrollable {
        max-height: none;
        min-height: 0;
        padding-right: 0;
        grid-auto-rows: minmax(92px, auto);
        overflow-y: auto;
        contain: size;
      }
      .governance-page .policy-directory-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 14px 24px;
        border: 0;
        border-bottom: 1px solid rgba(17,17,19,.08);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
      }
      .governance-page .policy-directory-item:hover {
        transform: none;
        background: rgba(255,255,255,.82);
        box-shadow: none;
      }
      .governance-page .policy-directory-item.is-active {
        border-color: rgba(17,17,19,.08);
        background: linear-gradient(90deg, rgba(255,245,236,.96), rgba(255,255,255,.9));
        box-shadow: inset 3px 0 0 var(--orange);
      }
      .governance-page .policy-directory-meta { margin-bottom: 5px; }
      .governance-page .policy-directory-item strong {
        font-size: 15px;
        line-height: 1.42;
      }
      .governance-page .policy-detail {
        min-height: 0;
        padding: 32px 40px;
        overflow: hidden;
      }
      .governance-page .policy-detail h3 { margin: 14px 0 10px; }
      .governance-page .policy-detail h3.is-long-title { margin-top: 12px; }
      .governance-page .policy-detail-source { margin-bottom: 18px; }
      .governance-page .policy-detail-copy { gap: 14px; }
      .governance-page .policy-detail-block { padding-top: 14px; }
      .governance-page .policy-detail-block strong { margin-bottom: 6px; }
      .governance-page .policy-detail-block p {
        font-size: clamp(14px, .98vw, 16px);
        line-height: 1.68;
      }
      .governance-page .policy-source-button {
        min-height: 44px;
        margin-top: 20px;
      }
    }
  @media (max-width: 900px) {
      .governance-page .policy-category-tabs {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
      }
      .governance-page .policy-category-tabs::-webkit-scrollbar { display: none; }
      .governance-page .policy-category-tab {
        flex: 0 0 auto;
        min-width: 132px;
        min-height: 58px;
      }
      .governance-page .policy-center {grid-template-columns: 1fr;}
      .governance-page .policy-center-body { grid-template-columns: 1fr; }
      .governance-page .policy-video-slot {
        padding: 0;
        border: 0;
      }
      .governance-page .policy-video-placeholder {
        width: min(100%, 300px);
        margin: 0 auto;
      }
      .governance-page .policy-video-media {
        width: min(100%, 300px);
        margin: 0 auto;
      }
      .governance-page .policy-directory {
        padding: 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,19,.08);
      }
      .governance-page .policy-directory-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: none;
        padding-right: 0;
        overflow: visible;
      }
      .governance-page .policy-detail { padding: 34px 28px 40px; }
    }
       @media (max-width: 620px) {
      .governance-page .policy-center { margin-top: 30px; }
      .governance-page .policy-category-tab { min-width: 118px; font-size: 15px; }
      .governance-page .policy-video-slot { padding: 0; }
      .governance-page .policy-video-placeholder { width: min(100%, 260px); }
      .governance-page .policy-video-media { width: min(100%, 260px); }
      .governance-page .policy-directory { padding: 20px 14px; }
      .governance-page .policy-directory-head { padding-inline: 6px; }
      .governance-page .policy-directory-list { grid-template-columns: 1fr; }
      .governance-page .policy-directory-item { padding: 15px 16px; }
      .governance-page .policy-detail { padding: 30px 20px 34px; }
      .governance-page .policy-detail h3 { font-size: 29px; }
      .governance-page .policy-detail h3.is-long-title { font-size: 25px; }
      .governance-page .policy-detail h3.is-extra-long-title { font-size: 23px; }
      .governance-page .policy-source-button { width: 100%; }
      .governance-page .carbon-accountability-console { margin-top: 34px; }
      .governance-page .carbon-console-tabs { overflow: hidden; }
      .governance-page .carbon-console-tabs button {
        min-width: 0;
        min-height: 52px;
        padding: 0 12px;
        font-size: 17px;
      }
      .governance-page .carbon-accountability-console .carbon-duty-lead,
      .governance-page .carbon-accountability-console .carbon-evidence-panel { padding: 24px 20px; }
    }