:root {
  --blue-950: #052d63;
  --blue-900: #073a79;
  --blue-800: #004995;
  --blue-700: #005ec7;
  --blue-600: #0a6dd8;
  --blue-100: #eaf4ff;
  --blue-050: #f6fbff;
  --red-700: #ec2d2f;
  --red-600: #ff4b52;
  --red-100: #ffe7e6;
  --gray-900: #263143;
  --gray-600: #717887;
  --gray-500: #8b93a2;
  --line: #dbe7f5;
  --soft: #f3f7fb;
  --white: #ffffff;
  --shadow: 0 24px 54px rgba(5, 45, 99, 0.08);
  --shadow-strong: 0 28px 58px rgba(236, 45, 47, 0.22);
  --radius: 22px;
  --container: 1216px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: "Montserrat", system-ui, sans-serif;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin: 0; }
svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sprite { display: none; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-950);
}
:focus-visible { outline: 3px solid rgba(236, 45, 47, 0.4); outline-offset: 3px; }

.grid-bg {
  background-image:
    linear-gradient(rgba(0, 94, 199, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 94, 199, 0.065) 1px, transparent 1px);
  background-size: 64px 64px;
}
.dark-grid {
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(236, 45, 47, 0.18), transparent 32%),
    linear-gradient(135deg, #062b5f 0%, #00397d 100%);
  background-size: auto, auto;
  position: relative;
}
.dark-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.dark-grid > * { position: relative; z-index: 1; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: clamp(206px, 20vw, 286px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}
.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 70%, var(--red-700) 0 17%, transparent 18%),
    linear-gradient(135deg, #052b62, #0063ce);
  box-shadow: 0 12px 24px rgba(5, 45, 99, 0.22);
  font-size: 14px;
  font-weight: 600;
}
.brand-text {
  display: grid;
  line-height: 1.05;
}
.brand-text small {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand-text strong {
  max-width: 150px;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 600;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav > a {
  min-height: 44px;
  padding-top: 4px;
  color: #232a38;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 2px solid transparent;
}
.nav > a.active,
.nav > a:hover { color: var(--blue-700); border-bottom-color: var(--red-700); }
.lang,
.font-size {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.lang button,
.font-size button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-950);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}
.lang button:hover,
.font-size button:hover:not(:disabled) { background: var(--blue-050); }
.lang button:focus-visible,
.font-size button:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 1px;
}
.lang button[aria-current="page"] { color: var(--white); background: var(--blue-700); }
.lang .flag {
  width: 21px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(5, 45, 99, .14);
}
.font-size button:disabled {
  opacity: .35;
  cursor: default;
}
.search-btn {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--white);
  cursor: pointer;
}
.search-btn:hover { color: var(--blue-700); background: var(--blue-050); }
.search-btn:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 1px;
}
.search-btn svg { width: 15px; height: 15px; }
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 96px 20px 40px;
  background: rgba(4, 22, 48, .5);
}
.search-overlay[hidden] { display: none; }
.search-panel {
  width: min(640px, 100%);
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 32px 80px rgba(2, 16, 38, .35);
}
.search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}
.search-head > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--blue-700);
}
.search-head input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  color: var(--blue-950);
  font-size: 16px;
}
.search-head input::placeholder { color: #9aa1ad; }
.search-close {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-950);
  background: transparent;
  cursor: pointer;
}
.search-close:hover { background: var(--blue-050); }
.search-close svg { width: 14px; height: 14px; }
.search-results {
  max-height: min(430px, 60vh);
  overflow-y: auto;
  padding: 8px;
}
.search-result {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--blue-950);
}
.search-result:hover,
.search-result:focus-visible { background: var(--blue-050); outline: none; }
.search-result small {
  display: block;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.search-result strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 600;
}
.search-result p {
  margin-top: 4px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}
.search-result mark {
  border-radius: 3px;
  padding: 0 1px;
  color: inherit;
  background: rgba(241, 191, 0, .45);
}
.search-empty {
  padding: 26px 18px;
  color: #8b93a2;
  font-size: 14px;
  text-align: center;
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--white);
}
.menu-btn .close { display: none; }

