:root {
  --ink: #102a43;
  --ink-deep: #0a1d2f;
  --paper: #f5f1e8;
  --paper-2: #ebe7dd;
  --white: #fffdf8;
  --mint: #b9f5d8;
  --teal: #4fd1c5;
  --blue: #3f7cac;
  --muted: #637786;
  --line: rgba(16, 42, 67, .16);
  --line-light: rgba(255, 255, 255, .16);
  --radius: 4px;
  --container: 1240px;
  --shadow: 0 30px 80px rgba(7, 26, 42, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.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;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  background: var(--mint);
  color: var(--ink-deep);
  padding: 9px 14px;
  border-radius: 3px;
  font-weight: 700;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--mint);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 29, 47, .94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.15;
}

.brand em {
  display: block;
  color: var(--mint);
  font-size: 8px;
  font-style: normal;
  letter-spacing: .28em;
}

.brand-mark {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.brand-mark circle {
  fill: var(--mint);
  stroke: var(--mint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.34);
  font-size: 11px;
  font-weight: 700;
}

.language-switch button {
  appearance: none;
  border: 0;
  background: none;
  color: rgba(255,255,255,.44);
  padding: 2px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.language-switch button.is-active {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.button-small {
  min-height: 38px;
  border-color: rgba(255, 255, 255, .35);
  color: var(--white);
}

.button-small:hover {
  background: var(--white);
  color: var(--ink-deep);
}

.button-primary {
  gap: 24px;
  background: var(--mint);
  color: var(--ink-deep);
  box-shadow: 0 12px 30px rgba(89, 213, 174, .14);
}

.button-primary:hover {
  background: #d0ffe9;
}

.button-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.mobile-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
  padding: 165px 0 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  top: -240px;
  right: -170px;
  background: var(--mint);
  opacity: .08;
  filter: blur(2px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 86%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(185, 245, 216, .28);
  border-radius: 100px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(185, 245, 216, .1);
}

.edition {
  margin: 36px 0 12px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}

.hero h1 span {
  color: var(--mint);
  font-style: italic;
}

.hero h1 sup {
  vertical-align: top;
  color: rgba(255,255,255,.66);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .04em;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #b7c3cd;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 37px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease, gap .2s ease;
}

.text-link:hover {
  gap: 19px;
  color: var(--mint);
}

.text-link-dark {
  color: var(--ink);
}

.text-link-light {
  color: var(--mint);
}

.consent-note {
  margin: 19px 0 0;
  color: rgba(255,255,255,.43);
  font-size: 11px;
}

.report-card {
  position: relative;
  padding: 22px;
  background: #f8f5ed;
  color: var(--ink-deep);
  box-shadow: 0 44px 100px rgba(0,0,0,.3);
  transform: rotate(1.1deg);
}

.report-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(185,245,216,.3);
}

.report-card-top,
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(16,42,67,.18);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.map-stage {
  position: relative;
  height: 350px;
  margin-top: 10px;
  overflow: hidden;
  background: #edf0e9;
}

.region-map {
  position: absolute;
  width: 115%;
  left: -10%;
  top: 14px;
}

.map-lines {
  fill: none;
  stroke: var(--ink);
  stroke-width: .7;
  opacity: .09;
}

.countries {
  fill: url(#mapFill);
  stroke: var(--ink-deep);
  stroke-width: 1.2;
}

.countries path {
  transition: opacity .2s ease;
}

.countries:hover path:not(:hover) {
  opacity: .55;
}

.map-points {
  fill: var(--ink-deep);
  stroke: var(--mint);
  stroke-width: 3;
}

.map-label {
  position: absolute;
  padding: 3px 5px;
  background: rgba(248,245,237,.77);
  color: var(--ink);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
}

.label-kz { left: 47%; top: 28%; }
.label-uz { left: 48%; top: 59%; }
.label-kg { left: 72%; top: 50%; }
.label-tj { left: 65%; top: 71%; }
.label-tm { left: 30%; top: 70%; }

.report-metric {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.report-metric span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.report-metric strong {
  display: block;
  max-width: 260px;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.15;
}

.signal {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 40px;
}

.signal i {
  display: block;
  width: 8px;
  background: var(--ink);
}

.signal i:nth-child(1) { height: 20%; opacity: .25; }
.signal i:nth-child(2) { height: 40%; opacity: .42; }
.signal i:nth-child(3) { height: 58%; opacity: .6; }
.signal i:nth-child(4) { height: 76%; opacity: .8; }
.signal i:nth-child(5) { height: 100%; background: var(--teal); }

.figure-caption {
  display: flex;
  justify-content: space-between;
  margin: 28px 0 0;
  color: rgba(255,255,255,.46);
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 95px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 110px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.trust-strip div:not(:first-child) {
  padding-left: 28px;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: 33px;
  font-weight: 400;
}

.trust-strip span {
  max-width: 110px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 128px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.55fr .65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.method-sticky h2,
.value-copy h2,
.privacy-intro h2,
.about-copy h2,
.faq-layout h2,
.participate-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.section-heading h2 em {
  color: var(--blue);
  font-weight: 400;
}

.section-heading > p,
.method-sticky > p:not(.section-index),
.value-copy > p:not(.section-index),
.faq-layout > div > p:not(.section-index) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-index {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scope-card {
  position: relative;
  min-height: 350px;
  padding: 31px 28px 27px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.16);
  transition: background .25s ease, transform .25s ease;
}

.scope-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.scope-card-wide {
  grid-column: span 2;
}

.card-number {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.scope-card h3 {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 70px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
}

.scope-card p {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 23px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.mini-chart {
  position: absolute;
  top: 75px;
  left: 28px;
  right: 28px;
  height: 110px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}

.mini-chart i {
  flex: 1;
  max-width: 48px;
  height: var(--height);
  background: var(--ink);
  opacity: calc(.25 + var(--height) / 180%);
}

.mini-chart i:last-child {
  background: var(--teal);
  opacity: 1;
}

.card-icon {
  position: absolute;
  top: 82px;
  left: 28px;
  width: 100px;
  height: 90px;
}

.icon-workflow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-workflow::before,
.icon-workflow::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--ink);
}

.icon-workflow i {
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.icon-workflow i:nth-child(2) {
  background: var(--mint);
}

.icon-target {
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.icon-target::before,
.icon-target::after,
.icon-target i {
  content: "";
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 50%;
  inset: 17px;
}

.icon-target::after {
  inset: 34px;
  background: var(--mint);
}

.icon-target i {
  inset: -12px 48px;
  border-radius: 0;
  border-block: 0;
}

.icon-barriers {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.icon-barriers i {
  display: block;
  width: 21px;
  border-top: 3px solid var(--ink);
  background: rgba(16,42,67,.09);
}

.icon-barriers i:nth-child(1) { height: 32px; }
.icon-barriers i:nth-child(2) { height: 56px; }
.icon-barriers i:nth-child(3) { height: 78px; border-color: var(--teal); }

.trend-line {
  position: absolute;
  top: 74px;
  left: 28px;
  right: 28px;
  height: 105px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 25%;
}

.trend-line svg {
  width: 100%;
  height: 100%;
  fill: var(--mint);
  stroke: var(--ink);
  stroke-width: 2;
}

.trend-line path {
  fill: none;
}

.methodology-section {
  background: var(--white);
}

.method-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
}

.method-sticky {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-sticky > p:not(.section-index) {
  max-width: 460px;
  margin: 28px 0 31px;
}

.method-steps {
  border-top: 1px solid var(--line);
}

.method-step {
  min-height: 290px;
  padding: 38px 0 44px;
  border-bottom: 1px solid var(--line);
}

.step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.method-step h3 {
  margin: 38px 0 12px;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.method-step > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.tag-list span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.question-preview {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 7px;
  margin-top: 27px;
}

.question-preview span {
  height: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, var(--mint) 0 55%, transparent 55%);
}

.question-preview span:nth-child(2) {
  background: linear-gradient(90deg, var(--teal) 0 32%, transparent 32%);
}

.question-preview span:nth-child(3) {
  background: linear-gradient(90deg, var(--ink) 0 72%, transparent 72%);
}

.data-flow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.data-flow span {
  padding: 9px 12px;
  border: 1px solid var(--line);
}

.data-flow i {
  width: 38px;
  height: 1px;
  background: var(--line);
}

.method-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 25px;
  padding: 15px 17px;
  border-left: 2px solid var(--teal);
  background: rgba(79,209,197,.08);
}

.method-note > span {
  color: var(--blue);
  font-weight: 800;
}

.method-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.geography-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.geography-section::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -260px;
  top: -310px;
  border: 1px solid rgba(185,245,216,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(185,245,216,.025), 0 0 0 160px rgba(185,245,216,.02);
}

.section-heading.light h2 em {
  color: var(--mint);
}

.section-heading.light > p {
  color: rgba(255,255,255,.56);
}

.country-list {
  border-top: 1px solid var(--line-light);
}

.country-list > div {
  display: grid;
  grid-template-columns: 90px 1fr 70px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line-light);
  transition: background .2s ease, padding .2s ease;
}

.country-list > div:hover {
  padding-inline: 18px;
  background: rgba(185,245,216,.07);
}

.country-list span {
  color: rgba(255,255,255,.34);
  font-size: 11px;
}

.country-list strong {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
}

.country-list em {
  color: var(--mint);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .2em;
}

.value-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.value-copy > p:not(.section-index) {
  max-width: 500px;
  margin: 28px 0;
}

.check-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.check-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.benchmark-preview {
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.benchmark-title {
  margin-top: 52px;
}

.benchmark-title span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.benchmark-title strong {
  display: block;
  margin-top: 3px;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.benchmark-scale {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 55px;
}

.scale-label {
  color: var(--muted);
  font-size: 9px;
}

.benchmark-scale i {
  display: block;
  height: 67px;
  border: 1px solid var(--line);
  background: rgba(16,42,67,.05);
}

.benchmark-scale i:nth-of-type(1) { background: #e6e8e5; }
.benchmark-scale i:nth-of-type(2) { background: #d5e9df; }
.benchmark-scale i:nth-of-type(3) { background: #b9e8d4; }
.benchmark-scale i:nth-of-type(4) { background: #87d9c6; }
.benchmark-scale i:nth-of-type(5) { background: #4fd1c5; }
.benchmark-scale i:nth-of-type(6) { background: var(--ink); }

.benchmark-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.preview-disclaimer {
  display: flex;
  gap: 20px;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.preview-disclaimer span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.preview-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.privacy-section {
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.privacy-section::after {
  content: "PRIVATE / AGGREGATED / VOLUNTARY";
  position: absolute;
  left: 1%;
  bottom: -28px;
  color: rgba(255,255,255,.025);
  font-size: 7.8vw;
  font-weight: 800;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.privacy-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 110px;
}

.privacy-intro .section-index {
  color: var(--mint);
}

.lock-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 46px 0;
  border: 1px solid rgba(185,245,216,.3);
  border-radius: 50%;
}

.lock-mark svg {
  width: 39px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.6;
}

.privacy-intro h2 {
  max-width: 530px;
}

.privacy-lead {
  margin: 0 0 55px;
  color: #c2ced6;
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.45;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  margin-bottom: 36px;
}

.privacy-grid article {
  min-height: 210px;
  padding: 25px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.privacy-grid article > span {
  color: var(--mint);
  font-size: 9px;
}

.privacy-grid h3 {
  margin: 39px 0 8px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.privacy-grid p {
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.about-section {
  background: var(--paper-2);
}

.about-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 480px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(16,42,67,.07);
}

.about-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(16,42,67,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,42,67,.04) 1px, transparent 1px);
  background-size: 45px 45px;
}

.about-mark {
  width: 92px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.about-mark circle {
  fill: var(--mint);
}

.about-brand p {
  margin: 22px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.35;
}

.about-brand strong {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .3em;
}

.about-copy {
  padding: 74px 78px;
}

.about-copy h2 {
  font-size: clamp(40px, 4vw, 60px);
}

.about-copy > p:not(.section-index) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 37px;
}

.principles span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 120px;
}

.faq-layout h2 {
  font-size: clamp(44px, 4.4vw, 64px);
}

.faq-layout > div > p:not(.section-index) {
  max-width: 360px;
  margin-top: 25px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding-right: 12px;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, serif;
  font-size: 21px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.accordion summary i::before,
.accordion summary i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform .2s ease;
}

.accordion summary i::after {
  transform: rotate(90deg);
}

.accordion details[open] summary i::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 690px;
  margin: -6px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

.participate-section {
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.participate-orbit {
  position: absolute;
  width: 700px;
  height: 700px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(185,245,216,.14);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow:
    0 0 0 80px rgba(185,245,216,.022),
    0 0 0 160px rgba(185,245,216,.016),
    0 0 0 240px rgba(185,245,216,.01);
}

.participate-inner {
  position: relative;
  z-index: 1;
}

.participate-inner .section-index {
  color: var(--mint);
}

.participate-inner h2 {
  font-size: clamp(50px, 6.2vw, 88px);
}

.participate-inner > p:not(.section-index):not(.survey-status) {
  max-width: 590px;
  margin: 30px auto;
  color: rgba(255,255,255,.62);
}

.participate-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 28px;
  color: rgba(255,255,255,.46);
  font-size: 10px;
  text-transform: uppercase;
}

.participate-meta span {
  position: relative;
}

.participate-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  right: -17px;
  top: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.survey-status {
  max-width: 520px;
  margin: 18px auto 0;
  padding: 10px 13px;
  border: 1px solid rgba(185,245,216,.25);
  border-radius: 3px;
  color: var(--mint);
  font-size: 12px;
}

.site-footer {
  background: #071725;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 76px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-top > div > p {
  max-width: 340px;
  margin: 0;
  color: rgba(255,255,255,.43);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links > div > span {
  margin-bottom: 9px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.28);
  font-size: 8px;
  letter-spacing: .1em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.8,.3,1);
}

.reveal-delay {
  transition-delay: .12s;
}

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

.capture-mode .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.subpage {
  background: var(--white);
}

.subpage-header {
  background: var(--ink-deep);
  color: var(--white);
}

.subpage-back {
  color: rgba(255,255,255,.66);
  font-size: 12px;
  transition: color .2s ease;
}

.subpage-back:hover {
  color: var(--mint);
}

.document-hero {
  padding: 110px 0 80px;
  background: var(--ink-deep);
  color: var(--white);
}

.document-kicker {
  margin: 0 0 35px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.document-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .97;
}

.document-hero h1 em {
  color: var(--mint);
  font-weight: 400;
}

.document-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
  margin-top: 75px;
  padding-top: 35px;
  border-top: 1px solid var(--line-light);
}

.document-intro > p {
  max-width: 560px;
  margin: 0;
  color: #bdcad2;
  font-size: 18px;
}

.document-intro dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 35px;
  margin: 0;
}

.document-intro dl div {
  padding-top: 10px;
  border-top: 1px solid var(--line-light);
}

.document-intro dt {
  color: rgba(255,255,255,.39);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.document-intro dd {
  margin: 5px 0 0;
  font-size: 12px;
}

.document-body {
  padding: 90px 0 120px;
}

.document-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 100px;
  justify-content: center;
}

.document-toc {
  position: sticky;
  top: 40px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.document-toc p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.document-toc a {
  color: var(--muted);
  font-size: 11px;
  transition: color .2s ease;
}

.document-toc a:hover {
  color: var(--ink);
}

.document-content section {
  padding: 0 0 70px;
  margin: 0 0 70px;
  border-bottom: 1px solid var(--line);
}

.document-content section:last-child {
  border-bottom: 0;
}

.document-number {
  display: block;
  margin-bottom: 17px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.document-content h2 {
  margin: 0 0 25px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.document-content p {
  color: #465f70;
  font-size: 16px;
  line-height: 1.8;
}

.document-content ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.document-content li {
  position: relative;
  padding: 13px 0 13px 29px;
  border-bottom: 1px solid var(--line);
  color: #465f70;
}

.document-content li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.document-callout {
  margin: 30px 0;
  padding: 25px 28px;
  border-left: 3px solid var(--teal);
  background: rgba(79,209,197,.08);
}

.document-callout strong {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.document-callout p {
  margin: 8px 0 0;
  font-size: 14px;
}

.maturity-table {
  margin: 35px 0;
  border-top: 1px solid var(--line);
}

.maturity-table > div {
  display: grid;
  grid-template-columns: 40px 155px 1fr;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}

.maturity-table span {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 20px;
}

.maturity-table strong {
  font-size: 12px;
  text-transform: uppercase;
}

.maturity-table p {
  margin: 0;
  font-size: 13px;
}

.document-footer {
  background: var(--ink-deep);
  color: var(--white);
}

.document-footer .container {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-size: 10px;
}

.document-footer a {
  color: var(--mint);
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .hero-layout {
    gap: 40px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .map-stage {
    height: 300px;
  }

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

  .method-layout,
  .privacy-layout {
    gap: 60px;
  }

  .value-layout,
  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    height: 68px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 90px 30px 40px;
    background: var(--ink-deep);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 34px;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(56px, 11vw, 84px);
  }

  .hero-visual {
    max-width: 620px;
    margin-inline: auto;
  }

  .trust-strip {
    margin-top: 80px;
  }

  .trust-strip div {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 20px !important;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .method-layout,
  .value-layout,
  .privacy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .method-sticky {
    position: static;
  }

  .value-layout {
    gap: 65px;
  }

  .privacy-layout {
    gap: 60px;
  }

  .lock-mark {
    margin: 30px 0;
  }

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

  .about-brand {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .document-intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .document-toc {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .document-toc p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15px;
  }

  .brand {
    font-size: 9px;
  }

  .brand em {
    font-size: 7px;
  }

  .language-switch {
    margin-right: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .edition {
    margin-top: 27px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 69px);
  }

  .hero h1 sup {
    font-size: 12px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .report-card {
    padding: 14px;
    transform: none;
  }

  .report-card::before {
    display: none;
  }

  .map-stage {
    height: 240px;
  }

  .region-map {
    width: 135%;
    left: -19%;
  }

  .map-label {
    font-size: 5px;
  }

  .figure-caption {
    margin-top: 18px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 64px;
  }

  .trust-strip div {
    min-height: 106px;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip strong {
    font-size: 26px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .method-sticky h2,
  .value-copy h2,
  .privacy-intro h2,
  .faq-layout h2 {
    font-size: 42px;
  }

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

  .scope-card-wide {
    grid-column: auto;
  }

  .scope-card {
    min-height: 330px;
  }

  .method-layout,
  .privacy-layout,
  .faq-layout {
    gap: 50px;
  }

  .method-step {
    min-height: 270px;
  }

  .country-list > div {
    grid-template-columns: 40px 1fr 38px;
    min-height: 78px;
  }

  .country-list strong {
    font-size: 25px;
  }

  .benchmark-preview {
    padding: 25px 19px;
  }

  .benchmark-title strong {
    font-size: 31px;
  }

  .benchmark-scale {
    gap: 3px;
    margin-top: 38px;
  }

  .benchmark-scale i {
    height: 54px;
  }

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

  .privacy-grid article {
    min-height: 180px;
  }

  .privacy-lead {
    font-size: 22px;
  }

  .about-copy {
    padding: 48px 24px;
  }

  .about-copy h2 {
    font-size: 40px;
  }

  .about-brand {
    min-height: 220px;
  }

  .faq-layout {
    gap: 40px;
  }

  .accordion summary {
    min-height: 79px;
    font-size: 18px;
  }

  .participate-section {
    min-height: 660px;
  }

  .participate-inner h2 {
    font-size: 49px;
  }

  .participate-meta {
    align-items: center;
    flex-direction: column;
    gap: 7px;
  }

  .participate-meta span::after {
    display: none;
  }

  .footer-top {
    padding-block: 60px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    display: block;
    left: 16px;
    right: 16px;
    bottom: 14px;
    padding: 13px 16px;
    border: 1px solid rgba(16,42,67,.15);
    border-radius: 4px;
    background: var(--mint);
    color: var(--ink-deep);
    box-shadow: 0 12px 40px rgba(7,23,37,.2);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
  }

  .subpage-header .header-inner {
    height: 72px;
  }

  .subpage-back {
    max-width: 110px;
    text-align: right;
    font-size: 9px;
    line-height: 1.25;
  }

  .document-hero {
    padding: 75px 0 60px;
  }

  .document-hero h1 {
    font-size: 51px;
  }

  .document-intro {
    margin-top: 50px;
  }

  .document-intro dl {
    grid-template-columns: 1fr;
  }

  .document-body {
    padding: 60px 0 80px;
  }

  .document-toc {
    grid-template-columns: 1fr;
  }

  .document-content section {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .document-content h2 {
    font-size: 36px;
  }

  .maturity-table > div {
    grid-template-columns: 32px 1fr;
    padding: 12px 0;
  }

  .maturity-table p {
    grid-column: 2;
  }

  .document-footer .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  * {
    print-color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    width: 210mm;
    background: var(--paper);
    font-size: 9.5pt;
  }

  .site-header,
  .skip-link,
  .page-progress,
  .mobile-cta,
  .survey-status {
    display: none !important;
  }

  .container {
    width: auto;
    margin-inline: 13mm;
  }

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

  .hero {
    min-height: 297mm;
    padding: 22mm 0 10mm;
    break-after: page;
  }

  .hero::before {
    width: 100mm;
    height: 100mm;
  }

  .hero-grid {
    background-size: 18mm 18mm;
  }

  .hero-layout {
    grid-template-columns: 1fr .8fr;
    gap: 10mm;
    align-items: center;
  }

  .eyebrow {
    padding: 1.5mm 2.5mm;
    font-size: 6pt;
  }

  .edition {
    margin: 10mm 0 3mm;
    font-size: 7pt;
  }

  .hero h1 {
    font-size: 39pt;
    line-height: .98;
  }

  .hero h1 sup {
    font-size: 9pt;
  }

  .hero-lead {
    margin-top: 7mm;
    font-size: 11pt;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 8mm;
  }

  .hero-actions .text-link {
    display: none;
  }

  .button-primary {
    min-height: 12mm;
    padding-inline: 5mm;
    box-shadow: none;
  }

  .consent-note {
    font-size: 6.5pt;
  }

  .report-card {
    padding: 4mm;
    box-shadow: 0 8mm 18mm rgba(0,0,0,.2);
    transform: none;
  }

  .report-card::before {
    inset: 4mm -3mm -3mm 4mm;
  }

  .map-stage {
    height: 82mm;
  }

  .report-metric strong {
    font-size: 12pt;
  }

  .figure-caption {
    margin-top: 4mm;
    font-size: 5.5pt;
  }

  .trust-strip {
    margin-top: 20mm;
  }

  .trust-strip div {
    min-height: 27mm;
    padding: 4mm !important;
  }

  .trust-strip strong {
    font-size: 21pt;
  }

  .trust-strip span {
    font-size: 6pt;
  }

  .section {
    padding: 16mm 0;
    break-before: page;
  }

  .section-heading {
    grid-template-columns: 1.35fr .65fr;
    gap: 12mm;
    margin-bottom: 10mm;
  }

  .section-heading h2,
  .method-sticky h2,
  .value-copy h2,
  .privacy-intro h2,
  .about-copy h2,
  .faq-layout h2,
  .participate-inner h2 {
    font-size: 30pt;
  }

  .section-heading > p,
  .method-sticky > p:not(.section-index),
  .value-copy > p:not(.section-index),
  .faq-layout > div > p:not(.section-index) {
    font-size: 9pt;
  }

  .section-index {
    margin-bottom: 5mm;
    font-size: 6pt;
  }

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

  .scope-card {
    min-height: 47mm;
    padding: 6mm;
    break-inside: avoid;
  }

  .scope-card-wide {
    grid-column: auto;
  }

  .scope-card:last-child {
    grid-column: span 2;
  }

  .scope-card h3 {
    left: 6mm;
    right: 6mm;
    bottom: 13mm;
    font-size: 14pt;
  }

  .scope-card p {
    left: 6mm;
    right: 6mm;
    bottom: 3.5mm;
    font-size: 6.5pt;
  }

  .mini-chart,
  .trend-line {
    top: 13mm;
    left: 6mm;
    right: 6mm;
    height: 14mm;
  }

  .card-icon {
    top: 13mm;
    left: 6mm;
    transform: scale(.55);
    transform-origin: top left;
  }

  .method-layout {
    display: block;
  }

  .method-sticky {
    position: static;
    margin-bottom: 10mm;
  }

  .method-sticky > p:not(.section-index) {
    margin: 6mm 0;
  }

  .method-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid var(--line);
  }

  .method-step {
    min-height: 88mm;
    padding: 7mm;
    border-right: 1px solid var(--line);
    break-inside: avoid;
  }

  .method-step h3 {
    margin: 8mm 0 3mm;
    font-size: 18pt;
  }

  .method-step > p {
    font-size: 8pt;
  }

  .geography-section {
    min-height: 297mm;
  }

  .country-list > div {
    min-height: 25mm;
  }

  .country-list strong {
    font-size: 23pt;
  }

  .value-layout {
    min-height: 250mm;
    grid-template-columns: .82fr 1.18fr;
    gap: 12mm;
  }

  .check-list li {
    padding-block: 4mm;
    font-size: 8pt;
  }

  .benchmark-preview {
    padding: 8mm;
    box-shadow: 0 8mm 18mm rgba(16,42,67,.1);
  }

  .benchmark-title {
    margin-top: 12mm;
  }

  .benchmark-title strong {
    font-size: 25pt;
  }

  .benchmark-scale {
    margin-top: 13mm;
  }

  .benchmark-scale i {
    height: 20mm;
  }

  .privacy-section {
    min-height: 297mm;
  }

  .privacy-layout {
    grid-template-columns: .75fr 1.25fr;
    gap: 12mm;
  }

  .lock-mark {
    width: 22mm;
    height: 22mm;
    margin: 10mm 0;
  }

  .privacy-lead {
    margin-bottom: 12mm;
    font-size: 16pt;
  }

  .privacy-grid article {
    min-height: 55mm;
    padding: 6mm;
    break-inside: avoid;
  }

  .privacy-grid h3 {
    margin-top: 9mm;
    font-size: 13pt;
  }

  .privacy-grid p {
    font-size: 7pt;
  }

  .about-section {
    min-height: 297mm;
    display: flex;
    align-items: center;
  }

  .about-card {
    min-height: 155mm;
    grid-template-columns: .72fr 1.28fr;
  }

  .about-brand {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .about-copy {
    padding: 17mm;
  }

  .about-copy h2 {
    font-size: 29pt;
  }

  .faq-section {
    min-height: 297mm;
  }

  .faq-layout {
    grid-template-columns: .65fr 1.35fr;
    gap: 14mm;
  }

  .accordion details {
    break-inside: avoid;
  }

  .accordion summary {
    min-height: 20mm;
    font-size: 14pt;
  }

  .accordion summary i {
    display: none;
  }

  .accordion details > p {
    display: block !important;
    margin: -1mm 0 6mm;
    font-size: 8pt;
  }

  .participate-section {
    min-height: 297mm;
  }

  .participate-inner h2 {
    font-size: 42pt;
  }

  .participate-meta {
    font-size: 6pt;
  }

  .site-footer {
    break-before: page;
    min-height: 297mm;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding-block: 20mm;
  }
}
