:root {
  --ink: #10222d;
  --ink-soft: #28404a;
  --charcoal: #14191c;
  --blue: #2047b6;
  --blue-deep: #17368e;
  --blue-soft: #dfe8ff;
  --green: #168866;
  --green-bright: #43c89c;
  --green-soft: #dff4ed;
  --gold: #f4d34f;
  --gold-deep: #a98200;
  --coral: #e0614e;
  --paper: #ffffff;
  --surface: #f2f5f3;
  --surface-blue: #edf2ff;
  --muted: #62737a;
  --line: #d8e0df;
  --white: #ffffff;
  --header-height: 76px;
  --shell: 1240px;
  --shadow-sm: 0 10px 28px rgb(12 28 36 / 10%);
  --shadow-lg: 0 28px 70px rgb(12 28 36 / 17%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.language-dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 16px;
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 20px;
}

a {
  color: inherit;
}

code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

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

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

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading.wide {
  max-width: 880px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.inverse,
.section-heading.inverse > p:not(.eyebrow) {
  color: var(--white);
}

.section-heading.inverse > p:not(.eyebrow) {
  color: rgb(255 255 255 / 72%);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

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

.button-ghost-light {
  border-color: rgb(255 255 255 / 52%);
  color: var(--white);
  background: rgb(10 19 24 / 36%);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 12%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: var(--white);
  transition:
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  color: var(--ink);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 8px 28px rgb(16 34 45 / 8%);
  backdrop-filter: blur(14px);
}

.header-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 208px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}

.brand > span {
  display: grid;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 9px;
  font-weight: 700;
  opacity: 0.66;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-inline: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  border-color: var(--blue);
  color: var(--blue);
}

.header-cta svg {
  width: 15px;
  height: 15px;
}

.language-toggle {
  min-width: 68px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 4px;
  color: inherit;
  background: transparent;
  font-size: 10px;
  font-weight: 850;
}

.site-header.is-scrolled .language-toggle,
.site-header.is-open .language-toggle {
  border-color: #b8c6ca;
  background: var(--white);
}

.language-toggle > svg:first-child {
  width: 17px;
  height: 17px;
}

.language-toggle-chevron {
  width: 13px;
  height: 13px;
  opacity: 0.7;
  transition: transform 180ms ease;
}

.language-toggle[aria-expanded="true"] .language-toggle-chevron {
  transform: rotate(180deg);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.mobile-nav {
  position: fixed;
  z-index: 99;
  top: var(--header-height);
  right: 0;
  left: 0;
  max-height: calc(100svh - var(--header-height));
  overflow-y: auto;
  padding: 14px 24px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 680px;
  height: calc(100svh - 36px);
  max-height: 940px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgb(7 19 26 / 39%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgb(7 19 26 / 66%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--shell));
  margin: calc(var(--header-height) + 30px) auto 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-bright);
}

.hero h1 {
  max-width: 730px;
  margin-bottom: 16px;
  font-size: 88px;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgb(255 255 255 / 82%);
  font-size: 17px;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 25%);
  max-width: 610px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgb(255 255 255 / 76%);
  font-size: 11px;
  font-weight: 700;
}

.hero-meta svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgb(255 255 255 / 72%);
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  animation: cue-move 1.8s ease-in-out infinite;
}

.metrics-section {
  padding-block: 108px;
  background: var(--paper);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-width: 0;
  padding: 30px 24px 30px 0;
}

.metric + .metric {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.metric span {
  display: block;
  max-width: 220px;
  color: var(--muted);
  font-size: 12px;
}

.data-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.data-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue);
}

.origin-section {
  padding-block: 116px;
  background: var(--surface);
}

.origin-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 88px;
}

.origin-copy {
  max-width: 620px;
}

.origin-lead {
  color: var(--ink-soft);
  font-size: 19px;
}

.origin-copy > p:not(.eyebrow, .origin-lead) {
  color: var(--muted);
}

