@charset "UTF-8";
/**
  Nation Media Group — 2025 Integrated Report microsite
  Design language: "the signal, not the static" — NMG's brand blue/red/gold,
  turned up to full saturation on a bright canvas, with a tri-colour rule as
  the page's signature motif (masthead, preloader, kicker underline).
  Built on the fullpage.js single-scroll template.
**/
html, body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  color: #10151F;
  background: #F5F8FF;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  background: #F5F8FF;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #0B5FFF, #001028, #FFB627);
}

::-moz-selection {
  background: #0B5FFF;
  color: #fff;
}

::selection {
  background: #0B5FFF;
  color: #fff;
}

a, button {
  text-decoration: none !important;
  cursor: pointer;
}

p {
  color: #10151F;
  line-height: 1.7;
  margin-bottom: 18px;
}

#fullpage {
  background: #F5F8FF;
}

.section .content > *,
.slide .content > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.section.js-active .content > *,
.slide.js-active .content > * {
  opacity: 1;
  transform: translateY(0);
}

.section.js-active .content > *:nth-child(1),
.slide.js-active .content > *:nth-child(1) {
  transition-delay: 0.09s;
}

.section.js-active .content > *:nth-child(2),
.slide.js-active .content > *:nth-child(2) {
  transition-delay: 0.18s;
}

.section.js-active .content > *:nth-child(3),
.slide.js-active .content > *:nth-child(3) {
  transition-delay: 0.27s;
}

.section.js-active .content > *:nth-child(4),
.slide.js-active .content > *:nth-child(4) {
  transition-delay: 0.36s;
}

.section.js-active .content > *:nth-child(5),
.slide.js-active .content > *:nth-child(5) {
  transition-delay: 0.45s;
}

.section.js-active .content > *:nth-child(6),
.slide.js-active .content > *:nth-child(6) {
  transition-delay: 0.54s;
}

.landing-section .content > * {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .section .content > *, .slide .content > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0B2A73;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader .preloader-mark {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}
.preloader .preloader-mark .preloader-kicker {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.preloader .preloader-mark .preloader-year {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: #FFB627;
}
.preloader .preloader-rule {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.preloader .preloader-rule i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #0B5FFF, #001028, #FFB627);
  animation: preloader-fill 1.6s ease-in-out infinite;
}
.preloader .preloader-status {
  margin-top: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloader-fill {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  51% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-rule i {
    animation: none;
    width: 60%;
  }
}
.masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}
.masthead .masthead-rule {
  height: 3px;
  background: linear-gradient(90deg, #0B5FFF, #001028, #FFB627);
}
.masthead .masthead-rule.masthead-rule--bottom {
  height: 1px;
  opacity: 0.35;
  background: #10151F;
}
.masthead nav {
  width: 92%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.masthead nav .logo-wrapper {
  max-width: 190px;
}
.masthead nav .logo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.masthead nav .masthead-dateline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(16, 21, 31, 0.55);
}
.masthead nav .masthead-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-outline-report {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: 1.5px solid #0B5FFF;
  color: #0B5FFF;
  padding: 8px 18px;
  border-radius: 3px;
  transition: all 250ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-report:hover {
  background: #0B5FFF;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 95, 255, 0.3);
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(16, 21, 31, 0.2);
  transition: border-color 200ms ease, transform 200ms ease;
}
.navbar-toggler:hover {
  border-color: #0B5FFF;
  transform: scale(1.06);
}
.navbar-toggler .animated-icon3 span {
  background: #10151F;
  display: block;
  height: 2px;
  width: 20px;
  margin: 3px auto;
  border-radius: 2px;
}

.modal-content {
  background: #fff;
  border: none;
  border-radius: 6px;
}

.close {
  cursor: pointer;
  text-align: right;
  display: block;
  padding: 20px 30px 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: #10151F;
  transition: color 200ms ease;
}
.close:hover {
  color: #001028;
}

.frame-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: #001028;
  text-transform: uppercase;
}

.modal-body {
  padding: 10px 40px 50px;
}
.modal-body h1 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: #10151F;
  font-size: 25px;
}
.modal-body .frame {
  border-top: 2px solid #E8EFFF;
  padding-top: 10px;
}
.modal-body .frame ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-body .frame li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #E8EFFF;
}
.modal-body .frame li .folio {
  font-family: "IBM Plex Mono", monospace;
  color: rgba(16, 21, 31, 0.4);
  font-size: 13px;
}
.modal-body .frame li a {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: #10151F;
  transition: color 200ms ease, padding-left 200ms ease;
}
.modal-body .frame li:hover a {
  color: #0B5FFF;
  padding-left: 6px;
}

.modal .frame li {
  opacity: 0;
  transform: translateX(-14px);
  animation: menuItemIn 0.5s ease forwards;
}

.modal.show .frame li:nth-child(1) {
  animation-delay: 0.06s;
}
.modal.show .frame li:nth-child(2) {
  animation-delay: 0.12s;
}
.modal.show .frame li:nth-child(3) {
  animation-delay: 0.18s;
}
.modal.show .frame li:nth-child(4) {
  animation-delay: 0.24s;
}
.modal.show .frame li:nth-child(5) {
  animation-delay: 0.3s;
}
.modal.show .frame li:nth-child(6) {
  animation-delay: 0.36s;
}
.modal.show .frame li:nth-child(7) {
  animation-delay: 0.42s;
}
.modal.show .frame li:nth-child(8) {
  animation-delay: 0.48s;
}
.modal.show .frame li:nth-child(9) {
  animation-delay: 0.54s;
}

@keyframes menuItemIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal .frame li {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.btn {
  background: #0B5FFF;
  color: #fff !important;
  border-radius: 3px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  transition: background 250ms ease, transform 250ms ease, box-shadow 250ms ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn i {
  transition: transform 250ms ease;
}
.btn:hover {
  background: #001028;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 16, 40, 0.3);
}
.btn:hover i {
  transform: translateX(4px);
}
.btn.large-btn {
  padding: 14px 40px;
  margin-top: 10px;
}
.btn.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff !important;
}
.btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.page-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  text-align: left;
}
.page-wrapper .content {
  position: relative;
  width: 82%;
  margin: auto;
  z-index: 5;
}

.kicker {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #001028;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #0B5FFF;
  border-radius: 2px;
  transition: width 0.7s cubic-bezier(0.16, 0.84, 0.44, 1) 0.3s;
}
.kicker.kicker--light {
  color: #FFB627;
}

.section.js-active .kicker::after,
.slide.js-active .kicker::after {
  width: 48px;
}

h2.title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 44px;
  color: #10151F;
  margin-bottom: 26px;
}
h2.title span {
  font-style: italic;
  font-weight: 500;
  color: #0B5FFF;
}
h2.title.title--light {
  color: #fff;
}
h2.title.title--light span {
  color: #FFB627;
}

