/* Mereka Impact Report, official brand system */

:root {
  /* Official Mereka palette */
  --off-black: #1a1623;
  --white: #ffffff;
  --grey: #f5f6f7;
  --grey-2: #ebecef;
  --grey-3: #d4d6db;
  --strategy-teal: #1fa3a6;
  --strategy-teal-deep: #178385;
  --anchor-blue: #1f3f7c;
  --anchor-blue-deep: #16315f;
  --momentum-gold: #e8a92f;
  --horizon-blue: #5c7db8;

  /* Mapped tokens */
  --ink: var(--off-black);
  --ink-soft: #2a2536;
  --paper: var(--white);
  --paper-2: var(--grey);
  --line: rgba(26,22,35,0.10);
  --line-strong: rgba(26,22,35,0.20);
  --muted: rgba(26,22,35,0.62);
  --muted-light: rgba(255,255,255,0.72);

  /* Default brand accent (FOW Youth track: Teal + Gold) */
  --primary: var(--strategy-teal);
  --primary-deep: var(--strategy-teal-deep);
  --secondary: var(--momentum-gold);

  --font-display: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--primary); font-style: normal; font-weight: 700; }
.section-title.light em { color: var(--secondary); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}
.eyebrow-light { color: var(--secondary); }

/* HERO --------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--white);
  padding: 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* STICKY SITE NAV ---------------------------------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-nav.is-scrolled,
.site-nav.is-open {
  box-shadow: 0 1px 0 rgba(26,22,35,0.04), 0 8px 24px -16px rgba(26,22,35,0.18);
}
.site-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 64px;
  gap: 24px;
}
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--white);
}
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.site-nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(26,22,35,0.55);
  z-index: 60;
  animation: navOverlay .2s ease;
}
@keyframes navOverlay {
  from { background: rgba(26,22,35,0); }
  to { background: rgba(26,22,35,0.55); }
}
.nav-mobile-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--white);
  display: flex; flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -16px 0 40px -16px rgba(26,22,35,0.25);
  animation: navSlide .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes navSlide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.nav-mobile-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px 14px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.nav-mobile-close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  transition: background .2s, color .2s;
}
.nav-mobile-close:hover { background: var(--ink); color: var(--white); }
.nav-mobile-links { padding: 8px 24px; }
.nav-mobile-link {
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--ink);
}
.nav-mobile-link::after { content: '→'; color: var(--primary); transition: transform .15s; }
.nav-mobile-link:hover::after { transform: translateX(3px); }

.nav-mobile-services {
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--grey);
  border-top: 1px solid var(--line);
}
.nav-mobile-services .nav-mobile-eyebrow { margin-bottom: 6px; }
.nav-mobile-service {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .2s, transform .15s;
}
.nav-mobile-service:hover { border-color: var(--primary); transform: translateY(-1px); }
.svc-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.svc-desc { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.svc-arrow { font-size: 18px; color: var(--primary); flex-shrink: 0; }
.nav-mobile-cta { margin: 24px; align-self: stretch; text-align: center; }

/* Desktop nav-pill service buttons (legacy) */
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 25%, rgba(31,163,166,0.10) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(31,63,124,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.nav-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo { height: 28px; width: auto; display: block; flex-shrink: 0; }
.footer-logo { height: 36px; width: auto; display: block; filter: invert(1) brightness(2); }
.nav-divider { width: 1px; height: 18px; background: var(--line-strong); }
.nav-tag {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-visit { position: relative; }
.nav-visit-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  cursor: pointer;
}
.nav-visit-trigger svg { transition: transform .2s; opacity: 0.7; }
.nav-visit-trigger.is-open svg { transform: rotate(180deg); }
.nav-visit-menu {
  position: absolute; top: calc(100% + 14px); right: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px -12px rgba(26,22,35,0.18), 0 2px 6px rgba(26,22,35,0.06);
  padding: 8px;
  display: flex; flex-direction: column; gap: 4px;
  animation: visitDrop .18s ease;
  z-index: 10;
}
.nav-chapters-menu { width: 380px; }
.nav-chapter-item {
  display: grid !important;
  grid-template-columns: 36px 1fr;
  gap: 14px; align-items: start;
}
.nav-ch-num {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--primary);
  padding-top: 2px;
  letter-spacing: 0.04em;
}
.nav-ch-text { min-width: 0; }

