:root {
  --vision-violet: #6816d8;
  --vision-violet-dark: #24104f;
  --vision-blue: #04a8ff;
  --vision-cyan: #43e5ff;
  --vision-ink: #111827;
  --vision-muted: #697386;
  --vision-paper: #f6f8fc;
  --vision-surface: #ffffff;
  --vision-line: rgba(104, 22, 216, 0.18);
  --sidebar-width: 330px;
  --shadow: 0 24px 70px rgba(36, 16, 79, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--vision-ink);
  background: var(--vision-paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--vision-blue);
  outline-offset: 3px;
}

.sr-only,
.skip-link:not(:focus) {
  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:focus {
  position: fixed;
  z-index: 40;
  top: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #ffffff;
  background: var(--vision-violet-dark);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.mobile-menu-toggle,
.icon-button {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
}

.mobile-menu-toggle {
  position: fixed;
  z-index: 18;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(135deg, var(--vision-violet), var(--vision-blue));
  box-shadow: 0 12px 30px rgba(36, 16, 79, 0.22);
}

.icon-button {
  width: 38px;
  height: 38px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgba(7, 11, 32, 0.48);
}

.overlay[hidden] {
  display: none;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: min(var(--sidebar-width), 88vw);
  max-width: 100%;
  padding: 20px;
  overflow-y: auto;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(36, 16, 79, 0.98), rgba(12, 20, 48, 0.98)),
    url("../assets/images/network-bg.png") center bottom / cover no-repeat;
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  transition: transform 0.24s ease, visibility 0.24s ease;
  visibility: hidden;
}

.site-shell[data-sidebar-open="true"] .sidebar {
  transform: translateX(0);
  visibility: visible;
}

.sidebar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.sidebar-logo {
  display: block;
  width: 54px;
  height: auto;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
}

.sidebar-brand-text {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.search-label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-input {
  width: 100%;
  min-height: 42px;
  padding: 11px 12px;
  margin-bottom: 12px;
  color: var(--vision-ink);
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
}

.search-results {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.search-result,
.empty-results {
  display: block;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.search-result {
  text-decoration: none;
}

.search-result strong,
.search-result span,
.search-result em {
  display: block;
}

.search-result span,
.search-result em,
.empty-results {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.search-result em {
  margin-top: 6px;
  font-style: normal;
}

.search-result mark {
  padding: 0 2px;
  color: #061225;
  background: var(--vision-cyan);
  border-radius: 2px;
}

.chapter-nav {
  display: grid;
  gap: 8px;
}

.sidebar.is-searching .chapter-nav,
.sidebar.is-searching .sidebar-footer {
  display: none;
}

.nav-item,
.nav-subitem,
.resource-link {
  display: block;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.nav-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.nav-chapter-number {
  color: var(--vision-cyan);
  font-size: 12px;
}

.nav-subitems {
  display: grid;
  gap: 3px;
  padding-left: 22px;
}

.nav-subitem {
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.35;
}

.nav-item:hover,
.nav-subitem:hover,
.nav-item.is-active,
.nav-subitem.is-active,
.resource-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.nav-item.is-active,
.nav-subitem.is-active {
  box-shadow: inset 3px 0 0 var(--vision-cyan);
}

.sidebar-footer {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.resource-link {
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  padding: 86px 22px 70px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--vision-violet-dark), var(--vision-violet) 48%, var(--vision-blue)),
    url("../assets/images/poly-bg.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -7vw;
  width: min(620px, 48vw);
  aspect-ratio: 1;
  background: url("../assets/images/logo-sintesis-cgr-2031-web.png") center / contain no-repeat;
  opacity: 0.1;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 24%, rgba(67, 229, 255, 0.3), transparent 28%);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  right: -12vw;
  bottom: -20vw;
  width: min(620px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(30deg);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
}

.hero-logo {
  width: min(190px, 46vw);
  height: auto;
  margin-bottom: 26px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(7, 11, 32, 0.2);
  backdrop-filter: blur(12px);
}

.eyebrow,
.chapter-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
h4,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 10px 0 16px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.92;
}

.hero-summary {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-actions:empty,
.hero-stats:empty {
  display: none;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.primary-action {
  color: #101827;
  background: #ffffff;
}

.secondary-action {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.content-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  margin-top: 18px;
  color: #ffffff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--vision-violet), var(--vision-blue));
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(104, 22, 216, 0.2);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--vision-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.hero .stat-card {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.stat-card strong {
  display: block;
  color: var(--vision-violet-dark);
  font-size: 28px;
  line-height: 1.05;
}

.hero .stat-card strong {
  color: #ffffff;
}

.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 5px;
  color: var(--vision-muted);
  line-height: 1.4;
}

.hero .stat-card span {
  color: rgba(255, 255, 255, 0.78);
}

.stat-card strong {
  position: relative;
  z-index: 1;
}

.stat-card-icon-svg {
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 132px;
  height: 132px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.stat-card.has-icon::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(104, 22, 216, 0.08), rgba(4, 168, 255, 0.1));
  pointer-events: none;
}

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

.integrity-grid .stat-card {
  min-height: 142px;
  padding: 22px 128px 22px 22px;
}

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

.chapter {
  min-width: 0;
  padding: 58px 20px;
  border-top: 1px solid var(--vision-line);
  scroll-margin-top: 24px;
}

.chapter-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.chapter-light {
  background: var(--vision-paper);
}

.chapter-strategic {
  color: #ffffff;
  background: linear-gradient(135deg, var(--vision-violet-dark), var(--vision-violet));
}

.chapter-immersive {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7, 11, 32, 0.75), rgba(7, 11, 32, 0.96)),
    url("../assets/images/network-bg.png") center / cover no-repeat;
}

.chapter-kicker {
  color: var(--vision-violet);
}

.chapter-strategic .chapter-kicker,
.chapter-immersive .chapter-kicker {
  color: var(--vision-cyan);
}

.chapter h2 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 8px 0 12px;
  color: var(--vision-violet-dark);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

.chapter-title-number {
  color: var(--vision-violet);
  font-size: 0.46em;
  line-height: 1.25;
  padding-top: 0.1em;
}

.chapter-strategic h2,
.chapter-immersive h2 {
  color: #ffffff;
}

.chapter-strategic .chapter-title-number,
.chapter-immersive .chapter-title-number {
  color: var(--vision-cyan);
}

.chapter-summary {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--vision-muted);
  font-size: 18px;
  line-height: 1.6;
}

.chapter-strategic .chapter-summary,
.chapter-immersive .chapter-summary,
.chapter-strategic p,
.chapter-immersive p {
  color: rgba(255, 255, 255, 0.8);
}

.subchapter {
  padding: 22px 0;
  scroll-margin-top: 24px;
}

.subchapter h3 {
  margin: 0 0 12px;
  color: inherit;
  font-size: 26px;
  line-height: 1.15;
}

.subchapter p,
.subchapter li {
  line-height: 1.66;
}

.axis-grid,
.trend-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.axis-card,
.trend-matrix article,
.feature-panel,
.manifesto li {
  border: 1px solid var(--vision-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.chapter-strategic .axis-card,
.chapter-immersive .axis-card,
.chapter-immersive .trend-matrix article,
.chapter-strategic .manifesto li,
.chapter-immersive .manifesto li {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.axis-card,
.trend-matrix article {
  position: relative;
  overflow: hidden;
  padding: 17px;
}

.axis-card-icon-svg {
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 138px;
  height: 138px;
  opacity: 0.26;
  pointer-events: none;
  z-index: 0;
}

.axis-card.has-icon::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(104, 22, 216, 0.08), rgba(4, 168, 255, 0.08));
  pointer-events: none;
  z-index: 0;
}

.axis-card.has-icon h4,
.axis-card.has-icon p {
  position: relative;
  z-index: 1;
}

.trend-matrix article {
  min-height: 132px;
  padding-right: 118px;
}

.trend-card-icon-svg {
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 132px;
  height: 132px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.trend-matrix article::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(104, 22, 216, 0.08), rgba(4, 168, 255, 0.1));
  pointer-events: none;
  z-index: 0;
}

.trend-matrix strong,
.trend-matrix p {
  position: relative;
  z-index: 1;
}

.numbered-insights {
  display: grid;
  gap: 16px;
  margin: 24px 0 30px;
}

.numbered-insight {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(7, 11, 32, 0.16);
}

.numbered-insight-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.numbered-insight-heading span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vision-violet), var(--vision-blue));
  font-weight: 900;
}

.numbered-insight-heading h4 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.18;
}

