:root {
  --ink: #13201f;
  --muted: #5e6c69;
  --subtle: #8a9894;
  --paper: #f5f7f1;
  --panel: #fffefa;
  --panel-soft: #f9fbf6;
  --line: rgba(19, 32, 31, 0.1);
  --line-strong: rgba(19, 32, 31, 0.18);
  --teal: #0e8178;
  --teal-dark: #0d3f3b;
  --amber: #bd7b17;
  --amber-soft: #f5ead7;
  --dark: #102321;
  --dark-2: #173532;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 20px 56px rgba(20, 31, 29, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8faf5 0%, var(--paper) 36%, #f2f5ee 100%);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

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

p {
  margin: 0;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
b,
strong,
span,
a {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 clamp(24px, 4.8vw, 72px);
  color: var(--white);
  background: rgba(10, 28, 26, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand span {
  font-size: 17px;
  white-space: nowrap;
}

.brand strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  opacity: 0.78;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: #f7d391;
  opacity: 1;
}

.progress {
  position: fixed;
  z-index: 60;
  top: 64px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.cover {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 108px clamp(24px, 5.2vw, 84px) 72px;
}

.cover-image,
.cover-overlay {
  position: absolute;
  inset: 0;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-overlay {
  background:
    linear-gradient(90deg, rgba(5, 15, 14, 0.94) 0%, rgba(6, 24, 22, 0.79) 36%, rgba(5, 15, 14, 0.24) 78%),
    linear-gradient(0deg, rgba(5, 15, 14, 0.78) 0%, rgba(5, 15, 14, 0.08) 48%);
}

.cover-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.52fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  min-width: 0;
}

.kicker {
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.cover-copy {
  min-width: 0;
  max-width: 100%;
}

.cover h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
}

.subtitle {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.8vw, 24px);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.meta-row span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 700;
}

.cover-conclusion {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 26px;
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  background: rgba(7, 23, 21, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.cover-conclusion span {
  display: inline-block;
  margin-bottom: 16px;
  color: #f7d391;
  font-size: 13px;
  font-weight: 850;
}

.cover-conclusion p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.executive {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5.2vw, 84px);
  background:
    linear-gradient(180deg, #fffefa 0%, #f8faf4 100%);
}

.section-head {
  position: relative;
  max-width: 920px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 760px;
}

.chapter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--teal);
  border: 1px solid rgba(15, 118, 110, 0.26);
  border-radius: 999px;
  background: rgba(14, 129, 120, 0.09);
  font-size: 13px;
  font-weight: 900;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 820px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  border: 0;
  background: transparent;
}

.summary-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid rgba(14, 129, 120, 0.42);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(19, 32, 31, 0.06);
}

.summary-grid b {
  display: block;
  margin-bottom: 14px;
  font-size: 19px;
  line-height: 1.35;
}

.summary-grid p {
  color: var(--muted);
  font-size: 15px;
}

.report-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}

.toc {
  position: sticky;
  top: 98px;
  align-self: start;
  max-height: calc(100svh - 116px);
  overflow: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.76);
  box-shadow: 0 16px 40px rgba(19, 32, 31, 0.06);
  backdrop-filter: blur(12px);
}

.toc p {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 900;
}

.toc a {
  display: block;
  padding: 11px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(19, 32, 31, 0.08);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 800;
  transition: color 160ms ease, padding-left 160ms ease;
}

.toc a:hover,
.toc a.active {
  color: var(--teal);
  padding-left: 10px;
}

.report-content {
  min-width: 0;
}

.report-section {
  padding: clamp(68px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}

.report-section.dark {
  margin-left: clamp(-24px, -3vw, -42px);
  margin-right: clamp(-24px, -3vw, -42px);
  padding-left: clamp(24px, 3vw, 42px);
  padding-right: clamp(24px, 3vw, 42px);
  color: var(--ink);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(189, 123, 23, 0.12) 100%),
    var(--panel);
  box-shadow: 0 24px 70px rgba(19, 32, 31, 0.08);
}

.report-section.dark .lead,
.report-section.dark .kicker {
  color: var(--muted);
}

.report-section.dark .kicker {
  color: var(--amber);
}

.report-section.dark .chapter {
  border-color: rgba(15, 118, 110, 0.24);
  background: rgba(15, 118, 110, 0.09);
  color: var(--teal);
}

.reason-grid,
.issue-table,
.priority-list,
.roadmap-list,
.metrics-board,
.path-grid {
  display: grid;
  gap: 14px;
  border: 0;
  background: transparent;
}

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

