/* ============ TOKENS ============ */
:root{
  --navy-900:#0B1F3F;
  --navy-800:#12294f;
  --navy-700:#1c3a63;
  --teal-600:#0B7A73;
  --teal-500:#12a69b;
  --teal-400:#2bb3ac;
  --teal-100:#e3f4f2;
  --bg-sky:#eaf3fb;
  --bg-sky-2:#dcecf8;
  --white:#ffffff;
  --ink:#0B1F3F;
  --gray-600:#5b6b7f;
  --gray-500:#7c8aa0;
  --gray-100:#f4f7fb;
  --border:#e3ebf3;
  --shadow-sm:0 2px 10px rgba(11,31,63,.06);
  --shadow-md:0 12px 32px rgba(11,31,63,.10);
  --shadow-lg:0 24px 60px rgba(11,31,63,.16);
  --radius:16px;
  --serif:'Fraunces', Georgia, serif;
  --sans:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--white);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
h1,h2,h3{font-family:var(--serif);color:var(--navy-900);font-weight:600;line-height:1.12;}

.wrap{max-width:1240px;margin:0 auto;padding:0 32px;}

::selection{background:var(--teal-400);color:#fff;}
:focus-visible{outline:2.5px solid var(--teal-500);outline-offset:3px;}

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

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 26px;border-radius:10px;
  font-weight:600;font-size:15px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn .arrow{transition:transform .2s ease;}
.btn:hover .arrow{transform:translateX(4px);}
.btn-primary{background:var(--navy-900);color:#fff;}
.btn-primary:hover{background:var(--teal-600);transform:translateY(-2px);box-shadow:var(--shadow-md);}
.btn-outline{background:transparent;color:var(--teal-600);border:1.5px solid var(--teal-600);}
.btn-outline:hover{background:var(--teal-100);transform:translateY(-2px);}
.btn-sm{padding:11px 22px;font-size:14px;}

/* ============ HEADER ============ */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled{border-color:var(--border);box-shadow:0 2px 20px rgba(11,31,63,.05);}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:84px;}
.logo{display:flex;align-items:center;gap:10px;}
.logo-text{font-family:var(--serif);font-size:22px;font-weight:600;color:var(--navy-900);letter-spacing:-.2px;}
.logo-text em{font-style:normal;font-weight:400;color:var(--teal-600);}
.footer-logo .logo-text{color:#fff;}
.footer-logo .logo-text em{color:var(--teal-400);}

.main-nav{display:flex;align-items:center;gap:36px;}
.nav-link{
  font-size:15px;font-weight:500;color:var(--navy-800);
  display:flex;align-items:center;gap:6px;
  padding:8px 0;position:relative;
}
.nav-link::after{
  content:'';position:absolute;left:0;bottom:0;width:0;height:2px;
  background:var(--teal-500);transition:width .2s ease;
}
.nav-link:hover::after{width:100%;}
.nav-item.has-dropdown{position:relative;}
.dropdown{
  position:absolute;top:calc(100% + 14px);left:-16px;
  width:290px;background:#fff;border-radius:14px;
  box-shadow:var(--shadow-lg);border:1px solid var(--border);
  padding:10px;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:all .22s ease;
}
.nav-item.has-dropdown.open .dropdown{opacity:1;visibility:visible;transform:translateY(0);}
.dropdown a{display:flex;flex-direction:column;gap:2px;padding:11px 14px;border-radius:9px;transition:background .15s;}
.dropdown a:hover{background:var(--teal-100);}
.dropdown a strong{font-size:14.5px;color:var(--navy-900);font-weight:600;}
.dropdown a span{font-size:12.5px;color:var(--gray-500);}

.header-actions{display:flex;align-items:center;gap:18px;}
.hamburger{display:none;flex-direction:column;gap:5px;width:26px;}
.hamburger span{height:2px;background:var(--navy-900);border-radius:2px;transition:all .25s ease;}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-nav{
  display:none;flex-direction:column;gap:2px;
  background:#fff;border-bottom:1px solid var(--border);
  max-height:0;overflow:hidden;transition:max-height .3s ease;
}
.mobile-nav.open{max-height:420px;}
.mobile-nav a{padding:16px 32px;font-weight:500;border-bottom:1px solid var(--gray-100);}
.mobile-nav .btn{margin:16px 32px;justify-content:center;}

/* ============ HERO ============ */
.hero{position:relative;overflow:hidden;padding-top:64px;
  background:linear-gradient(180deg,#f5f9fd 0%, var(--bg-sky) 55%, var(--bg-sky-2) 100%);
}
.hero-bg{
  position:absolute;inset:0;
  background-image:radial-gradient(rgba(11,122,115,.14) 1px, transparent 1.2px);
  background-size:26px 26px;
  mask-image:radial-gradient(ellipse 70% 60% at 70% 40%, black 30%, transparent 75%);
  pointer-events:none;
}
.hero-inner{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1.05fr 1fr;
  gap:40px;align-items:center;
  padding-top:64px;padding-bottom:96px;
}
.hero-copy h1{font-size:clamp(34px,4.6vw,58px);letter-spacing:-1px;}
.hero-copy h1 .accent{color:var(--teal-600);}
.hero-sub{margin-top:22px;font-size:17px;color:var(--gray-600);max-width:520px;line-height:1.65;}
.hero-ctas{display:flex;gap:16px;margin-top:34px;flex-wrap:wrap;}

.hero-visual{position:relative;min-height:460px;}
.africa-map{width:100%;height:auto;max-height:460px;display:block;margin:0 auto;}
.africa-shape{fill:var(--navy-900);opacity:.09;}
.map-lg .africa-shape{opacity:.08;}
.dot{fill:var(--teal-500);opacity:.55;}
.dot.lit{fill:var(--teal-500);opacity:1;filter:drop-shadow(0 0 6px rgba(18,166,155,.7));animation:pulse 2.6s ease-in-out infinite;}
.link{stroke:var(--teal-500);stroke-width:1;opacity:.35;stroke-dasharray:2 3;}
@keyframes pulse{0%,100%{opacity:.6;r:3;}50%{opacity:1;r:4.2;}}

.stat-float{
  position:absolute;background:#fff;border-radius:14px;
  box-shadow:var(--shadow-md);padding:16px 18px;
  display:flex;align-items:center;gap:12px;
  animation:float 5s ease-in-out infinite;
  min-width:170px;
}
.stat-float .stat-icon{width:40px;height:40px;border-radius:10px;background:var(--teal-100);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.stat-label{display:block;font-size:11.5px;color:var(--gray-500);font-weight:500;margin-bottom:2px;}
.stat-num{font-family:var(--serif);font-size:21px;color:var(--navy-900);font-weight:600;}
.sf-1{top:6%;right:2%;animation-delay:.2s;}
.sf-2{top:38%;right:-2%;animation-delay:1.1s;}
.sf-3{bottom:14%;left:0%;animation-delay:.6s;}
.sf-4{bottom:38%;right:20%;animation-delay:1.7s;}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}

.wave{
  height:70px;
  background:linear-gradient(180deg, transparent, rgba(255,255,255,.5));
}

/* reveal on scroll */
[data-reveal]{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease;}
[data-reveal].in-view{opacity:1;transform:translateY(0);}

/* ============ SECTION SHARED ============ */
.section{padding:110px 0;}
.section-head{max-width:680px;margin:0 auto 64px;text-align:center;}
.eyebrow{
  display:inline-block;font-size:12.5px;font-weight:700;letter-spacing:1.6px;
  text-transform:uppercase;color:var(--teal-600);position:relative;padding-bottom:14px;
}
.eyebrow::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:34px;height:2.5px;background:var(--teal-500);}
.section-head h2{font-size:clamp(28px,3.6vw,42px);margin-top:14px;}
.section-head h2 .accent{color:var(--teal-600);}
.section-head p{margin-top:16px;color:var(--gray-600);font-size:16.5px;line-height:1.7;}

/* ============ WHAT WE DO ============ */
.what-we-do{background:#fff;}
.cards-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.w-card{
  background:var(--gray-100);border:1px solid var(--border);
  border-radius:var(--radius);padding:32px 28px 0;
  display:flex;flex-direction:column;overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.w-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);background:#fff;}
.w-icon{width:56px;height:56px;border-radius:14px;background:var(--teal-100);display:flex;align-items:center;justify-content:center;margin-bottom:22px;}
.w-card h3{font-size:20px;margin-bottom:16px;}
.w-card ul{display:flex;flex-direction:column;gap:10px;margin-bottom:26px;}
.w-card ul li{
  font-size:14px;color:var(--gray-600);padding-left:16px;position:relative;line-height:1.4;
}
.w-card ul li::before{content:'';position:absolute;left:0;top:7px;width:5px;height:5px;border-radius:50%;background:var(--teal-500);}
.w-illustration{margin-top:auto;height:110px;}
.w-illustration svg{width:100%;height:100%;}

.map-illustration .mini-africa{fill:var(--teal-500);opacity:.18;}
.map-illustration .dot{fill:var(--teal-600);opacity:1;}

.report-illustration .paper{fill:#fff;stroke:var(--border);stroke-width:1;}
.report-illustration .paper-back{fill:#dcecf8;}
.report-illustration .brand-mini{font-family:var(--serif);font-size:11px;fill:var(--navy-900);font-weight:600;}
.report-illustration .line{fill:var(--border);}
.report-illustration .bar{fill:var(--teal-400);}
.report-illustration .donut{fill:none;stroke:var(--navy-900);stroke-width:6;stroke-dasharray:50 100;}

.chart-illustration .trend-line{fill:none;stroke:var(--navy-900);stroke-width:2;}
.chart-illustration .trend-dot{fill:var(--navy-900);}
.chart-illustration .bar-tall{fill:var(--teal-300,#7fd1cb);opacity:.65;}

.ai-illustration .head-outline{fill:none;stroke:var(--navy-900);stroke-width:1.6;opacity:.35;}
.ai-illustration .node-net circle{fill:var(--teal-600);}
.ai-illustration .node-net line{stroke:var(--teal-500);stroke-width:1;opacity:.6;}

.stat-strip{
  margin-top:64px;background:var(--navy-900);border-radius:20px;
  display:grid;grid-template-columns:repeat(4,1fr);
  padding:40px 20px;color:#fff;position:relative;overflow:hidden;
}
.strip-item{text-align:center;position:relative;padding:0 12px;}
.strip-item:not(:last-child)::after{content:'';position:absolute;right:0;top:8px;bottom:8px;width:1px;background:rgba(255,255,255,.15);}
.strip-num{font-family:var(--serif);font-size:36px;font-weight:600;color:var(--teal-400);}
.strip-item p{margin-top:6px;font-size:13.5px;color:rgba(255,255,255,.75);}

/* ============ AFRICA IN FOCUS ============ */
.africa-focus{background:linear-gradient(180deg,#fff, var(--gray-100));}
.focus-grid{display:grid;grid-template-columns:.95fr 1.15fr;gap:56px;align-items:center;}
.focus-copy .eyebrow{padding-bottom:14px;}
.focus-copy .eyebrow::after{left:0;transform:none;}
.eyebrow{text-align:left;}
.focus-copy h2{font-size:clamp(28px,3.4vw,40px);margin-top:14px;}
.focus-copy p{margin-top:16px;color:var(--gray-600);font-size:16px;line-height:1.7;max-width:480px;}
.focus-stats{margin:32px 0 34px;display:flex;flex-direction:column;gap:20px;}
.focus-stats li{display:flex;gap:16px;align-items:flex-start;}
.focus-ic{width:40px;height:40px;border-radius:10px;background:var(--teal-100);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.focus-stats strong{font-family:var(--serif);font-size:19px;color:var(--navy-900);display:block;}
.focus-stats p{margin-top:2px;font-size:14px;color:var(--gray-600);max-width:none;}

.focus-visual{position:relative;min-height:520px;}
.map-lg{max-height:520px;}
.country-tag{
  position:absolute;background:#fff;border-radius:12px;box-shadow:var(--shadow-md);
  padding:12px 16px;display:flex;align-items:center;gap:10px;min-width:130px;
}
.country-tag .flag{width:26px;height:18px;border-radius:3px;object-fit:cover;box-shadow:0 0 0 1px rgba(0,0,0,.06);}
.country-tag span{display:block;font-size:11.5px;color:var(--gray-500);}
.country-tag strong{display:block;font-family:var(--serif);font-size:17px;color:var(--navy-900);}
.country-tag em{display:block;font-size:10.5px;color:var(--gray-500);font-style:normal;}
.ct-nigeria{top:4%;left:0%;}
.ct-kenya{top:0%;right:0%;}
.ct-ghana{top:34%;left:-6%;}
.ct-egypt{top:36%;right:-4%;}
.ct-southafrica{bottom:22%;right:2%;}

.ecosystem-card{
  position:absolute;bottom:0;left:8%;right:8%;
  background:#fff;border-radius:16px;box-shadow:var(--shadow-lg);
  padding:22px 26px;display:grid;grid-template-columns:1fr 1.2fr;gap:20px;
}
.eco-title{font-size:13px;font-weight:700;color:var(--navy-900);margin-bottom:14px;}
.eco-mini-stats{display:flex;flex-direction:column;gap:10px;}
.eco-mini-stats strong{font-family:var(--serif);font-size:17px;color:var(--navy-900);display:block;}
.eco-mini-stats span{font-size:11.5px;color:var(--gray-500);}
.donut-row{display:flex;align-items:center;gap:14px;}
.donut-chart{width:64px;height:64px;flex-shrink:0;transform:rotate(-90deg);}
.legend{display:flex;flex-direction:column;gap:5px;}
.legend li{display:flex;align-items:center;gap:6px;font-size:11.5px;color:var(--gray-600);}
.legend i{width:8px;height:8px;border-radius:50%;display:inline-block;}
.legend b{margin-left:auto;color:var(--navy-900);}

.platform-bar{
  margin-top:88px;background:#fff;border:1px solid var(--border);border-radius:18px;
  padding:26px 34px;display:flex;align-items:center;justify-content:space-between;
  box-shadow:var(--shadow-sm);flex-wrap:wrap;gap:20px;
}
.pb-headline{display:flex;align-items:center;gap:14px;}
.pb-headline strong{display:block;font-size:16px;color:var(--navy-900);}
.pb-headline span{font-size:13px;color:var(--gray-500);}
.pb-features{display:flex;gap:28px;flex-wrap:wrap;}
.pb-features span{font-size:13.5px;font-weight:600;color:var(--navy-800);position:relative;padding-left:16px;}
.pb-features span::before{content:'';position:absolute;left:0;top:6px;width:6px;height:6px;border-radius:50%;background:var(--teal-500);}

/* ============ TEAM ============ */
.team-section{background:#fff;}
.team-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:22px;}
.team-card{
  background:var(--gray-100);border:1px solid var(--border);border-radius:var(--radius);
  padding:22px;text-align:left;transition:transform .25s ease, box-shadow .25s ease;
}
.team-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.avatar{
  width:100%;aspect-ratio:1/1;border-radius:12px;margin-bottom:18px;
  background:linear-gradient(135deg, var(--c1), var(--c2));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:34px;color:#fff;font-weight:600;letter-spacing:1px;
}
.team-card h3{font-size:17px;margin-bottom:2px;}
.role{display:block;font-size:12.5px;color:var(--teal-600);font-weight:600;margin-bottom:12px;padding-bottom:12px;border-bottom:1.5px solid var(--teal-400);width:fit-content;}
.team-card p{font-size:13px;color:var(--gray-600);line-height:1.6;margin-bottom:16px;}
.li-link{
  width:30px;height:30px;border-radius:7px;background:var(--navy-900);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;
  transition:background .2s ease;
}
.li-link:hover{background:var(--teal-600);}

.values-strip{
  margin-top:64px;background:var(--gray-100);border-radius:20px;
  display:grid;grid-template-columns:repeat(4,1fr);padding:44px 20px;
}
.value-item{text-align:center;padding:0 20px;position:relative;}
.value-item:not(:last-child)::after{content:'';position:absolute;right:0;top:6px;bottom:6px;width:1px;background:var(--border);}
.value-item strong{display:block;font-size:15.5px;color:var(--navy-900);margin:12px 0 6px;}
.value-item p{font-size:13px;color:var(--gray-600);line-height:1.5;}

/* ============ FOOTER ============ */
.site-footer{background:var(--navy-900);color:#fff;padding-top:80px;}
.newsletter{
  background:linear-gradient(120deg,#0e2a52,#0a1e3e);
  border-radius:20px;padding:32px 40px;
  display:flex;align-items:center;gap:32px;justify-content:space-between;
  flex-wrap:wrap;position:relative;overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.nl-copy{display:flex;align-items:center;gap:18px;max-width:420px;}
.nl-icon{width:52px;height:52px;border-radius:50%;background:rgba(43,179,172,.18);color:var(--teal-400);display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0;}
.nl-copy strong{font-family:var(--serif);font-size:21px;font-weight:600;display:block;margin-bottom:6px;}
.nl-copy p{font-size:13.5px;color:rgba(255,255,255,.65);line-height:1.5;}
.nl-form{display:flex;gap:0;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.18);border-radius:10px;overflow:hidden;flex:1;min-width:320px;max-width:460px;}
.nl-form input{flex:1;background:transparent;border:none;padding:15px 18px;color:#fff;font-size:14px;}
.nl-form input::placeholder{color:rgba(255,255,255,.5);}
.nl-form button{background:var(--teal-500);color:#fff;padding:0 24px;font-weight:600;font-size:14px;display:flex;align-items:center;gap:8px;transition:background .2s ease;}
.nl-form button:hover{background:var(--teal-400);}
.nl-message{width:100%;font-size:13px;color:var(--teal-400);margin-top:4px;min-height:18px;}

.footer-grid{
  margin-top:64px;display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1fr 1fr;gap:32px;
  padding-bottom:56px;border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand p{font-size:13.5px;color:rgba(255,255,255,.6);line-height:1.7;margin:18px 0 20px;max-width:280px;}
.footer-logo{margin-bottom:4px;}
.social-row{display:flex;gap:10px;margin-bottom:26px;}
.social-row a{
  width:34px;height:34px;border-radius:50%;border:1px solid rgba(255,255,255,.25);
  display:flex;align-items:center;justify-content:center;font-size:13px;
  transition:background .2s ease, border-color .2s ease;
}
.social-row a:hover{background:var(--teal-500);border-color:var(--teal-500);}
.tagline{color:var(--teal-400);font-family:var(--serif);font-size:15px;}

.footer-col h4{font-size:12.5px;letter-spacing:1px;text-transform:uppercase;color:var(--teal-400);margin-bottom:18px;padding-bottom:10px;border-bottom:2px solid rgba(43,179,172,.4);width:fit-content;}
.footer-col a,.footer-col p{display:block;font-size:13.5px;color:rgba(255,255,255,.68);margin-bottom:13px;line-height:1.5;transition:color .2s ease;}
.footer-col a:hover{color:var(--teal-400);}

.footer-bottom{padding:26px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:13px;color:rgba(255,255,255,.55);}
.legal-links{display:flex;gap:22px;}
.legal-links a:hover{color:#fff;}

.to-top{
  position:fixed;bottom:26px;right:26px;width:46px;height:46px;border-radius:50%;
  background:var(--navy-900);color:#fff;font-size:18px;display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);opacity:0;visibility:hidden;transform:translateY(10px);
  transition:all .25s ease;z-index:90;
}
.to-top.show{opacity:1;visibility:visible;transform:translateY(0);}
.to-top:hover{background:var(--teal-600);}

/* ============ RESPONSIVE ============ */
@media (max-width:1080px){
  .cards-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(3,1fr);}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr;}
  .focus-grid{grid-template-columns:1fr;}
  .focus-visual{max-width:560px;margin:0 auto;}
}
@media (max-width:860px){
  .main-nav{display:none;}
  .hamburger{display:flex;}
  .mobile-nav{display:flex;}
  .hero-inner{grid-template-columns:1fr;padding-top:40px;}
  .hero-visual{order:-1;min-height:340px;}
  .stat-float{min-width:140px;padding:12px 14px;}
  .stat-num{font-size:17px;}
  .stat-strip{grid-template-columns:repeat(2,1fr);gap:24px;}
  .strip-item:nth-child(2)::after{display:none;}
  .values-strip{grid-template-columns:repeat(2,1fr);gap:24px;}
  .value-item:nth-child(2)::after{display:none;}
  .platform-bar{flex-direction:column;align-items:flex-start;}
}
@media (max-width:640px){
  .wrap{padding:0 20px;}
  .section{padding:72px 0;}
  .cards-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .stat-strip{grid-template-columns:1fr;padding:32px 24px;}
  .strip-item:not(:last-child)::after{display:none;}
  .strip-item{padding:14px 0;border-bottom:1px solid rgba(255,255,255,.12);}
  .values-strip{grid-template-columns:1fr;}
  .value-item:not(:last-child)::after{display:none;}
  .value-item{padding:14px 0;border-bottom:1px solid var(--border);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .newsletter{padding:26px 24px;}
  .nl-form{min-width:100%;}
  .country-tag{position:static;margin-bottom:10px;}
  .ecosystem-card{position:static;grid-template-columns:1fr;margin-top:16px;}
  .focus-visual .africa-map{display:none;}
}

/* ============ SENIOR DESIGN ENHANCEMENTS ============ */
:root{
  --navy-950:#06152d;
  --mint:#6be1d6;
  --surface:rgba(255,255,255,.72);
  --premium-shadow:0 32px 90px rgba(6,21,45,.14);
}
body{overflow-x:hidden;background:#fbfdff;}
.scroll-progress{position:fixed;left:0;top:0;height:3px;width:0;background:linear-gradient(90deg,var(--teal-500),var(--mint));z-index:999;box-shadow:0 0 18px rgba(18,166,155,.65);}
.ambient-orb{position:fixed;border-radius:50%;filter:blur(100px);pointer-events:none;z-index:-1;opacity:.22;}
.orb-one{width:420px;height:420px;background:#57d4c8;top:8%;right:-180px;}
.orb-two{width:360px;height:360px;background:#8ebcf0;bottom:8%;left:-190px;}

.site-header{position:fixed;left:0;right:0;top:0;background:transparent;border:0;}
.site-header .header-inner{height:92px;transition:height .3s ease,padding .3s ease;}
.site-header.scrolled{background:rgba(247,251,255,.78);backdrop-filter:blur(22px) saturate(145%);border-bottom:1px solid rgba(11,31,63,.08);box-shadow:0 12px 36px rgba(6,21,45,.08);}
.site-header.scrolled .header-inner{height:72px;}
.logo-mark{filter:drop-shadow(0 6px 14px rgba(18,166,155,.18));}
.nav-link{font-size:14px;font-weight:600;letter-spacing:.01em;}
.dropdown{padding:12px;width:320px;border:1px solid rgba(11,31,63,.08);box-shadow:0 28px 70px rgba(6,21,45,.18);backdrop-filter:blur(18px);}
.dropdown a{padding:13px 14px;}

.btn{border-radius:999px;position:relative;overflow:hidden;isolation:isolate;}
.btn::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);transform:translateX(-120%);transition:transform .55s ease;z-index:-1;}
.btn:hover::before{transform:translateX(120%);}
.btn-primary{background:linear-gradient(135deg,var(--navy-950),var(--navy-800));box-shadow:0 16px 34px rgba(6,21,45,.18);}
.btn-primary:hover{background:linear-gradient(135deg,var(--teal-600),var(--teal-500));box-shadow:0 18px 42px rgba(11,122,115,.27);}
.btn-outline{background:rgba(255,255,255,.55);backdrop-filter:blur(12px);border-color:rgba(11,122,115,.35);}

.hero{min-height:900px;padding-top:92px;background:
 radial-gradient(circle at 74% 35%,rgba(83,213,201,.20),transparent 27%),
 radial-gradient(circle at 15% 25%,rgba(116,171,229,.14),transparent 32%),
 linear-gradient(145deg,#fbfdff 0%,#edf7fa 46%,#e5f0fa 100%);}
.hero::after{content:"";position:absolute;width:520px;height:520px;border:1px solid rgba(18,166,155,.14);border-radius:50%;right:-130px;top:120px;box-shadow:0 0 0 80px rgba(18,166,155,.025),0 0 0 160px rgba(18,166,155,.018);}
.hero-inner{min-height:760px;padding-top:82px;padding-bottom:100px;gap:56px;}
.hero-copy{position:relative;z-index:3;}
.hero-kicker{display:inline-flex;align-items:center;gap:10px;padding:9px 14px;border:1px solid rgba(11,122,115,.18);background:rgba(255,255,255,.58);backdrop-filter:blur(12px);border-radius:999px;text-transform:uppercase;letter-spacing:.15em;font-size:10px;font-weight:800;color:var(--teal-600);margin-bottom:24px;box-shadow:0 10px 30px rgba(6,21,45,.05);}
.hero-kicker span{width:7px;height:7px;border-radius:50%;background:var(--teal-500);box-shadow:0 0 0 6px rgba(18,166,155,.12);}
.hero-copy h1{font-size:clamp(48px,5.6vw,76px);letter-spacing:-.055em;line-height:.99;max-width:700px;}
.hero-copy h1 .accent{background:linear-gradient(100deg,var(--teal-600),#159eaa);-webkit-background-clip:text;background-clip:text;color:transparent;}
.hero-sub{font-size:17px;max-width:600px;line-height:1.75;color:#53657b;}
.hero-proof{margin-top:32px;padding-top:24px;border-top:1px solid rgba(11,31,63,.10);max-width:610px;}
.hero-proof>span{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.14em;color:var(--gray-500);font-weight:700;margin-bottom:11px;}
.hero-proof>div{display:flex;flex-wrap:wrap;gap:10px 20px;}
.hero-proof b{font-size:12px;color:var(--navy-800);position:relative;padding-left:13px;}
.hero-proof b::before{content:"";position:absolute;left:0;top:6px;width:5px;height:5px;border-radius:50%;background:var(--teal-500);}
.hero-visual{min-height:570px;display:flex;align-items:center;justify-content:center;perspective:1200px;}
.africa-map{max-height:560px;filter:drop-shadow(0 34px 45px rgba(6,21,45,.16));transform:rotate(-2deg);}
.africa-shape{fill:var(--navy-900);opacity:.12;}
.stat-float{border:1px solid rgba(255,255,255,.8);background:rgba(255,255,255,.72);backdrop-filter:blur(18px) saturate(140%);box-shadow:0 25px 55px rgba(6,21,45,.14);border-radius:18px;}
.stat-float:hover{transform:translateY(-8px) scale(1.025);}
.wave{height:95px;background:linear-gradient(180deg,transparent,#fff 88%);}

.section{padding:130px 0;position:relative;}
.section-head{margin-bottom:76px;}
.section-head h2{font-size:clamp(38px,4.2vw,56px);letter-spacing:-.035em;}
.section-head p{max-width:650px;margin-left:auto;margin-right:auto;}
.eyebrow{letter-spacing:.18em;}

.cards-grid{gap:18px;}
.w-card{position:relative;min-height:430px;padding:34px 30px 0;background:linear-gradient(160deg,rgba(255,255,255,.96),rgba(241,248,250,.82));border:1px solid rgba(11,31,63,.07);border-radius:24px;box-shadow:0 14px 45px rgba(6,21,45,.055);}
.w-card::before{content:"";position:absolute;inset:0;border-radius:inherit;background:linear-gradient(135deg,rgba(107,225,214,.13),transparent 42%);opacity:0;transition:opacity .35s ease;pointer-events:none;}
.w-card:hover{transform:translateY(-10px);box-shadow:var(--premium-shadow);border-color:rgba(18,166,155,.18);}
.w-card:hover::before{opacity:1;}
.w-icon{border-radius:18px;box-shadow:inset 0 0 0 1px rgba(18,166,155,.08);}
.w-card h3{font-size:22px;letter-spacing:-.02em;}
.stat-strip{border-radius:28px;padding:48px 28px;background:linear-gradient(135deg,var(--navy-950),#0d3154 72%,#0a4d55);box-shadow:0 30px 75px rgba(6,21,45,.20);}

.africa-focus{background:linear-gradient(180deg,#fff 0%,#f1f7fb 100%);overflow:hidden;}
.focus-visual::before{content:"";position:absolute;inset:6% 8% 16%;border-radius:50%;background:radial-gradient(circle,rgba(18,166,155,.12),transparent 68%);filter:blur(10px);}
.country-tag,.ecosystem-card{border:1px solid rgba(255,255,255,.78);background:rgba(255,255,255,.78);backdrop-filter:blur(18px);}
.country-tag{box-shadow:0 20px 48px rgba(6,21,45,.11);transition:transform .25s ease;}
.country-tag:hover{transform:translateY(-5px);}
.ecosystem-card{border-radius:22px;box-shadow:0 30px 70px rgba(6,21,45,.15);}
.platform-bar{border-radius:24px;padding:30px 38px;box-shadow:0 20px 55px rgba(6,21,45,.075);}

.team-section{background:linear-gradient(180deg,#fff,#f8fbfd);}
.team-grid{gap:16px;}
.team-card{border-radius:22px;padding:14px 14px 24px;background:rgba(255,255,255,.8);box-shadow:0 12px 35px rgba(6,21,45,.05);overflow:hidden;}
.team-card:hover{transform:translateY(-9px);box-shadow:0 28px 65px rgba(6,21,45,.13);}
.avatar{border-radius:16px;position:relative;overflow:hidden;}
.avatar::after{content:"";position:absolute;inset:0;background:linear-gradient(145deg,rgba(255,255,255,.22),transparent 45%,rgba(6,21,45,.12));}
.team-card h3,.team-card p,.team-card .role,.team-card .li-link{margin-left:8px;margin-right:8px;}
.values-strip{border-radius:28px;background:#fff;border:1px solid rgba(11,31,63,.07);box-shadow:0 22px 60px rgba(6,21,45,.06);}

.site-footer{background:radial-gradient(circle at 80% 0%,#12505a 0%,transparent 30%),linear-gradient(145deg,#06152d,#0a2343);}
.newsletter{border-radius:28px;padding:42px 46px;background:linear-gradient(120deg,rgba(18,166,155,.18),rgba(255,255,255,.045));backdrop-filter:blur(15px);box-shadow:0 30px 80px rgba(0,0,0,.18);}
.nl-form{border-radius:999px;padding:5px;background:rgba(255,255,255,.075);}
.nl-form button{border-radius:999px;padding:0 26px;}
.to-top{border-radius:14px;background:rgba(6,21,45,.88);backdrop-filter:blur(12px);}

@media (max-width:860px){
  .site-header{background:rgba(247,251,255,.86);backdrop-filter:blur(18px);}
  .hero{min-height:auto;padding-top:92px;}
  .hero-inner{min-height:auto;padding-top:40px;}
  .hero-copy h1{font-size:clamp(42px,11vw,62px);}
  .hero-visual{min-height:420px;order:0;}
  .hero::after{display:none;}
}
@media (max-width:640px){
  .site-header .header-inner{height:74px;}
  .hero{padding-top:74px;}
  .hero-inner{padding-top:54px;padding-bottom:64px;}
  .hero-copy h1{font-size:42px;line-height:1.02;}
  .hero-sub{font-size:15.5px;}
  .hero-ctas .btn{width:100%;justify-content:center;}
  .hero-proof>div{gap:8px 14px;}
  .hero-visual{min-height:330px;margin-top:12px;}
  .stat-float{transform:scale(.86);}
  .section-head h2{font-size:38px;}
  .w-card{min-height:390px;}
  .newsletter{padding:30px 22px;}
}

/* =========================================================
   HUMAN-CENTRED REFINEMENT
   Deliberately restrained: fewer effects, stronger hierarchy,
   editorial spacing and product-like information design.
   ========================================================= */
:root{
  --navy-900:#10243e;
  --navy-800:#18314f;
  --teal-600:#16766f;
  --teal-500:#238b82;
  --bg-sky:#f3f6f7;
  --bg-sky-2:#edf2f3;
  --gray-100:#f7f8f8;
  --border:#dfe5e6;
  --shadow-sm:0 1px 2px rgba(16,36,62,.05);
  --shadow-md:0 10px 24px rgba(16,36,62,.08);
  --shadow-lg:0 18px 42px rgba(16,36,62,.11);
  --radius:8px;
}
body{background:#fbfcfc;}
.wrap{max-width:1180px;}
.site-header{background:rgba(251,252,252,.96);backdrop-filter:blur(8px);}
.header-inner{height:76px;}
.logo-mark{width:34px;height:34px;}
.main-nav{gap:30px;}
.nav-link{font-size:14px;}
.btn{border-radius:6px;padding:14px 22px;box-shadow:none;}
.btn-primary:hover,.btn-outline:hover{transform:none;box-shadow:none;}
.btn-primary{background:#10243e;}
.btn-primary:hover{background:#18314f;}
.btn-outline{border-color:#9eb3b3;color:#10243e;background:#fff;}
.btn-outline:hover{background:#f2f5f5;}
.dropdown{border-radius:8px;box-shadow:0 16px 38px rgba(16,36,62,.12);}

.hero{padding-top:0;background:#edf2f3;border-bottom:1px solid #dfe5e6;}
.hero-bg{display:none;}
.hero-inner{grid-template-columns:minmax(0,1.02fr) minmax(440px,.98fr);gap:72px;padding-top:86px;padding-bottom:90px;}
.hero-copy{max-width:610px;}
.hero-kicker{font-size:12px;letter-spacing:.13em;text-transform:uppercase;color:#526a73;font-weight:700;margin-bottom:24px;}
.hero-kicker span{display:none;}
.hero-copy h1{font-family:var(--serif);font-size:clamp(44px,5.2vw,68px);line-height:1.02;letter-spacing:-1.8px;max-width:700px;}
.hero-copy h1 .accent{color:inherit;}
.hero-sub{font-size:18px;line-height:1.7;color:#4d6170;max-width:590px;margin-top:28px;}
.hero-ctas{margin-top:36px;}
.hero-proof{margin-top:54px;padding-top:22px;border-top:1px solid #cfdadb;display:grid;grid-template-columns:150px 1fr;gap:18px;align-items:start;}
.hero-proof>span{font-size:12px;text-transform:uppercase;letter-spacing:.09em;color:#6c7e88;font-weight:700;}
.hero-proof>div{display:flex;gap:16px 24px;flex-wrap:wrap;}
.hero-proof b{font-size:13px;font-weight:600;color:#2b4358;}
.hero-visual{min-height:500px;border-left:1px solid #d3dede;padding-left:42px;display:flex;align-items:center;}
.africa-map{max-height:440px;transform:none!important;filter:none;}
.africa-shape{fill:#9fb7b8;opacity:.32;}
.link{stroke:#527f7c;opacity:.34;stroke-dasharray:none;}
.dot,.dot.lit{animation:none;filter:none;opacity:.9;}
.stat-float{animation:none;border:1px solid #d9e1e2;border-radius:6px;box-shadow:0 5px 16px rgba(16,36,62,.07);padding:13px 15px;min-width:160px;}
.stat-float .stat-icon{border-radius:5px;background:#edf4f3;width:34px;height:34px;}
.stat-label{font-size:10.5px;letter-spacing:.015em;}
.stat-num{font-size:19px;}
.sf-1{top:8%;right:0}.sf-2{top:39%;right:-1%}.sf-3{bottom:10%;left:3%}.sf-4{bottom:35%;right:19%}
.wave{display:none;}

.section{padding:96px 0;}
.section-head{text-align:left;margin:0 0 50px;max-width:720px;}
.eyebrow{padding:0;font-size:11px;letter-spacing:.14em;}
.eyebrow::after{display:none;}
.section-head h2{font-size:clamp(34px,4vw,49px);letter-spacing:-.8px;margin-top:12px;}
.section-head h2 .accent{color:inherit;}
.section-head p{font-size:16px;max-width:650px;}
.cards-grid{grid-template-columns:repeat(2,1fr);gap:1px;background:#dfe5e6;border:1px solid #dfe5e6;}
.w-card{border:0;border-radius:0;background:#fbfcfc;padding:34px;min-height:370px;}
.w-card:hover{transform:none;box-shadow:none;background:#fff;}
.w-icon{width:44px;height:44px;border-radius:5px;margin-bottom:28px;}
.w-card h3{font-size:24px;}
.w-card ul{max-width:330px;}
.w-illustration{height:120px;opacity:.72;}
.stat-strip{border-radius:0!important;box-shadow:none!important;border-top:1px solid #dfe5e6!important;border-bottom:1px solid #dfe5e6!important;background:transparent!important;}

.africa-focus{background:#eef2f2!important;}
.country-tag{border:1px solid #d9e1e2;border-radius:6px;box-shadow:0 5px 16px rgba(16,36,62,.07);}
.ecosystem-card{border:1px solid #d9e1e2;border-radius:6px;box-shadow:0 12px 26px rgba(16,36,62,.09);}
.platform-bar{border-radius:6px;box-shadow:none;}

.team-grid{grid-template-columns:repeat(5,1fr);gap:1px;background:#dfe5e6;border:1px solid #dfe5e6;}
.team-card{border:0;border-radius:0;background:#fbfcfc;padding:20px;}
.team-card:hover{transform:none;box-shadow:none;background:#fff;}
.avatar{border-radius:4px;filter:saturate(.72);}
.li-link{border-radius:4px;}

[data-reveal]{transform:translateY(10px);transition:opacity .45s ease,transform .45s ease;}
@media(max-width:960px){
  .hero-inner{grid-template-columns:1fr;gap:48px;padding-top:64px;}
  .hero-visual{border-left:0;border-top:1px solid #d3dede;padding:36px 0 0;}
  .cards-grid{grid-template-columns:1fr 1fr;}
  .team-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
  .wrap{padding:0 20px;}
  .hero-copy h1{font-size:43px;}
  .hero-proof{grid-template-columns:1fr;}
  .hero-visual{min-height:430px;}
  .cards-grid,.team-grid{grid-template-columns:1fr;}
  .section{padding:72px 0;}
}

/* Africa map refinement */
.africa-map-detailed{overflow:visible;isolation:isolate}
.africa-map-detailed .africa-land{stroke:#4d7f79;stroke-width:1.5;stroke-linejoin:round;filter:drop-shadow(0 26px 32px rgba(12,48,61,.16))}
.africa-map-detailed .country-lines path{fill:none;stroke:rgba(63,111,105,.38);stroke-width:1.15;vector-effect:non-scaling-stroke}
.africa-map-detailed .madagascar{fill:#b8d4cf;stroke:#4d7f79;stroke-width:1.3}
.africa-map-detailed .node-ring{fill:rgba(18,166,155,.12);stroke:#0b7a73;stroke-width:1.3}
.africa-map-detailed .node-core{fill:#0b7a73}
.africa-map-detailed .map-node text{font-family:Inter,sans-serif;font-size:11px;font-weight:700;fill:#173c4a;letter-spacing:.01em}
.hero-visual .africa-map-detailed{max-height:520px;transform:none}
.focus-visual .africa-map-detailed{max-height:560px}
@media(max-width:900px){.hero-visual .africa-map-detailed{max-height:430px}.africa-map-detailed .map-node text{font-size:10px}}

/* Accurate Africa map — geographic source replaces the former abstract polygon */
.accurate-map-shell{
  position:relative;
  width:min(100%,560px);
  aspect-ratio:1200/1230;
  margin-inline:auto;
  isolation:isolate;
}
.accurate-africa-map{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 30px 42px rgba(6,21,45,.16));
  user-select:none;
}
.hero-map-shell{transform:rotate(-1deg);}
.geo-pin,.geo-dot{position:absolute;z-index:3;transform:translate(-50%,-50%);}
.geo-pin i,.geo-dot{
  width:10px;height:10px;border-radius:50%;display:block;
  background:#0b7a73;border:2px solid #fff;
  box-shadow:0 0 0 5px rgba(18,166,155,.18),0 8px 18px rgba(6,21,45,.22);
}
.geo-pin i::after{
  content:"";position:absolute;inset:-8px;border:1px solid rgba(18,166,155,.42);border-radius:50%;
  animation:mapPulse 2.6s ease-out infinite;
}
.geo-pin b{
  position:absolute;left:16px;top:50%;transform:translateY(-50%);
  white-space:nowrap;font-size:11px;letter-spacing:.02em;color:#0b1f3f;
  background:rgba(255,255,255,.9);border:1px solid rgba(11,31,63,.08);
  padding:5px 8px;border-radius:7px;box-shadow:0 8px 22px rgba(6,21,45,.09);
}
.pin-nigeria{left:40.8%;top:49.4%;}
.pin-kenya{left:67.4%;top:51.2%;}
.pin-tanzania{left:65.2%;top:59.4%;}
.pin-rwanda{left:58.5%;top:56.3%;}
.pin-south-africa{left:54.3%;top:84.2%;}
.pin-south-africa b{left:auto;right:16px;}
.focus-map-shell{width:min(100%,590px);}
.geo-dot{width:11px;height:11px;}
.dot-nigeria{left:40.8%;top:49.4%;}
.dot-ghana{left:35.2%;top:48.5%;}
.dot-egypt{left:57.2%;top:18.8%;}
.dot-kenya{left:67.4%;top:51.2%;}
.dot-south-africa{left:54.3%;top:84.2%;}
@keyframes mapPulse{0%{transform:scale(.55);opacity:.9}75%,100%{transform:scale(1.7);opacity:0}}
@media (prefers-reduced-motion:reduce){.geo-pin i::after{animation:none}}
@media (max-width:860px){.accurate-map-shell{width:min(88vw,500px)}}
@media (max-width:640px){
  .hero-map-shell{width:min(92vw,390px)}
  .geo-pin b{display:none}
  .focus-visual .accurate-map-shell{display:block;width:min(94vw,430px);margin-bottom:18px}
}

/* ===== Reference-led premium hero refinement ===== */
.hero{
  min-height:calc(100vh - 20px);
  padding-top:0;
  background:
    radial-gradient(circle at 68% 42%,rgba(102,189,232,.34),transparent 34%),
    radial-gradient(circle at 88% 76%,rgba(111,189,228,.24),transparent 26%),
    linear-gradient(112deg,#fbfdff 0%,#f5f9fd 38%,#e9f4fd 72%,#dceefa 100%);
  border-bottom:0;
}
.hero::before{
  content:"";position:absolute;inset:auto -10% -100px -8%;height:330px;z-index:0;pointer-events:none;
  background-image:
    radial-gradient(circle,rgba(255,255,255,.95) 0 1.7px,transparent 2px),
    radial-gradient(circle,rgba(136,202,239,.48) 0 1px,transparent 1.6px);
  background-size:18px 18px,30px 30px;
  background-position:0 0,9px 7px;
  opacity:.78;transform:rotate(4deg) skewX(-8deg);
  mask-image:linear-gradient(to top,black 30%,transparent 95%);
}
.hero::after{
  content:"";position:absolute;inset:0;z-index:0;pointer-events:none;border-radius:0;
  background:
    linear-gradient(115deg,transparent 56%,rgba(255,255,255,.38) 57%,transparent 58%),
    repeating-radial-gradient(ellipse at 85% 55%,transparent 0 88px,rgba(255,255,255,.42) 90px 91px,transparent 93px 126px);
  box-shadow:none;
}
.hero-inner{grid-template-columns:minmax(0,.93fr) minmax(560px,1.07fr);min-height:820px;padding-top:100px;padding-bottom:92px;gap:30px;position:relative;z-index:2;align-items:center}
.hero-copy{max-width:660px;padding-left:4px}
.hero-kicker{display:none}
.hero-copy h1{font-family:var(--serif);font-size:clamp(54px,5.15vw,82px);line-height:1.02;letter-spacing:-2.8px;color:#082b59;max-width:760px;font-weight:500}
.hero-copy h1 .accent{display:inline-block;background:linear-gradient(95deg,#0996a9,#168a9b);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-sub{font-size:18px;line-height:1.78;color:#31475f;max-width:640px;margin-top:32px}
.hero-ctas{margin-top:36px;gap:22px}
.hero-ctas .btn{min-height:62px;padding:0 25px;border-radius:10px;font-size:15px;box-shadow:none}
.hero-ctas .btn-primary{background:#062f60;border-color:#062f60;box-shadow:0 12px 24px rgba(6,47,96,.12)}
.hero-ctas .btn-outline{background:rgba(255,255,255,.45);border:1.5px solid #0f8b9b;color:#0b7e90;backdrop-filter:blur(10px)}
.hero-proof{display:none}
.hero-visual{min-height:660px;border:0;padding-left:0;position:relative;overflow:visible;isolation:isolate}
.hero-map-shell{width:min(46vw,650px);transform:none;filter:drop-shadow(0 30px 42px rgba(54,129,184,.12));z-index:1}
.hero-map-shell::before{content:"";position:absolute;inset:9% 4% 7% 3%;background:radial-gradient(circle at 53% 45%,rgba(95,198,236,.45),rgba(116,188,226,.12) 48%,transparent 72%);filter:blur(22px);z-index:-1}
.accurate-africa-map{filter:hue-rotate(167deg) saturate(.62) brightness(1.19) contrast(.83);opacity:.82}
.network-overlay{position:absolute;inset:3% -3% -3% -4%;width:108%;height:100%;z-index:2;pointer-events:none;overflow:visible}
.network-lines path{fill:none;stroke:rgba(255,255,255,.95);stroke-width:1.55;stroke-dasharray:2.2 4.5;filter:drop-shadow(0 0 5px rgba(92,201,239,.95))}
.network-nodes circle{fill:#fff;stroke:#a8ecff;stroke-width:2;filter:drop-shadow(0 0 10px #6ee6ff)}
.geo-pin{z-index:4}
.geo-pin b{display:none}
.geo-pin i{width:10px;height:10px;background:#fff;border:2px solid #7fe2f3;box-shadow:0 0 0 7px rgba(132,225,244,.13),0 0 18px 6px rgba(88,214,242,.78)}
.geo-pin i::after{border-color:rgba(109,221,244,.54)}
.stat-float{z-index:5;min-width:190px;padding:16px 18px;border-radius:12px;border:1px solid rgba(255,255,255,.82);background:rgba(248,252,255,.82);backdrop-filter:blur(16px) saturate(140%);box-shadow:0 18px 35px rgba(55,103,142,.16);animation:none;gap:12px}
.stat-float:hover{transform:translateY(-5px)}
.stat-float .stat-icon{width:42px;height:42px;border-radius:50%;background:rgba(32,171,190,.10)}
.stat-label{font-size:11px;color:#42566e;margin-bottom:4px}
.stat-num{font-size:24px;color:#092f5f;font-family:var(--serif);font-weight:600}
.sf-1{top:17%;right:-4%}.sf-2{top:49%;right:-1%}.sf-3{left:-2%;bottom:8%}.sf-4{right:-5%;bottom:16%}
.sf-1::after{content:"";position:absolute;left:58px;right:14px;bottom:10px;height:20px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 22'%3E%3Cpolyline points='0,17 16,10 31,14 46,6 64,17 79,5 96,10 109,2 130,0' fill='none' stroke='%230e93a7' stroke-width='1.6'/%3E%3C/svg%3E") center/100% 100% no-repeat;opacity:.9}
.sf-1{padding-bottom:31px}
.sf-2::after{content:"";position:absolute;right:15px;bottom:14px;width:55px;height:32px;background:linear-gradient(to top,rgba(20,166,188,.72) 0 100%) 0 100%/8px 12px no-repeat,linear-gradient(to top,rgba(20,166,188,.72) 0 100%) 14px 100%/8px 18px no-repeat,linear-gradient(to top,rgba(20,166,188,.72) 0 100%) 28px 100%/8px 25px no-repeat,linear-gradient(to top,rgba(20,166,188,.72) 0 100%) 42px 100%/8px 32px no-repeat}
.wave{display:block;height:110px;position:absolute;bottom:-1px;left:0;right:0;z-index:1;background:linear-gradient(to top,#fff 0%,rgba(255,255,255,.62) 35%,transparent 100%)}
@media(max-width:1100px){.hero-inner{grid-template-columns:1fr 1fr}.hero-copy h1{font-size:54px}.hero-map-shell{width:min(52vw,580px)}.stat-float{transform:scale(.88)}.sf-1{right:-1%}.sf-4{right:0}}
@media(max-width:900px){.hero{min-height:auto}.hero-inner{grid-template-columns:1fr;padding-top:70px;padding-bottom:100px}.hero-copy{max-width:760px}.hero-visual{min-height:590px}.hero-map-shell{width:min(88vw,590px)}.sf-1{right:4%}.sf-2{right:2%}.sf-3{left:3%}.sf-4{right:5%}}
@media(max-width:600px){.hero-inner{padding-top:52px}.hero-copy h1{font-size:44px;letter-spacing:-1.5px}.hero-sub{font-size:16px}.hero-visual{min-height:430px;margin-top:20px}.hero-map-shell{width:min(96vw,430px)}.stat-float{min-width:138px;padding:10px 11px;transform:scale(.78)}.stat-label{font-size:9px}.stat-num{font-size:19px}.sf-1{top:5%;right:-9%}.sf-2{top:43%;right:-10%}.sf-3{left:-10%;bottom:0}.sf-4{right:-10%;bottom:7%}.sf-1::after,.sf-2::after{display:none}}

/* =========================================================
   FINAL BRAND + VIEWPORT + PATTERN SYSTEM
   Uses the supplied Iyashi identity and keeps the full hero
   visible within one desktop viewport.
   ========================================================= */
:root{
  --iyashi-navy:#092f61;
  --iyashi-navy-deep:#05264f;
  --iyashi-teal:#30aeb0;
  --iyashi-teal-dark:#168e98;
  --iyashi-ice:#edf7fc;
  --iyashi-line:rgba(9,47,97,.075);
}

.brand-logo{display:inline-flex;align-items:center;flex:0 0 auto;line-height:0}
.brand-logo-image{display:block;width:auto;height:58px;object-fit:contain}
.footer-logo-plate{display:inline-flex;align-items:center;padding:7px 13px;background:#fff;border-radius:10px;box-shadow:0 12px 30px rgba(0,0,0,.13)}
.footer-logo .brand-logo-image{height:56px}

.site-header .header-inner{height:82px}
.site-header.scrolled .header-inner{height:68px}
.site-header.scrolled .brand-logo-image{height:50px}
.site-header,.site-header.scrolled{transition:background .3s ease,box-shadow .3s ease,border-color .3s ease}
.nav-link::after{background:var(--iyashi-teal)}
.btn-primary{background:var(--iyashi-navy-deep)}
.btn-primary:hover{background:var(--iyashi-navy)}
.btn-outline{border-color:var(--iyashi-teal-dark);color:var(--iyashi-teal-dark)}

/* one-screen desktop landing composition */
@media (min-width:901px){
  .hero{height:100svh;min-height:680px;max-height:940px;padding-top:82px}
  .hero-inner{height:calc(100svh - 82px);min-height:598px;max-height:858px;padding-top:24px;padding-bottom:34px;align-items:center}
  .hero-copy h1{font-size:clamp(48px,4.55vw,74px)}
  .hero-sub{font-size:clamp(15px,1.08vw,17px);line-height:1.65;margin-top:24px}
  .hero-ctas{margin-top:28px}
  .hero-ctas .btn{min-height:54px}
  .hero-visual{min-height:0;height:min(72vh,650px)}
  .hero-map-shell{width:min(42vw,610px);height:100%}
  .wave{height:72px}
}

/* richer background without visual noise */
.hero-bg{display:block!important;background-image:
  linear-gradient(rgba(9,47,97,.035) 1px,transparent 1px),
  linear-gradient(90deg,rgba(9,47,97,.035) 1px,transparent 1px),
  radial-gradient(circle at 72% 42%,rgba(48,174,176,.18) 0 1px,transparent 1.8px);
  background-size:48px 48px,48px 48px,22px 22px;
  mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.35) 35%,#000 100%);
  opacity:.65
}
.hero::before{background-image:
  radial-gradient(circle,rgba(255,255,255,.95) 0 1.6px,transparent 2px),
  radial-gradient(circle,rgba(48,174,176,.35) 0 1px,transparent 1.6px);
  background-size:18px 18px,31px 31px}

/* reusable, restrained site pattern */
.what-we-do,.team-section,.insights-section{position:relative;isolation:isolate;overflow:hidden}
.what-we-do::before,.team-section::before,.insights-section::before{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
  background-image:
    linear-gradient(var(--iyashi-line) 1px,transparent 1px),
    linear-gradient(90deg,var(--iyashi-line) 1px,transparent 1px),
    radial-gradient(circle at 88% 15%,rgba(48,174,176,.10),transparent 28%);
  background-size:64px 64px,64px 64px,auto;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.55),transparent 88%);
  opacity:.45
}
.africa-focus{background:
  radial-gradient(circle at 78% 30%,rgba(48,174,176,.13),transparent 30%),
  linear-gradient(135deg,rgba(9,47,97,.03) 25%,transparent 25%) 0 0/38px 38px,
  linear-gradient(225deg,rgba(9,47,97,.03) 25%,transparent 25%) 0 0/38px 38px,
  #eef5f7!important}

/* consistent map cards */
.stat-float{border-color:rgba(9,47,97,.09);background:rgba(255,255,255,.84);box-shadow:0 18px 40px rgba(9,47,97,.14)}
.stat-float .stat-icon{background:rgba(48,174,176,.12)}
.stat-float svg *{stroke:var(--iyashi-teal-dark)!important}
.stat-num{color:var(--iyashi-navy)}
.geo-pin i{border-color:#fff;background:#fff;box-shadow:0 0 0 7px rgba(48,174,176,.14),0 0 20px 7px rgba(48,174,176,.6)}
.network-nodes circle{stroke:#9ff4f1}

@media(max-width:900px){
  .brand-logo-image{height:52px}
  .site-header .header-inner{height:74px}
  .hero{padding-top:74px}
}
@media(max-width:600px){
  .brand-logo-image{height:44px}
  .footer-logo .brand-logo-image{height:48px}
  .hero-bg{opacity:.42}
}

/* =========================================================
   WHAT WE DO — reference-matched feature presentation
   ========================================================= */
.what-we-do{
  background:
    radial-gradient(circle at 7% 18%,rgba(9,47,97,.055) 0 1px,transparent 1.5px) 0 0/18px 18px,
    linear-gradient(180deg,#ffffff 0%,#fbfdff 72%,#eef8fd 100%);
  padding-top:88px;
  padding-bottom:86px;
}
.what-we-do::before{
  opacity:.7;
  background-image:
    linear-gradient(rgba(9,47,97,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(9,47,97,.035) 1px,transparent 1px),
    radial-gradient(circle at 89% 15%,rgba(48,174,176,.14),transparent 26%);
  background-size:34px 34px,34px 34px,auto;
  mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.22) 68%,#000 100%);
}
.what-we-do::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  right:5.5%;
  top:18px;
  background:url('africa-map.svg') center/contain no-repeat;
  opacity:.07;
  filter:hue-rotate(150deg) saturate(1.7);
  pointer-events:none;
  z-index:-1;
}
.what-we-do .wrap{max-width:1400px;}
.what-we-do .section-head{max-width:760px;margin-bottom:34px;}
.what-we-do .eyebrow{font-size:15px;letter-spacing:.11em;padding-bottom:14px;color:#078997;}
.what-we-do .eyebrow::after{width:48px;height:2px;background:#0795a2;}
.what-we-do .section-head h2{
  margin-top:10px;
  font-size:clamp(42px,4.8vw,70px);
  line-height:1;
  letter-spacing:-.04em;
  color:#092f61;
}
.what-we-do .section-head h2 .accent{color:#078f99;}
.what-we-do .section-head p{font-size:18px;line-height:1.55;color:#15335e;max-width:760px;margin-top:18px;}

.what-we-do .cards-grid{
  grid-template-columns:1.04fr 1fr 1fr 1fr;
  gap:22px;
  background:transparent;
  border:0;
  align-items:stretch;
}
.what-we-do .w-card{
  min-height:540px;
  padding:28px 28px 0;
  border-radius:20px;
  border:1px solid rgba(9,47,97,.08);
  background:rgba(255,255,255,.86);
  box-shadow:0 18px 44px rgba(8,44,84,.08);
  backdrop-filter:blur(12px);
  overflow:hidden;
}
.what-we-do .w-card:hover{transform:translateY(-6px);box-shadow:0 24px 58px rgba(8,44,84,.13);}
.what-we-do .w-card:first-child{
  background:
    radial-gradient(circle at 35% 20%,rgba(21,168,187,.34),transparent 28%),
    linear-gradient(145deg,#075278 0%,#072f60 42%,#041c3d 100%);
  border-color:rgba(62,208,219,.20);
  color:#fff;
  box-shadow:0 24px 58px rgba(5,31,65,.22);
}
.what-we-do .w-icon{
  width:76px;height:76px;border-radius:50%;
  margin-bottom:18px;
  background:linear-gradient(145deg,rgba(48,174,176,.16),rgba(207,241,247,.72));
  box-shadow:none;
}
.what-we-do .w-card:first-child .w-icon{background:rgba(9,143,166,.17);border:1px solid rgba(77,224,225,.38);}
.what-we-do .w-card:first-child .w-icon svg *{stroke:#4dd9df!important;}
.what-we-do .w-card h3{font-size:29px;line-height:1.06;margin-bottom:18px;color:#092f61;letter-spacing:-.03em;}
.what-we-do .w-card:first-child h3{color:#fff;}
.what-we-do .w-card h3::after{content:"";display:block;width:38px;height:3px;margin-top:16px;background:#0a9ca8;border-radius:999px;}
.what-we-do .w-card:first-child h3::after{background:#41d8df;}
.what-we-do .w-card ul{gap:9px;margin-bottom:18px;}
.what-we-do .w-card ul li{font-size:14px;line-height:1.45;color:#17365d;padding-left:14px;}
.what-we-do .w-card:first-child ul li{color:rgba(255,255,255,.92);}
.what-we-do .w-card ul li::before{width:5px;height:5px;top:8px;background:#0998a4;}
.what-we-do .w-card:first-child ul li::before{background:#41d8df;}
.what-we-do .w-illustration{height:190px;margin-left:-8px;margin-right:-8px;opacity:1;}
.what-we-do .w-card:first-child .w-illustration{height:218px;margin-top:auto;}
.what-we-do .w-card:first-child .map-illustration .mini-africa{fill:#0f9ab0;opacity:.34;stroke:#4de2e5;stroke-width:.5;}
.what-we-do .w-card:first-child .map-illustration .dot{fill:#5cf4f0;filter:drop-shadow(0 0 6px #58f4ef);}
.what-we-do .report-illustration .paper-front{filter:drop-shadow(0 12px 16px rgba(9,47,97,.12));}
.what-we-do .chart-illustration .bar-tall{fill:#45c4cb;opacity:.75;}
.what-we-do .chart-illustration .trend-line{stroke:#092f61;stroke-width:2.5;}
.what-we-do .chart-illustration .trend-dot{fill:#fff;stroke:#092f61;stroke-width:2;}
.what-we-do .ai-illustration .head-outline{stroke:#098f9d;stroke-width:1.4;opacity:.8;}
.what-we-do .ai-illustration .node-net circle{fill:#087f91;}
.what-we-do .ai-illustration .node-net line{stroke:#0ba5ae;opacity:.8;}

.what-we-do .stat-strip{
  margin-top:20px;
  padding:22px 28px;
  border:1px solid rgba(13,157,173,.55);
  border-radius:18px;
  background:rgba(255,255,255,.91);
  box-shadow:0 18px 42px rgba(9,47,97,.10);
  color:#092f61;
  overflow:visible;
}
.what-we-do .strip-item{display:grid;grid-template-columns:64px auto;grid-template-rows:auto auto;text-align:left;column-gap:16px;align-items:center;padding:0 26px;}
.what-we-do .strip-item::before{
  content:"";grid-row:1/3;width:64px;height:64px;border-radius:50%;
  background:linear-gradient(145deg,#0c4872,#062b55);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.1);
}
.what-we-do .strip-item::after{background:rgba(9,47,97,.17)!important;top:5px!important;bottom:5px!important;}
.what-we-do .strip-num{font-family:var(--sans);font-size:34px;line-height:1;font-weight:700;color:#0a8e9a;align-self:end;}
.what-we-do .strip-item p{margin-top:4px;font-size:13px;line-height:1.25;color:#15335e;align-self:start;max-width:150px;}

@media(max-width:1100px){
  .what-we-do .cards-grid{grid-template-columns:repeat(2,1fr);}
  .what-we-do .w-card{min-height:500px;}
}
@media(max-width:760px){
  .what-we-do{padding-top:72px;padding-bottom:70px;}
  .what-we-do::after{width:190px;height:190px;right:-20px;top:40px;}
  .what-we-do .section-head{text-align:left;margin-bottom:32px;}
  .what-we-do .eyebrow::after{left:0;transform:none;}
  .what-we-do .section-head h2{font-size:44px;}
  .what-we-do .section-head p{font-size:16px;}
  .what-we-do .cards-grid{grid-template-columns:1fr;gap:16px;}
  .what-we-do .w-card{min-height:470px;}
  .what-we-do .stat-strip{grid-template-columns:1fr 1fr;gap:24px;padding:24px 16px;}
  .what-we-do .strip-item{padding:0 10px;grid-template-columns:52px auto;column-gap:12px;}
  .what-we-do .strip-item::before{width:52px;height:52px;}
  .what-we-do .strip-item:nth-child(2)::after{display:none;}
}
@media(max-width:500px){
  .what-we-do .section-head h2{font-size:38px;}
  .what-we-do .w-card{padding:26px 24px 0;min-height:450px;}
  .what-we-do .w-card h3{font-size:26px;}
  .what-we-do .stat-strip{grid-template-columns:1fr;}
  .what-we-do .strip-item{padding:8px 10px;}
  .what-we-do .strip-item::after{display:none!important;}
}

/* ===== One-screen sizing and upgraded What We Do visuals ===== */
@media (min-width: 1101px) {
  .site-header .header-inner{height:82px;}
  .hero{min-height:calc(100svh - 82px);height:calc(100svh - 82px);padding-top:82px;overflow:hidden;}
  .hero-inner{min-height:calc(100svh - 82px);height:calc(100svh - 82px);padding-top:28px;padding-bottom:28px;}
  .hero-visual{min-height:0;height:100%;}
  .hero-map-shell{width:min(42vw,590px);max-height:calc(100svh - 150px);}

  .what-we-do{min-height:100svh;padding:34px 0 28px;display:flex;align-items:center;}
  .what-we-do .section-head{margin-bottom:22px;max-width:820px;}
  .what-we-do .eyebrow{font-size:13px;padding-bottom:10px;}
  .what-we-do .section-head h2{font-size:clamp(42px,4.1vw,62px);}
  .what-we-do .section-head p{font-size:16px;margin-top:12px;line-height:1.45;}
  .what-we-do .cards-grid{gap:18px;}
  .what-we-do .w-card{min-height:0;height:420px;padding:22px 24px 0;}
  .what-we-do .w-icon{width:62px;height:62px;margin-bottom:13px;}
  .what-we-do .w-card h3{font-size:25px;margin-bottom:13px;}
  .what-we-do .w-card h3::after{margin-top:12px;}
  .what-we-do .w-card ul{gap:6px;margin-bottom:8px;}
  .what-we-do .w-card ul li{font-size:13px;line-height:1.35;}
  .what-we-do .w-illustration,.what-we-do .w-card:first-child .w-illustration{height:142px;}
  .what-we-do .stat-strip{margin-top:16px;padding:14px 16px;min-height:78px;}
}

.card-real-visual{display:block;width:100%;height:100%;object-fit:contain;object-position:center bottom;}
.africa-card-map{filter:hue-rotate(155deg) saturate(.78) brightness(1.35) contrast(.93) drop-shadow(0 12px 14px rgba(23,216,222,.16));opacity:.92;transform:scale(1.16) translateY(5px);}
.ai-health-visual{transform:scale(1.16) translateY(8px);object-fit:cover;object-position:center 46%;filter:drop-shadow(0 15px 20px rgba(9,47,97,.16));}
.what-we-do .w-card:first-child .map-illustration{position:relative;}
.what-we-do .w-card:first-child .map-illustration::after{content:"";position:absolute;inset:15% 10% 8%;background:radial-gradient(circle at 42% 42%,rgba(83,247,242,.28),transparent 12%),radial-gradient(circle at 62% 55%,rgba(83,247,242,.24),transparent 10%);pointer-events:none;}

.what-we-do .strip-item{display:flex;grid-template:none;align-items:center;gap:15px;padding:0 23px;}
.what-we-do .strip-item::before{display:none;}
.what-we-do .strip-icon{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;flex:0 0 auto;background:linear-gradient(145deg,#0c4872,#062b55);box-shadow:inset 0 0 0 1px rgba(255,255,255,.1);}
.what-we-do .strip-icon svg{width:31px;height:31px;fill:none;stroke:#fff;stroke-width:2.1;stroke-linecap:round;stroke-linejoin:round;}
.what-we-do .strip-value{min-width:0;font-size:0;line-height:1;}
.what-we-do .strip-value>.strip-num,.what-we-do .strip-value{color:#0a8e9a;font-size:31px;font-weight:700;}
.what-we-do .strip-value p{font-size:12.5px;line-height:1.25;margin-top:5px;color:#15335e;font-weight:500;max-width:155px;}

@media (max-height: 820px) and (min-width:1101px){
  .what-we-do{padding-top:20px;padding-bottom:18px;}
  .what-we-do .section-head{margin-bottom:14px;}
  .what-we-do .section-head h2{font-size:48px;}
  .what-we-do .section-head p{font-size:14px;margin-top:8px;}
  .what-we-do .w-card{height:360px;padding-top:18px;}
  .what-we-do .w-icon{width:52px;height:52px;margin-bottom:9px;}
  .what-we-do .w-card h3{font-size:22px;margin-bottom:9px;}
  .what-we-do .w-card h3::after{margin-top:8px;}
  .what-we-do .w-card ul{gap:4px;}
  .what-we-do .w-card ul li{font-size:12px;}
  .what-we-do .w-illustration,.what-we-do .w-card:first-child .w-illustration{height:112px;}
  .what-we-do .stat-strip{padding:10px 12px;min-height:66px;}
  .what-we-do .strip-icon{width:48px;height:48px;}
  .what-we-do .strip-icon svg{width:26px;height:26px;}
  .what-we-do .strip-value>.strip-num,.what-we-do .strip-value{font-size:27px;}
}

/* =========================================================
   HERO FLOW FIX — prevents clipping and section collisions
   ========================================================= */
@media (min-width:901px){
  .hero{
    height:auto;
    min-height:100svh;
    max-height:none;
    padding-top:82px;
    overflow:hidden;
  }
  .hero-inner{
    height:auto;
    min-height:calc(100svh - 82px);
    max-height:none;
    padding-top:30px;
    padding-bottom:82px;
    align-items:center;
  }
  .hero-visual{
    height:min(66vh,620px);
    min-height:500px;
    max-height:620px;
  }
  .hero-map-shell{
    width:min(40vw,590px);
    max-height:100%;
  }
  .wave{
    height:56px;
    bottom:0;
    pointer-events:none;
  }
  .what-we-do{
    position:relative;
    z-index:2;
    margin-top:0;
  }
}

/* Compact the hero on shorter desktop screens without cutting content. */
@media (min-width:901px) and (max-height:760px){
  .hero-inner{
    padding-top:18px;
    padding-bottom:64px;
    gap:18px;
  }
  .hero-copy h1{font-size:clamp(44px,4.15vw,64px)}
  .hero-sub{font-size:15px;line-height:1.55;margin-top:18px}
  .hero-ctas{margin-top:22px}
  .hero-ctas .btn{min-height:48px;padding:0 21px}
  .hero-visual{height:min(62vh,540px);min-height:430px;max-height:540px}
  .hero-map-shell{width:min(38vw,520px)}
  .stat-float{transform:scale(.84)}
  .sf-1{right:-1%}.sf-2{right:1%}.sf-3{left:0}.sf-4{right:0}
}

@media (max-width:900px){
  .hero{
    height:auto;
    min-height:auto;
    max-height:none;
    overflow:hidden;
  }
  .hero-inner{
    height:auto;
    min-height:0;
    max-height:none;
    padding-bottom:92px;
  }
  .hero-visual{overflow:visible}
  .wave{height:48px;bottom:0}
  .what-we-do{margin-top:0;position:relative;z-index:2}
}
