:root {
  --forest-950: #0b261b;
  --forest-900: #123525;
  --forest-800: #173f2b;
  --forest-700: #20563a;
  --forest-600: #33724f;
  --leaf: #6f8f52;
  --sage: #a9b893;
  --moss-pale: #dce4d2;
  --paper: #f4f0e4;
  --paper-light: #fbf9f2;
  --paper-deep: #e7dfcd;
  --ink: #22251f;
  --ink-soft: #5d6055;
  --gold: #c69736;
  --gold-light: #e2c16f;
  --terracotta: #a8563c;
  --blue: #3e6d77;
  --line: rgba(23, 63, 43, .18);
  --shadow: 0 24px 60px rgba(11, 38, 27, .12);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Noto Serif SC", Georgia, serif;
  --sans: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --kai: "Kaiti SC", "STKaiti", "KaiTi", var(--serif);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(198, 151, 54, .09), transparent 22rem),
    linear-gradient(90deg, rgba(23, 63, 43, .025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 36px 36px, auto;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, [tabindex="0"]:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-200%);
  padding: .65rem 1rem;
  color: white;
  background: var(--forest-900);
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .7rem max(24px, calc((100vw - var(--max)) / 2));
  color: var(--paper-light);
  background: rgba(11, 38, 27, .94);
  border-bottom: 1px solid rgba(226, 193, 111, .3);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(11, 38, 27, .15);
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 204px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(226, 193, 111, .55);
  border-radius: 50% 50% 46% 54%;
  transform: rotate(-4deg);
}
.brand-mark svg { width: 28px; height: 28px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.05rem; letter-spacing: .06em; line-height: 1.2; }
.brand small { display: block; margin-top: .16rem; color: var(--sage); font-size: .57rem; letter-spacing: .14em; text-transform: uppercase; }

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 1.25vw, 1.25rem);
}
.site-nav a {
  position: relative;
  color: rgba(251, 249, 242, .72);
  font-size: .78rem;
  letter-spacing: .03em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.55rem;
  height: 1px;
  background: var(--gold-light);
  transition: right .25s ease;
}
.site-nav a:hover, .site-nav a.active { color: white; }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }

.print-button {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .75rem;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid rgba(226, 193, 111, .42);
  border-radius: 2px;
  font-size: .72rem;
  cursor: pointer;
}
.print-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.print-button:hover { color: var(--forest-950); background: var(--gold-light); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  min-height: 680px;
  overflow: hidden;
  color: var(--paper-light);
  background:
    linear-gradient(115deg, rgba(11, 38, 27, .98) 0%, rgba(18, 53, 37, .96) 56%, rgba(32, 86, 58, .92) 100%),
    var(--forest-900);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  right: -18vw;
  top: -20vw;
  border: 1px solid rgba(226, 193, 111, .35);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(226, 193, 111, .025), 0 0 0 140px rgba(226, 193, 111, .02);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0 0;
  height: 180px;
  opacity: .25;
  background-image: repeating-linear-gradient(163deg, transparent 0 31px, rgba(226, 193, 111, .7) 32px, transparent 33px 63px);
  clip-path: polygon(0 55%, 17% 29%, 34% 61%, 53% 23%, 73% 68%, 100% 25%, 100% 100%, 0 100%);
}
.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background: radial-gradient(circle at 72% 40%, rgba(198, 151, 54, .22), transparent 26rem);
}
.hero-copy {
  align-self: center;
  width: min(750px, 100%);
  padding: 7rem 5vw 7.2rem max(28px, calc((100vw - var(--max)) / 2));
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 800px;
  font-family: var(--serif);
  font-size: clamp(3.05rem, 5.8vw, 6.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.hero h1 > span { display: inline-block; font-size: .84em; white-space: nowrap; }
.hero h1 em { color: var(--gold-light); font-family: var(--kai); font-size: .84em; font-style: normal; letter-spacing: .02em; }
.hero-lead { max-width: 690px; margin: 2rem 0 0; color: rgba(251, 249, 242, .8); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.9; }
.hero-actions { display: flex; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .65rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--forest-950); background: var(--gold-light); box-shadow: 0 12px 26px rgba(0, 0, 0, .16); }
.button-ghost { color: white; border-color: rgba(251, 249, 242, .38); }
.button-ghost:hover { background: rgba(255, 255, 255, .08); }
.legal-note { max-width: 690px; margin-top: 2rem; color: rgba(251, 249, 242, .48); font-size: .74rem; line-height: 1.65; }

.hero-panel {
  position: relative;
  align-self: center;
  margin: 4rem max(28px, calc((100vw - var(--max)) / 2)) 4rem 1.4rem;
  padding: 2.6rem 2.5rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid rgba(226, 193, 111, .65);
  border-radius: 52% 48% 3px 3px / 14% 14% 3px 3px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .24);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid var(--line);
  border-radius: inherit;
}
.hero-panel > *:not(.field-lines) { position: relative; }
.panel-kicker { margin: 0; color: var(--terracotta); font-size: .65rem; font-weight: 750; letter-spacing: .18em; }
.hero-panel h2 { margin: .9rem 0 .8rem; color: var(--forest-900); font-family: var(--serif); font-size: 2rem; line-height: 1.25; }
.hero-panel > p:not(.panel-kicker) { color: var(--ink-soft); font-size: .92rem; }
.quick-facts { margin: 1.8rem 0 0; border-top: 1px solid var(--line); }
.quick-facts div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--line); }
.quick-facts dt { color: var(--ink-soft); font-size: .76rem; }
.quick-facts dd { margin: 0; color: var(--forest-800); font-family: var(--serif); font-size: .94rem; font-weight: 700; text-align: right; }
.field-lines { position: absolute; inset: auto -6rem -6rem auto; width: 18rem; height: 18rem; opacity: .1; transform: rotate(-12deg); }
.field-lines i { display: block; height: 2.2rem; border-top: 1px solid var(--forest-700); border-radius: 50%; }

