/* =========================================================
   CENTUM — HERO SECTION
   ========================================================= */

:root {
  --navy:      #061c2d;
  --navy-2:    #09283d;
  --ink:       #102d43;
  --gold:      #d9ab5c;
  --cream:     #f4f7f8;
  --white:     #ffffff;
  --line:      rgba(255, 255, 255, .28);

  --font-head: "Lora", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 96px;
  --header-h-scrolled: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* 80% width container used across header + sections */
.container-custom {
  width: 85%;
  max-width: 1760px;
  margin-inline: auto;
}

/* ---------------- HEADER ---------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  transition: height .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
}

.site-header.scrolled {
  height: var(--header-h-scrolled);
  background: rgba(6, 28, 45, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.header-inner { width: 85%; }

.logo-img { height: 60px; width: auto; }

.main-nav ul {
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  opacity: .82;
  padding-bottom: 6px;
  transition: opacity .3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}

.nav-link:hover { opacity: 1; }

.nav-link.active {
  opacity: 1;
}

.nav-link.active::after { right: 0; }

.header-actions { gap: 22px; }

.search-toggle {
  background: none;
  border: 0;
  color: var(--white);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  opacity: .9;
  transition: opacity .3s, transform .3s;
}
.search-toggle svg { width: 18px; height: 18px; }
.search-toggle:hover { opacity: 1; transform: scale(1.06); }

.header-cta {
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s;
  background: var(--navy);
}
.header-cta:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-image {
  animation: heroZoom 14s ease-out forwards;
  z-index: 1;
  transition: opacity 1.1s var(--ease);
}

.hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero-video.is-visible { opacity: 1; }
.hero-image.is-hidden { opacity: 0; }

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(3, 21, 34, .88) 0%, rgba(3, 21, 34, .55) 42%, rgba(3, 21, 34, .12) 100%),
    linear-gradient(0deg, rgba(3, 21, 34, .45), transparent 45%);
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* central play button */
.hero-play {
  position: absolute;
  left: 61%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 99;
  background: none;
  border: 0;
  color: var(--white);
}

.play-ring {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .4s var(--ease), background .4s, color .4s;
}
.play-ring svg { width: 70px; height: 70px; margin-left: 3px; }

.hero-play:hover .play-ring {
  transform: scale(1.08);
  background: var(--white);
  color: var(--ink);
}

/* left copy block */
.hero-content {
  position: relative;
  z-index: 4;
  padding-top: var(--header-h);
}

.hero-text { max-width: 650px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: .85;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.hero-title {
  font: 500 clamp(46px, 6vw, 84px)/1.04 var(--font-head);
  letter-spacing: -.01em;
  margin: 0;
}

.accent { color: var(--gold); font-style: italic; }

.hero-copy {
  font-family: var(--font-body);
  max-width: 460px;
  line-height: 1.7;
  font-size: 16px;
  margin: 30px 0;
  opacity: .92;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-cta {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--white);
  border-radius: 999px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .25);
}

.story-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 0;
  background: none;
  color: var(--white);
}

.play-icon-sm {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .35s, color .35s;
}
.play-icon-sm svg { width: 25px; height: 25px; margin-left: 2px; }
.story-btn:hover .play-icon-sm { background: var(--white); color: var(--ink); }
.story-btn span:last-child { font-size: 13px; font-weight: 500; }

/* section progress rail */
.section-nav {
  position: absolute;
  right: 6.5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  color: var(--white);
}

.section-nav-count {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: .04em;
  opacity: .85;
}
.section-nav-count [data-nav-current] { 
  font-weight: 700; 
  font-size: 25px; 
}

.section-nav-track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 4px 0;
}
.section-nav-track::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, .3);
  transform: translateX(-50%);
}

