:root {
  /* Brand palette */
  --primary-color: #0B0E14;
  --secondary-color: #1279B8;
  --accent-color: #35B45A;
  --text-dark: #212529;
  --text-light: #D9DDE3;

  /* Internal tokens (mapped to the brand palette) */
  --navy: #0B0E14;
  --navy-2: #131926;
  --petrol: #0e2a3f;
  --teal: #35B45A;
  --teal-bright: #46c46c;
  --gold: #35B45A;
  --paper: #ffffff;
  --mist: #eef2f3;
  --mist-2: #f6f8f8;
  --line: #dde5e7;
  --ink: #212529;
  --muted: #5a6b78;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.01em
}

a {
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.eyebrow svg {
  width: 16px;
  height: 16px
}

svg {
  flex-shrink: 0
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  
}

.btn svg {
  width: 18px;
  height: 18px
}

.btn-gold {
  background: var(--secondary-color);
  color: #fff
}

.btn-gold:hover {
  
  background: #3a9fd6;
  box-shadow: 0 8px 22px rgba(18, 121, 184, .3)
}

.btn-teal {
  background: var(--secondary-color);
  color: #fff
}

.btn-teal:hover {
  transform: translateY(-2px);
  background: #3a9fd6
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: transparent
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12)
}

header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  transition: background .3s ease, border-color .3s ease
}

header.nav.scrolled {
  background: var(--navy);
  border-bottom-color: rgba(255, 255, 255, .1)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff
}

.nav-logo .mark {
  height: 66px;
  width: auto;
  object-fit: contain
}

.nav-logo b {
  font-size: 1.05rem;
  letter-spacing: .03em
}

.nav-logo small {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  display: block;
  margin-top: 2px
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: .9rem
}

.nav-links a:hover {
  color: #fff
}

.nav-links .btn {
  padding: 9px 18px
}

/* Language toggle (EN / FR) */
.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, .3);
 /* border-radius: 999px;*/
  overflow: hidden;
  flex-shrink: 0
}

.lang-btn {
  background: transparent;
  color: var(--text-light);
  border: none;
  padding: 12px 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s
}

.lang-btn:hover {
  color: #fff
}

.lang-btn.active {
  background: var(--secondary-color);
  color: #fff
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer
}

.menu-toggle svg {
  width: 26px;
  height: 26px
}

.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(150deg, rgba(7, 9, 16, .92) 0%, rgba(11, 14, 20, .82) 45%, rgba(14, 42, 63, .78) 100%), url("../img/bg_neisa.jpg") center/cover no-repeat;
  overflow: hidden
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -40%;
  width: 55%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(53, 180, 90, .22), transparent 62%)
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 150px 0 92px
}

.hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 26px
}

.hero .pill svg {
  width: 15px;
  height: 15px;
  color: var(--teal-bright)
}

.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  max-width: 15ch;
  margin-bottom: 20px
}

.hero p.lede {
  font-size: 1.2rem;
  max-width: 50ch;
  color: var(--text-light);
  margin-bottom: 32px
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.stats {
  background: var(--navy-2);
  color: #fff
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat {
  padding: 36px 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.stat:last-child {
  border-right: none
}

.stat .ico {
  width: 30px;
  height: 30px;
  color: var(--teal-bright)
}

.stat .num {
  font-size: 2.6rem;
  color: var(--secondary-color);
  line-height: 1;
  font-weight: 700
}

.stat .lab {
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--text-light);
  text-transform: uppercase
}

section {
  padding: 40px 0
}

.section-head {
  max-width: 1000px;
  margin-bottom: 20px
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 14px 0 14px
}

.section-head p {
  color: var(--muted);
  font-size: 1.07rem
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.center .eyebrow {
  justify-content: center
}

#recap {
  background: url("../img/approach.jpeg") center/cover no-repeat
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.icard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 28px;
  
}

.icard:hover {
  box-shadow: 0 14px 36px rgba(11, 14, 20, .02);
  
}

.icard .ibadge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.icard .ibadge svg {
  width: 26px;
  height: 26px
}

.icard h3 {
  font-size: 1.2rem;
  margin-bottom: 10px
}

.icard p {
  color: var(--muted);
  font-size: .97rem
}

.signals {
  background: linear-gradient(150deg, #0f172a 0%, #122e4d 55%, #1279B8 130%);
  color: #fff;
  position: relative;
  overflow: hidden
}

.signals::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -40%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(18, 121, 184, .28), transparent 62%);
  pointer-events: none
}

.signals .wrap {
  position: relative;
  z-index: 2
}

.signals .section-head {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.signals .section-head .eyebrow {
  justify-content: center;
  color: var(--teal-bright)
}

.signals .section-head h2 {
  color: #fff
}

.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.sig {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 16px;
  padding: 24px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  
}

.sig:hover {
  
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .7)
}

.sig .shead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.sig .flag {
  width: 36px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em
}

.sig .flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.sig h3 {
  font-size: 1.05rem;
  color: #fff
}

.sig p {
  color: var(--text-light);
  font-size: .9rem
}

#attended {
  background: url("../img/approach.jpeg") center/cover no-repeat
}