.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}
.status-intro { display: flex; gap: .8rem; align-items: baseline; }
.status-intro span { color: var(--ink-soft); font-size: .72rem; }
.status-intro strong { color: var(--forest-900); font-family: var(--serif); font-size: .92rem; }
.legend { display: flex; flex-wrap: wrap; gap: .45rem; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: fit-content;
  margin: 0;
  padding: .19rem .5rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
  white-space: nowrap;
}
.tag i { width: 5px; height: 5px; background: currentColor; border-radius: 50%; }
.tag-verified { color: var(--forest-700); background: rgba(111, 143, 82, .08); }
.tag-history { color: var(--blue); background: rgba(62, 109, 119, .07); }
.tag-estimate { color: #8a681d; background: rgba(198, 151, 54, .09); }
.tag-pending { color: var(--terracotta); background: rgba(168, 86, 60, .07); }

.section {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 7.8rem 0 6.2rem;
  border-bottom: 1px solid var(--line);
}
.section-number {
  position: absolute;
  top: 7.3rem;
  left: -3.3rem;
  color: rgba(23, 63, 43, .18);
  font-family: var(--serif);
  font-size: 1.8rem;
  transform: rotate(-90deg);
}
.section-heading { max-width: 850px; margin-bottom: 3.6rem; }
.section-heading h2 { margin: 0; color: var(--forest-900); font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 600; line-height: 1.18; letter-spacing: -.03em; }
.section-heading > p:last-child { max-width: 760px; margin: 1.2rem 0 0; color: var(--ink-soft); font-size: 1.02rem; }

.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.verdict-card { position: relative; padding: 2.3rem; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(11, 38, 27, .04); }
.verdict-card::after { content: ""; position: absolute; width: 12rem; height: 12rem; right: -6rem; top: -6rem; border: 1px solid currentColor; border-radius: 50%; opacity: .09; }
.verdict-card.recommendation { color: var(--paper-light); background: var(--forest-800); }
.verdict-card.recommendation .tag { color: var(--gold-light); }
.verdict-card.caution { background: rgba(251, 249, 242, .65); }
.card-label { display: flex; justify-content: space-between; align-items: center; color: inherit; opacity: .8; font-size: .7rem; }
.verdict-card h3 { margin: 1.8rem 0 .8rem; font-family: var(--serif); font-size: 1.8rem; }
.verdict-card p { font-size: .93rem; opacity: .82; }
.check-list, .cross-list { padding: 0; margin: 1.5rem 0 0; list-style: none; }
.check-list li, .cross-list li { position: relative; padding: .55rem 0 .55rem 1.6rem; border-top: 1px solid rgba(255, 255, 255, .15); font-size: .82rem; }
.cross-list li { border-color: var(--line); }
.check-list li::before, .cross-list li::before { position: absolute; left: .1rem; color: var(--gold-light); content: "✓"; }
.cross-list li::before { color: var(--terracotta); content: "!"; }
.decision-callout { display: grid; grid-template-columns: 180px 1fr; gap: 1rem; margin-top: 1rem; padding: 1.2rem 1.4rem; color: var(--forest-900); background: rgba(198, 151, 54, .1); border-left: 4px solid var(--gold); }
.decision-callout strong { font-family: var(--serif); }
.decision-callout p { margin: 0; font-size: .9rem; }

.fact-ribbon { display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 4rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-ribbon article { min-width: 0; padding: 1.5rem 1.2rem; border-right: 1px solid var(--line); }
.fact-ribbon article:last-child { border-right: 0; }
.fact-ribbon strong { display: block; color: var(--forest-800); font-family: var(--serif); font-size: 2.1rem; line-height: 1; }
.fact-ribbon span { display: block; margin: .45rem 0 .65rem; font-size: .76rem; }
.fact-ribbon .tag { display: inline-flex; }

.profile-layout { display: grid; grid-template-columns: 1.45fr .75fr; gap: 3.5rem; align-items: start; }
.timeline-history { position: relative; }
.timeline-history::before { content: ""; position: absolute; top: .7rem; bottom: .7rem; left: 110px; width: 1px; background: var(--line); }
.timeline-history article { display: grid; grid-template-columns: 90px 1fr; gap: 2.6rem; position: relative; padding: 0 0 2.25rem; }
.timeline-history article::before { content: ""; position: absolute; top: .62rem; left: 105px; width: 9px; height: 9px; background: var(--paper); border: 2px solid var(--gold); border-radius: 50%; }
.timeline-history time { padding-top: .25rem; color: var(--terracotta); font-family: var(--serif); font-size: .74rem; font-weight: 700; text-align: right; }
.timeline-history h3 { margin: 0; color: var(--forest-900); font-family: var(--serif); font-size: 1.15rem; }
.timeline-history p { margin: .35rem 0 0; color: var(--ink-soft); font-size: .86rem; }

.identity-card { position: sticky; top: 100px; padding: 2rem; color: var(--paper-light); background: var(--forest-900); box-shadow: var(--shadow); }
.identity-card::before { content: ""; display: block; width: 42px; height: 2px; margin-bottom: 1.5rem; background: var(--gold-light); }
.identity-card h3 { margin: 0; font-family: var(--serif); font-size: 1.65rem; }
.lao-name { margin: .3rem 0 1.5rem; color: var(--gold-light); font-family: var(--serif); }
.identity-card dl { margin: 0; }
.identity-card dl div { display: grid; grid-template-columns: 72px 1fr; gap: .7rem; padding: .65rem 0; border-top: 1px solid rgba(255, 255, 255, .13); }
.identity-card dt { color: var(--sage); font-size: .68rem; }
.identity-card dd { margin: 0; font-size: .78rem; overflow-wrap: anywhere; }
.identity-card a { color: var(--gold-light); }
.fine-print { color: var(--ink-soft); font-size: .7rem; line-height: 1.65; }
.identity-card .fine-print { color: rgba(251, 249, 242, .5); }

.gap-box { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; margin-top: 4.5rem; padding: 2.5rem; background: rgba(231, 223, 205, .7); border: 1px solid var(--line); }
.gap-box h3 { margin: 0; color: var(--forest-900); font-family: var(--serif); font-size: 1.8rem; }
.gap-box p { color: var(--ink-soft); font-size: .86rem; }
.gap-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; margin: 0; padding: 0; list-style: none; }
.gap-list li { display: grid; grid-template-columns: 30px 1fr; gap: .5rem; padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .8rem; }
.gap-list span { color: var(--terracotta); font-family: var(--serif); font-size: .7rem; }

.article-25 { display: grid; grid-template-columns: 160px 1fr; gap: 2.8rem; padding: 2.6rem; color: var(--paper-light); background: var(--forest-900); box-shadow: var(--shadow); }
.article-mark { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 210px; border: 1px solid rgba(226, 193, 111, .4); }
.article-mark span { color: var(--gold-light); font-size: .62rem; letter-spacing: .2em; }
.article-mark strong { color: var(--paper-light); font-family: var(--serif); font-size: 5rem; line-height: 1; }
.article-25 h3 { margin: 0; font-family: var(--serif); font-size: 2rem; }
.article-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; color: rgba(251, 249, 242, .73); font-size: .87rem; }
.article-columns strong { color: var(--gold-light); }
.source-pill { display: inline-flex; align-items: center; gap: .6rem; margin-top: .8rem; padding: .45rem .8rem; color: var(--gold-light); border: 1px solid rgba(226, 193, 111, .35); font-size: .7rem; text-decoration: none; }
.source-pill:hover { background: rgba(226, 193, 111, .08); }

