.ceo-images img{
  border-radius: 30px;
}
.btn-donate{
  width: 120px!important;
}
:root{
  --bg: #0b1220;
  --ink: #0f172a;
  --paper: #ffffff;
  --muted: rgba(15,23,42,.65);

  --green: #0b6b4f;      /* brand primary */
  --green2: #0f8a67;     /* accent */
  --blue: #0369a1;
  --teal: #0d9488;
  --orange: #e85d2a;
  --orange2: #d14d1e;
  --purple: #7c3aed;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, .10);
  --shadow2: 0 16px 45px rgba(2, 6, 23, .14);

  --border: rgba(15,23,42,.12);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.siteHeader{
  position: fixed;
  left: 0; right:0; top:0;
  z-index: 50;
  transition: background-color .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.siteHeader.isScrolled{
  background: rgba(15, 23, 42, .68);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,.10);
}
.headerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 18px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
  color: #fff;
}
.brandMark{
  width: 40px; height:40px;
  display:grid;
  place-items:center;
  color: var(--green2);
}
.brandText{ display:flex; flex-direction:column; line-height:1.1; }
.brandName{ font-weight: 800; letter-spacing: -.02em; font-size: 14px; }
.brandTag{ font-weight: 500; font-size: 11px; text-transform: uppercase; opacity: .7; letter-spacing: .08em; }

.nav{
  display:none;
  gap: 20px;
  align-items:center;
}
.nav a{
  color: rgba(255,255,255,.78);
  font-weight: 500;
  font-size: 13px;
  transition: color .15s ease;
}
.nav a:hover{ color: #fff; }

.headerActions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.iconBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}
.iconBtn:hover{ background: rgba(255,255,255,.12); }

@media (min-width: 900px){
  .nav{ display:flex; }
  .iconBtn{ display:none; }
}

/* Mobile Menu */
.mobileMenu{
  display:none;
  background: rgba(15,23,42,.86);
  border-top: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.mobileMenu.open{ display:block; }
.mobileMenuInner{
  padding: 18px 0 22px;
  display:grid;
  gap: 10px;
}
.mobileMenuInner a{
  color: rgba(255,255,255,.88);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}
.mobileMenuInner a:hover{ background: rgba(255,255,255,.10); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform .14s ease, background-color .14s ease, border-color .14s ease, box-shadow .14s ease;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btnPrimary{
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 93, 42, .25);
}
.btnPrimary:hover{
  background: var(--orange2);
}

.btnGhost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.30);
  color: #fff;
}
.btnGhost:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.35);
}

.btnLg{ padding: 16px 22px; font-size: 15px; }
.btnXl{ padding: 18px 26px; font-size: 16px; }

/* Hero */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
}
.heroBg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 25%, rgba(11,106,79,.45), transparent 60%),
    radial-gradient(700px 420px at 80% 15%, rgba(3,105,161,.35), transparent 60%),
    linear-gradient(120deg, #06101e, #0b1220);
  transform: scale(1.02);
}
.heroOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(15,23,42,.78),
    rgba(15,23,42,.55),
    rgba(11,106,79,.25)
  );
}
.heroInner{
  position: relative;
  z-index: 2;
  padding: 120px 0 86px;
  text-align:center;
  max-width: 880px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}
.pillLight{
  border-color: var(--border);
  background: rgba(11,106,79,.07);
  color: var(--ink);
}
.pillDark{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}
.dot{
  width: 10px; height:10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(232,93,42,.14);
  animation: pulse 1.6s ease-in-out infinite;
}
.dotGreen{ background: var(--green2); box-shadow: 0 0 0 6px rgba(15,138,103,.12); }
.dotOrange{ background: var(--orange); box-shadow: 0 0 0 6px rgba(232,93,42,.14); }

@keyframes pulse{
  0%,100%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(1.06); opacity:.86; }
}

.hero h1{
  margin: 18px 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 800;
}
.lead{
  margin: 0 auto 26px;
  max-width: 740px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}
.heroCtas{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 12px;
  margin-top: 10px;
}
@media (min-width: 640px){
  .heroCtas{ flex-direction:row; justify-content:center; }
}

.heroStats{
  margin-top: 28px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px){
  .heroStats{ grid-template-columns: repeat(3, 1fr); }
}
.stat{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.statNum{
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 18px;
}
.statLbl{
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}

.scrollCue{
  position:absolute;
  left:50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  animation: bounce 1.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce{
  0%,100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, -8px); }
}

/* Sections */
.section{
  padding: 86px 0;
  background: #fff;
}
.sectionAlt{
  background: #f6fbf9;
}
.sectionDark{
  background: #0b1220;
  color:#fff;
}
.sectionHead{
  display:grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 26px;
}
.sectionHead.center{ text-align:center; margin-left:auto; margin-right:auto; }
.sectionHead h2{
  margin: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
}
.sectionHead p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.sectionDark .sectionHead p{ color: rgba(255,255,255,.65); }

.grid2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 20px;
}
@media (min-width: 820px){
  .grid2{ grid-template-columns: 1fr 1fr; gap: 18px; }
}