.dot {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
  transition: background .3s, transform .3s, border-color .3s;
}
.dot:hover { border-color: var(--white); }
.dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.35);
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  right: 6.5%;
  bottom: 44px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .02em;
  opacity: .8;
}
.scroll-arrow {
  font-size: 18px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.section-stub { height: 1px; }

/* ---------------- VIDEO MODAL ---------------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(2, 15, 24, .95);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.video-modal.open { opacity: 1; visibility: visible; }

.video-wrapper {
  width: min(920px, 88vw);
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-wrapper video { width: 100%; height: 100%; }

.modal-close {
  position: absolute;
  top: 30px;
  right: 4%;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
}

/* ---------------- SEARCH OVERLAY ---------------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(6, 28, 45, .97);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.search-overlay.open { opacity: 1; visibility: visible; }

.search-box {
  width: 80%;
  max-width: 720px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 18px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .45s var(--ease) .05s, opacity .45s var(--ease) .05s;
}
.search-overlay.open .search-box { transform: translateY(0); opacity: 1; }

.search-box svg { width: 22px; height: 22px; flex-shrink: 0; opacity: .8; }

.search-box input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  color: var(--white);
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
}
.search-box input::placeholder { color: rgba(255, 255, 255, .45); }

.search-hint {
  font-size: 12px;
  opacity: .6;
}
.search-hint kbd {
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--font-body);
}

/* ---------------- ACCESSIBILITY / MOTION ---------------- */
@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; transform: none; }
  .scroll-arrow { animation: none; }
}

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

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) {
  .header-inner, .container-custom { width: 88%; }
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .section-nav { right: 4%; }
  .hero-scroll { right: 4%; }
}

@media (max-width: 640px) {
  .header-inner, .container-custom { width: 89%; }
  .hero-title { font-size: 42px; }
  .hero-copy { font-size: 13px; }
  .hero-play { display: none; }
  .section-nav { display: none; }
  .hero-scroll { bottom: 24px; }
}

/* =========================================================
   SHARED SECTION PRIMITIVES
   ========================================================= */

.about-section,
.portfolio-section,
.impact-section,
.value-section,
.investor-section,
.insights-section,
.governance-section,
.cta-section {
  position: relative;
  padding: 150px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .8;
  margin: 0 0 26px;
}
.eyebrow i {
  display: block;
  width: 1px;
  height: 13px;
  background: currentColor;
  opacity: .5;
  font-style: normal;
}
.eyebrow-dark { color: var(--ink); opacity: .68; }

.section-title {
  font: 500 clamp(32px, 3.4vw, 46px)/1.18 var(--font-head);
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 22px;
}
.section-title--light { color: var(--white); }

.section-copy {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
  opacity: .72;
  max-width: 420px;
  margin: 0 0 38px;
}
.section-copy--light { color: var(--white); opacity: .78; }

/* pill buttons */
.btn-outline-dark,
.btn-outline,
.btn-solid-dark {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-outline-dark {
  border: 1px solid rgba(16, 45, 67, .32);
  color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-solid-dark {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(3, 15, 26, .35);
}
.btn-solid-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(3, 15, 26, .45);
}
.btn-sm { padding: 12px 20px; gap: 14px; }

.btn-outline-dark span,
.btn-outline span,
.btn-solid-dark span {
  transition: transform .35s var(--ease);
  display: inline-block;
}
.btn-outline-dark:hover span,
.btn-outline:hover span,
.btn-solid-dark:hover span { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

.icon-arrow-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16, 45, 67, .28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.icon-arrow-btn svg { width: 16px; height: 16px; }
.icon-arrow-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateX(2px);
}
.icon-arrow-btn--sm { width: 32px; height: 32px; }
.icon-arrow-btn--sm svg { width: 14px; height: 14px; }

/* scroll-reveal */
[data-animate] .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-animate].is-visible .reveal { opacity: 1; transform: translateY(0); }
[data-animate] .reveal-1 { transition-delay: .05s; }
[data-animate] .reveal-2 { transition-delay: .14s; }
[data-animate] .reveal-3 { transition-delay: .23s; }
[data-animate] .reveal-4 { transition-delay: .32s; }
[data-animate] .reveal-5 { transition-delay: .41s; }
[data-animate] .reveal-6 { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   WHO WE ARE
   ========================================================= */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr .68fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3.3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-section:hover .about-image img,
.about-image:hover img { transform: scale(1.04); }

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
}
.about-stats .stat dd {
  font: 600 clamp(24px, 2.1vw, 30px)/1.1 var(--font-head);
  color: var(--ink);
  margin: 0 0 6px;
}
.about-stats .stat dt {
  font-size: 12.5px;
  color: var(--ink);
  opacity: .6;
  margin: 0;
}