.folio-tab {
  position: absolute;
  top: 110px;
  right: 6%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(16, 21, 31, 0.45);
  z-index: 5;
}
.folio-tab.folio-tab--light {
  color: rgba(255, 255, 255, 0.45);
}

.landing-section {
  position: relative;
  overflow: hidden;
  background: #0B2A73;
}
.landing-section .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.landing-section .hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.8s ease;
  will-change: opacity, transform;
}
.landing-section .hero-bg-slide.is-visible {
  opacity: 1;
  animation: heroKenBurns 6.5s ease-in-out forwards;
}
.landing-section .landing-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 42, 115, 0.82) 0%, rgba(11, 42, 115, 0.7) 45%, rgba(16, 21, 31, 0.92) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(11, 42, 115, 0.7) 45%, rgba(16, 21, 31, 0.92) 100%);
}
.landing-section .page-wrapper {
  height: 100vh;
}
.landing-section .landing-content {
  max-width: 720px;
  text-align: center;
  margin: auto;
}
.landing-section .landing-content .kicker {
  color: #FFB627;
}
.landing-section .landing-content .kicker::after {
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  transition-delay: 0.8s;
}
.landing-section .landing-content .masthead-headline {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 84px;
  line-height: 1;
  color: #fff;
  margin-bottom: 26px;
}
.landing-section .landing-content .deck {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 10px auto 20px auto;
}
.landing-section .landing-content .buttons {
  justify-content: center;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide.is-visible {
    animation: none;
    transform: scale(1);
  }
}
@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide.is-visible {
    animation: none;
    transform: scale(1);
  }
}
.scroll-down span {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 40px;
  height: 66px;
  margin-left: -20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  z-index: 20;
}
.scroll-down span:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  content: "\f103";
  top: 8px;
  left: 13px;
  color: #fff;
  animation: sdb 1.4s infinite;
}

@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.back-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 20;
  width: 44px;
  height: 44px;
  background: #0B5FFF;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.75;
  transition: all 250ms ease;
}
.back-top:hover {
  opacity: 1;
  background: #001028;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 16, 40, 0.35);
}

