*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #0D2A15;
  --green-dark:   #1A4D2E;
  --green-mid:    #2D6A4F;
  --green-light:  #A8D5B5;
  --green-glow:   #4CAF7D;
  --orange:       #C8762B;
  --orange-light: #E8913D;
  --lime:         #8DC63F;
  --white:        #FFFFFF;
  --off-white:    #F7F9F4;
  --cream:        #EDF5EF;
  --beige:        #F4F1EB;
}

html { scroll-behavior: smooth; }

body {
  background: var(--green-deep);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(45,106,79,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 75%, rgba(26,77,46,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(200,118,43,0.08) 0%, transparent 70%),
    var(--green-deep);
}

.orb {
  position: fixed; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: drift 18s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: var(--green-mid);   top: -120px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 380px; height: 380px; background: var(--orange);       bottom: -80px; right: -80px; animation-delay: -6s; animation-duration: 22s; }
.orb-3 { width: 280px; height: 280px; background: var(--green-glow);   top: 40%; left: 60%; animation-delay: -12s; animation-duration: 16s; }

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-40px) scale(1.05); }
  66%       { transform: translate(-20px,20px) scale(0.95); }
}

.dot-grid {
  position: fixed; inset: 0; z-index: 0; opacity: 0.06;
  background-image: radial-gradient(circle, var(--green-light) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

header {
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 5;
  opacity: 0; animation: fadeDown 0.8s ease 0.2s forwards;
}
.logo-mark { display: flex; align-items: center; gap: 10px; }
.logo-mark img { height: 38px; width: auto; display: block; }
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.partner-logos { display: flex; align-items: center; gap: 20px; }
.partner-mark { height: 40px; width: auto; display: block; opacity: 0.95; }

.header-right {
    display: flex; align-items: center; gap: 24px;
}

.nav-btn {
    display: inline-flex; align-items: center;
    padding: 10px 22px;
    border: 1px solid rgba(168,213,181,0.35);
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.hero {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 60px 48px 0;
  max-width: 1200px; width: 100%; margin: 0 auto;
  position: relative;
  min-height: 760px;
}
.hero-content { position: relative; z-index: 3; max-width: 720px; }

.tag-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,118,43,0.15);
  border: 1px solid rgba(200,118,43,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--orange-light);
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
}
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-light); animation: pulse 1.5s ease-in-out infinite; }

.headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.6rem, 9.5vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.headline-1 { color: var(--white); display: block; }
.headline-2 { color: var(--white); display: block; }
.headline-3 {
  display: block;
  font-size: 0.78em;
  background: linear-gradient(135deg, var(--lime) 0%, var(--green-glow) 50%, var(--lime) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s ease infinite, fadeUp 0.8s ease 0.7s forwards;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.swahili-line {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-top: 20px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s ease 1.0s forwards;
}
.swahili-line span { color: var(--orange-light); }

.caption {
  max-width: 560px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300; line-height: 1.7;
  color: rgba(168,213,181,0.85);
  margin-bottom: 52px;
  opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards;
}
.caption strong { color: var(--white); font-weight: 500; }

.countdown-wrap {
  margin-top: 8px;
  margin-bottom: 80px;
  opacity: 0; animation: fadeUp 0.8s ease 1.4s forwards;
}
.countdown-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.countdown-label::before {
  content: ''; width: 28px; height: 1px; background: rgba(168,213,181,0.4);
}
.countdown { display: flex; gap: 14px; flex-wrap: wrap; }
.cd-unit {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(168,213,181,0.22);
  border-radius: 6px;
  padding: 14px 22px 10px;
  min-width: 92px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.cd-unit::before {
  content: ''; position: absolute; top: 0; left: 12px; right: 12px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141,198,63,0.6), transparent);
}
.cd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.cd-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  color: var(--green-light); opacity: 0.75;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: 6px;
}
.cd-sep {
  align-self: center;
  color: rgba(200,118,43,0.5);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  padding: 0 2px;
}

