:root {
  --blue-950: #062247;
  --blue-900: #083468;
  --blue-800: #0d4b8f;
  --blue-700: #1560b0;
  --blue-100: #eaf3fb;
  --teal: #5ad1e6;
  --gold: #f3c75f;
  --ink: #15304d;
  --muted: #5f738b;
  --line: #dfe8f2;
  --surface: #f6f9fc;
  --white: #ffffff;
  --container: min(1220px, calc(100vw - 32px));
  --shadow: 0 22px 60px rgba(5, 34, 71, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.utility-bar {
  color: var(--blue-700);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header--solid .utility-bar {
  background: var(--white);
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 84px;
  font-size: 0.74rem;
}

.utility-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.utility-links a {
  position: relative;
  color: var(--blue-950);
  opacity: 0.92;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 160ms ease, background-color 160ms ease, color 160ms ease;
}

.utility-links a:hover {
  opacity: 1;
}

.donate-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white) !important;
  background: var(--blue-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  color: white;
  box-shadow: 0 1px 0 rgba(6, 34, 71, 0.08);
  background: var(--white);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 52px;
  background: #1f43a4;
}

.site-header:not(.site-header--solid) .nav-shell {
  position: static;
  width: var(--container);
  transform: none;
  border: 0;
  backdrop-filter: none;
}

.site-header.site-header--solid .nav-shell {
  background: #1f43a4;
  border-bottom: 0;
}

.site-header .nav-shell {
  position: relative;
}

.site-header .nav-shell::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  content: "";
  background: #1f43a4;
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--blue-700);
}

.brand-image {
  display: block;
  width: auto;
  height: 56px;
  flex: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy small {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy--header {
  max-width: 370px;
}

.brand-copy--header small {
  font-size: 0.72rem;
  line-height: 1.3;
}

.primary-nav {
  display: flex;
  gap: 26px;
  margin-left: 0;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 8px 0;
  color: var(--white);
  transition: color 180ms ease;
}

.nav-parent {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.75);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms var(--ease);
}

.nav-parent::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.75);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms var(--ease);
}

.primary-nav a:hover {
  color: var(--white);
}

.nav-parent:hover::after,
.nav-item--has-submenu:hover .nav-parent::after,
.nav-item--has-submenu.is-open .nav-parent::after {
  transform: scaleX(1);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 0;
  min-width: 250px;
  padding: 10px 0;
  background: #163a95;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(5, 34, 71, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 6;
}

.nav-submenu a {
  min-height: auto;
  padding: 12px 18px;
  white-space: nowrap;
}