body.fp-viewing-section1 .back-top {
  display: none;
}

.vision-card {
  background: #E8EFFF;
  border-left: 3px solid #0B5FFF;
  border-radius: 0 6px 6px 0;
  padding: 30px 34px;
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.vision-card:hover {
  box-shadow: 0 14px 34px rgba(11, 95, 255, 0.14);
  transform: translateY(-3px);
}
.vision-card .vision-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 21, 31, 0.1);
}
.vision-card .vision-row:last-child {
  border-bottom: none;
}
.vision-card .vision-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #001028;
}
.vision-card p {
  margin: 6px 0 0;
  font-family: "Fraunces", serif;
  font-size: 19px;
}
.vision-card .value-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}
.vision-card .value-list li {
  font-size: 14px;
  padding: 4px 0;
}
.vision-card .value-list li:before {
  content: "— ";
  color: #0B5FFF;
}

.overview-section {
  position: relative;
  overflow: hidden;
}
.overview-section .overview-bg {
  position: absolute;
  left: 50%;
  bottom: 0%;
  width: min(80%, 1100px);
  height: 80vh;
  max-height: 800px;
  transform: translateX(-50%) translateY(20px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  mix-blend-mode: multiply;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.2s;
}
.overview-section.js-active .overview-bg {
  opacity: 0.22;
  transform: translateX(-50%) translateY(0);
  animation: overviewFloat 10s ease-in-out 1.4s infinite alternate;
}
.overview-section .page-wrapper, .overview-section .content {
  position: relative;
  z-index: 2;
}

@keyframes overviewFloat {
  from {
    transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(-16px);
  }
}
.values-strip {
  margin-top: 34px;
}

.values-strip-label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(16, 21, 31, 0.5);
  margin-bottom: 14px;
}

.value-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.value-card {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  padding: 26px 12px 16px;
  color: #fff;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(16, 21, 31, 0.18);
}
.value-card .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(16, 21, 31, 0.18);
}
.value-card .value-icon i {
  font-size: 20px;
}
.value-card .value-name {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.35;
}
.value-card.value-card--improve {
  background: #F2A93B;
}
.value-card.value-card--improve .value-icon i {
  color: #F2A93B;
}
.value-card.value-card--focus {
  background: #35B3E8;
}
.value-card.value-card--focus .value-icon i {
  color: #35B3E8;
}
.value-card.value-card--team {
  background: #9AA0A6;
}
.value-card.value-card--team .value-icon i {
  color: #9AA0A6;
}
.value-card.value-card--integrity {
  background: #8DC63F;
}
.value-card.value-card--integrity .value-icon i {
  color: #8DC63F;
}
.value-card.value-card--drive {
  background: #0B2A73;
}
.value-card.value-card--drive .value-icon i {
  color: #0B2A73;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.overview-section.js-active .value-cards > .value-card:nth-child(1) {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.28s;
}

.overview-section.js-active .value-cards > .value-card:nth-child(2) {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.36s;
}

.overview-section.js-active .value-cards > .value-card:nth-child(3) {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.44s;
}

.overview-section.js-active .value-cards > .value-card:nth-child(4) {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.52s;
}

.overview-section.js-active .value-cards > .value-card:nth-child(5) {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .overview-bg {
    animation: none !important;
  }
  .value-card {
    animation: none !important;
  }
}
.footprint-country h4 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: #0B5FFF;
  border-bottom: 2px solid #10151F;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.footprint-country ul {
  list-style: none;
  padding: 0;
}
.footprint-country li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(16, 21, 31, 0.25);
  transition: color 200ms ease, padding-left 200ms ease;
}
.footprint-country li:hover {
  color: #001028;
  padding-left: 4px;
}