.hero {
  position: relative;
  padding: 118px 0 84px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(236, 45, 47, 0.2), transparent 32%),
    linear-gradient(135deg, #062b5f 0%, #00397d 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/event-card-03.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero .kicker { color: var(--white); }
.hero .lead { color: rgba(255, 255, 255, 0.78); }
.hero .stats-line { color: #bcdcff; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 62px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red-700);
}
.hero h1 {
  max-width: 640px;
  margin-top: 26px;
  color: var(--white);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
}
.hero h1 span {
  color: #bcdcff;
  box-shadow: inset 0 -10px 0 rgba(236, 45, 47, 0.35);
}
.lead {
  max-width: 650px;
  margin-top: 30px;
  color: #656b78;
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--red-700); box-shadow: var(--shadow-strong); }
.button.blue { color: var(--white); background: var(--blue-700); box-shadow: 0 20px 42px rgba(0, 94, 199, .2); }
.button.ghost { color: var(--blue-950); border-color: #cfe0f1; background: rgba(255,255,255,.72); }
.stats-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  color: #6da0df;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.stats-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red-700);
}

.hero-visual {
  display: grid;
  justify-items: center;
}
.facade-card {
  position: relative;
  width: min(445px, 100%);
  min-height: 555px;
  border: 1px solid #cfe0f1;
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 34px 84px rgba(5, 45, 99, .1);
}
.facade-card::before,
.facade-card::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(0, 94, 199, .12);
  border-radius: 24px;
}
.facade-card::before {
  width: 92px;
  height: 92px;
  top: -76px;
  right: 44px;
  transform: rotate(12deg);
}
.facade-card::after {
  width: 44px;
  height: 44px;
  right: -46px;
  top: 300px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 94, 199, .12);
}
.facade-grid {
  display: grid;
  grid-template-columns: repeat(5, 62px);
  gap: 8px;
  justify-content: center;
  padding-top: 55px;
}
.facade-grid span {
  height: 45px;
  border: 2px solid rgba(0, 94, 199, .15);
  background: linear-gradient(135deg, rgba(0,94,199,.03), rgba(255,255,255,.7));
}
.floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 166px;
  padding: 11px 16px;
  border: 1px solid #d8e8f7;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 34px rgba(5, 45, 99, .09);
}
.floating-pill b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
}
.floating-pill.red b { color: var(--red-700); background: var(--red-100); }
.floating-pill span {
  display: grid;
  color: #6da0df;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.15;
}
.floating-pill strong {
  color: var(--blue-950);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}
.pill-1 { top: 48px; left: -25px; }
.pill-2 { top: 170px; right: -35px; }
.pill-3 { left: -12px; bottom: 88px; }
.pill-4 { right: -42px; bottom: 44px; }

section { padding: 112px 0; }
.soft { background: var(--soft); }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.1fr);
  gap: 82px;
  align-items: start;
}
h2 {
  color: var(--blue-950);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
}
.two-col h2 { margin-top: 28px; }
.text-block p,
.section-head p,
.dark-copy p {
  color: #666f7f;
  font-size: 17px;
}
.text-block p + p { margin-top: 24px; }
.link-arrow,
.mini-card-grid a,
.event-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 600;
}
.summary-more {
  margin-top: 30px;
}
.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 86px;
}
.mini-card-grid article,
.pillar-grid article,
.publication-grid article,
.event-grid article,
.news-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}

.mini-card-grid article::after,
.pillar-grid article::after,
.publication-grid article::after,
.event-grid article::after,
.news-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red-700);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s ease;
}