.reason-grid article,
.issue-table article,
.priority-list article,
.roadmap-list article,
.metrics-board article,
.path-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(19, 32, 31, 0.055);
}

.reason-grid span,
.path-grid span,
.priority-list span,
.roadmap-list span,
.metrics-board span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}

.reason-grid p,
.issue-table p,
.priority-list p,
.roadmap-list p,
.metrics-board p,
.path-grid p,
.copy-block p,
.two-column p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 16px;
}

.reason-grid em {
  display: block;
  margin-top: 18px;
  color: #35514d;
  border-left: 3px solid rgba(14, 129, 120, 0.32);
  padding-left: 12px;
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.definition {
  margin-bottom: 28px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, #0d3f3b 0%, #123f3b 48%, #675022 100%);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(19, 32, 31, 0.14);
}

.definition p {
  color: #f7d391;
  font-weight: 850;
}

.definition strong {
  display: block;
  margin: 12px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.definition span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.capability-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.capability-list article {
  display: grid;
  grid-template-columns: 170px 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

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

.capability-list b {
  font-size: 18px;
}

.capability-list span {
  color: var(--amber);
  font-weight: 850;
}

.capability-list p {
  color: var(--muted);
  font-size: 15px;
}

.insight {
  margin-top: 28px;
  padding: 26px 28px;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(189, 123, 23, 0.14), rgba(255, 255, 255, 0.82)),
    var(--amber-soft);
}

.insight b {
  display: block;
  margin-bottom: 10px;
  color: #8b5a13;
}

.insight p {
  color: #4f473a;
}

.evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.evidence-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.86);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

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

.diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 10px;
}

.diagnosis div {
  padding: 30px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.88);
  box-shadow: 0 16px 40px rgba(19, 32, 31, 0.06);
}

.diagnosis span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.diagnosis p {
  margin-top: 12px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.diagnosis strong {
  align-self: center;
  padding: 9px 12px;
  border: 1px solid rgba(189, 123, 23, 0.22);
  border-radius: 999px;
  background: rgba(189, 123, 23, 0.12);
  color: #8b5a13;
  font-size: 13px;
  white-space: nowrap;
}

.weakness-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  background: transparent;
  border: 0;
}

.weakness-grid span {
  padding: 18px 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.84);
  text-align: center;
  color: var(--teal-dark);
  font-weight: 850;
}

.dark-insight {
  border-color: var(--teal);
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.12), rgba(189, 123, 23, 0.12));
  color: var(--ink);
}

.dark-insight b,
.dark-insight p {
  color: var(--ink);
}

.position-shift {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
}

.position-shift div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(19, 32, 31, 0.05);
}

.position-shift span {
  display: block;
  margin-bottom: 10px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 850;
}

.position-shift b {
  font-size: 24px;
  line-height: 1.3;
}

.position-shift strong {
  align-self: center;
  color: var(--amber);
  font-size: 14px;
}

.copy-block {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.two-column article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(19, 32, 31, 0.05);
}

.path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
  background: transparent;
}

.path-grid article {
  position: relative;
  overflow: hidden;
  padding: 34px 36px 32px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--panel);
  box-shadow: 0 18px 44px rgba(19, 32, 31, 0.08);
}

.path-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--teal);
}

.path-grid article:nth-child(2) {
  border-color: rgba(189, 123, 23, 0.32);
  background:
    linear-gradient(180deg, rgba(189, 123, 23, 0.12), rgba(255, 255, 255, 0) 44%),
    var(--panel);
}

.path-grid article:nth-child(2)::before {
  background: var(--amber);
}

.path-grid span {
  padding: 9px 12px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
  font-size: 14px;
}

.path-grid article:nth-child(2) span {
  border-color: rgba(189, 123, 23, 0.28);
  background: rgba(189, 123, 23, 0.14);
  color: #8b5a13;
}

.path-grid h3 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
}

.path-grid p {
  margin-top: 22px;
  color: #53615e;
  font-size: 17px;
  font-weight: 650;
}

.path-grid ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink);
}

.path-grid li {
  position: relative;
  list-style: none;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.06);
  color: #3f504d;
  font-weight: 850;
}

.path-grid article:nth-child(2) li {
  border-color: rgba(189, 123, 23, 0.16);
  background: rgba(189, 123, 23, 0.08);
}

.path-grid li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.path-grid article:nth-child(2) li::before {
  background: var(--amber);
}

.flow {
  display: grid;
  gap: 10px;
}