.digital-stats {
  margin-top: 26px;
}
.digital-stats h2.title {
  color: #fff;
}
.digital-stats .dstat {
  position: relative;
  text-align: center;
  padding: 30px 14px 26px;
  border: 1px solid rgba(16, 21, 31, 0.1);
  border-radius: 10px;
  margin-bottom: 16px;
  background: #fff;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.digital-stats .dstat .dstat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
}
.digital-stats .dstat h3 {
  font-family: "Fraunces", serif;
  font-size: 46px;
  font-weight: 600;
  color: #0B5FFF;
  margin-bottom: 6px;
  line-height: 1;
}
.digital-stats .dstat p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: rgba(16, 21, 31, 0.6);
}
.digital-stats .dstat.dstat--website .dstat-icon {
  background: #0B5FFF;
}
.digital-stats .dstat.dstat--facebook .dstat-icon {
  background: #1877F2;
}
.digital-stats .dstat.dstat--x .dstat-icon {
  background: #10151F;
}
.digital-stats .dstat.dstat--youtube .dstat-icon {
  background: #FF0000;
}
.digital-stats .dstat.dstat--instagram .dstat-icon {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}
.digital-stats .dstat.dstat--total {
  background: #515BD4;
  border-color: transparent;
  padding: 55px 34px;
}
.digital-stats .dstat.dstat--total h3 {
  color: #fff;
  font-size: 52px;
}
.digital-stats .dstat.dstat--total p {
  color: rgba(255, 255, 255, 0.9);
}
.digital-stats > div:nth-child(1) .dstat {
  transition-delay: 0.08s;
}
.digital-stats > div:nth-child(2) .dstat {
  transition-delay: 0.16s;
}
.digital-stats > div:nth-child(3) .dstat {
  transition-delay: 0.24s;
}
.digital-stats > div:nth-child(4) .dstat {
  transition-delay: 0.32s;
}
.digital-stats > div:nth-child(5) .dstat {
  transition-delay: 0.4s;
}
.digital-stats > div:nth-child(6) .dstat {
  transition-delay: 0.48s;
}

.slide.js-active .digital-stats .dstat {
  opacity: 1;
  transform: scale(1);
}

.digital-stats .dstat:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 34px rgba(16, 21, 31, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .digital-stats .dstat {
    transition: box-shadow 0.3s ease;
    opacity: 1;
    transform: none;
  }
}
.performance-section {
  background: #0B2A73;
}
.performance-section .stat-grid {
  margin-top: 10px;
}
.performance-section .sbox {
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin-bottom: 16px;
  text-align: center;
  transition: transform 300ms ease, background 300ms ease;
}
.performance-section .sbox:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}
.performance-section .sbox h2 {
  font-family: "Fraunces", serif;
  font-size: 32px;
  color: #FFB627;
  margin-bottom: 6px;
}
.performance-section .sbox h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.section.js-active .stat-grid > div:nth-child(1) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.21s;
}

.section.js-active .stat-grid > div:nth-child(2) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.27s;
}

.section.js-active .stat-grid > div:nth-child(3) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.33s;
}

.section.js-active .stat-grid > div:nth-child(4) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.39s;
}

.section.js-active .stat-grid > div:nth-child(5) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.45s;
}

.section.js-active .stat-grid > div:nth-child(6) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.51s;
}

.section.js-active .stat-grid > div:nth-child(7) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.57s;
}

.section.js-active .stat-grid > div:nth-child(8) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.63s;
}

.section.js-active .stat-grid > div:nth-child(9) .sbox {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.69s;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0B5FFF;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 18px;
  margin-bottom: 14px;
  transition: transform 250ms ease;
}
.monogram.monogram--lg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 0;
  font-size: 46px;
  display: none;
  background: #123B9E;
}

.board-card {
  padding: 24px;
  border: 1px solid rgba(16, 21, 31, 0.12);
  border-radius: 6px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11, 95, 255, 0.12);
}
.board-card:hover .monogram {
  transform: scale(1.08);
}
.board-card.board-card--chair h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin: 0 0 4px;
}
.board-card p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  margin: 0;
  color: rgba(16, 21, 31, 0.6);
}

.board-lead {
  margin-bottom: 24px;
}

.board-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.board-list li {
  font-family: "Fraunces", serif;
  font-size: 16px;
}
.board-list li span {
  color: #001028;
  font-weight: 600;
}

.board-note {
  margin-top: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: rgba(16, 21, 31, 0.55);
}

.exec-grid {
  margin-top: 10px;
}

.executive h2.title {
  margin-bottom: 10px;
}

.exec-card {
  padding: 10px 10px;
  text-align: center;
  margin-bottom: 0px;
  transition: transform 250ms ease;
}
.exec-card:hover {
  transform: translateY(-4px);
}
.exec-card:hover .monogram {
  transform: scale(1.08);
}
.exec-card h4 {
  font-family: "Fraunces", serif;
  font-size: 16px;
  margin: 0 0 4px;
}
.exec-card p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: rgba(16, 21, 31, 0.6);
  margin: 0;
}
.exec-card .prof-pic {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
}
.exec-card .prof-pic .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #E8EFFF;
  border: 2px solid rgba(11, 95, 255, 0.15);
}
.exec-card .prof-pic .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.exec-card .prof-pic .img-wrapper .monogram--lg {
  display: none;
  font-size: 30px;
  border-radius: 50%;
}
.exec-card .prof-pic .img-wrapper.img-fallback .monogram--lg {
  display: flex;
}