.origin-copy blockquote {
  margin: 34px 0 0;
  padding: 24px 26px;
  border-left: 4px solid var(--gold);
  color: var(--white);
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.origin-copy cite {
  display: block;
  margin-top: 7px;
  color: rgb(255 255 255 / 61%);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.origin-map {
  padding: 34px;
  border: 1px solid #bfcbd6;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.origin-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--gold);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.origin-map ol {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.origin-map li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 16px 0;
}

.origin-map li + li {
  border-top: 1px solid var(--line);
}

.origin-map li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}

.origin-map li div {
  display: grid;
}

.origin-map li strong {
  font-size: 15px;
}

.origin-map li small {
  color: var(--muted);
  font-size: 11px;
}

.origin-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.origin-route svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--green);
}

.cooperation-section {
  padding-block: 116px;
}

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

.country-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgb(16 34 45 / 6%);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.country-brazil {
  border-top-color: var(--green);
}

.country-bolivia {
  border-top-color: var(--coral);
}

.country-congo {
  border-top-color: var(--gold-deep);
}

.country-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.country-topline img {
  width: 56px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgb(16 34 45 / 10%);
  box-shadow: 0 3px 9px rgb(16 34 45 / 10%);
}

.country-topline span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.country-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.country-card > p {
  color: var(--ink-soft);
  font-size: 14px;
}

.country-card ul {
  display: grid;
  gap: 9px;
  margin: 8px 0 30px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.country-card li {
  position: relative;
  padding-left: 18px;
}

.country-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
}

.country-card footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.country-card footer strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.country-card footer span {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.architecture-section {
  padding-block: 116px;
  color: var(--white);
  background: var(--ink);
}

.architecture-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 76px;
}

.architecture-feature figure {
  margin: 0;
}

.architecture-feature figure img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.architecture-feature figcaption {
  margin-top: 9px;
  color: rgb(255 255 255 / 46%);
  font-size: 9px;
  text-transform: uppercase;
}

.architecture-feature .eyebrow,
.value-chain .chain-heading > i {
  color: var(--gold);
}

.architecture-feature h2 {
  color: var(--white);
}

.architecture-feature > div > p:not(.eyebrow) {
  color: rgb(255 255 255 / 70%);
}

.architecture-facts {
  display: grid;
  margin: 32px 0 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.architecture-facts div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.architecture-facts dt {
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 800;
}

.architecture-facts dd {
  color: rgb(255 255 255 / 61%);
  font-size: 11px;
  text-align: right;
}

.value-chains {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 74px;
}

.value-chain {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: #182c36;
}

.chain-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.chain-heading > svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.chain-heading span {
  color: var(--green-bright);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.chain-heading h3 {
  margin: 4px 0 0;
  font-size: 22px;
}

.value-chain ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.value-chain li {
  position: relative;
  min-width: 0;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 5px;
  text-align: center;
}

.value-chain li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -17px;
  width: 20px;
  height: 2px;
  background: var(--gold);
  animation: chain-pulse 2.2s ease-in-out infinite;
}

.value-chain li strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.value-chain li svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.value-chain li span {
  color: rgb(255 255 255 / 72%);
  font-size: 10px;
}

.pillars-section {
  padding-block: 116px;
  background: var(--surface);
}

.pillars-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.pillar-filters {
  max-width: 580px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  padding-bottom: 14px;
}

.pillar-filters button {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid #b8c5c6;
  border-radius: 4px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 10px;
  font-weight: 800;
}

.pillar-filters button:hover,
.pillar-filters button.is-active {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.pillar-card {
  min-width: 0;
  min-height: 248px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: #9db1c5;
  box-shadow: var(--shadow-sm);
}

.pillar-card.is-filtered {
  display: none;
}

.pillar-card > span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}

.pillar-card > svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.pillar-card h3 {
  grid-column: 1 / -1;
  margin: 34px 0 10px;
  font-size: 18px;
}

.pillar-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.pillar-result {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.impact-section {
  padding-block: 116px;
  color: var(--white);
  background: var(--blue);
}

.impact-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 90px;
}

.impact-section .eyebrow {
  color: var(--gold);
}

.impact-bars {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.impact-bars > div {
  display: grid;
  gap: 8px;
}

.impact-bars span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.impact-bars strong {
  font-size: 12px;
}

.impact-bars small {
  color: rgb(255 255 255 / 68%);
  font-size: 10px;
}

.impact-bars i {
  width: 100%;
  height: 9px;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: rgb(255 255 255 / 18%);
}

.impact-bars i::after {
  content: "";
  width: var(--impact-width);
  height: 100%;
  display: block;
  transform-origin: left;
  background: var(--gold);
  animation: bar-grow 1s ease both;
}

.impact-kosovo i {
  --impact-width: 20%;
}

.impact-brazil i,
.impact-congo i {
  --impact-width: 100%;
}

.impact-bolivia i {
  --impact-width: 80%;
}

.synergy-panel {
  padding: 36px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 8px;
  background: #15368f;
  box-shadow: var(--shadow-lg);
}

.synergy-panel h3 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.synergy-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.synergy-panel li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.synergy-panel li > svg {
  width: 23px;
  height: 23px;
  color: var(--green-bright);
}

.synergy-panel li span {
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
}

.synergy-panel li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.global-brief-section {
  position: relative;
  overflow: clip;
  padding-block: 116px;
  background: #f5f8f7;
}

.global-brief-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green);
}

