/* Mimọ — design tokens */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap');

:root {
  --color-forest-green: #1A5C38;
  --color-ui-green: #007967;
  --color-ui-green-light: #005C4E;
  --color-amber: #E8901A;
  --color-amber-light: #FDF0DC;

  --color-bg: #FAFAFA;
  --color-surface: #FFFFFF;
  --color-border: #E5E7EB;
  --color-text-primary: #1C1C1C;
  --color-text-secondary: #6B7280;

  --color-stream-organic: #085041;
  --color-stream-plastic: #0C447C;
  --color-stream-paper: #EF9F27;
  --color-stream-metal: #888780;
  --color-stream-residuals: #2C2C2A;
  --color-stream-ewaste: #534AB7;

  --font-primary: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;

  --radius-pill: 100px;
  --radius-card: 16px;
  --radius-chip: 8px;

  --shadow-card: 0px 2px 8px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  width: 100%;
  overflow-x: hidden;
}

a { color: var(--color-ui-green); text-decoration: none; }
a:hover { color: var(--color-ui-green-light); }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Icons — recolorable via CSS mask, matching the source design system's Icon component */
.icon {
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.icon-menu { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/menu.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/menu.svg); }
.icon-x { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/x.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/x.svg); }
.icon-recycle { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/recycle.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/recycle.svg); }
.icon-radio { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/radio.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/radio.svg); }
.icon-wallet { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/wallet.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/wallet.svg); }
.icon-check { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/check-circle-2.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/check-circle-2.svg); }
.icon-leaf { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/leaf.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/leaf.svg); }
.icon-droplet { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/droplet.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/droplet.svg); }
.icon-file { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/file-text.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/file-text.svg); }
.icon-box { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/box.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/box.svg); }
.icon-trash { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/trash-2.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/trash-2.svg); }
.icon-plug { -webkit-mask-image: url(https://unpkg.com/lucide-static@latest/icons/plug.svg); mask-image: url(https://unpkg.com/lucide-static@latest/icons/plug.svg); }

/* Buttons */
.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  transition: background-color .15s ease, transform .1s ease, opacity .15s ease;
  height: 48px;
  padding: 0 24px;
  font-size: 16px;
}
.btn:active { transform: scale(0.98); }
.btn-large { height: 56px; padding: 0 28px; }
.btn-amber { background: var(--color-amber); color: #fff; }
.btn-amber:hover { opacity: 0.92; }
.btn-outline {
  background: transparent;
  color: var(--color-forest-green);
  border: 1.5px solid var(--color-forest-green);
}
.btn-outline:hover { background: rgba(26,92,56,0.06); }
.btn-block { width: 100%; }

/* Pills */
.pill {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-forest-green);
}
.pill-dark {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 5px 14px;
  font-size: 12px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.nav.scrolled { border-bottom-color: var(--color-border); }
.nav-row {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand-mark { width: 32px; height: 32px; }
.nav-brand-name { font-weight: 700; font-size: 20px; color: var(--color-forest-green); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--color-text-primary); }
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-forest-green);
}
.nav-mobile-panel {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  gap: 16px;
  background: #FFFFFF;
  border-top: 1px solid var(--color-border);
}
.nav-mobile-panel a { font-size: 16px; font-weight: 500; }
.nav-mobile-panel.open { display: flex; }

@media (max-width: 859px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
}

/* HERO */
.hero { background: var(--color-bg); padding: 64px 24px 56px; }
.hero-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-copy { flex: 1 1 auto; min-width: 0; }
.hero-media { flex: 1 1 auto; min-width: 0; display: flex; justify-content: center; }
.hero-media img { width: 100%; max-width: 520px; border-radius: 16px; box-shadow: var(--shadow-card); }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--color-forest-green);
  margin: 0 0 20px;
}
.hero p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
  max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 859px) {
  .hero-row { flex-direction: column; }
}

/* HOW IT WORKS */
.section { padding: 72px 24px; }
.section-white { background: #FFFFFF; }
.section-bg { background: var(--color-bg); }
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--color-forest-green);
  margin: 0 0 48px;
}
.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--color-text-secondary);
  margin: 8px 0 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.step-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-ui-green);
  margin-bottom: 8px;
}
.step-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; color: var(--color-text-primary); }
.step-card p { font-size: 15px; line-height: 1.55; color: var(--color-text-secondary); margin: 0; }
.step-card img { width: 100%; max-width: 220px; border-radius: 12px; margin-top: 16px; box-shadow: var(--shadow-card); }

/* FEATURE (collection point) */
.feature-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.feature-media, .feature-copy { flex: 1 1 auto; min-width: 0; }
.feature-media img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-card); }
.badge-eyebrow {
  display: inline-flex;
  background: var(--color-amber-light);
  color: var(--color-amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.feature-copy h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--color-forest-green);
  margin: 0 0 16px;
  line-height: 1.2;
}
.feature-copy > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 24px;
}
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.feature-list-item { display: flex; align-items: flex-start; gap: 10px; }
.feature-list-item .icon { margin-top: 2px; }
.feature-list-item span { font-size: 15px; color: var(--color-text-primary); }
.feature-note {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

@media (max-width: 859px) {
  .feature-row { flex-direction: column; }
}

/* SIX STREAMS */
.streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.stream-tile {
  border-radius: 16px;
  padding: 28px 24px;
  color: #FFFFFF;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stream-tile .icon { width: 28px; height: 28px; }
.stream-name { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.stream-yoruba { font-size: 14px; font-weight: 600; opacity: 0.85; margin-bottom: 8px; }
.stream-desc { font-size: 13px; line-height: 1.4; opacity: 0.9; }

/* AGENT CTA */
.agent-section { padding: 72px 24px; background: var(--color-forest-green); }
.agent-inner { max-width: 1100px; margin: 0 auto; }
.agent-inner .badge-eyebrow { background: var(--color-amber); color: #fff; }
.agent-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 20px;
  max-width: 720px;
  line-height: 1.2;
}
.agent-inner > p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 40px;
  max-width: 640px;
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.income-card { background: rgba(255,255,255,0.08); border-radius: 16px; padding: 28px 24px; }
.income-figure { font-size: 26px; font-weight: 800; color: #FFFFFF; margin-bottom: 8px; }
.income-label { font-size: 14px; color: rgba(255,255,255,0.75); }
.agent-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.agent-cta-row span { font-size: 14px; color: rgba(255,255,255,0.7); }

/* FOOTER */
.footer { background: var(--color-forest-green); padding: 56px 24px 0; }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col { flex: 1 1 260px; min-width: 240px; }
.footer-col.narrow { flex-basis: 200px; min-width: 200px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand span { font-weight: 700; font-size: 19px; color: #FAFAFA; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0 0 16px; }
.footer-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-contact a { color: #FAFAFA; }
.footer-partnership { font-size: 14px; color: rgba(255,255,255,0.85); margin: 0; }
.footer-partnership a { color: #FAFAFA; }
.footer-agent-link { display: block; margin-top: 12px; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