.flow div {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 26px 22px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(19, 32, 31, 0.045);
}

.flow div::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 27px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.flow b {
  line-height: 1.45;
}

.flow span {
  color: var(--muted);
  line-height: 1.65;
}

.entry-set {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(189, 123, 23, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(189, 123, 23, 0.12), rgba(255, 254, 250, 0.88)),
    var(--amber-soft);
}

.entry-set div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.entry-set span {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--panel);
  color: #7a5218;
  font-size: 13px;
  font-weight: 850;
}

.entry-set p {
  color: #5f513c;
}

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

.keyword-matrix {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(19, 32, 31, 0.055);
  overflow: hidden;
}

.keyword-matrix h3 {
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.08), rgba(189, 123, 23, 0.08));
}

.keyword-matrix div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 19px 26px;
  border-bottom: 1px solid rgba(19, 32, 31, 0.08);
}

.keyword-matrix div:last-child {
  border-bottom: 0;
}

.keyword-matrix b {
  color: var(--teal-dark);
}

.keyword-matrix span {
  color: var(--muted);
  line-height: 1.65;
}

.roadmap-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-list article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.roadmap-list article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

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

.metrics-board article {
  border-top: 4px solid rgba(14, 129, 120, 0.42);
}

.metrics-board article:nth-child(2) {
  border-top-color: rgba(189, 123, 23, 0.48);
}

.metrics-board article:nth-child(3) {
  border-top-color: rgba(19, 32, 31, 0.24);
}

.final {
  padding-bottom: 104px;
}

.final-statement {
  position: relative;
  display: grid;
  gap: 20px;
  overflow: hidden;
  padding: 40px 44px;
  color: var(--ink);
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-left: 6px solid var(--teal);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(255, 254, 250, 0.96) 44%, rgba(189, 123, 23, 0.14)),
    var(--panel);
  box-shadow: 0 22px 58px rgba(19, 32, 31, 0.08);
}

.final-statement::before {
  content: "Final";
  position: absolute;
  right: 28px;
  top: 18px;
  color: rgba(15, 118, 110, 0.08);
  font-size: 70px;
  line-height: 1;
  font-weight: 900;
}

.final-statement p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #33413e;
  font-weight: 650;
}

@media (max-width: 1180px) {
  .summary-grid,
  .roadmap-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid,
  .metrics-board {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .site-header {
    height: 60px;
    padding: 0 22px;
  }

  .brand strong,
  .nav,
  .progress {
    display: none;
  }

  .cover {
    min-height: auto;
    padding: 100px 24px 54px;
  }

  .cover-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cover-copy,
  .cover-conclusion {
    width: min(100%, 330px);
  }

  .cover h1 {
    width: min(7ch, 100%);
    max-width: 100%;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.1;
  }

  .subtitle {
    max-width: 100%;
    font-size: 17px;
  }

  .subtitle,
  .cover-conclusion p,
  .lead,
  .summary-grid p,
  .reason-grid p,
  .issue-table p,
  .priority-list p,
  .roadmap-list p,
  .metrics-board p,
  .path-grid p,
  .final-statement p {
    word-break: break-all;
  }

  .cover-conclusion {
    padding: 22px;
  }

  .executive {
    padding: 56px 24px;
  }

  .summary-grid,
  .issue-table,
  .priority-list,
  .path-grid,
  .two-column,
  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .report-shell {
    display: block;
    padding: 0 24px;
  }

  .toc {
    display: none;
  }

  .report-section {
    padding: 58px 0;
  }

  .section-head h2 {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .lead,
  .cover-conclusion p,
  .final-statement p {
    font-size: 16px;
  }

  .capability-list article,
  .flow div,
  .keyword-matrix div,
  .diagnosis,
  .position-shift {
    grid-template-columns: 1fr;
  }

  .capability-list article {
    gap: 8px;
  }

  .flow div {
    gap: 8px;
  }

  .diagnosis strong,
  .position-shift strong {
    display: none;
  }

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

@media (max-width: 520px) {
  .brand span {
    font-size: 15px;
  }

  .cover,
  .executive,
  .report-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .meta-row span {
    width: 100%;
  }

  .reason-grid article,
  .issue-table article,
  .priority-list article,
  .roadmap-list article,
  .metrics-board article,
  .path-grid article,
  .definition,
  .copy-block,
  .two-column article,
  .entry-set,
  .final-statement {
    padding: 22px;
  }

  .definition strong {
    font-size: 25px;
  }
}