.numbered-insight-points {
  display: grid;
  gap: 12px;
}

.numbered-insight-point {
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid rgba(64, 221, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.55;
}

.numbered-insight-point strong {
  width: fit-content;
  padding: 4px 9px;
  color: var(--vision-cyan);
  border-radius: 999px;
  background: rgba(64, 221, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.numbered-insight-point p {
  margin: 0;
}


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

.impact-grid .axis-card {
  min-height: 138px;
  padding-right: 118px;
}

.axis-card h4,
.feature-panel h4 {
  margin: 0 0 8px;
  color: var(--vision-violet-dark);
  font-size: 19px;
}

.article-section {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 42px rgba(7, 11, 32, 0.14);
}

.article-section h4 {
  margin: 0;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.18;
}

.article-section p {
  margin: 0;
}

.article-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding: 12px 14px 12px 40px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.5;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--vision-cyan);
  box-shadow: 0 0 0 5px rgba(64, 221, 255, 0.12);
}

.chapter-light .article-section {
  gap: 16px;
  margin: 20px 0;
  padding: 24px;
  color: var(--vision-ink);
  border: 1px solid rgba(104, 22, 216, 0.12);
  border-left: 6px solid rgba(4, 168, 255, 0.7);
  background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 18px 46px rgba(16, 24, 39, 0.08);
}

.chapter-light .article-section:nth-of-type(even) {
  border-left-color: rgba(124, 58, 237, 0.75);
}

.chapter-light .article-section h4 {
  color: var(--vision-violet-dark);
}

.chapter-light .article-section p {
  color: var(--vision-ink);
  font-size: 17px;
  line-height: 1.68;
}

.chapter-light .article-list {
  gap: 12px;
  margin-top: 8px;
}

.chapter-light .article-list li {
  color: var(--vision-ink);
  border: 1px solid rgba(104, 22, 216, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(16, 24, 39, 0.06);
}

.chapter-light .article-list li::before {
  background: var(--vision-cyan);
  box-shadow: 0 0 0 6px rgba(55, 224, 255, 0.14);
}

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

.modal-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 22px;
  color: var(--vision-violet-dark);
  text-align: left;
  border: 1px solid rgba(104, 22, 216, 0.16);
  border-radius: 10px;
  background: #eef9ff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.modal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #40ddff, #1688f2);
}

.modal-card:nth-of-type(3n + 1) {
  background: #eef9ff;
  border-color: rgba(22, 136, 242, 0.22);
}

.modal-card:nth-of-type(3n + 1)::before {
  background: linear-gradient(180deg, #40ddff, #1688f2);
}

.modal-card:nth-of-type(3n + 2) {
  background: #f4efff;
  border-color: rgba(104, 22, 216, 0.22);
}

.modal-card:nth-of-type(3n + 2)::before {
  background: linear-gradient(180deg, #8b5cf6, #6816d8);
}

.modal-card:nth-of-type(3n) {
  background: #eefbf7;
  border-color: rgba(12, 148, 117, 0.22);
}

.modal-card:nth-of-type(3n)::before {
  background: linear-gradient(180deg, #2dd4bf, #0f9f8a);
}

.modal-card:hover,
.modal-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(64, 221, 255, 0.72);
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.14);
}

.modal-card span {
  position: relative;
  z-index: 1;
  color: var(--vision-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.modal-card strong {
  position: relative;
  z-index: 1;
  font-size: 26px;
  line-height: 1.12;
}

.modal-card-cta {
  position: relative;
  z-index: 1;
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 7px 11px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, #6816d8, #04a8ff);
  box-shadow: 0 10px 22px rgba(4, 168, 255, 0.18);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.modal-card-cta span {
  color: inherit;
  font-size: 17px;
  line-height: 0.8;
}

.text-modal .document-modal-panel {
  width: min(980px, 100%);
  overflow-y: auto;
}

.text-modal-body {
  display: grid;
  gap: 20px;
  max-height: calc(100vh - 190px);
  padding: 24px;
  overflow-y: auto;
  background: var(--vision-paper);
}

.text-modal-section {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--vision-line);
  border-radius: 10px;
  background: #ffffff;
}

.text-modal-section h5 {
  margin: 0;
  color: var(--vision-violet-dark);
  font-size: 20px;
  line-height: 1.2;
}

.text-modal-section p {
  margin: 0;
  color: var(--vision-muted);
  line-height: 1.62;
}

.text-modal-section-with-image {
  align-items: center;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  border-left: 6px solid rgba(4, 168, 255, 0.7);
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.text-modal-section-with-image:nth-child(even) {
  border-left-color: rgba(124, 58, 237, 0.72);
}

.text-modal-section-image {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(104, 22, 216, 0.12);
  border-radius: 10px;
  background: #ffffff;
}

.text-modal-section-image img {
  display: block;
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 7px;
}

.text-modal-section-copy {
  display: grid;
  gap: 12px;
}

.text-modal-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.text-modal-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  color: var(--vision-muted);
  border-radius: 8px;
  background: rgba(104, 22, 216, 0.06);
  line-height: 1.5;
}

.text-modal-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vision-violet), var(--vision-blue));
}

.chapter-strategic .axis-card h4,
.chapter-immersive .axis-card h4,
.chapter-immersive .trend-matrix strong {
  color: #ffffff;
}

.axis-card p,
.trend-matrix p,
.feature-panel p {
  margin: 0;
  color: var(--vision-muted);
}

.chapter-strategic .axis-card p,
.chapter-immersive .axis-card p,
.chapter-strategic .trend-matrix p,
.chapter-immersive .trend-matrix p {
  color: rgba(255, 255, 255, 0.86);
}

.chapter-strategic .axis-card,
.chapter-immersive .axis-card {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.chapter-strategic .axis-card-icon-svg,
.chapter-immersive .axis-card-icon-svg {
  opacity: 0.2;
}

.timeline {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.timeline span {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  color: #ffffff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--vision-violet), var(--vision-blue));
  font-weight: 800;
}

.timeline h4 {
  margin: 0 0 4px;
  color: var(--vision-violet-dark);
}

.timeline p {
  margin: 0;
  color: var(--vision-muted);
}

.feature-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  margin: 24px 0;
  padding: 18px;
  overflow: hidden;
}

.feature-panel img {
  width: 100%;
  min-height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

.trend-matrix strong {
  display: block;
  margin-bottom: 8px;
  color: var(--vision-violet-dark);
  font-size: 18px;
}

.manifesto {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style-position: inside;
}

.manifesto li {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--vision-violet-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
}

.manifesto li strong {
  font-size: 20px;
  line-height: 1.2;
}

.manifesto li span {
  color: var(--vision-muted);
  font-size: 16px;
  font-weight: 500;
}

.chapter-immersive .manifesto li {
  color: #ffffff;
}

.chapter-immersive .manifesto li span {
  color: rgba(255, 255, 255, 0.82);
}

blockquote {
  margin: 22px 0;
  padding: 20px;
  border-left: 4px solid var(--vision-cyan);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.12);
}

blockquote p {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.table-wrap {
  margin: 20px 0;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #ffffff;
}

.data-table th,
.data-table td {
  padding: 11px 12px;
  border: 1px solid var(--vision-line);
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: #ffffff;
  background: var(--vision-violet-dark);
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0;
}

.resource-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 18px;
  color: var(--vision-ink);
  border: 1px solid var(--vision-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.07);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.resource-modal-open {
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.resource-card:hover {
  border-color: rgba(4, 168, 255, 0.42);
  box-shadow: 0 18px 46px rgba(4, 168, 255, 0.13);
  transform: translateY(-2px);
}

.resource-card-icon-svg {
  width: 62px;
  height: 62px;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(104, 22, 216, 0.08), rgba(4, 168, 255, 0.1));
}

.resource-card strong,
.resource-card em {
  display: block;
}

.resource-card strong {
  color: var(--vision-violet-dark);
  font-size: 18px;
  line-height: 1.2;
}

.resource-card em {
  margin-top: 5px;
  color: var(--vision-muted);
  font-style: normal;
  line-height: 1.45;
}

.pdf-page-gallery {
  display: grid;
  gap: 18px;
}

.pdf-page-gallery figure {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--vision-line);
  border-radius: 10px;
  background: #ffffff;
}

.pdf-page-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.pdf-page-gallery figcaption {
  margin-top: 8px;
  color: var(--vision-muted);
  font-size: 13px;
}

.media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.media-actions a,
.media-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #ffffff;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(135deg, var(--vision-violet), var(--vision-blue));
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.video-gallery {
  display: grid;
  gap: 16px;
}

.video-gallery[hidden] {
  display: none;
}

.video-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--vision-line);
  border-radius: 10px;
  background: #ffffff;
}