.global-brief-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 82px;
}

.global-brief-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.global-brief-intro h2 {
  max-width: 500px;
}

.global-brief-intro > p:not(.eyebrow, .global-brief-note) {
  max-width: 490px;
  color: var(--muted);
  font-size: 17px;
}

.global-brief-status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.global-brief-signal {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid #acd9ca;
  border-radius: 4px;
  color: var(--green);
  background: var(--white);
}

.global-brief-signal svg {
  width: 20px;
  height: 20px;
  animation: brief-signal 2.6s ease-in-out infinite;
}

.global-brief-status strong,
.global-brief-status time {
  display: block;
}

.global-brief-status strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.global-brief-status time {
  color: var(--muted);
  font-size: 11px;
}

.global-brief-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.global-brief-source svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.global-brief-source:hover svg {
  transform: translate(2px, -2px);
}

.global-brief-note {
  max-width: 420px;
  margin: 18px 0 0;
  color: #77868b;
  font-size: 10px;
}

.global-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  list-style: none;
}

.global-news-item {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.global-news-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 26px;
  width: 42px;
  height: 3px;
  background: var(--green);
  transition:
    width 260ms ease,
    background-color 220ms ease;
}

.global-news-item > a {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 25px;
  text-decoration: none;
}

.global-news-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.global-news-meta strong {
  color: var(--green);
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
}

.global-news-meta time {
  flex: 0 0 auto;
  color: #7a898f;
  font-size: 9px;
}

.global-news-item h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.18;
}

.global-news-item p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.global-news-origin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.global-news-origin svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.global-news-item:hover {
  color: var(--white);
  background: var(--ink);
}

.global-news-item:hover::before {
  width: calc(100% - 52px);
  background: var(--gold);
}

.global-news-item:hover .global-news-meta strong,
.global-news-item:hover .global-news-origin {
  color: var(--gold);
}

.global-news-item:hover .global-news-meta time,
.global-news-item:hover p {
  color: rgb(255 255 255 / 68%);
}

.global-news-item:hover .global-news-origin svg {
  transform: translate(3px, -3px);
}

.global-news-item.is-fresh {
  animation: brief-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--brief-delay, 0ms);
}

.idealist-section {
  padding-block: 116px;
}

.idealist-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 86px;
}

.idealist-layout figure {
  margin: 0;
}

.idealist-layout figure img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.idealist-layout h2 {
  margin-bottom: 10px;
}

.idealist-role {
  color: var(--blue);
  font-size: 17px;
  font-weight: 750;
}

.idealist-layout > div > p:not(.eyebrow, .idealist-role) {
  color: var(--muted);
}

.idealist-layout blockquote {
  margin: 32px 0 25px;
  padding: 25px 28px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  background: var(--surface);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.execution-section {
  padding-block: 116px;
  background: var(--green-soft);
}

.execution-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid #afd5c9;
  border-bottom: 1px solid #afd5c9;
  list-style: none;
}