#attended .section-head {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

#attended .section-head .eyebrow {
  justify-content: center
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.who {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px
}

.who .wico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.who .wico svg {
  width: 22px;
  height: 22px
}

.who h3 {
  font-size: 1rem;
  margin-bottom: 6px
}

.who p {
  font-size: .86rem;
  color: var(--muted)
}

.mous {
  background: var(--navy);
  color: #fff
}

.mous .section-head h2 {
  color: #fff
}

.mous .section-head p {
  color: var(--text-light)
}

.mous .eyebrow {
  color: var(--teal-bright)
}

.mou-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.mou {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.mou .photo {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #10293b, #0B0E14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

/* gradient overlay for a nicer finish */
.mou .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 14, 20, .45) 0%, rgba(11, 14, 20, 0) 55%);
  opacity: .5;
  transition: opacity .45s ease;
  pointer-events: none;
  z-index: 1
}

.mou .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03) brightness(.95);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .45s ease
}

/* zoom + brighten when hovering the card */
.mou:hover .photo img {
  transform: scale(1.12);
  filter: saturate(1.12) contrast(1.05) brightness(1.03)
}

.mou:hover .photo::after {
  opacity: .25
}

.mou .ph-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, .4)
}

.mou .ph-fallback svg {
  width: 42px;
  height: 42px
}

.mou .ph-fallback span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase
}

.mou .ph-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--gold);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px
}

.mou .ph-tag svg {
  width: 13px;
  height: 13px
}

.mou .body {
  padding: 22px 24px
}

.mou .parties {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--teal-bright);
  font-weight: 700;
  margin-bottom: 8px
}

.mou .parties svg {
  width: 15px;
  height: 15px
}

.mou h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: #fff
}

.mou p {
  color: var(--text-light);
  font-size: .92rem
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.gal {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #dfe8ea, #c6d6d9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8aa0a8;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(11, 14, 20, .12);
  transition: box-shadow .4s ease, transform .4s ease
}

.gal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 14, 20, .5) 0%, rgba(11, 14, 20, 0) 55%);
  opacity: .45;
  transition: opacity .45s ease;
  pointer-events: none;
  z-index: 1
}

.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03) brightness(.97);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .45s ease
}

.gal:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(11, 14, 20, .3)
}

.gal:hover img {
  transform: scale(1.14);
  filter: saturate(1.12) contrast(1.05) brightness(1.02)
}

.gal:hover::after {
  opacity: .2
}

.gal.tall {
  grid-row: span 2
}

.gal.wide {
  grid-column: span 2
}

.gal .ph-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.gal .ph-fallback svg {
  width: 30px;
  height: 30px
}

.gal .ph-fallback span {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase
}

.gal-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  gap: 10px;
  transition: background .2s
}

.gal-more:hover {
  background: var(--petrol)
}

.gal-more svg {
  width: 30px;
  height: 30px;
  color: var(--teal-bright)
}