/* Mobile chapter cards */
.nav-mb-ch { display: flex; align-items: flex-start; gap: 12px; min-width: 0; }
.nav-mb-num {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--primary); letter-spacing: 0.04em;
  padding-top: 2px;
  flex-shrink: 0;
}
@keyframes visitDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-visit-item {
  display: block;
  padding: 14px 14px;
  border-radius: 8px;
  transition: background .15s;
}
.nav-visit-item:hover { background: var(--grey); }
.nav-visit-item .svc-name {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.nav-visit-item .svc-arrow { color: var(--primary); }
.nav-visit-item .svc-desc {
  font-size: 12px; color: var(--muted);
  margin-top: 4px; line-height: 1.45;
}
.nav-link {
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: color .2s;
}
.nav-link:hover { color: var(--primary); }
.nav-cta {
  background: var(--ink); color: var(--white);
  padding: 11px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: transform .15s, background .2s;
}
.nav-cta:hover { background: var(--primary); transform: translateY(-1px); }

.hero-grid {
  position: relative; z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 80px;
  padding: 80px 0 60px;
}
.hero-left { display: flex; flex-direction: column; gap: 36px; }

.hero-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.meta-row {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary);
}
.meta-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.meta-years {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--muted);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 6.4vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero-title .line { display: block; }
.hero-title em { color: var(--primary); font-style: normal; }

.hero-side {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
}
.hero-blurb {
  font-size: 17px; line-height: 1.55; color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  padding: 14px 22px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  transition: transform .15s, background .2s;
}
.btn-primary:hover { background: var(--primary); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  padding: 14px 22px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  transition: all .2s;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.hero-marquee {
  position: relative; z-index: 4;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin: 0 -64px;
  width: calc(100% + 128px);
  background: var(--white);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 38s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
.partners-group {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  flex-shrink: 0;
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  height: 48px;
  flex-shrink: 0;
  opacity: 0.78;
  filter: grayscale(0.05);
  transition: opacity .2s, transform .2s;
}
.partner-logo:hover { opacity: 1; transform: translateY(-1px); }
.partner-logo img {
  max-height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-quick {
  position: relative; z-index: 4;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 0 40px;
}
.quick-stat { padding: 0 24px; border-left: 1px solid var(--line); }
.quick-stat:first-child { border-left: 0; padding-left: 0; }
.qs-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.qs-lab {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted); margin-top: 10px;
  line-height: 1.4;
}

.hero-orbit {
  position: absolute;
  right: 6%;
  top: 14%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

/* JOURNEY ------------------------------------------------------------ */

.journey {
  background: var(--paper);
  padding: 120px 64px;
}
.journey-head { max-width: 920px; margin-bottom: 60px; }
.journey-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: start;
}
.journey-text p {
  font-size: 18px; line-height: 1.6; color: var(--ink);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.journey-text p:last-child { margin-bottom: 0; }
.journey-text em { font-style: normal; color: var(--primary); font-weight: 600; }

.journey-timeline { display: flex; flex-direction: column; gap: 0; }
.tl-row {
  display: grid; grid-template-columns: 70px 32px 1fr;
  align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.tl-row:first-child { border-top: 1px solid var(--line); }
.tl-year { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--primary); letter-spacing: 0.04em; }
.tl-bar {
  height: 1px; background: var(--line-strong); position: relative;
}
.tl-bar .tl-dot {
  position: absolute; right: -4px; top: -4px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--primary);
}
.tl-label { font-size: 16px; font-weight: 500; }

/* IMPACT WALL ------------------------------------------------------- */

.impact-wall {
  background: var(--ink);
  color: var(--white);
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}
.impact-wall::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(31,163,166,0.18) 0%, transparent 45%),
    radial-gradient(circle at 5% 85%, rgba(232,169,47,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.iw-head { max-width: 1000px; margin-bottom: 80px; position: relative; }

.iw-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-left: 1px solid rgba(255,255,255,0.14);
  position: relative;
}
.iw-grid.iw-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Smaller stat rows (training + alumni) */
.iw-subgrid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
  position: relative;
}
.iw-alumni-head {
  margin-top: 56px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--secondary);
  position: relative;
}
.iw-alumni-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
  position: relative;
}
.iw-sub {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,0.02);
}
.iw-sub-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.025em; line-height: 1;
  color: var(--white);
}
.iw-sub-lab {
  font-size: 14px; line-height: 1.5;
  color: var(--muted-light);
}