.governance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 1px; background: var(--line); border: 1px solid var(--line); }
.governance-grid article { padding: 1.7rem; background: var(--paper-light); }
.governance-icon { display: grid; width: 38px; height: 38px; place-items: center; color: var(--forest-800); border: 1px solid var(--gold); border-radius: 50%; font-family: var(--serif); }
.governance-grid h3 { margin: 1rem 0 .5rem; color: var(--forest-900); font-family: var(--serif); font-size: 1.05rem; }
.governance-grid p { margin: 0; color: var(--ink-soft); font-size: .75rem; }

.compliance-board { margin-top: 4rem; }
.board-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.board-head h3 { margin: 0; color: var(--forest-900); font-family: var(--serif); font-size: 1.6rem; }
.board-rows { border-top: 2px solid var(--forest-800); }
.board-rows > div { display: grid; grid-template-columns: 140px 1fr auto; gap: 1rem; align-items: center; padding: 1rem .2rem; border-bottom: 1px solid var(--line); }
.board-rows strong { color: var(--forest-800); font-family: var(--serif); font-size: .94rem; }
.board-rows span { color: var(--ink-soft); font-size: .8rem; }

.route-map { position: relative; max-width: 960px; margin-left: 5rem; }
.route-map::before { content: ""; position: absolute; top: 1rem; bottom: 1rem; left: 30px; width: 1px; background: var(--line); }
.route-step { position: relative; display: grid; grid-template-columns: 62px 1fr auto; gap: 1.5rem; align-items: start; padding: 0 0 2.5rem; }
.step-index { position: relative; z-index: 1; display: grid; width: 62px; height: 62px; place-items: center; color: var(--forest-800); background: var(--paper); border: 1px solid var(--forest-600); border-radius: 50%; font-family: var(--serif); font-size: 1.05rem; }
.route-step.active .step-index, .route-step.final-step .step-index { color: var(--paper-light); background: var(--forest-800); }
.route-step small { color: var(--terracotta); font-size: .67rem; }
.route-step h3 { margin: .15rem 0 .35rem; color: var(--forest-900); font-family: var(--serif); font-size: 1.35rem; }
.route-step p { max-width: 720px; margin: 0; color: var(--ink-soft); font-size: .82rem; }
.route-step > .tag { margin-top: 1rem; }