.nav-submenu a::after {
  display: none;
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 8px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.migration-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-button {
  width: 52px;
  height: 52px;
  margin-left: 12px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.search-button::before {
  position: absolute;
  left: 15px;
  top: 13px;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  content: "";
}

.search-button::after {
  position: absolute;
  left: 29px;
  top: 29px;
  width: 11px;
  height: 3px;
  background: white;
  content: "";
  transform: rotate(45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(90, 209, 230, 0.32), transparent 24%),
    radial-gradient(circle at 18% 76%, rgba(243, 199, 95, 0.18), transparent 20%),
    linear-gradient(135deg, #062247, #0a427f 55%, #0c62a4);
}

.hero-overlay,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 34, 71, 0.9), rgba(6, 34, 71, 0.55), rgba(6, 34, 71, 0.25));
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-top: 120px;
  padding-bottom: 72px;
  color: white;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.eyebrow--blue {
  color: var(--blue-700);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.hero-copy,
.page-copy {
  max-width: 730px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.hero--iom {
  min-height: calc(100vh - 136px);
  background: #071932;
}

.hero--iom .hero-media,
.hero--iom .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero--iom .hero-media {
  background-color: #071932;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero--iom .hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 25, 50, 0.1), rgba(7, 25, 50, 0.18) 42%, rgba(7, 25, 50, 0.52)),
    linear-gradient(90deg, rgba(7, 25, 50, 0.28), rgba(7, 25, 50, 0.04) 40%, rgba(7, 25, 50, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding-top: 120px;
  padding-bottom: 38px;
  color: var(--white);
}

.hero-copyblock {
  width: 100%;
  max-width: 100%;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.hero-copyblock h1 {
  max-width: 22ch;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.06;
  text-wrap: balance;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(7, 25, 50, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.hero-button:hover {
  transform: translateY(-1px);
  background: rgba(7, 25, 50, 0.34);
  border-color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms var(--ease), background-color 180ms ease, color 180ms ease;
}

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

.button--solid {
  color: var(--blue-950);
  background: var(--white);
}

.button--ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.section-pad {
  padding: 84px 0;
}

.section-light {
  background: var(--surface);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

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

.feature-card,
.news-card,
.publication-card,
.stack-card,
.timeline-card,
.mission-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card,
.news-card,
.publication-card,
.stack-card,
.mission-card {
  padding: 28px;
}

.feature-card h2,
.section-head h2,
.section-copy h2 {
  color: var(--blue-950);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.feature-card p,
.news-card p,
.publication-card p,
.stack-card p,
.rich-copy p,
.section-copy p,
.timeline-card p {
  color: var(--muted);
  line-height: 1.75;
}

.impact-band {
  color: white;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 40px 0;
}

.stats-grid article {
  padding: 20px 10px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.85rem;
}

.presence-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(90, 209, 230, 0.1), transparent 24%),
    linear-gradient(180deg, #f8fbfe, #eef4f9);
}

.presence-intro {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.presence-card {
  padding: 30px 28px;
  border: 1px solid rgba(21, 96, 176, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(7, 25, 50, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.presence-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 96, 176, 0.24);
  box-shadow: 0 22px 40px rgba(7, 25, 50, 0.1);
}

.presence-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 12px;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.presence-flag {
  font-size: 1.1em;
  line-height: 1;
}

.presence-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.institutional-focus {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: var(--white);
  background: #0a1f37;
}

.institutional-focus__media,
.institutional-focus__overlay {
  position: absolute;
  inset: 0;
}

.institutional-focus__media {
  background:
    linear-gradient(0deg, rgba(8, 27, 52, 0.18), rgba(8, 27, 52, 0.18)),
    url("./assest/cregu_banner_2.jpg") center center/cover no-repeat;
  transform: scale(1.03);
}

.institutional-focus__overlay {
  background:
    linear-gradient(90deg, rgba(10, 30, 54, 0.9) 0%, rgba(10, 30, 54, 0.8) 48%, rgba(10, 30, 54, 0.6) 100%);
}

.institutional-focus__inner {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 34px;
}

.institutional-focus__header {
  max-width: none;
  padding-left: 26px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.76);
}

.institutional-focus__header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2vw, 2.45rem);
  line-height: 1;
  font-weight: 800;
}

.institutional-focus__header a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.institutional-focus__header a::after {
  content: "  →";
}

.institutional-focus__content {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.95fr);
  gap: 38px;
  align-items: end;
  min-height: 340px;
  padding-top: 0;
}

.institutional-focus__statement p {
  max-width: none;
  margin: 0;
  padding-top: 0;
  padding-left: 40px;
  font-size: clamp(1.165rem, 1.55vw, 1.855rem);
  line-height: 1.48;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  font-weight: 300;
}

.highlight-chip {
  display: inline-block;
  padding: 0.02em 0.24em 0.09em;
  color: var(--white);
  background: rgba(47, 96, 205, 0.92);
  font-weight: 700;
}

.institutional-focus__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-self: end;
  align-self: end;
  max-width: 420px;
  margin-bottom: 10px;
}

.institutional-focus__logo-wrap {
  display: flex;
  gap: 22px;
  align-items: center;
}

.institutional-focus__logo {
  width: 122px;
  height: auto;
  filter: brightness(0) invert(1);
}

.institutional-focus__brand-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 3rem;
  line-height: 1;
}

.institutional-focus__brand-copy span {
  display: block;
  max-width: 290px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  line-height: 1.24;
}

.events-section {
  background:
    linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
}

.events-intro {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.event-card {
  padding: 28px;
}

.event-card--visual {
  padding: 0;
  overflow: hidden;
}

.event-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9e4ef;
}

.event-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card--visual .event-card__content {
  padding: 22px 24px 24px;
}

.event-card__content {
  display: block;
  padding: 0;
}

.event-card__tag {
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card__content h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.22;
}

.event-card__content p {
  margin: 0;
}

.event-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.event-card__footer span {
  color: #6c8198;
  font-size: 0.83rem;
}

.event-card__footer a {
  color: var(--blue-700);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.event-card__footer a:hover {
  text-decoration: underline;
}

.archive-posts {
  display: grid;
  gap: 28px;
}

.archive-post {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.archive-post--text-only {
  grid-template-columns: 1fr;
}

.archive-post__media {
  overflow: hidden;
  background: #d9e4ef;
}

.archive-post__media img {
  display: block;
  width: 100%;
  height: auto;
}

.archive-post__body h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.14;
}

.archive-post__meta {
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-post__body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

.archive-post__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 20px;
}

.archive-post__gallery img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.map-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(90, 209, 230, 0.12), transparent 22%),
    linear-gradient(180deg, #f8fbfe, #eef4f9);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.world-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(21, 96, 176, 0.14), rgba(21, 96, 176, 0.05) 36%, transparent 60%),
    linear-gradient(180deg, #edf3fa, #dde8f5);
  box-shadow: 0 18px 42px rgba(7, 25, 50, 0.08);
}

.world-map__art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(21, 96, 176, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 96, 176, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
}

.world-map__shape {
  position: absolute;
  background: rgba(73, 122, 191, 0.16);
  border: 3px solid rgba(73, 122, 191, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.world-map__shape--north-america {
  left: 20%;
  top: 38%;
  width: 21%;
  height: 20%;
  clip-path: polygon(8% 26%, 28% 14%, 40% 4%, 54% 12%, 67% 6%, 81% 22%, 87% 40%, 78% 56%, 59% 58%, 43% 66%, 31% 84%, 17% 84%, 5% 70%, 0 36%);
}

.world-map__shape--south-america {
  left: 49%;
  top: 60%;
  width: 11%;
  height: 24%;
  clip-path: polygon(22% 10%, 52% 0, 77% 16%, 86% 40%, 75% 74%, 52% 100%, 30% 92%, 22% 62%, 10% 40%);
}

.world-map__shape--europe-asia {
  left: 45%;
  top: 28%;
  width: 31%;
  height: 24%;
  clip-path: polygon(0 24%, 10% 16%, 22% 8%, 37% 10%, 49% 17%, 63% 18%, 79% 19%, 91% 32%, 100% 49%, 98% 66%, 84% 69%, 71% 65%, 59% 68%, 52% 76%, 50% 90%, 37% 96%, 26% 84%, 16% 84%, 7% 72%, 4% 58%, 0 44%, 3% 29%);
}

.world-map__shape--africa {
  left: 58%;
  top: 52%;
  width: 12%;
  height: 22%;
  clip-path: polygon(28% 12%, 48% 0, 68% 12%, 60% 42%, 72% 62%, 58% 92%, 36% 100%, 18% 84%, 16% 56%, 8% 34%);
}

.world-map__shape--india {
  left: 66.5%;
  top: 50%;
  width: 5.5%;
  height: 12%;
  clip-path: polygon(20% 10%, 58% 0, 86% 14%, 76% 56%, 50% 100%, 22% 90%, 12% 44%);
}

.world-map__shape--china {
  left: 80%;
  top: 38%;
  width: 10%;
  height: 12%;
  clip-path: polygon(8% 22%, 32% 8%, 66% 14%, 82% 36%, 72% 68%, 42% 80%, 14% 66%, 0 44%);
}

.world-map__shape--southeast-asia {
  left: 83%;
  top: 58%;
  width: 9%;
  height: 11%;
  clip-path: polygon(16% 10%, 48% 0, 80% 14%, 100% 58%, 72% 88%, 38% 90%, 10% 68%, 0 40%);
}

.world-map__shape--australia {
  left: 73.5%;
  top: 74%;
  width: 13%;
  height: 10%;
  clip-path: polygon(12% 24%, 44% 12%, 78% 22%, 92% 48%, 84% 74%, 52% 84%, 18% 60%, 0 38%);
}

.world-map__shape--greenland {
  left: 43%;
  top: 18%;
  width: 9%;
  height: 9%;
  clip-path: polygon(20% 22%, 56% 0, 88% 16%, 100% 48%, 72% 76%, 34% 74%, 6% 48%);
}

.world-map__shape--japan {
  left: 88%;
  top: 42%;
  width: 3%;
  height: 8%;
  clip-path: polygon(40% 0, 70% 18%, 58% 50%, 78% 72%, 44% 100%, 18% 70%, 26% 34%);
}

.world-map__shape--madagascar {
  left: 69%;
  top: 64%;
  width: 4%;
  height: 8%;
  clip-path: polygon(32% 0, 72% 10%, 88% 42%, 58% 100%, 18% 82%, 10% 34%);
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-pin__dot {
  position: relative;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: 0 0 0 0 rgba(21, 96, 176, 0.32);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.map-pin__dot::after {
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(21, 96, 176, 0.24);
  border-radius: 50%;
  content: "";
}

.map-pin__label {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 20px rgba(7, 25, 50, 0.08);
  transition: background-color 180ms ease, color 180ms ease;
}

.map-pin:hover .map-pin__dot,
.map-pin.is-active .map-pin__dot {
  transform: scale(1.08);
  background: #0f3c73;
  box-shadow: 0 0 0 12px rgba(21, 96, 176, 0.14);
}

.map-pin:hover .map-pin__label,
.map-pin.is-active .map-pin__label {
  color: var(--white);
  background: var(--blue-700);
}

.map-panel {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 25, 50, 0.08);
}

.map-location {
  display: none;
}

.map-location.is-active {
  display: block;
}

.map-location h3 {
  margin: 6px 0 14px;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.map-location p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.stack-grid,
.timeline-grid {
  display: grid;
  gap: 18px;
}

.stack-card {
  border-left: 5px solid var(--blue-700);
}

.focus-more {
  display: block;
  margin-top: 18px;
  margin-left: auto;
  padding: 12px 18px;
  border: 1px solid rgba(21, 96, 176, 0.2);
  color: var(--blue-700);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.focus-more:hover {
  border-color: var(--blue-700);
  color: var(--white);
  background: var(--blue-700);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.about-logo {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.publication-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(21, 96, 176, 0.2);
  color: var(--blue-700);
  background: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.publication-button:hover {
  border-color: var(--blue-700);
  color: var(--white);
  background: var(--blue-700);
}

.publication-button--primary {
  border-color: var(--blue-700);
  color: var(--white);
  background: var(--blue-700);
}

.publication-button--primary:hover {
  background: var(--blue-950);
  border-color: var(--blue-950);
}

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

.action-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 28px;
  border: 1px solid rgba(21, 96, 176, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.action-card h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.12;
}

.action-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.action-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.action-card li + li {
  margin-top: 6px;
}

.action-card__cta {
  margin-top: auto;
}

.action-intro {
  max-width: 860px;
}

.action-summary {
  max-width: 780px;
}

.publication-meta {
  display: grid;
  gap: 14px;
}

.publication-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pdf-frame {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pdf-frame iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
}

.text-link {
  color: var(--blue-700);
  font-weight: 800;
}

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

.board-card {
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.board-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.board-card p:last-child {
  margin-bottom: 0;
}

.board-card strong {
  color: var(--blue-950);
}

.pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--blue-100);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue-700);
  font-weight: 800;
}

.mission-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(90, 209, 230, 0.16), transparent 28%),
    linear-gradient(135deg, #0a3d7a, #1560b0 52%, #0b2b57);
}

.mission-section .eyebrow,
.mission-section .section-head h2 {
  color: var(--white);
}

.mission-grid {
  margin-top: 8px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.mission-card {
  min-height: 100%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 25, 50, 0.16);
}

.mission-icon {
  display: block;
  width: min(100%, 180px);
  height: auto;
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.mission-card h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 600;
}

.goals-section {
  background: #f1f6fb;
}

.goals-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.goals-copy {
  padding: 58px 42px 38px;
  background: #eaf1f8;
}

.goals-copy h2 {
  max-width: 18ch;
  margin: 0;
  color: #23384f;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.12;
}

.goals-visual {
  overflow: hidden;
  min-height: 430px;
  border-bottom-right-radius: 140px;
}

.goals-visual__image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.goals-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  padding: 22px 18px;
  border: 1px solid #d8e2ee;
  background: var(--white);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.goals-card:hover {
  color: var(--white);
  background: #17293d;
  border-color: #17293d;
  transform: translateY(-2px);
}

.goals-card h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.goals-card p {
  margin: 0;
  color: inherit;
  font-size: 0.96rem;
  line-height: 1.65;
}

.partners-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(90, 209, 230, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f6f9fc);
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}

.partners-carousel::before,
.partners-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  content: "";
  z-index: 2;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f9fbfe 0%, rgba(249, 251, 254, 0) 100%);
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f9fbfe 0%, rgba(249, 251, 254, 0) 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: partners-marquee 34s linear infinite;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-width: 220px;
  height: 124px;
  padding: 18px 20px;
  border: 1px solid rgba(21, 96, 176, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(6, 34, 71, 0.06);
}

.partner-logo img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.02);
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.cta-strip {
  color: white;
  background: var(--blue-950);
}

.cta-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 54px 0;
}

.cta-layout h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-form {
  display: grid;
  gap: 12px;
  width: min(100%, 380px);
}

.cta-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.cta-form__input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.cta-form__textarea {
  resize: vertical;
  min-height: 108px;
}

.cta-form__submit {
  justify-self: start;
}

.site-footer {
  color: white;
  background: #081a31;
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

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

.brand--footer .brand-image {
  height: 72px;
  filter: brightness(0) invert(1);
}

.footer-note,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.inner-page {
  min-height: calc(100vh - 320px);
  background: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 86% 18%, rgba(90, 209, 230, 0.22), transparent 26%),
    linear-gradient(135deg, #062247, #0d4b8f);
}

.page-hero .container {
  padding-top: 82px;
  padding-bottom: 70px;
}

.site-header--solid {
  background: var(--blue-950);
}

.rich-copy {
  padding-top: 56px;
}

.rich-copy h2 {
  margin-bottom: 22px;
  color: var(--blue-950);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.timeline-card {
  border-left: 5px solid var(--gold);
  padding: 26px 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms var(--ease);
}

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

@media (max-width: 1024px) {
  .utility-inner {
    min-height: 72px;
  }

  .utility-links a:first-child,
  .nav-actions {
    display: none;
  }

  .brand-image {
    height: 44px;
  }

  .brand-copy--header {
    max-width: 240px;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px 16px;
    margin-left: 0;
    background: #1f43a4;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(5, 34, 71, 0.24);
    z-index: 4;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 14px 0;
    min-height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: flex-start;
  }

  .nav-item,
  .nav-submenu {
    width: 100%;
  }

  .nav-parent {
    width: 100%;
    min-height: auto;
    padding: 14px 0;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .primary-nav a::after {
    bottom: 6px;
  }

  .nav-parent::after {
    bottom: 6px;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    margin-top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-item--has-submenu.is-open .nav-submenu {
    display: grid;
  }

  .nav-submenu a {
    padding: 12px 0 8px;
    border-top: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-shell {
    min-height: 52px;
  }

  .card-grid--three,
  .action-grid,
  .events-grid,
  .archive-post,
  .presence-grid,
  .board-grid,
  .stats-grid,
  .split-layout,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .institutional-focus__content {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
    align-items: flex-start;
    padding-top: 82px;
  }

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

  .map-layout {
    grid-template-columns: 1fr;
  }

  .goals-hero {
    grid-template-columns: 1fr;
  }

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

  .partner-logo {
    width: 190px;
    min-width: 190px;
  }

}

@media (max-width: 720px) {
  .utility-inner,
  .section-head,
  .cta-layout,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-shell {
    min-height: 78px;
    padding: 0 12px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero--iom {
    min-height: 68vh;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero-copyblock {
    width: 100%;
    max-width: 100%;
  }

  .hero-copyblock h1 {
    max-width: 14ch;
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .hero-actions,
  .card-grid--three,
  .card-grid--two,
  .action-grid,
  .events-grid,
  .archive-post,
  .presence-grid,
  .board-grid,
  .stats-grid,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .archive-post {
    padding: 20px;
    gap: 20px;
  }

  .archive-post__gallery {
    grid-template-columns: 1fr;
  }

  .archive-post__gallery img {
    height: auto;
  }

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

  .institutional-focus__inner {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .institutional-focus__statement p {
    max-width: none;
    padding-left: 0;
    font-size: clamp(0.815rem, 2.9vw, 1.125rem);
    line-height: 1.45;
  }

  .institutional-focus__logo-wrap {
    align-items: flex-start;
  }

  .institutional-focus__logo {
    width: 86px;
  }

  .institutional-focus__brand-copy strong {
    font-size: 2rem;
  }

  .institutional-focus__brand-copy span {
    font-size: 1rem;
  }

  .world-map,
  .map-panel {
    min-height: 380px;
  }

  .map-pin__label {
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .goals-copy {
    padding: 32px 24px 26px;
  }

  .goals-visual {
    min-height: 300px;
    border-bottom-right-radius: 90px;
  }

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

  .hero-actions {
    display: grid;
  }

  .partner-logo {
    width: 160px;
    min-width: 160px;
    height: 100px;
    padding: 14px;
  }

  .partners-carousel::before,
  .partners-carousel::after {
    width: 36px;
  }
}

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