.grid3{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 880px){
  .grid3{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.grid4{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px){
  .grid4{ grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.card:hover{ box-shadow: var(--shadow2); }
.cardSoft{
  background: rgba(255,255,255,.9);
}
.sectionDark .card{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.sectionDark .card:hover{ background: rgba(255,255,255,.08); }

.cardMedia{
  position: relative;
  overflow:hidden;
  padding-top: 18px;
}
.mediaTag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color:#fff;
  width: fit-content;
}
.tagBlue{ background: var(--blue); }
.tagTeal{ background: var(--teal); }
.tagOrange{ background: var(--orange); }

.card h3{
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.sectionDark .card p{ color: rgba(255,255,255,.68); }

/* Metrics */
.metricGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px){
  .metricGrid{ grid-template-columns: repeat(4, 1fr); }
}
.metric{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
  text-align:center;
}
.metricIcon{
  width: 46px;
  height: 46px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  margin: 0 auto 10px;
  font-weight: 900;
}
.metricBlue{ background: rgba(3,105,161,.10); color: var(--blue); }
.metricTeal{ background: rgba(13,148,136,.10); color: var(--teal); }
.metricOrange{ background: rgba(232,93,42,.10); color: var(--orange); }
.metricPurple{ background: rgba(124,58,237,.10); color: var(--purple); }
.metricValue{ font-weight: 800; }
.metricLabel{ margin-top: 4px; font-size: 12.5px; color: var(--muted); }

/* Impact */
.impactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 900px){
  .impactGrid{ grid-template-columns: repeat(4, 1fr); }
}
.impactCard{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: 18px;
  text-align:center;
}
.impactNum{
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: clamp(30px, 3.4vw, 46px);
}
.impactNum.blue{ color: var(--blue); }
.impactNum.teal{ color: var(--teal); }
.impactNum.orange{ color: var(--orange); }
.impactNum.purple{ color: var(--purple); }
.impactLbl{
  margin-top: 6px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.note{
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(15,23,42,.55);
}
.sectionDark .note{ color: rgba(255,255,255,.50); }
.center{ text-align:center; }

/* People cards */
.person{
  text-align:left;
}
.personPhoto{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,106,79,.18), rgba(3,105,161,.12));
  border: 1px solid var(--border);
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--ink);
}
.role{
  margin: 6px 0 10px;
  font-weight: 800;
  font-size: 13px;
}
.role.blue{ color: var(--blue); }
.role.teal{ color: var(--teal); }
.role.orange{ color: var(--orange); }
.muted{ color: var(--muted); }

/* Lists */
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display:grid;
  gap: 6px;
  font-size: 13.5px;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px){
  .steps{ grid-template-columns: repeat(4, 1fr); }
}
.step{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}
.stepNum{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  background: rgba(11,106,79,.10);
  color: var(--green);
  border: 1px solid rgba(11,106,79,.18);
}
.step h3{ margin: 12px 0 8px; font-size: 16px; font-weight: 900; }
.step p{ margin: 0; color: var(--muted); line-height: 1.6; font-size: 13.5px; }

/* Quotes */
.quote p{
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}
.quoteBy{
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(15,23,42,.60);
  font-weight: 700;
}

/* FAQ */
.faq{
  max-width: 860px;
  margin: 0 auto;
  display:grid;
  gap: 10px;
}
.faqItem{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.faqItem summary{
  cursor:pointer;
  padding: 16px 18px;
  font-weight: 800;
  list-style: none;
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqBody{
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 13.5px;
}

/* CTA */
.cta{
  position: relative;
  padding: 110px 0;
  color:#fff;
  overflow:hidden;
}
.ctaBg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(232,93,42,.35), transparent 60%),
    radial-gradient(800px 460px at 80% 10%, rgba(15,138,103,.35), transparent 60%),
    linear-gradient(120deg, rgba(3,105,161,.86), rgba(11,106,79,.82));
}
.ctaOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to right, rgba(3,105,161,.55), rgba(11,106,79,.35));
}
.ctaInner{
  position: relative;
  z-index: 2;
  text-align:center;
  max-width: 860px;
}
.ctaIcon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 14px;
  display:grid;
  place-items:center;
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(232,93,42,.30);
  font-size: 26px;
  font-weight: 900;
}
.cta h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.03em;
}
.cta p{
  margin: 0 auto 22px;
  max-width: 720px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-size: 15px;
}
.ctaActions{
  display:flex;
  flex-direction:column;
  gap: 12px;
  align-items:center;
  justify-content:center;
}
@media (min-width: 640px){
  .ctaActions{ flex-direction:row; }
}

/* Footer */
.footer{
  background: #0b1220;
  color:#fff;
}
.footerGrid{
  padding: 56px 0;
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 1000px){
  .footerGrid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
}
.footerBrand{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.footerMark{
  color: var(--green2);
}
.footerTitle{
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.footerText{
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  font-size: 13px;
}
.footer h4{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255,255,255,.80);
}
.footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.footer a{
  color: rgba(255,255,255,.60);
  font-size: 13px;
}
.footer a:hover{ color: var(--orange); }

.contactList li{ color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.5; }
.contactKey{ color: rgba(255,255,255,.80); font-weight: 800; margin-right: 6px; }

.footerBottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0;
}
.footerBottomInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.smallCaps{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
}
.tinyMuted{
  font-size: 12px;
  color: rgba(255,255,255,.45);
}