.route-comparison { margin-top: 2rem; overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 800px; background: rgba(251, 249, 242, .6); }
th, td { padding: .9rem 1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .76rem; text-align: left; vertical-align: top; }
thead th { color: var(--paper-light); background: var(--forest-900); font-family: var(--serif); font-size: .8rem; }
tbody th { width: 135px; color: var(--forest-800); font-family: var(--serif); background: var(--paper-deep); }
.recommended-col { color: var(--forest-950); background: var(--gold-light); }

.time-warning { display: grid; grid-template-columns: 50px 1fr; gap: 1.2rem; align-items: center; margin-top: 1.2rem; padding: 1.2rem 1.4rem; color: var(--forest-900); background: rgba(198, 151, 54, .09); border: 1px solid rgba(198, 151, 54, .35); }
.time-warning svg { width: 40px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.time-warning strong { font-family: var(--serif); }
.time-warning p { margin: .1rem 0 0; color: var(--ink-soft); font-size: .8rem; }

.progress-wrap { display: grid; grid-template-columns: 1fr 2fr auto; gap: 1rem; align-items: center; padding: 1rem 1.2rem; background: var(--forest-900); color: var(--paper-light); }
.progress-wrap > div { display: flex; gap: .8rem; align-items: baseline; }
.progress-wrap span { color: var(--sage); font-size: .72rem; }
.progress-wrap strong { font-family: var(--serif); }
progress { width: 100%; height: 7px; overflow: hidden; appearance: none; border: 0; border-radius: 0; background: rgba(255, 255, 255, .15); }
progress::-webkit-progress-bar { background: rgba(255, 255, 255, .15); }
progress::-webkit-progress-value { background: var(--gold-light); transition: width .3s ease; }
progress::-moz-progress-bar { background: var(--gold-light); }
.text-button { padding: .2rem; color: var(--forest-700); background: none; border: 0; border-bottom: 1px solid currentColor; font-size: .7rem; cursor: pointer; }
.progress-wrap .text-button { color: var(--gold-light); }

.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1px; background: var(--line); border: 1px solid var(--line); }
.checklist-grid label { position: relative; display: block; min-height: 110px; padding: 1.25rem; background: var(--paper-light); cursor: pointer; }
.checklist-grid label:hover { background: #fffef9; }
.checklist-grid input { position: absolute; opacity: 0; }
.checklist-grid label > span { display: grid; grid-template-columns: 42px 1fr; gap: 0 .9rem; }
.checklist-grid b { grid-row: 1 / span 2; display: grid; width: 38px; height: 38px; place-items: center; color: var(--terracotta); border: 1px solid var(--line); border-radius: 50%; font-family: var(--serif); font-size: .72rem; }
.checklist-grid strong { color: var(--forest-900); font-family: var(--serif); font-size: .96rem; }
.checklist-grid small { color: var(--ink-soft); font-size: .71rem; }
.checklist-grid input:checked + span { opacity: .55; }
.checklist-grid input:checked + span b { color: white; background: var(--forest-700); border-color: var(--forest-700); }
.checklist-grid input:checked + span b::after { content: "✓"; position: absolute; font-size: 1rem; }
.checklist-grid input:checked + span b { font-size: 0; }
.checklist-grid input:focus-visible + span { outline: 3px solid var(--gold-light); outline-offset: 6px; }

.rules-draft { margin-top: 4rem; }
.rules-title { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.rules-title h3 { margin: 0; color: var(--forest-900); font-family: var(--serif); font-size: 1.55rem; }
.rules-title button { margin-left: auto; }
.accordion { border-top: 2px solid var(--forest-800); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; gap: 1rem; align-items: center; padding: 1rem .2rem; color: var(--forest-900); font-family: var(--serif); font-size: .95rem; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--terracotta); font-family: var(--sans); font-size: .63rem; }
.accordion summary::after { content: "+"; margin-left: auto; color: var(--gold); font-family: var(--sans); font-size: 1.2rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion details > div { padding: 0 3rem 1.2rem; color: var(--ink-soft); font-size: .8rem; }

.authority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.authority-grid article { padding: 1.8rem; background: var(--paper-light); border-top: 4px solid var(--leaf); box-shadow: 0 10px 25px rgba(11, 38, 27, .04); }
.authority-grid .needs-approval { border-color: var(--gold); }
.authority-grid .not-independent { border-color: var(--terracotta); }
.authority-grid h3 { display: flex; align-items: center; gap: .7rem; margin: 0 0 1rem; color: var(--forest-900); font-family: var(--serif); font-size: 1.05rem; }
.authority-grid h3 span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--sans); }
.authority-grid ul { margin: 0; padding: 0; list-style: none; }
.authority-grid li { padding: .5rem 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: .76rem; }