.pin-deco {
  position: absolute; right: 2%; top: 40px;
  width: min(340px, 30vw);
  opacity: 0; animation: pinReveal 1.2s ease 1.0s forwards;
  pointer-events: none;
  z-index: 1;
}
@keyframes pinReveal {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pin-svg { width: 100%; filter: drop-shadow(0 24px 60px rgba(200,118,43,0.25)); }
.pin-float { animation: float 4s ease-in-out infinite; transform-origin: bottom center; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.lady-photo {
  position: absolute;
  right: -20px; bottom: 0;
  width: min(620px, 50vw);
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: ladyReveal 1.1s cubic-bezier(.2,.7,.2,1) 0.9s forwards;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.45));
}
@keyframes ladyReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.stats-strip {
  position: relative; z-index: 1;
  background: rgba(45,106,79,0.25);
  border-top: 1px solid rgba(168,213,181,0.12);
  border-bottom: 1px solid rgba(168,213,181,0.12);
  backdrop-filter: blur(12px);
  padding: 24px 48px;
  opacity: 0; animation: fadeUp 0.8s ease 1.8s forwards;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.stat {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 180px;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 2.2rem;
  color: var(--lime); line-height: 1;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 400; line-height: 1.3;
  color: var(--green-light);
}
.stat-divider { width: 1px; height: 40px; background: rgba(168,213,181,0.2); }

.info-section {
  position: relative; z-index: 2;
  background: var(--beige);
  color: var(--green-deep);
  padding: 120px 48px;
}
.info-inner {
  max-width: 1200px; margin: 0 auto 88px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px;
  align-items: start;
}
.info-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}
.info-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 1.02;
  color: var(--green-deep);
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.info-heading span { color: var(--green-dark); }
.info-col-right { padding-top: 8px; display: flex; flex-direction: column; gap: 22px; }
.info-lede {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem; line-height: 1.6; font-weight: 400;
  color: rgba(13,42,21,0.78);
  max-width: 520px;
}
.info-lede strong { color: var(--green-deep); font-weight: 700; }

.info-cards-row {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.info-card {
  position: relative;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(13,42,21,0.08);
  border-radius: 4px;
  padding: 36px 32px 40px;
  min-height: 230px;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.info-card:hover { background: rgba(255,255,255,0.9); border-color: rgba(13,42,21,0.18); }
.info-card-icon { width: 32px; height: 32px; color: var(--green-deep); margin-bottom: 64px; }
.info-card-icon svg { width: 100%; height: 100%; display: block; }
.info-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.005em;
  margin-bottom: 14px; line-height: 1.1;
}
.info-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; line-height: 1.5; font-weight: 400;
  color: rgba(13,42,21,0.62);
  max-width: 320px;
}
.info-card-num {
  position: absolute;
  right: 22px; bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 3.2rem;
  color: rgba(13,42,21,0.07);
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

.closing {
  padding: 0 48px 64px;
  max-width: 1200px; width: 100%; margin: 0 auto;
  opacity: 0; animation: fadeUp 0.8s ease 1.6s forwards;
}
.closing-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-top: 1px solid rgba(168,213,181,0.15);
  padding-top: 40px;
}
.closing-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: 0.02em; color: var(--white);
  line-height: 1.2;
}
.closing-text em {
  display: block; font-style: normal;
  font-size: 0.65em; font-weight: 400;
  color: var(--green-light); letter-spacing: 0.04em;
  margin-top: 4px;
}
.hashtag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.3s;
}
.hashtag:hover { color: var(--orange-light); letter-spacing: 0.08em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  header { padding: 20px 24px; gap: 16px; }
  .logo-mark img { height: 32px; }
  .partner-mark { height: 28px; }
  .partner-logos { display: flex; }

  .hero {
    padding: 32px 24px 0;
    min-height: 0;
    display: flex; flex-direction: column;
    align-items: stretch;
  }
  .hero-content { max-width: 100%; margin-bottom: 24px; }
  .headline { font-size: clamp(3rem, 12vw, 4.4rem); }

  .pin-deco {
    position: relative;
    right: auto; top: auto;
    align-self: flex-end;
    width: 140px; margin-right: -8px; margin-bottom: -40px;
    opacity: 0.85;
    z-index: 2;
  }

  .lady-photo {
    position: relative;
    right: auto; bottom: auto;
    width: min(420px, 92%);
    margin: 0 auto;
    display: block;
    z-index: 3;
  }

  .closing { padding: 0 24px 48px; }
  .stats-strip { padding: 20px 24px; }
  .info-section { padding: 64px 24px; }
  .info-inner { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .info-cards-row { grid-template-columns: 1fr; }
  .info-card { min-height: 0; padding: 28px 24px 32px; }
  .info-card-icon { margin-bottom: 32px; }

  .countdown-wrap { margin-bottom: 24px; }
  .countdown { gap: 8px; flex-wrap: nowrap; }
  .cd-unit { flex: 1; min-width: 0; padding: 12px 6px 8px; }
  .cd-num { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .cd-lbl { font-size: 0.6rem; letter-spacing: 0.12em; }
  .cd-sep { padding: 0; font-size: 1.3rem; }
}
@media (max-width: 520px) {
  .stats-inner { gap: 12px; }
  .stat-divider { display: none; }
  .cd-sep { display: none; }
  .countdown { gap: 6px; }
}
@media (max-width: 380px) {
  .partner-logos { display: none; }
}