/* =========================================================
   OUR PORTFOLIO
   ========================================================= */
.portfolio-section { background: var(--navy); }

.portfolio-grid {
  display: grid;
  grid-template-columns: .62fr 1.5fr;
  gap: 56px;
  align-items: center;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, .3);
}
.portfolio-card-media {
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
}
.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.portfolio-card:hover .portfolio-card-media img { transform: scale(1.06); }

.portfolio-card-body { padding: 22px 22px 26px; }
.portfolio-card-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}
.portfolio-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: .68;
  margin: 0 0 16px;
}

/* =========================================================
   IMPACT
   ========================================================= */
.impact-section { background: var(--cream); }

.impact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr .62fr;
  gap: 40px;
  align-items: stretch;
}

.impact-image {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
}
.impact-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  filter: brightness(0.7);
}
.impact-image figcaption {
  position: relative;
  z-index: 1;
  padding: 30px 34px;
}
.impact-tag {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.impact-title {
  font: 500 clamp(22px, 2.1vw, 28px)/1.28 var(--font-head);
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 18px rgba(255, 255, 255, .35);
}

.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0;
  padding-left: 50px;
}
.impact-stat {
  display: flex;
  align-items: center;
  gap: 18px;
}
.impact-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border: 1px solid rgba(16, 45, 67, .18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.impact-icon svg { width: 24px; height: 24px; }
.impact-stat dd {
  font: 600 45px/1.1 var(--font-head);
  color: var(--ink);
  margin: 0 0 5px;
}
.impact-stat dt {
  font-size: 15px;
  color: var(--ink);
  opacity: .62;
  margin: 0;
}
.impact-stats .btn-outline-dark { align-self: flex-start; margin-top: 6px; }

.impact-map {
  background: rgba(16, 45, 67, .045);
  border-radius: 4px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.africa-map { width: 100%; height: auto; flex: 1; }
.africa-map-continent { fill: rgba(16, 45, 67, .16); }
.africa-map-highlight { fill: var(--ink); }
.africa-map-dot {
  fill: var(--white);
  animation: dotPulse 2.4s ease-in-out infinite;
  transform-origin: 205px 168px;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .7; }
}
.impact-map-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.impact-map-footer p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  opacity: .75;
  margin: 0;
}
.impact-map-footer strong { opacity: 1; }

/* =========================================================
   HOW WE CREATE VALUE
   ========================================================= */