.mini-card-grid article:hover::after,
.mini-card-grid article:focus-within::after,
.pillar-grid article:hover::after,
.pillar-grid article:focus-within::after,
.publication-grid article:hover::after,
.publication-grid article:focus-within::after,
.event-grid article:hover::after,
.event-grid article:focus-within::after,
.news-grid article:hover::after,
.news-grid article:focus-within::after {
  transform: scaleX(1);
}
.mini-card-grid article {
  min-height: 232px;
  padding: 28px;
}
.mini-card-grid span,
.round {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
  box-shadow: 0 12px 22px rgba(5,45,99,.1);
}
h3 {
  color: var(--blue-950);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 600;
}
.mini-card-grid h3 { margin-top: 24px; }
.mini-card-grid p,
.pillar-grid p,
.publication-grid p,
.event-grid p,
.news-grid p {
  margin-top: 12px;
  color: #7a7f89;
  font-size: 14px;
}
.section-head {
  max-width: 760px;
}
.container.section-head {
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - var(--container)) / 2));
  margin-right: auto;
}
.section-head h2 { margin-top: 28px; }
.section-head p { margin-top: 24px; max-width: 730px; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
}
.pillar-grid article {
  position: relative;
  min-height: 250px;
  padding: 34px;
}
.pillar-grid em {
  position: absolute;
  top: 34px;
  right: 36px;
  color: var(--red-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .18em;
}
.pillar-grid h3 { margin-top: 36px; }

.countries {
  padding: 106px 0;
}
.countries-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: center;
}
.dark-copy .kicker { color: #b5d0f5; }
.dark-copy h2 {
  margin-top: 28px;
  color: var(--white);
  font-size: 40px;
}
.dark-copy p {
  margin-top: 24px;
  color: rgba(255,255,255,.78);
}
.dark-copy .button { margin-top: 36px; }
.map-panel {
  display: grid;
  place-items: center;
  min-height: 460px;
}
.map-panel img {
  width: min(100%, 820px);
  height: auto;
  filter: drop-shadow(0 32px 52px rgba(0, 0, 0, .22));
}
.logo-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.logo-panel article {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 122px;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .08);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.logo-panel article::after {
  content: "Ver site";
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-700);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.logo-panel article:hover {
  border-color: var(--red-700);
  box-shadow: 0 22px 42px rgba(236, 45, 47, .18);
  transform: translateY(-2px);
}
.logo-panel article:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.logo-panel img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}
.logo-panel .logo-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.logo-panel .logo-link:focus-visible {
  outline: 2px solid var(--red-700);
  outline-offset: 2px;
}
.logo-panel span {
  color: var(--blue-950);
  font-size: 12px;
  font-weight: 600;
}

.section-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.publication-grid,
.event-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.publication-grid,
.event-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.asefave-note {
  margin-top: 30px;
  color: #666f7f;
  font-size: 15px;
}
.publication-grid article {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
}
.publication-grid header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.publication-grid header small {
  color: #b0b5bf;
}
.publication-grid h3 { margin-top: 18px; }
.publication-grid article > p { flex: 1; }
.publication-grid footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #a1a7b2;
  font-size: 12px;
}
.publication-grid footer b { color: var(--blue-950); }
.publication-grid footer b a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(5, 45, 99, .28);
  text-underline-offset: 3px;
}
.publication-grid footer b a:hover {
  color: var(--blue-700);
  text-decoration-color: currentColor;
}
.pdf-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.pdf-actions .pdf-action:only-child {
  grid-column: 1 / -1;
}
.pdf-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pdf-action svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.pdf-action.view {
  color: var(--blue-700);
  background: rgba(234, 244, 255, .72);
}
.pdf-action.download {
  color: var(--white);
  border-color: var(--blue-700);
  background: var(--blue-700);
  box-shadow: 0 14px 28px rgba(0, 94, 199, .16);
}
.pdf-action:hover {
  transform: translateY(-1px);
}
.pdf-action.view:hover {
  color: var(--red-700);
  border-color: rgba(236, 45, 47, .32);
  background: var(--red-100);
}
.pdf-action.download:hover {
  border-color: var(--red-700);
  background: var(--red-700);
  box-shadow: 0 16px 32px rgba(236, 45, 47, .18);
}

.event-grid article {
  display: flex;
  flex-direction: column;
  min-height: 445px;
  padding: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(5, 45, 99, .08);
}
.event-cover {
  position: relative;
  height: 178px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--blue-100);
}
.event-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 54px;
  overflow: hidden;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue-950);
  box-shadow: 0 12px 22px rgba(5,45,99,.18);
  line-height: 1;
  text-transform: uppercase;
}
.event-date-badge::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  background: var(--blue-700);
  z-index: 0;
}
.event-date-badge strong,
.event-date-badge b {
  position: relative;
  z-index: 1;
}
.event-date-badge strong {
  align-self: end;
  font-size: 21px;
  font-weight: 600;
}
.event-date-badge b {
  align-self: start;
  padding-top: 4px;
  font-size: 9px;
  font-weight: 600;
}
.event-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-height: 267px;
  padding: 24px 16px 18px;
}
.event-body h3 {
  min-height: 28px;
  color: var(--blue-950);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: .01em;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue-950);
  font-size: 13px;
}
.event-meta svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--blue-700);
}
.event-place {
  margin-top: 8px;
  color: var(--blue-950);
  font-size: 12px;
}
.event-summary {
  flex: 1;
  margin-top: 8px;
  color: #536078;
  font-size: 13px;
}
.event-detail {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-top: 26px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--blue-050);
  box-shadow: 0 8px 18px rgba(236, 45, 47, .08);
  font-size: 12px;
  font-weight: 600;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.event-detail span {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--red-600);
}
.event-detail:hover {
  color: var(--red-700);
  border-color: rgba(236, 45, 47, .3);
  background: var(--white);
  transform: translateY(-1px);
}
.news-grid article {
  overflow: hidden;
}
.news-cover {
  position: relative;
  height: 168px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}