.workplan { margin-top: 4rem; padding: 2.4rem; background: var(--forest-900); color: var(--paper-light); }
.workplan-head { display: flex; align-items: baseline; gap: 1rem; }
.workplan-head h3 { margin: 0; font-family: var(--serif); font-size: 1.55rem; }
.workplan ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .18); border-bottom: 1px solid rgba(255, 255, 255, .18); }
.workplan li { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; border-right: 1px solid rgba(255, 255, 255, .18); }
.workplan li:last-child { border-right: 0; }
.workplan li > span { color: var(--gold-light); font-family: var(--serif); font-size: 1.4rem; }
.workplan li strong { font-family: var(--serif); }
.workplan li p { color: rgba(251, 249, 242, .64); font-size: .72rem; }
.workplan li em { margin-top: auto; color: var(--sage); font-size: .66rem; font-style: normal; }
.budget-bands { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.budget-bands span { padding: .45rem .7rem; color: var(--sage); border: 1px solid rgba(255, 255, 255, .16); font-size: .67rem; }
.budget-bands b { color: var(--gold-light); }
.workplan .fine-print { color: rgba(251, 249, 242, .5); }

.template-tabs { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 1px solid var(--forest-800); }
.template-tabs button { padding: .75rem 1rem; color: var(--ink-soft); background: transparent; border: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); cursor: pointer; font-size: .78rem; }
.template-tabs button:last-child { border-right: 1px solid var(--line); }
.template-tabs button[aria-selected="true"] { color: var(--paper-light); background: var(--forest-800); border-color: var(--forest-800); }
.template-panel { background: var(--paper-light); border: 1px solid var(--line); border-top: 0; }
.template-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem 1.1rem; color: var(--ink-soft); background: var(--paper-deep); border-bottom: 1px solid var(--line); font-size: .7rem; }
.template-toolbar button { padding: .35rem .7rem; color: var(--forest-800); background: transparent; border: 1px solid var(--forest-700); cursor: pointer; font-size: .68rem; }
.template-toolbar button:hover { color: white; background: var(--forest-700); }
.letter { max-width: 880px; margin: 0 auto; padding: 3rem; font-family: var(--serif); font-size: .91rem; line-height: 2; }
.letter p { margin: 0 0 1rem; }
.letter ol { padding-left: 1.5rem; }
.letter li { margin-bottom: .35rem; }