.iw-outcomes {
  margin-top: 48px;
  padding: 36px 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  position: relative;
}
.iw-outcomes-title {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}
.iw-outcomes-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px 14px;
}
.iw-outcomes-list li {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 14px; color: var(--white);
  font-weight: 500;
}
.iw-outcomes-list li::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--secondary);
  margin-right: 10px;
}
.iw-stat {
  padding: 50px 40px;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.iw-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(56px, 6vw, 84px); letter-spacing: -0.035em;
  line-height: 1;
}
.iw-stat:nth-child(1) .iw-num { color: var(--strategy-teal); }
.iw-stat:nth-child(2) .iw-num { color: var(--momentum-gold); }
.iw-stat:nth-child(3) .iw-num { color: var(--horizon-blue); }
.iw-stat:nth-child(4) .iw-num { color: var(--white); }
.iw-grid-3 .iw-stat:nth-child(3) .iw-num { color: var(--strategy-teal); }
.iw-label {
  font-size: 16px; line-height: 1.5; color: var(--muted-light);
  margin-top: 18px; max-width: 340px;
}

.iw-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.18);
  position: relative;
}
.strip-stat { padding: 0 18px; border-left: 1px solid rgba(255,255,255,0.14); }
.strip-stat:first-child { border-left: 0; padding-left: 0; }
.ss-n {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; letter-spacing: -0.02em;
}
.ss-l {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--muted-light); margin-top: 8px;
  line-height: 1.4;
}

/* EXPLORE ------------------------------------------------------------ */

.explore {
  background: var(--grey);
  padding: 120px 64px;
}
.explore-head { max-width: 920px; margin-bottom: 56px; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.chapter {
  background: var(--white);
  text-align: left; padding: 32px 24px 28px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
  transition: background .25s, color .25s;
  position: relative;
  font-family: inherit;
}
.chapter:hover { background: var(--grey); }
.chapter.active { background: var(--ink); color: var(--white); }
.chapter-num {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--muted);
}
.chapter.active .chapter-num { color: var(--primary); }
.chapter-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.18; letter-spacing: -0.02em;
  text-wrap: balance;
}
.ch-preview {
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.chapter.active .ch-preview { border-top-color: rgba(255,255,255,0.18); }
.ch-stat {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; letter-spacing: -0.025em; line-height: 1;
  color: var(--primary);
}
.chapter.active .ch-stat { color: var(--secondary); }
.ch-stat-label {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted); margin-top: 8px;
}
.chapter.active .ch-stat-label { color: var(--muted-light); }
.chapter-cta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600;
  margin-top: 16px;
  opacity: 0.6; transition: opacity .2s;
}
.chapter:hover .chapter-cta, .chapter.active .chapter-cta { opacity: 1; }
.chapter.active .chapter-cta { color: var(--primary); }

/* CHAPTER DETAIL ----------------------------------------------------- */

.chapter-detail {
  background: var(--white);
  padding: 100px 64px 120px;
  border-top: 1px solid var(--line);
}
.cd-inner { max-width: 1240px; margin: 0 auto; }

.ch-block { display: flex; flex-direction: column; gap: 80px; }
.ch-head { max-width: 880px; }
.ch-tag {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--primary);
  margin-bottom: 24px;
}
.ch-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.ch-title em { color: var(--primary); font-style: normal; }
.ch-lede {
  font-size: 19px; line-height: 1.55; color: var(--ink);
  margin: 0; max-width: 760px;
  text-wrap: pretty;
}
.ch-sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.ch-sub-lede { color: var(--muted); margin: 0 0 32px; max-width: 680px; font-size: 17px; line-height: 1.55; }

.pillar-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar-list li {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 18px; padding: 26px 24px;
  background: var(--white);
  align-items: start;
}
.pill-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--primary); letter-spacing: 0.04em;
  padding-top: 4px;
}
.pillar-list li strong {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 6px;
}
.pillar-list li span { font-size: 15px; color: var(--muted); line-height: 1.55; }