.value-section {
  color: var(--white);
  overflow: hidden;
}
.value-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.value-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.value-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(3, 15, 24, .82) 0%, rgba(3, 15, 24, .55) 45%, rgba(3, 15, 24, .3) 100%),
    linear-gradient(0deg, rgba(3, 15, 24, .35), transparent 40%);
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.value-flow {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.value-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 96px;
}
.value-icon {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.value-icon svg { width: 30px; height: 30px; }
.value-step:hover .value-icon {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-4px);
}
.value-label {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.value-arrow {
  align-self: center;
  opacity: .55;
  margin-top: -24px;
  font-size: 15px;
}

/* =========================================================
   INVESTOR CENTRE
   ========================================================= */
.investor-section { background: #fff }

.investor-grid {
  display: grid;
  grid-template-columns: .8fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.investor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.investor-card {
  background: #eef7fb;
  border-radius: 4px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  min-height: 148px;
  transition: background .35s var(--ease), transform .35s var(--ease);
}


.investor-card img, .investor-card svg{
  width: 50px;
}

.investor-card:hover {
  background: var(--ink);
  transform: translateY(-4px);
}
.investor-icon {
  color: var(--ink);
  margin-bottom: 22px;
  transition: color .35s var(--ease);
}
.investor-icon svg { width: 50px; }
.investor-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: auto;
  padding-bottom: 18px;
  transition: color .35s var(--ease);
}
.investor-arrow {
  color: var(--ink);
  font-size: 30px;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.investor-card:hover .investor-icon,
.investor-card:hover .investor-label,
.investor-card:hover .investor-arrow { color: var(--white); }
.investor-card:hover .investor-arrow { transform: translateX(4px); }

/* =========================================================
   LATEST INSIGHTS
   ========================================================= */
.insights-section { background: #eef2f4; }

.insights-grid {
  display: grid;
  grid-template-columns: .68fr 1.5fr;
  gap: 56px;
  align-items: center;
}

.insights-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card { display: flex; flex-direction: column; }
.insight-media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  margin-bottom: 18px;
}
.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.insight-card:hover .insight-media img { transform: scale(1.06); }

.insight-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .55;
  margin: 0 0 10px;
}
.insight-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 20px;
}
.insight-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 45, 67, .1);
}
.insight-meta time {
  font-size: 12.5px;
  color: var(--ink);
  opacity: .55;
}

/* =========================================================
   GOVERNANCE & TRUST
   ========================================================= */
.governance-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.governance-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.governance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 38%, rgba(0,0,0,.65) 62%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 38%, rgba(0,0,0,.65) 62%, black 100%);
}
.governance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(6,28,45,.55) 55%, rgba(6,28,45,.15) 100%);
}

.governance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}

.governance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.governance-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 500;
}
.governance-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.governance-icon svg { width: 20px; height: 20px; }
.governance-list li:hover .governance-icon {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  color: var(--white);
  overflow: hidden;
  padding: 100px 0;
}
.cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4,20,33,.72) 0%, rgba(9,40,61,.5) 60%, rgba(9,40,61,.35) 100%);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-copy { max-width: 460px; }
.cta-copy .section-title { margin-bottom: 14px; }
.cta-copy .section-copy { margin-bottom: 0; max-width: 420px; }
.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--white); padding: 44px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
}
.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  opacity: .65;
  transition: opacity .3s;
}
.footer-nav a:hover { opacity: 1; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  opacity: .7;
  transition: opacity .3s;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { opacity: 1; }
.footer-copy {
  font-size: 12px;
  color: var(--ink);
  opacity: .5;
  margin: 0;
}

/* =========================================================
   RESPONSIVE — CONTENT SECTIONS
   ========================================================= */
@media (max-width: 1180px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 30px 50px; }
  .portfolio-grid,
  .investor-grid,
  .insights-grid,
  .governance-grid { grid-template-columns: 1fr; }
  .portfolio-copy,
  .investor-copy,
  .insights-copy,
  .governance-copy { max-width: 640px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-map { grid-column: 1 / -1; }
  .value-grid { grid-template-columns: 1fr; }
  .value-flow { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .about-section, .portfolio-section, .impact-section,
  .value-section, .investor-section, .insights-section,
  .governance-section, .cta-section { padding: 96px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .portfolio-cards,
  .investor-cards,
  .insights-cards { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-image { min-height: 320px; }
  .value-flow { gap: 26px 14px; }
  .value-step { width: 84px; }
  .value-arrow { display: none; }
  .cta-grid { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
}

@media (max-width: 640px) {
  .section-title { font-size: 30px; }
  .about-stats { flex-direction: column; gap: 24px; }
  .cta-actions { width: 100%; }
  .cta-actions a { flex: 1; justify-content: center; }
}