.execution-steps li {
  position: relative;
  min-width: 0;
  padding: 30px 30px 34px 0;
}

.execution-steps li + li {
  padding-left: 30px;
  border-left: 1px solid #afd5c9;
}

.execution-steps li > span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.execution-steps li > svg {
  width: 28px;
  height: 28px;
  margin: 42px 0 18px;
  color: var(--blue);
}

.execution-steps h3 {
  font-size: 21px;
}

.execution-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.diligence-band {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 50px;
  margin-top: 56px;
  padding: 32px;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
}

.diligence-band .eyebrow {
  color: var(--gold);
}

.diligence-band h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.diligence-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diligence-band li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 4px;
  color: rgb(255 255 255 / 73%);
  font-size: 11px;
}

.diligence-band li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green-bright);
}

.app-section {
  padding-block: 116px;
  color: var(--white);
  background: #101719;
}

.app-section .eyebrow {
  color: var(--gold);
}

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

.download-option {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 8px;
  background: #172124;
}

.download-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-brand img {
  width: 50px;
  height: 50px;
}

.android-option .download-brand img {
  color: #3ddc84;
  filter: invert(73%) sepia(52%) saturate(635%) hue-rotate(91deg) brightness(94%);
}

.ios-option .download-brand img {
  filter: invert(1);
}

.download-brand span {
  color: var(--green-bright);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.download-brand h3 {
  margin: 3px 0 0;
  font-size: 28px;
}

.download-option > p {
  margin: 24px 0;
  color: rgb(255 255 255 / 68%);
  font-size: 13px;
}

.download-option dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
  padding-block: 17px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.download-option dl div {
  min-width: 0;
}

.download-option dt {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.download-option dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  color: rgb(255 255 255 / 55%);
  font-size: 10px;
}

.download-option code {
  font-size: 9px;
}

.download-option .button {
  align-self: flex-start;
  margin-top: auto;
}

.button-android {
  color: #071a10;
  background: #3ddc84;
}

.button-ios {
  color: #111719;
  background: var(--white);
}

.web-app-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 6px;
  background: #172124;
}

.web-app-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: rgb(255 255 255 / 68%);
  font-size: 11px;
}

.web-app-row > div svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.web-app-row strong {
  display: block;
  color: var(--white);
}

.app-disclaimer {
  max-width: 840px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 46%);
  font-size: 10px;
}

.contact-section {
  padding-block: 116px 88px;
}

.contact-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 70px;
}

.contact-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.contact-heading h2 {
  margin: 0;
}