.news-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,45,99,.04), rgba(5,45,99,.42));
}
.news-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s ease;
}
.news-cover span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 94, 199, .72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.news-grid article:hover .news-cover img {
  transform: scale(1.04);
}
.news-grid time {
  display: block;
  margin: 28px 24px 12px;
  color: #8b93a2;
  font-size: 12px;
  font-weight: 600;
}
.news-grid h3,
.news-grid p {
  margin-left: 24px;
  margin-right: 24px;
}
.news-grid p { margin-bottom: 24px; }
.news-grid a.link-arrow { margin: 0 24px 24px; }

.about-hero {
  position: relative;
  min-height: 620px;
  padding: 118px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 94, 199, .25), transparent 32%),
    linear-gradient(135deg, #6e1116 0%, #c31f22 100%);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/blog-01.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.about-hero > .container { position: relative; z-index: 1; }
.about-hero .kicker { color: var(--white); }
.about-hero .lead { color: rgba(255, 255, 255, 0.8); }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.about-hero h1 {
  max-width: 780px;
  margin-top: 28px;
  color: var(--white);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 600;
}
.objective-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red-700);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s ease;
}
.objective-grid article:hover::after,
.objective-grid article:focus-within::after {
  transform: scaleX(1);
}
.about-highlight span,
.objective-grid span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--blue-700);
  background: var(--blue-100);
  box-shadow: 0 16px 26px rgba(5,45,99,.1);
}
.about-content,
.about-essence,
.about-objectives {
  padding: 108px 0;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .44fr);
  gap: 72px;
  align-items: start;
}
.about-layout.reverse {
  grid-template-columns: minmax(320px, .44fr) minmax(0, 1fr);
}
.about-article {
  max-width: 820px;
}
.about-article h2 {
  margin-top: 28px;
}
.about-article p:not(.kicker) {
  margin-top: 24px;
  color: #666f7f;
  font-size: 17px;
}
.about-highlight {
  position: sticky;
  top: 104px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.about-highlight.red span {
  color: var(--red-700);
  background: var(--red-100);
}
.about-highlight h3 {
  margin-top: 24px;
  font-size: 24px;
}
.about-highlight p {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 15px;
}
.objective-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.objective-grid article {
  position: relative;
  min-height: 294px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.objective-grid article:hover {
  border-color: rgba(236,45,47,.38);
  box-shadow: 0 28px 58px rgba(236,45,47,.12);
  transform: translateY(-2px);
}
.objective-grid h3 {
  margin-top: 24px;
  font-size: 17px;
}
.objective-grid p {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 13px;
}
.about-future {
  isolation: isolate;
  padding: 118px 0;
  overflow: hidden;
}
.about-future::before {
  z-index: 1;
}
.about-future::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5,45,99,.98) 0%, rgba(5,45,99,.86) 46%, rgba(5,45,99,.72) 100%),
    url("assets/background-footer.jpg") center / cover no-repeat;
  opacity: .64;
  pointer-events: none;
}
.future-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1fr);
  gap: 68px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-future .kicker {
  color: #b5d0f5;
}
.about-future h2 {
  margin-top: 28px;
  color: var(--white);
  font-size: 48px;
  line-height: 1.08;
}
.future-intro > p:not(.kicker) {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}
.future-intro .button {
  margin-top: 38px;
}
.future-board {
  display: grid;
  gap: 16px;
}
.future-main-card,
.future-impact-grid article {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  box-shadow: 0 34px 70px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}
.future-main-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 22px;
}
.future-main-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red-700);
}
.future-main-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(236,45,47,.9);
  box-shadow: 0 18px 34px rgba(236,45,47,.28);
}
.future-main-card h3 {
  max-width: 520px;
  margin-top: 26px;
  color: var(--white);
  font-size: 28px;
}
.future-main-card p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}
.future-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.future-impact-grid article {
  position: relative;
  min-height: 204px;
  padding: 24px;
  border-radius: 18px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.future-impact-grid article:hover {
  border-color: rgba(236,45,47,.5);
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}
.future-impact-grid b {
  color: var(--red-600);
  font-size: 12px;
  letter-spacing: .18em;
}
.future-impact-grid h3 {
  margin-top: 22px;
  color: var(--white);
  font-size: 18px;
}
.future-impact-grid p {
  margin-top: 12px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.members-hero {
  min-height: 620px;
  padding: 118px 0 84px;
}
.members-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .62fr);
  gap: 72px;
  align-items: center;
}
.members-hero h1 {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--blue-950);
  font-size: 58px;
  line-height: 1.04;
  font-weight: 600;
}
.members-hero .lead {
  max-width: 690px;
}
.members-summary {
  display: grid;
  gap: 14px;
}
.members-summary article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 4px 18px;
  min-height: 126px;
  padding: 24px;
  border: 1px solid rgba(0, 94, 199, .14);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.members-summary span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 30px;
  font-weight: 600;
}
.members-summary strong {
  align-self: end;
  color: var(--blue-950);
  font-size: 20px;
}
.members-summary small {
  color: var(--gray-600);
  font-size: 13px;
}
.association-section {
  padding-top: 96px;
}
.association-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.association-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.association-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red-700);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s ease;
}
.association-card:hover {
  border-color: rgba(236, 45, 47, .42);
  box-shadow: 0 28px 58px rgba(236, 45, 47, .14);
  transform: translateY(-4px);
}
.association-card:hover::after,
.association-card:focus-within::after {
  transform: scaleX(1);
}
.association-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.association-card header span {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}
.association-card header small {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.association-logo {
  display: grid;
  place-items: center;
  height: 92px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.association-logo img {
  max-height: 56px;
  width: 100%;
  object-fit: contain;
}
.association-logo.text-mark {
  color: var(--blue-700);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .06em;
}
.association-card h3 {
  margin-top: 22px;
  font-size: 21px;
}
.association-card p {
  margin-top: 8px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}
.member-meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.member-meta a,
.member-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 600;
  word-break: break-word;
}
.member-meta a:hover { color: var(--red-700); }
.member-meta svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--blue-700);
}
.member-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}
.member-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(234, 244, 255, .58);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.member-actions svg {
  width: 14px;
  height: 14px;
}
.member-actions a:hover,
.member-actions a:focus-visible {
  color: var(--red-700);
  border-color: rgba(236, 45, 47, .35);
  background: var(--red-100);
  transform: translateY(-1px);
}
.member-actions .site-link {
  color: var(--white);
  border-color: var(--blue-700);
  background: var(--blue-700);
}
.member-actions .site-link:hover,
.member-actions .site-link:focus-visible {
  color: var(--white);
  border-color: var(--red-700);
  background: var(--red-700);
}