.video-card h5 {
  margin: 0;
  color: var(--vision-violet-dark);
  font-size: 19px;
}

.video-card video {
  width: 100%;
  max-height: 72vh;
  border-radius: 8px;
  background: #101827;
}

.participant-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.participant-toggle {
  min-height: 86px;
  padding: 18px;
  color: var(--vision-violet-dark);
  border: 1px solid var(--vision-line);
  border-left: 6px solid var(--vision-blue);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(4, 168, 255, 0.08) 100%);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.participant-toggle:nth-child(2) {
  border-left-color: #7c3aed;
  background: linear-gradient(135deg, #ffffff 0%, rgba(124, 58, 237, 0.09) 100%);
}

.participant-toggle:hover,
.participant-toggle:focus-visible,
.participant-toggle.is-active {
  border-color: rgba(4, 168, 255, 0.45);
  box-shadow: 0 16px 36px rgba(4, 168, 255, 0.12);
  transform: translateY(-1px);
}

.participant-toggle:nth-child(2):hover,
.participant-toggle:nth-child(2):focus-visible,
.participant-toggle:nth-child(2).is-active {
  border-color: rgba(124, 58, 237, 0.42);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.13);
}

.participant-panel {
  display: grid;
  gap: 16px;
  max-height: 0;
  opacity: 0;
  padding: 18px;
  border: 1px solid var(--vision-line);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
}

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