.ch-feature {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
/* Cohort photo collage ------------------------------------------ */
.ch-feature-photo {
  display: flex; flex-direction: column; gap: 14px;
}
.chfp-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 8px;
  width: 100%;
  aspect-ratio: 5/4;
}
.chfp-hero {
  grid-column: 1; grid-row: 1 / span 3;
  border-radius: 14px; overflow: hidden;
  background: var(--ink);
  box-shadow: 0 8px 32px rgba(14,17,22,0.12);
}
.chfp-thumb {
  border-radius: 10px; overflow: hidden;
  background: var(--ink);
  box-shadow: 0 4px 16px rgba(14,17,22,0.08);
}
.chfp-thumb-1 { grid-column: 2; grid-row: 1; }
.chfp-thumb-2 { grid-column: 2; grid-row: 2; }
.chfp-thumb-3 { grid-column: 2; grid-row: 3; }
.chfp-collage img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.chfp-caption {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.chfp-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}

.placeholder-img {
  position: relative; width: 100%;
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.placeholder-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; padding: 40px;
}
.placeholder-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid; border-radius: 999px;
}
.placeholder-badge .dot { width: 8px; height: 8px; border-radius: 50%; }
.placeholder-label {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  text-align: center; max-width: 280px; line-height: 1.4;
}

.meta-quote {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
}
.meta-stats { display: grid; gap: 0; }
.meta-stats > div {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 16px; padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.meta-stats > div:last-child { border-bottom: 1px solid var(--line); }
.meta-stats b {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1;
}
.meta-stats span { color: var(--muted); font-size: 15px; }

.arrow-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.arrow-list li {
  padding: 22px 28px 22px 36px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 16px; line-height: 1.45;
}
.arrow-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.arrow-list li::before {
  content: '→';
  position: absolute; left: 8px; top: 22px;
  color: var(--primary); font-weight: 600;
}

.programme-rail .prog-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.prog-card {
  background: var(--white);
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 200px;
}
.prog-when {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--primary);
}
.prog-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.25; }
.prog-desc { color: var(--muted); font-size: 14px; line-height: 1.55; margin-top: auto; }

.seed-funding {
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  padding: 56px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.seed-funding .eyebrow { color: var(--secondary); }
.seed-funding h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 36px; letter-spacing: -0.02em; margin: 0 0 16px;
  line-height: 1.15;
}
.seed-funding p { color: var(--muted-light); font-size: 17px; line-height: 1.6; margin: 0; }
.seed-funding strong { color: var(--secondary); font-weight: 600; }
.sf-stats { display: grid; gap: 0; }
.sf-stats > div {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px;
}
.sf-stats > div:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.sf-stats b {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  letter-spacing: -0.025em; color: var(--white);
}
.sf-stats span { color: var(--muted-light); font-size: 14px; }

.big-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.big-stat {
  border-radius: 16px; padding: 36px 28px;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.big-stat.tone-ink { background: var(--ink); color: var(--white); }
.big-stat.tone-grey { background: var(--grey); color: var(--ink); }
.big-stat.tone-teal { background: var(--strategy-teal); color: var(--white); }
.big-stat.tone-blue { background: var(--anchor-blue); color: var(--white); }
.bs-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 4.4vw, 64px); letter-spacing: -0.03em;
  line-height: 1;
}
.bs-lab { font-size: 15px; line-height: 1.45; opacity: 0.88; }

.evolution .evo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.evo-card {
  background: var(--white);
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.evo-when { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--primary); letter-spacing: 0.14em; }
.evo-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.evo-desc { color: var(--muted); font-size: 14px; line-height: 1.55; }

.four-up { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.four-card {
  background: var(--grey);
  border-radius: 12px; padding: 28px 22px;
  min-height: 220px; display: flex; flex-direction: column; gap: 10px;
}
.four-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--primary); letter-spacing: 0.1em;
}
.four-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.25; }
.four-desc { color: var(--muted); font-size: 14px; line-height: 1.55; margin-top: auto; }