.risk-list { border-top: 2px solid var(--forest-800); }
.risk-list article { display: grid; grid-template-columns: 60px 1fr auto; gap: 1.2rem; align-items: center; padding: 1.1rem .3rem; border-bottom: 1px solid var(--line); }
.risk-list article > span { color: var(--terracotta); font-family: var(--serif); }
.risk-list h3 { margin: 0; color: var(--forest-900); font-family: var(--serif); font-size: 1rem; }
.risk-list p { margin: .15rem 0 0; color: var(--ink-soft); font-size: .75rem; }
.risk-list em { color: var(--terracotta); font-size: .66rem; font-style: normal; font-weight: 700; }

.source-controls { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.source-controls button, .source-controls a { padding: .45rem .7rem; color: var(--ink-soft); background: transparent; border: 1px solid var(--line); font-size: .68rem; text-decoration: none; cursor: pointer; }
.source-controls button.active { color: var(--paper-light); background: var(--forest-800); border-color: var(--forest-800); }
.source-controls a { margin-left: auto; color: var(--forest-700); border-color: var(--forest-600); }
.source-list { border-top: 2px solid var(--forest-800); }
.source-list article { display: grid; grid-template-columns: 55px 1fr 42px; gap: 1.2rem; align-items: start; padding: 1.25rem .2rem; border-bottom: 1px solid var(--line); transition: opacity .2s ease; }
.source-list article[hidden] { display: none; }
.source-id { color: var(--terracotta); font-family: var(--serif); font-size: .75rem; }
.source-list h3 { margin: .4rem 0 .25rem; color: var(--forest-900); font-family: var(--serif); font-size: 1rem; }
.source-list p:last-child { margin: 0; color: var(--ink-soft); font-size: .74rem; }
.source-list article > a { display: grid; width: 34px; height: 34px; place-items: center; color: var(--forest-700); border: 1px solid var(--line); text-decoration: none; }
.source-list article > a:hover { color: white; background: var(--forest-700); }

.methodology { display: grid; grid-template-columns: .55fr 1.45fr; gap: 2rem; margin-top: 3rem; padding: 2rem; color: var(--paper-light); background: var(--forest-900); }
.methodology h3 { margin: 0; font-family: var(--serif); font-size: 1.45rem; }
.methodology p { margin: 0 0 .75rem; color: rgba(251, 249, 242, .65); font-size: .78rem; }
.methodology strong { color: var(--gold-light); }

.site-footer { display: flex; justify-content: space-between; gap: 3rem; padding: 5rem max(24px, calc((100vw - var(--max)) / 2)); color: var(--paper-light); background: var(--forest-950); }
.site-footer h2 { max-width: 620px; margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.2; }
.footer-meta { min-width: 250px; padding-left: 1.4rem; border-left: 1px solid rgba(255, 255, 255, .18); color: rgba(251, 249, 242, .55); font-size: .72rem; }
.footer-meta a { color: var(--gold-light); }

.toast { position: fixed; z-index: 100; right: 1.2rem; bottom: 1.2rem; padding: .7rem 1rem; color: white; background: var(--forest-800); border: 1px solid var(--gold-light); box-shadow: var(--shadow); font-size: .78rem; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy > *, .hero-panel { opacity: 0; animation: rise .7s ease forwards; }
.hero-copy > :nth-child(1) { animation-delay: .06s; }
.hero-copy > :nth-child(2) { animation-delay: .14s; }
.hero-copy > :nth-child(3) { animation-delay: .22s; }
.hero-copy > :nth-child(4) { animation-delay: .3s; }
.hero-copy > :nth-child(5) { animation-delay: .38s; }
.hero-panel { animation-delay: .28s; }

@media (max-width: 1100px) {
  .site-header { gap: 1rem; }
  .site-nav { gap: .65rem; }
  .site-nav a { font-size: .7rem; }
  .print-button { font-size: 0; }
  .print-button svg { width: 19px; height: 19px; }
  .hero { grid-template-columns: 1.15fr .85fr; }
  .hero-copy { padding-left: 5vw; }
  .hero-panel { margin-right: 5vw; }
  .section-number { display: none; }
  .route-map { margin-left: 0; }
  .governance-grid { grid-template-columns: 1fr 1fr; }
  .workplan ol { grid-template-columns: 1fr 1fr; }
  .workplan li:nth-child(2) { border-right: 0; }
  .workplan li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 70px; }
  .site-header { min-height: 64px; justify-content: space-between; padding: .6rem 20px; }
  .brand { min-width: 0; }
  .brand-mark { width: 38px; height: 38px; }
  .brand small { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 4px; width: 42px; height: 42px; align-items: center; justify-content: center; order: 3; color: white; background: transparent; border: 1px solid rgba(255,255,255,.25); cursor: pointer; }
  .nav-toggle > span:not(.sr-only) { width: 18px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 1rem 20px 1.4rem; background: var(--forest-950); border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .5rem 0; font-size: .85rem; }
  .site-nav a::after { display: none; }
  .print-button { order: 2; margin-left: auto; }

  .hero { display: block; min-height: 0; padding-bottom: 4rem; }
  .hero-copy { width: 100%; padding: 5.5rem 24px 3rem; }
  .hero h1 { font-size: clamp(2.75rem, 10vw, 4.7rem); }
  .hero-panel { max-width: 560px; margin: 0 24px; padding: 2.2rem; }
  .status-strip { align-items: flex-start; flex-direction: column; gap: .7rem; padding: 1rem 24px; }
  .section { width: calc(100% - 40px); padding: 5.5rem 0 4.5rem; }
  .section-heading { margin-bottom: 2.5rem; }
  .section-heading h2 { font-size: clamp(2rem, 7vw, 3rem); }
  .verdict-grid, .profile-layout, .gap-box, .article-columns, .authority-grid, .methodology { grid-template-columns: 1fr; }
  .decision-callout { grid-template-columns: 1fr; }
  .fact-ribbon { grid-template-columns: repeat(3, 1fr); }
  .fact-ribbon article:nth-child(3) { border-right: 0; }
  .fact-ribbon article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .identity-card { position: relative; top: auto; }
  .gap-list { grid-template-columns: 1fr; }
  .article-25 { grid-template-columns: 100px 1fr; gap: 1.5rem; padding: 1.7rem; }
  .article-mark strong { font-size: 3.7rem; }
  .board-rows > div { grid-template-columns: 110px 1fr; }
  .board-rows .tag { grid-column: 2; }
  .route-step { grid-template-columns: 54px 1fr; gap: 1rem; }
  .route-step > .tag { grid-column: 2; margin-top: 0; }
  .route-map::before { left: 27px; }
  .step-index { width: 54px; height: 54px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .progress-wrap { grid-template-columns: 1fr auto; }
  .progress-wrap progress { grid-row: 2; grid-column: 1 / -1; }
  .workplan ol { grid-template-columns: 1fr 1fr; }
  .letter { padding: 2rem; }
}

@media (max-width: 560px) {
  body { font-size: 15px; background-size: auto, 24px 24px, auto; }
  .brand strong { font-size: .93rem; }
  .print-button { display: none; }
  .hero-copy { padding-top: 4.5rem; }
  .hero h1 { font-size: clamp(2.4rem, 13vw, 3.8rem); line-height: 1.08; }
  .hero-lead { font-size: .94rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-panel { margin: 0 16px; padding: 2rem 1.4rem; border-radius: 42% 42% 3px 3px / 9% 9% 3px 3px; }
  .status-intro { align-items: flex-start; flex-direction: column; gap: .15rem; }
  .section { width: calc(100% - 32px); padding: 4.2rem 0 3.7rem; }
  .section-heading h2 { letter-spacing: -.02em; }
  .section-heading > p:last-child { font-size: .9rem; }
  .verdict-card { padding: 1.5rem; }
  .fact-ribbon { grid-template-columns: 1fr 1fr; }
  .fact-ribbon article:nth-child(2n) { border-right: 0; }
  .fact-ribbon article:nth-child(3) { border-right: 1px solid var(--line); }
  .fact-ribbon article:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .fact-ribbon strong { font-size: 1.7rem; }
  .timeline-history::before { left: 70px; }
  .timeline-history article { grid-template-columns: 56px 1fr; gap: 1.8rem; }
  .timeline-history article::before { left: 65px; }
  .timeline-history time { font-size: .62rem; }
  .gap-box { gap: 1.5rem; padding: 1.4rem; }
  .article-25 { grid-template-columns: 1fr; }
  .article-mark { min-height: 95px; flex-direction: row; gap: .5rem; }
  .article-mark strong { font-size: 3rem; }
  .governance-grid { grid-template-columns: 1fr; }
  .board-head, .rules-title, .workplan-head { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .board-rows > div { grid-template-columns: 1fr; gap: .4rem; }
  .board-rows .tag { grid-column: 1; }
  .route-step { padding-bottom: 2rem; }
  .route-step p { font-size: .76rem; }
  .time-warning { grid-template-columns: 1fr; }
  .time-warning svg { width: 34px; }
  .progress-wrap { grid-template-columns: 1fr; }
  .progress-wrap progress { grid-column: 1; }
  .progress-wrap .text-button { justify-self: start; }
  .checklist-grid label { min-height: 104px; padding: 1rem; }
  .accordion details > div { padding-left: 1rem; padding-right: 1rem; }
  .workplan { padding: 1.4rem; }
  .workplan ol { grid-template-columns: 1fr; }
  .workplan li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .workplan li:last-child { border-bottom: 0; }
  .template-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .template-tabs button:nth-child(2) { border-right: 1px solid var(--line); }
  .template-toolbar { align-items: flex-start; flex-direction: column; }
  .letter { padding: 1.4rem; font-size: .84rem; }
  .risk-list article { grid-template-columns: 36px 1fr; gap: .7rem; }
  .risk-list em { grid-column: 2; }
  .source-controls a { margin-left: 0; }
  .source-list article { grid-template-columns: 38px 1fr 32px; gap: .6rem; }
  .source-list article > a { width: 30px; height: 30px; }
  .site-footer { align-items: flex-start; flex-direction: column; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .footer-meta { padding-top: 1rem; padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
}

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

@media print {
  @page { size: A4; margin: 15mm 14mm 17mm; }
  :root { --paper: #fff; --paper-light: #fff; }
  html, body { color: #111; background: #fff !important; font-size: 10pt; }
  body::before, .skip-link, .site-header, .hero-actions, .status-strip, .progress-wrap, .source-controls, .template-tabs, .template-toolbar button, .rules-title button, .toast, .site-footer { display: none !important; }
  .hero { display: block; min-height: 0; padding: 0 0 14mm; color: #111; background: #fff; border-bottom: 2px solid #173f2b; }
  .hero::before, .hero::after, .hero-grain { display: none; }
  .hero-copy { width: 100%; padding: 0; }
  .hero h1 { color: #173f2b; font-size: 30pt; }
  .hero h1 em { color: #8a681d; }
  .hero-lead, .legal-note { color: #444; }
  .hero-panel { margin: 8mm 0 0; padding: 8mm; color: #111; border: 1px solid #777; box-shadow: none; border-radius: 0; }
  .section { width: 100%; padding: 13mm 0 9mm; page-break-inside: auto; }
  .section-heading { margin-bottom: 7mm; }
  .section-heading h2 { font-size: 22pt; }
  .verdict-card, .identity-card, .article-25, .workplan, .methodology { color: #111; background: #fff !important; border: 1px solid #777; box-shadow: none; }
  .verdict-card.recommendation .tag, .article-25 .eyebrow, .article-25 strong, .article-25 p, .article-25 a, .workplan *, .methodology * { color: #111 !important; }
  .article-mark { border-color: #777; }
  .check-list li { border-color: #ccc; }
  .fact-ribbon, .profile-layout, .verdict-grid, .authority-grid { break-inside: avoid; }
  .identity-card { position: static; }
  .identity-card .fine-print, .identity-card dt { color: #555; }
  .source-list article, .route-step, .risk-list article, .accordion details, .checklist-grid label { break-inside: avoid; }
  .source-list article { grid-template-columns: 45px 1fr; }
  .source-list article > a { display: block; grid-column: 2; width: auto; height: auto; color: #555; border: 0; font-size: 0; overflow-wrap: anywhere; }
  .source-list article > a::after { color: #555; content: attr(href); font-size: 7pt; }
  .accordion details { display: block; }
  .accordion details > div { display: block !important; }
  .template-panel[hidden] { display: block !important; margin-top: 8mm; border-top: 1px solid #777; }
  .template-panel::before { display: block; padding: 3mm; color: #173f2b; font-family: var(--serif); font-weight: 700; content: "附录模板"; border-bottom: 1px solid #aaa; }
  a { color: #111; text-decoration: none; }
  .source-pill::after { content: " " attr(href); font-size: 7pt; overflow-wrap: anywhere; }
  .site-footer { padding: 9mm 0 0; color: #111; background: #fff; border-top: 2px solid #173f2b; }
  .site-footer h2 { font-size: 18pt; }
  .footer-meta { color: #555; border-color: #aaa; }
}