.participant-panel.is-open {
  max-height: 5200px;
  opacity: 1;
  transform: translateY(0);
}

.participant-panel h5 {
  margin: 0;
  color: var(--vision-violet-dark);
  font-size: 25px;
  line-height: 1.15;
}

.participant-photo {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(104, 22, 216, 0.12);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 16px 36px rgba(16, 24, 39, 0.08);
}

.participant-photo img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f7fb;
}

.participant-photo figcaption {
  margin-top: 9px;
  color: var(--vision-muted);
  font-size: 13px;
  line-height: 1.35;
}

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

.participant-list article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(104, 22, 216, 0.06);
}

.participant-list strong {
  color: var(--vision-violet-dark);
  line-height: 1.25;
}

.participant-list ul {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  margin: 0;
  color: var(--vision-muted);
}

body.is-modal-open {
  overflow: hidden;
}

.document-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.video-modal {
  z-index: 80;
}

.document-modal.media-expanded .document-modal-panel {
  width: min(1120px, 100%);
}

.document-modal[hidden] {
  display: none;
}

.document-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 32, 0.62);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.document-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(840px, calc(100vh - 40px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(7, 11, 32, 0.34);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.document-modal.is-open .document-modal-backdrop,
.document-modal.is-open .document-modal-panel {
  opacity: 1;
}

.document-modal.is-open .document-modal-panel {
  transform: translateY(0) scale(1);
}

.document-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--vision-violet-dark), var(--vision-violet), var(--vision-blue));
}