.case-study {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
.case-study.reverse { grid-template-columns: 1.2fr 1fr; }
.case-study.reverse .cs-image { order: 2; }
.cs-text h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; letter-spacing: -0.02em; line-height: 1.15; margin: 8px 0 16px;
}
.cs-text p { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0 0 28px; }
.cs-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.cs-stats > div {
  padding: 16px 18px 16px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline;
}
.cs-stats b {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.02em;
}
.cs-stats span { color: var(--muted); font-size: 13px; line-height: 1.4; }
.ba-grid { display: grid; gap: 0; }
.ba-grid > div { padding: 18px 0; border-top: 1px solid var(--line); }
.ba-grid > div:last-child { border-bottom: 1px solid var(--line); }
.ba-tag {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--primary); margin-bottom: 6px;
}
.ba-grid p { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.55; }

.quote-block {
  background: var(--grey);
  border-radius: 16px;
  padding: 56px 72px;
  position: relative;
  max-width: 980px;
  border-left: 4px solid var(--primary);
}
.quote-mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 100px; line-height: 0.6;
  color: var(--primary);
  position: absolute; top: 32px; left: 32px;
  opacity: 0.3;
}
.quote-text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4; letter-spacing: -0.01em;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.quote-attr { display: flex; flex-direction: column; gap: 4px; }
.quote-attr strong { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.quote-attr span { font-family: var(--font-body); font-size: 13px; color: var(--muted); }

/* SDG ---------------------------------------------------------------- */

.sdg {
  background: var(--grey);
  padding: 120px 64px;
}
.sdg-head { max-width: 880px; margin-bottom: 56px; }
.sdg-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.sdg-tile {
  position: relative;
  border-radius: 12px;
  padding: 20px;
  min-height: 180px;
  color: #fff;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.sdg-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(0,0,0,0.35);
}
.sdg-tile-top {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.sdg-tile-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 42px; line-height: 0.95; letter-spacing: -0.04em;
  color: #fff;
  flex-shrink: 0;
}
.sdg-tile-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  padding-top: 4px;
}
.sdg-tile-desc {
  font-family: var(--font-body); font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
}
.sdg-tile-icon {
  margin-top: auto;
  width: 64px; height: 64px;
  align-self: flex-end;
}
.sdg-tile-icon svg {
  width: 100%; height: 100%;
  display: block;
  opacity: 0.95;
}

/* WHAT'S NEXT -------------------------------------------------------- */

.whats-next {
  background: var(--ink);
  color: var(--white);
  padding: 120px 64px;
}
.wn-head { max-width: 1100px; margin-bottom: 56px; }
.wn-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 100px;
}
.next-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 32px 28px;
  min-height: 220px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .2s, border-color .2s;
}
.next-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.24); }
.next-tag {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  color: var(--secondary); letter-spacing: 0.14em;
}
.next-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; line-height: 1.25; }
.next-desc { color: var(--muted-light); font-size: 15px; line-height: 1.55; margin-top: auto; }

.backers {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.backers-intro {
  display: flex; flex-direction: column; gap: 24px;
}
.backers-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
  text-wrap: balance;
}
.backers-num-hero {
  font-family: var(--font-display); font-weight: 700;
  color: var(--secondary);
  font-size: 1.08em;
}
.backers-title em {
  color: var(--secondary);
  font-style: normal;
  font-weight: 600;
}
.backers-lead {
  font-size: 17px; line-height: 1.6;
  color: var(--muted-light);
  margin: 0;
  max-width: 480px;
  text-wrap: pretty;
}

.backers-rounds {
  display: flex; flex-direction: column; gap: 16px;
}
.backer-round {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .2s, transform .15s;
}
.backer-round:hover { border-color: rgba(255,255,255,0.28); transform: translateY(-1px); }
.br-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
}
.br-year {
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--secondary);
}
.br-num {
  display: inline-flex; align-items: baseline; gap: 10px;
}
.br-num-val {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 4vw, 56px);
  letter-spacing: -0.035em; line-height: 1;
  color: var(--white);
}
.br-num-suf {
  font-family: var(--font-display); font-weight: 500;
  font-size: 14px; color: var(--muted-light);
  letter-spacing: 0;
}
.br-label {
  font-size: 14px; line-height: 1.5;
  color: var(--muted-light);
  max-width: 460px;
}
.br-dots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10px, 1fr));
  gap: 4px;
  padding-top: 4px;
}
.br-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--secondary);
  opacity: 0.85;
  transition: opacity .2s, transform .15s;
}
.backer-round:hover .br-dot { opacity: 1; }