.contact-heading > p:not(.eyebrow) {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.contact-grid > a {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 15px;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-grid > a:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact-grid > a > svg:first-child {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.contact-grid > a > svg:last-child {
  width: 18px;
  height: 18px;
  color: var(--blue);
  transition: transform 180ms ease;
}

.contact-grid > a:hover > svg:last-child {
  transform: translate(3px, -3px);
}

.contact-grid span {
  display: grid;
}

.contact-grid strong {
  font-size: 14px;
}

.contact-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-top: 32px;
}

.contact-direct a,
.contact-direct button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.contact-direct svg {
  width: 17px;
  height: 17px;
}

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

.footer-main {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
}

.footer-brand > div {
  display: grid;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.footer-brand span {
  color: rgb(255 255 255 / 49%);
  font-size: 9px;
  text-transform: uppercase;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-main nav a {
  color: rgb(255 255 255 / 66%);
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.footer-main nav a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-block: 24px;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.footer-legal p {
  max-width: 850px;
  margin: 0;
  color: rgb(255 255 255 / 42%);
  font-size: 9px;
}

.footer-legal > span {
  flex: 0 0 auto;
  color: rgb(255 255 255 / 47%);
  font-size: 9px;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  max-width: min(340px, calc(100% - 40px));
  padding: 13px 16px;
  border-radius: 5px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 750;
}

.language-dialog {
  width: min(1080px, calc(100% - 32px));
  max-width: none;
  max-height: min(820px, calc(100svh - 32px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #bcc9cc;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 34px 90px rgb(6 18 24 / 28%);
}

.language-dialog::backdrop {
  background: rgb(6 18 24 / 72%);
  backdrop-filter: blur(5px);
}

.language-dialog[open] {
  animation: language-dialog-enter 240ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.language-dialog-shell {
  max-height: min(818px, calc(100svh - 34px));
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
}

.language-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.language-dialog-header .eyebrow {
  margin-bottom: 7px;
}

.language-dialog-header h2 {
  margin: 0;
  font-size: 34px;
}

.language-dialog-close {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

.language-dialog-close:hover {
  color: var(--white);
  background: var(--ink);
}

.language-dialog-close svg {
  width: 19px;
  height: 19px;
}

.language-search {
  position: relative;
  display: block;
  margin: 20px 28px 0;
}

.language-search > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 16px;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.language-search input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 48px;
  border: 1px solid #b9c8cc;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

.language-search input::placeholder {
  color: #77878c;
}

.language-dialog-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px 12px;
  color: var(--muted);
  font-size: 10px;
}

.language-dialog-summary p {
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.language-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  overflow-y: auto;
  margin: 0 28px 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  overscroll-behavior: contain;
}

.language-option {
  min-width: 0;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  text-align: left;
}

.language-option:hover,
.language-option:focus-visible {
  background: var(--surface-blue);
}

.language-option[aria-current="true"] {
  box-shadow: inset 4px 0 0 var(--blue);
  background: #f2f6ff;
}

.language-option > span:first-child {
  min-width: 0;
  display: grid;
}

.language-option strong,
.language-option small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option strong {
  font-size: 12px;
}

.language-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.language-option-country {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.language-option-country-name {
  max-width: 92px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option-flag {
  width: 20px;
  flex: 0 0 20px;
  font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.language-list-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 40px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.language-dialog-footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 28px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.language-dialog-footer svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--green);
}

.language-dialog-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
}

.error-page main {
  width: min(100%, 620px);
  text-align: center;
}

.error-page main > img {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border-radius: 8px;
}

.error-page h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
}

.error-page main > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 auto 28px;
  color: rgb(255 255 255 / 68%);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@keyframes hero-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes cue-move {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes chain-pulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes bar-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes brief-signal {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes brief-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes language-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 16px;
  }

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

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

  .origin-layout,
  .architecture-feature,
  .impact-layout,
  .idealist-layout {
    gap: 52px;
  }

  .global-brief-layout {
    gap: 50px;
  }

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

  .pillars-heading {
    display: block;
  }

  .pillar-filters {
    max-width: none;
    justify-content: flex-start;
    margin-top: 26px;
    padding-bottom: 0;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  h2 {
    font-size: 44px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-shell {
    gap: 12px;
  }

  .language-toggle {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
  }

  .hero {
    min-height: 700px;
  }

  .hero::after {
    width: 72%;
  }

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

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

  .metric:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .origin-layout,
  .impact-layout,
  .idealist-layout,
  .global-brief-layout {
    grid-template-columns: 1fr;
  }

  .global-brief-intro {
    position: static;
    max-width: 760px;
  }

  .origin-copy {
    max-width: 760px;
  }

  .origin-map {
    max-width: 700px;
  }

  .architecture-feature {
    grid-template-columns: 1fr;
  }

  .architecture-feature figure img {
    height: 430px;
  }

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

  .value-chain li:nth-child(2)::after {
    display: none;
  }

  .impact-layout {
    gap: 56px;
  }

  .idealist-layout figure {
    max-width: 520px;
  }

  .idealist-layout figure img {
    height: 570px;
  }

  .contact-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -2px;
  }
}

@media (max-width: 700px) {
  .section-shell,
  .header-shell,
  .hero-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  h2 {
    font-size: 38px;
  }

  .section-heading > p:not(.eyebrow) {
    font-size: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .language-dialog {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
  }

  .language-dialog-shell {
    max-height: calc(100svh - 18px);
  }

  .language-dialog-header {
    padding: 21px 20px 18px;
  }

  .language-dialog-header h2 {
    font-size: 30px;
  }

  .language-search {
    margin: 16px 20px 0;
  }

  .language-dialog-summary {
    padding: 12px 20px 10px;
  }

  .language-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 20px 18px;
  }

  .language-dialog-footer {
    padding: 13px 20px;
  }

  .hero {
    min-height: 720px;
    height: calc(100svh - 24px);
    max-height: 820px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-scrim {
    background: rgb(7 19 26 / 53%);
  }

  .hero::after {
    width: 100%;
    background: rgb(7 19 26 / 39%);
  }

  .hero-shell {
    margin-top: calc(var(--header-height) + 24px);
  }

  .hero h1 {
    max-width: 360px;
    font-size: 54px;
  }

  .hero-lead {
    max-width: 390px;
    font-size: 21px;
  }

  .hero-copy {
    max-width: 420px;
    font-size: 15px;
  }

  .hero-actions {
    max-width: 360px;
  }

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

  .hero-meta {
    gap: 12px 16px;
  }

  .scroll-cue {
    display: none;
  }

  .metrics-section,
  .origin-section,
  .cooperation-section,
  .architecture-section,
  .pillars-section,
  .impact-section,
  .global-brief-section,
  .idealist-section,
  .execution-section,
  .app-section {
    padding-block: 84px;
  }

  .contact-section {
    padding-block: 84px 68px;
  }

  .country-grid,
  .value-chains,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .country-card {
    padding: 26px 22px;
  }

  .country-card h3 {
    font-size: 32px;
  }

  .architecture-feature figure img {
    height: 320px;
  }

  .value-chain {
    padding: 24px 20px;
  }

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

  .pillar-card {
    min-height: 218px;
  }

  .global-news-list {
    grid-template-columns: 1fr;
  }

  .global-news-item > a {
    min-height: 0;
  }

  .execution-steps {
    grid-template-columns: 1fr;
  }

  .execution-steps li,
  .execution-steps li + li {
    padding: 26px 0;
    border-left: 0;
  }

  .execution-steps li + li {
    border-top: 1px solid #afd5c9;
  }

  .execution-steps li > svg {
    margin: 26px 0 15px;
  }

  .diligence-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px 22px;
  }

  .web-app-row {
    align-items: stretch;
    flex-direction: column;
  }

  .web-app-row > div {
    margin: 0 0 8px;
  }

  .web-app-row .button {
    width: 100%;
  }

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

  .contact-grid > a,
  .contact-grid > a:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    padding-block: 32px;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-legal {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 34px;
  }

  .hero-kicker {
    max-width: 330px;
    flex-wrap: wrap;
    gap: 8px;
  }

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

  .header-shell {
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .language-toggle {
    min-width: 52px;
    padding-inline: 7px;
  }

  .language-toggle-chevron {
    display: none;
  }

  .language-list {
    grid-template-columns: 1fr;
  }

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

  .metric,
  .metric + .metric,
  .metric:nth-child(3) {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric:first-child {
    border-top: 0;
  }

  .origin-map {
    padding: 24px 18px;
  }

  .origin-route {
    align-items: flex-start;
    flex-direction: column;
  }

  .origin-route svg {
    transform: rotate(90deg);
  }

  .country-topline {
    align-items: flex-start;
  }

  .country-card footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .country-card footer span {
    text-align: left;
  }

  .value-chain ol {
    grid-template-columns: 1fr;
  }

  .value-chain li:not(:last-child)::after,
  .value-chain li:nth-child(2)::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    width: 2px;
    height: 20px;
    display: block;
  }

  .pillar-filters {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pillar-filters button {
    width: 100%;
  }

  .idealist-layout figure img {
    height: 500px;
  }

  .diligence-band ul,
  .download-option dl {
    grid-template-columns: 1fr;
  }

  .download-option {
    padding: 25px 20px;
  }

  .download-option .button {
    width: 100%;
  }

  .contact-grid > a {
    grid-template-columns: 30px 1fr 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