.document-modal-kicker {
  margin: 0 0 6px;
  color: var(--vision-cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.document-modal-header h4 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
}

.document-modal-header p:not(.document-modal-kicker) {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.document-modal-close {
  display: inline-grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font: inherit;
}

.document-modal-body {
  padding: 18px;
  background: var(--vision-paper);
}

.document-resource-list {
  display: grid;
  align-content: start;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-resource-card {
  padding: 16px;
  border: 1px solid var(--vision-line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.document-resource-card strong {
  display: block;
  color: var(--vision-violet-dark);
  font-size: 17px;
  line-height: 1.2;
}

.document-resource-card p {
  margin: 7px 0 0;
  color: var(--vision-muted);
  line-height: 1.45;
}

.document-resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.document-resource-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.document-resource-actions a {
  color: #ffffff;
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, var(--vision-violet), var(--vision-blue));
}

.load-error {
  margin: 30px;
  padding: 22px;
  color: #7a1e1e;
  background: #ffffff;
  border-left: 4px solid #bf3030;
  border-radius: 8px;
}

@media (min-width: 720px) {
  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .impact-grid .axis-card {
    grid-column: span 2;
  }

  .impact-grid .axis-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .impact-grid .axis-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .feature-panel {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

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

  .resource-card {
    grid-template-columns: 1fr;
    align-content: start;
  }
}

@media (min-width: 1024px) {
  .site-shell {
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  }

  .sidebar {
    position: sticky;
    top: 0;
    grid-column: 1;
    height: 100vh;
    transform: none;
    visibility: visible;
    box-shadow: none;
  }

  .main-content {
    grid-column: 2;
  }

  .mobile-menu-toggle,
  .sidebar-close,
  .overlay {
    display: none;
  }

  .hero {
    padding-inline: min(6vw, 78px);
  }

  .chapter {
    padding-inline: min(6vw, 72px);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 560px;
    padding-top: 84px;
  }

  .hero::before {
    top: 28%;
    right: -34vw;
    width: 92vw;
    opacity: 0.07;
  }

  .hero-logo {
    width: min(150px, 42vw);
    margin-bottom: 22px;
    padding: 9px;
    border-radius: 13px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .chapter h2 {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .document-modal {
    padding: 10px;
  }

  .document-modal-panel {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .document-modal-body {
    min-height: 0;
  }

  .document-modal-header {
    padding: 22px 20px;
  }

  .document-modal-header h4 {
    font-size: 29px;
  }

  .document-resource-list {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .participant-selector {
    grid-template-columns: 1fr;
  }

  .participant-photo {
    padding: 8px;
  }

  .participant-photo img {
    max-height: 260px;
  }

  .modal-card-grid {
    grid-template-columns: 1fr;
  }

  .modal-card {
    min-height: 130px;
  }

  .text-modal-body {
    max-height: none;
    padding: 18px;
    overflow: visible;
  }

  .text-modal-section-with-image {
    grid-template-columns: 1fr;
  }

  .text-modal-section-image img {
    max-height: 220px;
  }
}

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