.section.js-active .exec-grid > div:nth-child(1) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.145s;
}

.section.js-active .exec-grid > div:nth-child(2) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.19s;
}

.section.js-active .exec-grid > div:nth-child(3) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.235s;
}

.section.js-active .exec-grid > div:nth-child(4) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.28s;
}

.section.js-active .exec-grid > div:nth-child(5) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.325s;
}

.section.js-active .exec-grid > div:nth-child(6) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.37s;
}

.section.js-active .exec-grid > div:nth-child(7) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.415s;
}

.section.js-active .exec-grid > div:nth-child(8) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.46s;
}

.section.js-active .exec-grid > div:nth-child(9) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.505s;
}

.section.js-active .exec-grid > div:nth-child(10) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.55s;
}

.section.js-active .exec-grid > div:nth-child(11) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.595s;
}

.section.js-active .exec-grid > div:nth-child(12) .exec-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.64s;
}

.esg-section {
  background: #0B2A73;
}
.esg-section .esg-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 820px;
}
.esg-section .pillar {
  text-align: center;
  padding: 30px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin-bottom: 20px;
  transition: transform 300ms ease, background 300ms ease;
}
.esg-section .pillar:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}
.esg-section .pillar i {
  font-size: 26px;
  color: #FFB627;
  margin-bottom: 14px;
}
.esg-section .pillar h4 {
  font-family: "Fraunces", serif;
  color: #fff;
  margin-bottom: 8px;
}
.esg-section .pillar p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
}

.section.js-active .esg-pillars > div:nth-child(1) .pillar {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.23s;
}

.section.js-active .esg-pillars > div:nth-child(2) .pillar {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.31s;
}

.section.js-active .esg-pillars > div:nth-child(3) .pillar {
  animation: cardIn 0.55s ease both;
  animation-delay: 0.39s;
}

@media (prefers-reduced-motion: reduce) {
  .dstat, .sbox, .exec-card, .pillar {
    animation: none !important;
  }
}
@media (max-width: 991px) {
  .masthead-headline {
    font-size: 56px !important;
  }
  h2.title {
    font-size: 32px;
  }
  .page-wrapper .content {
    width: 90%;
  }
  .folio-tab {
    top: 90px;
    right: 5%;
  }
}
@media (max-width: 767px) {
  .masthead-headline {
    font-size: 40px !important;
  }
  .landing-content .deck {
    font-size: 16px;
  }
  .buttons {
    flex-direction: column;
  }
  .digital-stats .dstat {
    margin-bottom: 12px;
  }
  .statements .page-wrapper {
    width: 90%;
  }
  .prof-pic {
    margin-bottom: 20px;
  }
}
.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 20.5px 0 20.5px 16px;
  border-color: transparent transparent transparent #fff;
  border-radius: 15px;
}

.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 20.5px 16px 20.5px 0;
  border-color: transparent #fff transparent transparent;
  border-radius: 15px;
}

#africa-map {
  max-width: 700px;
}

.footprint-regional {
  background: #0B2A73;
  color: #fff;
}
.footprint-regional .hub-row {
  margin-top: 26px;
}

.hubmap-wrap {
  position: relative;
}

.africa-map {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.hub-node {
  cursor: pointer;
  transition: fill 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s;
}
.hub-node:hover {
  filter: brightness(1.15);
}
.hub-node.active {
  filter: drop-shadow(0 0 10px rgba(255, 182, 39, 0.5));
}

.hub-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
}

.hub-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 9px 20px;
  border-radius: 30px;
  transition: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hub-tab:hover {
  border-color: #FFB627;
  color: #fff;
}
.hub-tab.active {
  background: #FFB627;
  border-color: #FFB627;
  color: #10151F;
  box-shadow: 0 8px 18px rgba(255, 182, 39, 0.35);
}

.hub-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 30px 32px;
  border-radius: 6px;
  min-height: 260px;
  transition: opacity 0.25s ease;
}
.hub-card.fade {
  opacity: 0;
}
.hub-card .hub-card-tag {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFB627;
  font-weight: 600;
  margin-bottom: 14px;
}
.hub-card h3 {
  font-family: "Fraunces", serif;
  color: #fff;
  font-size: 26px;
  margin-bottom: 14px;
}
.hub-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.hub-card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hub-card-brands span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 5px 14px;
}