@media (max-width: 1180px) {
  .backers { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .backer-round { padding: 24px; }
  .br-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* FOOTER ------------------------------------------------------------- */

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 80px;
  gap: 40px;
  background: #1A1623;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.10);
  width: 100%;
}

.footer-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  width: 100%;
  padding-bottom: 0;
}
.footer-logo-link { display: inline-flex; align-items: center; }
.footer-logo {
  height: 36px; width: auto; display: block;
  filter: invert(1) brightness(2);
}
.footer-social { display: flex; align-items: center; gap: 22px; }
.footer-social a {
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity .2s, transform .15s;
  opacity: 0.92;
}
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }

.footer-secondary-row {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; gap: 24px; flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-contact-btn {
  display: inline-flex; align-items: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.footer-contact-btn:hover { background: rgba(255,255,255,0.88); transform: translateY(-1px); }

.footer-secondary {
  display: flex; flex-wrap: wrap; gap: 36px;
  padding: 0; border: 0;
}
.footer-secondary a {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  color: var(--white);
  transition: color .2s;
}
.footer-secondary a:hover { color: var(--primary); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr 1fr;
  gap: 48px;
  width: 100%;
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.fcol h5 {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 0;
  color: var(--white);
  margin: 0 0 18px;
}
.fcol a {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color .2s;
  cursor: pointer;
  line-height: 1.45;
}
.fcol a:hover { color: var(--white); }

.fmarket { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; }
.fmarket > div { display: flex; flex-direction: column; }
.fsublabel {
  display: block;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.fapps {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin: 8px 0 12px;
}
.fapps a { margin-bottom: 0; }
.fapp-badge {
  display: inline-flex; align-items: center;
  height: 40px;
  transition: opacity .2s, transform .15s;
}
.fapp-badge img {
  height: 100%; width: auto; display: block;
}
.fapp-badge:hover { opacity: 0.85; transform: translateY(-1px); }
.fwaiting {
  font-size: 12px; color: rgba(255,255,255,0.62);
  margin: 4px 0 12px; line-height: 1.45;
}
.fadd-service {
  display: inline-flex !important; align-self: flex-start;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white) !important;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  margin-bottom: 0 !important;
  transition: background .2s;
}
.fadd-service:hover { background: rgba(255,255,255,0.18); }

.footer-report-row {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  width: 100%;
}
.footer-report-row .frr-label {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--white);
  margin-right: 4px;
}
.footer-report-row a {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color .2s; cursor: pointer;
  white-space: nowrap;
}
.footer-report-row a:hover { color: var(--white); }

/* Citation modal -------------------------------------------------- */
.cite-overlay {
  position: fixed; inset: 0;
  background: rgba(14,17,22,0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: citeFade .2s ease;
}
@keyframes citeFade {
  from { opacity: 0; } to { opacity: 1; }
}
.cite-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 36px 32px;
  max-width: 560px; width: 100%;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.4);
  animation: citePop .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes citePop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cite-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.cite-eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.cite-close {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  transition: background .2s, color .2s;
}
.cite-close:hover { background: var(--ink); color: var(--white); }
.cite-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.cite-meta {
  font-size: 14px; color: var(--muted);
  margin: 0 0 22px;
}
.cite-block {
  background: var(--grey);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.cite-text {
  font-family: var(--font-mono);
  font-size: 13px; line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
  word-break: break-word;
}
.cite-copy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink); color: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  transition: background .2s, transform .15s;
}
.cite-copy:hover { background: var(--primary); transform: translateY(-1px); }
.cite-pdf {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--primary);
  transition: color .2s;
}
.cite-pdf:hover { color: var(--primary-deep); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding-top: 0;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .fb-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.fb-info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,0.5); border-radius: 50%;
  font-size: 9px; cursor: help;
  margin-left: -16px;
}
.footer-bottom .fb-right { display: flex; align-items: center; gap: 16px; }
.footer-bottom a {
  color: rgba(255,255,255,0.62);
  transition: color .2s; cursor: pointer;
}
.footer-bottom a:hover { color: var(--white); }
.fb-currency {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 0;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; padding: 8px 4px;
  transition: color .2s;
}
.fb-currency:hover { color: var(--white); }