.gal-more b {
  font-size: 1rem
}

.gal-more span {
  font-size: .76rem;
  color: var(--text-light)
}

.sec-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center
}

.videos {
  background: var(--mist-2)
}

.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.vid {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  
}

.vid:hover {
  box-shadow: 0 14px 34px rgba(11, 14, 20, .1);
  
}

.vid .thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #11303f, #0B0E14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.vid .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.vid .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.vid .play span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3)
}

.vid .play svg {
  width: 24px;
  height: 24px;
  color: #fff;
  margin-left: 3px
}

.vid .dur {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(11, 14, 20, .85);
  color: #fff;
  font-size: .72rem;
  padding: 3px 8px;
  border-radius: 4px
}

.vid .vbody {
  padding: 18px 20px
}

.vid .vlabel {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 6px
}

.vid h3 {
  font-size: 1.02rem;
  line-height: 1.35
}

.promo {
  background: linear-gradient(150deg, #0B0E14, #0e2a3f 65%, #1279B8);
  color: #fff;
  position: relative;
  overflow: hidden
}

.promo::before {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -45%;
  width: 48%;
  height: 150%;
  background: radial-gradient(circle, rgba(53, 180, 90, .24), transparent 60%)
}

.promo-inner {
  position: relative;
  z-index: 2;
  text-align: center
}

.promo .eyebrow {
  justify-content: center
}

.promo .eyebrow {
  color: var(--gold)
}

.promo h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin: 14px auto 18px;
  max-width: 1200px;
}

.promo .lede {
  max-width: 1200px;
  color: var(--text-light);
  font-size: 1.12rem;
  margin: 0 auto 10px
}

.promo .when {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-light);
  margin: 10px 0 7px
}

.promo .when svg {
  width: 18px;
  height: 18px;
  color: var(--gold)
}

.theme-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 30px
}

.theme {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, .03);
  text-align: left
}

.theme .tico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(53, 180, 90, .18);
  color: var(--teal-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

.theme .tico svg {
  width: 22px;
  height: 22px
}

.theme strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px
}

.theme span {
  font-size: .88rem;
  color: var(--text-light)
}

.reg-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 52px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.reg-card::after {
  content: "";
  position: absolute;
  right: -18%;
  top: -50%;
  width: 55%;
  height: 200%;
  background: radial-gradient(circle, rgba(53, 180, 90, .28), transparent 60%)
}

.reg-card>* {
  position: relative;
  z-index: 2
}

.reg-card .eyebrow {
  color: var(--gold);
  justify-content: center
}

.reg-card h2 {
  font-size: 2.1rem;
  margin: 14px 0 12px
}

.reg-card p {
  color: var(--text-light);
  max-width: 48ch;
  margin: 0 auto 28px
}

.reg-card .btn {
  font-size: 1.05rem;
  padding: 16px 42px;
  margin: 0 auto
}

footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 58px 0 30px
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 38px
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff
}

.foot-logo .mark {
  height: 70px;
  width: auto;
  object-fit: contain
}

.foot-logo b {
  font-size: 1rem
}

footer h4 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: .92rem
}

footer a:hover {
  color: #fff
}

footer a svg {
  width: 16px;
  height: 16px
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px
}

@media(max-width:900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat:nth-child(2) {
    border-right: none
  }

  .recap-grid,
  .sig-grid,
  .who-grid,
  .theme-row,
  .mou-grid,
  .vid-grid {
    grid-template-columns: 1fr
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gal.wide {
    grid-column: span 2
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .menu-toggle {
    display: block
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 18px 26px;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    /* center every item in the open mobile menu */
    align-items: center;
    text-align: center
  }

  .nav-links.open {
    display: flex
  }

  /* center the language toggle so it lines up with the menu items */
  .lang-toggle {
    align-self: center
  }

  .reg-card {
    padding: 36px 22px
  }

  /* Hero — mobile padding fix */
  .hero-inner {
    padding: 110px 18px 64px
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem)
  }

  .hero p.lede {
    font-size: 1.05rem
  }
}