.hub-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.hub-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.hub-progress-fill {
  height: 100%;
  width: 0%;
  background: #FFB627;
  border-radius: 2px;
}
.hub-progress-fill.animate {
  animation: hubProgress 10s linear;
}

@keyframes hubProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.hub-dots {
  display: flex;
  gap: 8px;
}
.hub-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.2s;
}
.hub-dots span.active {
  background: #FFB627;
  box-shadow: 0 0 0 3px rgba(255, 182, 39, 0.25);
}

.hub-auto-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.city-marker {
  pointer-events: none;
}

.city-dot {
  fill: #fff;
  stroke: #FFB627;
  stroke-width: 0.4;
}

.city-pulse {
  fill: #FFB627;
  opacity: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: cityPulse 2s ease-out infinite;
}

.city-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 3px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  fill: #fff;
  text-shadow: -1px -1px 0 #797979, 1px -1px 0 #797979, -1px 1px 0 #797979, 1px 1px 0 #797979;
}

@keyframes cityPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(3.2);
    opacity: 0;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .city-pulse {
    animation: none;
    opacity: 0;
  }
  .hub-progress-fill.animate {
    animation: none;
    width: 100%;
  }
}
#fp-nav ul li, .fp-slidesNav ul li {
  margin: 7px 10px;
}

#fp-nav ul, .fp-slidesNav ul {
  text-align: center;
}

.fp-slidesNav ul li a span {
  border: 1px solid #fff;
  height: 12px;
  width: 12px;
  margin: -6px 0px 0px -5px;
}

.fp-slidesNav ul li a.active span {
  border: 1px solid #fff;
  height: 12px;
  width: 30px !important;
  border-radius: 6px !important;
}

.board-card {
  cursor: pointer;
}
.board-card:focus-visible {
  outline: 2px solid #0B5FFF;
  outline-offset: 3px;
}
.board-card {
  text-align: center;
}
.board-card .prof-pic {
  width: 300px;
  height: 300px;
  margin: 0 auto 18px;
}
.board-card .prof-pic .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #E8EFFF;
  border: 2px solid rgba(11, 95, 255, 0.15);
}
.board-card .prof-pic .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.board-card .prof-pic .img-wrapper .monogram--lg {
  display: none;
  font-size: 30px;
  border-radius: 50%;
}
.board-card .prof-pic .img-wrapper.img-fallback .monogram--lg {
  display: flex;
}
.board-card .bio-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0B5FFF;
  opacity: 0.5;
  transform: translateX(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.board-card:hover .bio-cta, .board-card:focus-visible .bio-cta {
  opacity: 1;
  transform: translateX(0);
}

.board-grid {
  margin-top: 10px;
}

.director-card {
  text-align: center;
  padding: 14px 6px;
  margin-bottom: 22px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 250ms ease, background 250ms ease;
}
.director-card:hover, .director-card:focus-visible {
  transform: translateY(-4px);
  background: #E8EFFF;
}
.director-card:focus-visible {
  outline: 2px solid #0B5FFF;
  outline-offset: 2px;
}
.director-card .prof-pic {
  width: 150px;
  height: 150px;
  margin: 0 auto 12px;
}
.director-card .prof-pic .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #E8EFFF;
  border: 1px solid rgba(16, 21, 31, 0.1);
}
.director-card .prof-pic .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.director-card .prof-pic .img-wrapper .monogram--lg {
  display: none;
  font-size: 20px;
  border-radius: 50%;
}
.director-card .prof-pic .img-wrapper.img-fallback .monogram--lg {
  display: flex;
}
.director-card h4 {
  font-family: "Fraunces", serif;
  font-size: 14px;
  margin: 0 0 2px;
}
.director-card p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: rgba(16, 21, 31, 0.55);
  margin: 0;
}

.slide.js-active .board-grid > div:nth-child(1) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.15s;
}

.slide.js-active .board-grid > div:nth-child(2) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.2s;
}

.slide.js-active .board-grid > div:nth-child(3) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.25s;
}

.slide.js-active .board-grid > div:nth-child(4) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.3s;
}

.slide.js-active .board-grid > div:nth-child(5) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.35s;
}

.slide.js-active .board-grid > div:nth-child(6) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.4s;
}

.slide.js-active .board-grid > div:nth-child(7) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.45s;
}