/* Responsive --------------------------------------------------------- */

@media (max-width: 1180px) {
  .site-nav-inner { padding: 14px 32px; }
  .hero, .journey, .impact-wall, .explore, .chapter-detail, .sdg, .whats-next, .site-footer { padding-left: 32px; padding-right: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 48px; }
  .hero-side { justify-content: flex-start; }
  .hero-marquee { margin: 0 -32px; width: calc(100% + 64px); }
  .iw-strip { grid-template-columns: repeat(3, 1fr); gap: 24px 0; }
  .strip-stat:nth-child(4) { border-left: 0; padding-left: 0; }
  .programme-rail .prog-grid, .evolution .evo-grid { grid-template-columns: repeat(2, 1fr); }
  .big-grid { grid-template-columns: repeat(2, 1fr); }
  .four-up { grid-template-columns: repeat(2, 1fr); }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-orbit { display: none; }
  .footer-grid { grid-template-columns: 1fr 1.6fr 1fr 1fr; }
}

@media (max-width: 1100px) {
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .journey, .impact-wall, .explore, .chapter-detail, .sdg, .whats-next { padding-top: 80px; padding-bottom: 80px; }
  .journey-grid, .ch-feature, .case-study, .case-study.reverse, .seed-funding, .backers { grid-template-columns: 1fr; gap: 40px; }
  .case-study.reverse .cs-image { order: 0; }
  .iw-grid { grid-template-columns: 1fr; }
  .pillar-list, .arrow-list, .wn-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .fcol-marketplace { grid-column: 1 / -1; }
  .hero-quick { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .quick-stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .seed-funding { padding: 40px 32px; }
  .ch-block { gap: 60px; }
}

@media (max-width: 640px) {
  .site-nav-inner { padding: 12px 20px; }
  .nav-tag { display: none; }
  .nav-divider { display: none; }
  .hero, .journey, .impact-wall, .explore, .chapter-detail, .sdg, .whats-next, .site-footer {
    padding-left: 20px; padding-right: 20px;
  }
  .journey, .impact-wall, .explore, .chapter-detail, .sdg, .whats-next { padding-top: 64px; padding-bottom: 64px; }
  .site-footer { padding-top: 56px; padding-bottom: 28px; }
  .hero-grid { padding: 40px 0 36px; gap: 32px; }
  .hero-marquee { margin: 0 -20px; width: calc(100% + 40px); }
  .pillar-list, .arrow-list, .four-up, .big-grid, .sdg-grid, .wn-grid, .explore-grid,
  .programme-rail .prog-grid, .evolution .evo-grid, .iw-strip, .backers-stats, .iw-grid, .hero-quick {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fmarket { grid-template-columns: 1fr; gap: 24px; }
  .footer-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-secondary { gap: 18px 22px; }
  .footer-secondary-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .arrow-list li:nth-child(odd) { border-right: 0; }
  .strip-stat, .quick-stat { border-left: 0; padding-left: 0; }
  .quote-block { padding: 36px 24px 28px; }
  .quote-mark { font-size: 72px; top: 20px; left: 18px; }
  .seed-funding { padding: 32px 24px; gap: 32px; }
  .seed-funding h4 { font-size: 28px; }
  .ch-title { font-size: clamp(32px, 8vw, 44px); }
  .section-title { font-size: clamp(30px, 7vw, 44px); }
  .hero-title { font-size: clamp(40px, 12vw, 60px); }
  .iw-stat { padding: 32px 24px; }
  .iw-num { font-size: clamp(44px, 12vw, 64px); }
  .meta-stats > div { grid-template-columns: 90px 1fr; gap: 12px; }
  .meta-stats b { font-size: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom .fb-right { gap: 16px; }
  .pillar-list li { grid-template-columns: 40px 1fr; padding: 22px 18px; }
  .ch-feature, .case-study { gap: 32px; }
  .next-card, .four-card { min-height: 0; padding: 26px 22px; }
  .chapter { min-height: 240px; padding: 24px 20px; }
}