.newsletter {
  padding: 110px 0;
}
.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  padding: 60px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 90%, rgba(236,45,47,.16), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.96), #dcecff);
}
.newsletter h2 {
  margin-top: 28px;
  max-width: 520px;
}
.newsletter p {
  margin-top: 24px;
  color: #6c7482;
}
.newsletter form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.newsletter input,
.footer-subscribe input {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--gray-900);
  background: rgba(255,255,255,.88);
}
.newsletter .wide { grid-column: 1 / -1; }
.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 600;
}

.footer {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/background-footer.jpg") center / cover no-repeat;
  opacity: .18;
  mix-blend-mode: screen;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .65fr .8fr .65fr;
  gap: 74px;
}
.footer p,
.footer a,
.footer span {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.footer .brand-text small,
.footer h3 {
  color: #a8c6ef;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer .brand-text strong,
.footer h3 {
  color: var(--white);
}
.footer-brand-block p { margin-top: 0; max-width: 410px; }
.footer nav {
  display: grid;
  align-content: start;
  gap: 14px;
}
.footer h3 { margin: 0 0 12px; }
.footer-subscribe {
  display: grid;
  gap: 14px;
  max-width: 420px;
  margin-top: 34px;
}
.footer-subscribe {
  position: relative;
}
.footer-subscribe > span {
  color: var(--white);
}
.footer-subscribe input {
  height: 52px;
  padding-right: 112px;
  color: var(--white);
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
}
.footer-subscribe input::placeholder {
  color: rgba(255,255,255,.78);
}
.footer-subscribe button {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-700);
  font-size: 13px;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .nav { gap: 14px; }
  .nav > a { font-size: 13px; }
  .hero-grid,
  .two-col,
  .countries-grid,
  .about-hero-grid,
  .about-layout,
  .about-layout.reverse,
  .future-panel,
  .members-hero-grid,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 38px; }
  .about-hero h1 { font-size: 36px; }
  .objective-grid,
  .mini-card-grid,
  .logo-panel,
  .association-grid,
  .publication-grid,
  .event-grid,
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-highlight { position: static; }
  .future-panel { gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar,
  .nav-wrap { height: 58px; }
  .brand-logo {
    width: 142px;
    max-height: 44px;
  }
  .brand-icon { width: 32px; height: 32px; border-radius: 10px; font-size: 11px; }
  .brand-text { display: none; }
  .menu-btn { display: grid; }
  .menu-btn[aria-expanded="true"] .open { display: none; }
  .menu-btn[aria-expanded="true"] .close { display: block; }
  .nav {
    position: fixed;
    inset: 66px 14px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav > a {
    justify-content: flex-start;
    min-height: 42px;
    width: 100%;
    border-bottom: 0;
  }
  .lang,
  .font-size { width: max-content; }
  .hero {
    padding: 40px 0 62px;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.12;
  }
  .about-hero {
    min-height: auto;
    padding: 72px 0 64px;
  }
  .about-hero h1 {
    font-size: 28px;
    line-height: 1.1;
  }
  .about-highlight h3 {
    font-size: 22px;
  }
  .about-content,
  .about-essence,
  .about-objectives,
  .about-future {
    padding: 72px 0;
  }
  .about-article p:not(.kicker),
  .future-intro > p:not(.kicker),
  .future-main-card p,
  .future-impact-grid p {
    font-size: 14px;
  }
  .about-future h2 {
    font-size: 30px;
  }
  .future-main-card {
    padding: 24px;
  }
  .future-main-card h3 {
    font-size: 22px;
  }
  .future-impact-grid {
    grid-template-columns: 1fr;
  }
  .future-impact-grid article {
    min-height: auto;
  }
  .hero h1 span {
    box-shadow: inset 0 -6px 0 rgba(236, 45, 47, .2);
  }
  .lead,
  .text-block p,
  .section-head p,
  .dark-copy p {
    font-size: 14px;
  }
  h2 { font-size: 28px; }
  section { padding: 72px 0; }
  .container { width: min(var(--container), calc(100% - 32px)); }
  .container.section-head {
    width: min(760px, calc(100% - 32px));
    margin-left: 16px;
  }
  .button { width: 100%; min-height: 46px; }
  .hero-actions { gap: 10px; }
  .stats-line {
    gap: 16px;
    font-size: 9px;
  }
  .facade-card {
    min-height: 350px;
  }
  .facade-grid {
    grid-template-columns: repeat(5, 42px);
    gap: 6px;
    padding-top: 48px;
  }
  .facade-grid span { height: 34px; }
  .floating-pill {
    min-width: 128px;
    padding: 8px 10px;
  }
  .floating-pill b {
    width: 30px;
    height: 30px;
  }
  .floating-pill span { font-size: 8px; }
  .floating-pill strong { font-size: 10px; }
  .pill-1 { left: -6px; top: 32px; }
  .pill-2 { right: -4px; top: 118px; }
  .pill-3 { left: 0; bottom: 80px; }
  .pill-4 { right: -6px; bottom: 34px; }
  .mini-card-grid,
  .objective-grid,
  .pillar-grid,
  .logo-panel,
  .association-grid,
  .publication-grid,
  .event-grid,
  .news-grid,
  .newsletter form,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .members-hero {
    min-height: auto;
    padding: 72px 0 64px;
  }
  .members-hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }
  .members-summary article {
    grid-template-columns: 62px 1fr;
    min-height: 104px;
    padding: 18px;
  }
  .members-summary span {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 24px;
  }
  .association-card {
    padding: 24px;
  }
  .association-card h3 { font-size: 20px; }
  .member-actions a { flex: 1 1 130px; }
  .map-panel {
    min-height: auto;
    margin-top: 34px;
  }
  .map-panel img {
    width: 112%;
    max-width: none;
  }
  .section-split {
    display: grid;
    align-items: start;
  }
  .newsletter-panel {
    padding: 32px 22px;
  }
  .newsletter .button { grid-column: 1; }
  .footer-bottom { display: grid; }
}