.slide.js-active .board-grid > div:nth-child(8) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.5s;
}

.slide.js-active .board-grid > div:nth-child(9) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.55s;
}

.slide.js-active .board-grid > div:nth-child(10) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.6s;
}

.slide.js-active .board-grid > div:nth-child(11) .director-card {
  animation: cardIn 0.5s ease both;
  animation-delay: 0.65s;
}

.bio-modal-content {
  padding: 10px 6px;
}

.bio-modal-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #E8EFFF;
}
.bio-modal-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.bio-modal-photo .monogram--lg {
  display: none;
  font-size: 40px;
}
.bio-modal-photo.img-fallback .monogram--lg {
  display: flex;
}

.bio-modal-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: #0B5FFF;
  margin-bottom: 16px;
}

#boardBioModal #bioModalBio {
  color: rgba(16, 21, 31, 0.8);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  .director-card {
    animation: none !important;
  }
}
#section5 .fp-controlArrow.fp-prev {
  border-color: transparent #0B5FFF transparent transparent;
}

#section5 .fp-controlArrow.fp-next {
  border-color: transparent transparent transparent #0B5FFF;
}

@media (min-width: 992px) {
  .modal-lg, .modal-xl {
    max-width: 950px;
  }
}
.statements {
  position: relative;
  overflow: hidden;
}
.statements .statement-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease;
}
.statements.js-active .statement-bg {
  opacity: 0.16;
  animation: statementBgDrift 20s ease-in-out infinite alternate;
}
.statements .statement-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 42, 115, 0.94) 0%, rgba(11, 42, 115, 0.8) 55%, rgba(11, 42, 115, 0.94) 100%);
}
.statements::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0;
  transition: opacity 1.8s ease 0.3s;
}
.statements.js-active::before {
  opacity: 0.35;
}
.statements .page-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
}

@keyframes statementBgDrift {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.06) translate(-1%, -1%);
  }
}
.statements .folio-tab {
  position: absolute;
  top: 0;
}

.statement-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 6%;
}

.statement-content {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  margin-left: 120px;
  max-width: 700px;
}
.statement-content h2.title {
  font-size: 25px;
}
.statement-content p {
  color: #fff;
  font-size: 14px;
}
.statement-content::before {
  content: "“";
  position: absolute;
  top: -0.5em;
  left: -0.08em;
  font-family: "Fraunces", serif;
  font-size: 220px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
  pointer-events: none;
}
.statement-content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.statement-content > *:nth-child(1) {
  transition-delay: 0.09s;
}
.statement-content > *:nth-child(2) {
  transition-delay: 0.18s;
}
.statement-content > *:nth-child(3) {
  transition-delay: 0.27s;
}
.statement-content > *:nth-child(4) {
  transition-delay: 0.36s;
}
.statement-content > *:nth-child(5) {
  transition-delay: 0.45s;
}
.statement-content > *:nth-child(6) {
  transition-delay: 0.54s;
}

.section.js-active .statement-content > * {
  opacity: 1;
  transform: translateY(0);
}

.kicker--light {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.kicker--light::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #0B5FFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.25s;
}

.section.js-active .kicker--light::after {
  transform: scaleX(1);
}

.statement-content .title--light span {
  color: #FFB627;
  text-shadow: 0 0 28px rgba(255, 182, 39, 0.25);
}

.statement-portrait {
  position: relative;
  flex: 0 0 auto;
  align-self: flex-end;
  height: 82%;
  max-height: 620px;
  display: flex;
  align-items: flex-end;
}
.statement-portrait::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 70%;
  padding-top: 70%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.35) 0%, rgba(11, 95, 255, 0) 70%);
  filter: blur(20px);
  z-index: -1;
  opacity: 0;
  transition: opacity 1.4s ease 0.4s;
  animation: statementGlowPulse 6s ease-in-out infinite alternate;
}

.section.js-active .statement-portrait::before {
  opacity: 1;
}

@keyframes statementGlowPulse {
  from {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}
.statements .prof-pic {
  width: min(32vw, 420px);
  height: 100%;
}
.statements .prof-pic .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #123B9E;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.statements .prof-pic .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: block;
}
.statements .prof-pic .img-wrapper .monogram--lg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  font-size: 64px;
  border-radius: 0;
}
.statements .prof-pic .img-wrapper.img-fallback .monogram--lg {
  display: flex;
}

.section.js-active .statement-portrait .prof-pic {
  animation: statementFloat 7s ease-in-out 1.2s infinite alternate;
}

@keyframes statementFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
.statement-quote {
  position: absolute;
  top: -8%;
  right: -37%;
  width: 260px;
  background: #fff;
  color: #10151F;
  border-radius: 12px;
  padding: 22px 24px 20px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.6s ease 0.5s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s, box-shadow 0.6s ease 0.5s;
}
.statement-quote::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 34px;
  width: 20px;
  height: 20px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.statement-quote .quote-mark {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 44px;
  line-height: 0.6;
  color: #0B5FFF;
  margin-bottom: 6px;
}
.statement-quote p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.5;
  color: #10151F;
  margin: 0;
}
.statement-quote.statement-quote--stat {
  text-align: center;
}
.statement-quote.statement-quote--stat .stat-figure {
  position: relative;
  display: inline-block;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 36px;
  color: #0B5FFF;
  margin-bottom: 6px;
}
.statement-quote.statement-quote--stat .stat-figure::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -18px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid #FFB627;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease 1.05s, transform 0.5s ease 1.05s;
}
.statement-quote.statement-quote--stat p {
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: rgba(16, 21, 31, 0.7);
}
.statement-quote::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  border: 1.5px solid rgba(11, 95, 255, 0.5);
  opacity: 0;
  transform: scale(1);
}

.section.js-active .statement-quote {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.section.js-active .statement-quote::before {
  animation: statementRingPulse 0.9s ease-out 0.55s;
}
.section.js-active .statement-quote .stat-figure::after {
  opacity: 1;
  transform: translateY(0);
}

@keyframes statementRingPulse {
  from {
    opacity: 0.6;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.12);
  }
}
.statement-content .buttons .btn {
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s ease, transform 0.25s ease;
}
.statement-content .buttons .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFB627;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.statement-content .buttons .btn i {
  transition: transform 0.3s ease;
}
.statement-content .buttons .btn:hover {
  transform: translateY(-2px);
}
.statement-content .buttons .btn:hover::before {
  transform: scaleX(1);
}
.statement-content .buttons .btn:hover i {
  transform: translateY(3px);
}

@media (max-width: 991px) {
  .statement-quote {
    width: 210px;
    right: -6%;
  }
  .statement-portrait {
    height: 62vh;
  }
  .statements .prof-pic {
    width: min(50vw, 320px);
  }
  .statement-content::before {
    font-size: 160px;
  }
}
@media (max-width: 767px) {
  .statement-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding-top: 50px;
  }
  .statement-portrait {
    align-self: center;
    height: 42vh;
  }
  .statement-quote {
    position: static;
    transform: none;
    margin-bottom: 16px;
    width: 90%;
  }
  .section.js-active .statement-quote {
    transform: none;
  }
  .statements .prof-pic {
    width: min(70vw, 300px);
  }
  .statement-content {
    text-align: center;
  }
  .statement-content::before {
    display: none;
  }
  .kicker--light {
    padding-bottom: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .statement-bg {
    animation: none !important;
  }
  .section.js-active .statement-portrait .prof-pic {
    animation: none !important;
  }
  .statement-portrait::before {
    animation: none !important;
  }
  .statement-quote::before {
    animation: none !important;
  }
  .statement-content > *,
  .kicker--light::after,
  .statement-quote,
  .stat-figure::after {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 1400px) {
  .executive h2.title {
    font-size: 32px;
  }
  .executive .exec-card {
    padding: 7px 6px;
  }
  .executive .exec-card .prof-pic {
    width: 80px;
    height: 80px;
  }
  .executive .kicker {
    margin-bottom: 8px;
  }
  .executive .page-wrapper .content {
    margin: 120px auto auto auto;
  }
  .page-wrapper .content {
    margin: 100px auto auto auto;
  }
  body {
    font-size: 14px;
  }
  .landing-section .landing-content {
    margin: auto auto auto auto;
  }
  .landing-section .landing-content .masthead-headline {
    font-size: 70px;
    margin-bottom: 20px;
  }
  .page-wrapper .content.content-auto {
    margin: auto auto auto auto;
  }
  .digital-stats .col-md-2 {
    padding-right: 5px;
    padding-left: 5px;
  }
  .digital-stats .col-md-2 .dstat.dstat--total {
    padding: 55px 15px;
  }
  .director-card {
    padding: 14px 4px;
    margin-bottom: 10px;
  }
  #africa-map {
    max-width: 500px;
  }
  .esg-section .esg-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    max-width: 820px;
  }
}/*# sourceMappingURL=style.css.map */