/* ============================================================
   KCGF V13 — Stylesheet
   ============================================================ */

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

:root {
  --teal:       #3CB4B4;
  --teal-dark:  #29a0a0;
  --teal-bg:    rgba(60,180,180,0.10);
  --navy:       #0a1628;
  --navy2:      #0e1f3a;
  --grey:       #969696;
  --offwhite:   #f7f8fa;
  --white:      #ffffff;
  --page:       #E6E6E6;
  --gap:        8px;
  --r:          14px;

  --w-standard: rgb(153,37,37);
  --w-agro:     rgb(99,130,86);
  --w-grow:     rgb(134,250,132);
  --w-diaspora: rgb(94,125,171);
  --w-export:   rgb(80,21,51);
  --w-women:    rgb(228,135,110);
  --w-startup:  rgb(85,198,196);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--page); color: var(--navy); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; display: flex; align-items: center; padding: 0 28px; gap: 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

/* Logo — inverted (white) when transparent, natural when scrolled */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); transition: filter 0.3s; }
#nav.scrolled .nav-logo img { filter: none; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0 auto; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.82); text-decoration: none;
  padding: 7px 13px; border-radius: 7px;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,0.1); }
#nav.scrolled .nav-links > li > a { color: var(--navy); }
#nav.scrolled .nav-links > li > a:hover { background: var(--offwhite); }

/* Caret */
.nav-caret { width: 9px; height: 9px; opacity: 0.6; transition: transform 0.2s; flex-shrink: 0; }
.nav-links > li.dd-open > a .nav-caret { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border-radius: 12px; padding: 6px; min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 6px rgba(0,0,0,0.06);
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s, transform 0.18s; z-index: 10;
}
.nav-links > li.dd-open > .dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-size: 12.5px; font-weight: 500;
  color: var(--navy) !important; padding: 8px 10px; border-radius: 8px; text-decoration: none;
}
.dropdown a:hover { background: var(--offwhite); }
.dd-ico {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--teal-bg); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px;
}

/* Two-column dropdown (windows) */
.dropdown.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  min-width: 420px; left: 0; transform: translateX(0) translateY(-8px);
}
.nav-links > li.dd-open > .dropdown.two-col { transform: translateX(0) translateY(0); }
.dropdown.two-col .dd-col { display: flex; flex-direction: column; }

.dropdown.align-right { left: auto; right: 0; transform: translateX(0) translateY(-8px); }
.nav-links > li.dd-open > .dropdown.align-right { transform: translateX(0) translateY(0); }

/* Right side of nav */
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang { display: flex; align-items: center; gap: 2px; }
.lang button {
  font-family: 'Space Grotesk', sans-serif; font-size: 11.5px; font-weight: 600;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.45); padding: 4px 7px; border-radius: 5px;
  transition: color 0.2s;
}
.lang button.on { color: var(--teal); }
#nav.scrolled .lang button { color: rgba(10,22,40,0.45); }
#nav.scrolled .lang button.on { color: var(--teal); }
.lang-sep { font-size: 10px; color: rgba(255,255,255,0.22); }
#nav.scrolled .lang-sep { color: rgba(10,22,40,0.22); }

.nav-cta-btn {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  background: var(--teal); color: #fff; text-decoration: none;
  padding: 8px 18px; border-radius: 8px;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--teal-dark); }

/* Hamburger — white bars over transparent nav, navy when scrolled */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  width: 36px; height: 36px; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; border-radius: 7px;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.25s, opacity 0.2s, background 0.3s;
}
#nav.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span { background: var(--navy); }
.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 menu overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; padding: 80px 24px 40px; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-nav-toggle {
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--navy); background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 0; border-bottom: 1px solid rgba(10,22,40,0.06);
}
.mobile-nav-toggle .toggle-arrow { transition: transform 0.22s; color: var(--grey); }
.mobile-nav-toggle.expanded .toggle-arrow { transform: rotate(180deg); }
.mobile-subnav { display: none; padding: 8px 0 4px 16px; }
.mobile-subnav.open { display: flex; flex-direction: column; }
.mobile-subnav a {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 500;
  color: rgba(10,22,40,0.65); text-decoration: none;
  padding: 9px 0; border-bottom: 1px solid rgba(10,22,40,0.04);
  display: flex; align-items: center; gap: 8px;
}
.mobile-subnav a:hover { color: var(--teal); }
.mobile-direct-link {
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--navy); text-decoration: none;
  display: block; padding: 14px 0; border-bottom: 1px solid rgba(10,22,40,0.06);
}
.mobile-cta-row { margin-top: 28px; }
.mobile-cta-primary {
  display: block; text-align: center; text-decoration: none;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  background: var(--teal); color: #fff; padding: 14px; border-radius: 10px;
  transition: background 0.2s;
}
.mobile-cta-primary:hover { background: var(--teal-dark); }
.mobile-lang { display: flex; gap: 8px; margin-top: 20px; }
.mobile-lang button {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 7px;
  background: var(--offwhite); color: var(--navy);
  border: 1px solid rgba(10,22,40,0.1); cursor: pointer;
}
.mobile-lang button.on { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ══════════════════════════════════════════════
   BENTO SYSTEM
══════════════════════════════════════════════ */
.bento { display: grid; gap: var(--gap); padding: var(--gap); }
.cell { border-radius: var(--r); overflow: hidden; position: relative; transition: transform 0.2s; }
.cell-navy  { background: var(--navy); }
.cell-navy2 { background: var(--navy2); }
.cell-teal  { background: var(--teal); }
.cell-white { background: var(--white); }
.cell-off   { background: var(--offwhite); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero { height: 100dvh; display: flex; flex-direction: column; padding-top: 64px; }
.hero-grid {
  flex: 1;
  grid-template-columns: 1fr 272px;
  grid-template-rows: repeat(4, 1fr);
}
.hero-main {
  grid-column: 1; grid-row: 1 / -1;
  padding: 60px 72px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Hero photo — brightened: 0.28 → 0.55, overlay reduced */
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1400&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.55) saturate(0.85);
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.38) 60%, rgba(60,180,180,0.10) 100%);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 28px;
}
.hero-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.hero-h1 {
  font-size: clamp(44px, 4.6vw, 74px); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.025em; color: #fff; margin-bottom: 22px; max-width: 680px;
}
.hero-h1 .teal { color: var(--teal); }
.hero-p { font-size: 16.5px; font-weight: 400; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 44px; }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; font-weight: 600;
  background: var(--teal); color: #fff; text-decoration: none;
  padding: 13px 26px; border-radius: 9px; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; font-weight: 500;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 13px 22px; border-radius: 9px; transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.28); }
.hero-trust {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.07);
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,0.38); }

/* Hero stat cells */
.stat-cell {
  grid-column: 2; padding: 24px 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
}
.stat-lbl { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.stat-val { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.stat-sub { font-size: 11.5px; line-height: 1.4; }

/* ══════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════ */
.sec-hdr { padding: 48px 16px 0; display: flex; align-items: baseline; justify-content: space-between; }
.sec-eyebrow {
  font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey);
  display: block; margin-bottom: 6px;
}
.sec-title { font-size: clamp(26px, 2.6vw, 38px); font-weight: 700; letter-spacing: -0.02em; color: var(--navy); }
.sec-link {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--teal); text-decoration: none; display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   GUARANTEE WINDOWS
══════════════════════════════════════════════ */
.win-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto auto; }
.win-cell {
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  cursor: pointer; transition: transform 0.2s;
}
.win-cell:hover { transform: translateY(-2px); }
.win-num { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; }
.win-ico { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.win-name { font-family: 'Space Grotesk', sans-serif; font-size: 16.5px; font-weight: 700; line-height: 1.2; }
.win-desc { font-size: 13.5px; line-height: 1.6; }
.win-badge {
  display: inline-flex; align-items: center; gap: 4px; margin-top: auto; align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
}
/* Window logo container — consistent with other versions */
.win-logo-wrap {
  width: 80px; height: 56px;
  margin-bottom: 20px;
  display: flex; align-items: center;
}
.win-logo-wrap img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
}
.win-logo-inv { filter: brightness(0) invert(1); }

/* ══════════════════════════════════════════════
   MISSION
══════════════════════════════════════════════ */
.mission-grid { grid-template-columns: 1.1fr 1fr; }
.mission-l { padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.mission-quote { font-size: clamp(22px, 2.4vw, 34px); font-weight: 700; line-height: 1.22; letter-spacing: -0.02em; color: #fff; margin-bottom: 28px; }
.mission-r { padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.pillar { padding-bottom: 26px; border-bottom: 1px solid rgba(10,22,40,0.08); }
.pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-tag { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
.pillar-title { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.pillar-body { font-size: 13.5px; line-height: 1.65; color: rgba(10,22,40,0.58); }

/* ══════════════════════════════════════════════
   STORIES
══════════════════════════════════════════════ */
.stories-grid { grid-template-columns: 1fr 1fr; }
.story-full { grid-column: 1 / -1; }
.story-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; padding: 64px 72px; }
.story-bignum { font-family: 'Space Grotesk', sans-serif; font-size: clamp(72px, 9vw, 130px); font-weight: 700; color: var(--teal); line-height: 0.9; letter-spacing: -0.04em; }
.story-stat-sub { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 10px; }
.story-quote { font-family: 'Space Grotesk', sans-serif; font-size: clamp(16px, 1.7vw, 22px); font-weight: 500; line-height: 1.48; color: rgba(255,255,255,0.88); margin-bottom: 28px; font-style: italic; }
.story-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: #fff; }
.story-company { font-size: 13px; color: var(--teal); margin-top: 2px; }
.story-metrics { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.09); display: flex; gap: 28px; }
.story-metric-val { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: #fff; }
.story-metric-lbl { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.story-half { padding: 0; display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; overflow: hidden; }
.story-half-inner { padding: 36px 44px 44px; display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.story-half-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(52px, 6.5vw, 88px); font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.story-photo-strip { width: 100%; height: 160px; object-fit: cover; object-position: center; display: block; filter: brightness(0.85) saturate(0.75); }
.story1-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1200&q=80&auto=format&fit=crop'); background-size: cover; background-position: center; filter: brightness(0.22) saturate(0.5); }
.story1-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.4) 100%); }

/* ══════════════════════════════════════════════
   NEWS
══════════════════════════════════════════════ */
.news-grid { grid-template-columns: 1.35fr 1fr 1fr; }
.news-cell { padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.news-photo { width: 100%; height: 180px; object-fit: cover; object-position: center; display: block; }
.news-cell-content { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-tag { display: inline-flex; align-items: center; gap: 5px; font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.news-date { font-family: 'Space Grotesk', sans-serif; font-size: 11.5px; font-weight: 500; color: var(--grey); }
.news-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.news-body { font-size: 13.5px; line-height: 1.65; color: var(--grey); }
.news-link { display: inline-flex; align-items: center; gap: 5px; margin-top: auto; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; }

/* ══════════════════════════════════════════════
   ELIGIBILITY
══════════════════════════════════════════════ */
.elig-inner { padding: 64px 68px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.elig-h { font-size: clamp(26px, 2.8vw, 42px); font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 10px; }
.elig-sub { font-size: 15px; color: rgba(255,255,255,0.7); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  background: #fff; color: var(--teal); text-decoration: none;
  padding: 15px 30px; border-radius: 10px; transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════ */
.partners-cell { padding: 48px 44px; }
.ptag { display: inline-flex; align-items: center; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 7px; background: var(--offwhite); color: var(--navy); border: 1px solid rgba(10,22,40,0.08); }
.dtag { display: inline-flex; align-items: center; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 7px; background: var(--teal-bg); color: var(--teal-dark); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: var(--page); padding: var(--gap); }
.footer-inner {
  background: var(--navy2); border-radius: var(--r);
  padding: 52px 60px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px;
}
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.38); max-width: 210px; margin-top: 14px; }
.footer-col-title { font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; list-style: none; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.5); display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; }
.footer-bottom { padding: 20px 16px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: 'Space Grotesk', sans-serif; font-size: 11.5px; color: rgba(10,22,40,0.38); }
.footer-social { display: flex; gap: 7px; margin-top: 20px; }
.footer-social a { width: 30px; height: 30px; border-radius: 7px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; transition: background 0.2s, color 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.footer-lang-btn {
  font-family: 'Space Grotesk', sans-serif; font-size: 11.5px; font-weight: 600;
  padding: 5px 12px; border-radius: 6px; cursor: pointer;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-lang-btn.on { background: rgba(60,180,180,0.18); color: var(--teal); border-color: rgba(60,180,180,0.28); }

/* ══════════════════════════════════════════════
   INTERIOR PAGES
══════════════════════════════════════════════ */
.page-wrap { padding-top: 64px; }
.breadcrumb {
  padding: 18px 28px; font-family: 'Space Grotesk', sans-serif; font-size: 12.5px;
  color: rgba(10,22,40,0.45); display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }

.page-hero-cell { min-height: 320px; padding: 64px 68px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.page-hero-eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(34px, 3.8vw, 58px); font-weight: 700; letter-spacing: -0.025em; color: #fff; line-height: 1.1; position: relative; z-index: 1; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); margin-top: 14px; max-width: 560px; line-height: 1.7; position: relative; z-index: 1; }

/* Stats band */
.stats-band { grid-template-columns: repeat(4, 1fr); }
.stat-b { padding: 36px 32px; display: flex; flex-direction: column; gap: 8px; }
.stat-b-val { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; letter-spacing: -0.025em; }
.stat-b-lbl { font-size: 12.5px; line-height: 1.5; }

/* Values grid */
.values-grid { grid-template-columns: repeat(3, 1fr); }
.val-cell { padding: 36px 32px; }
.val-num { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.val-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.val-body { font-size: 13.5px; line-height: 1.68; }

/* Objectives */
.obj-grid { grid-template-columns: repeat(3, 1fr); }
.obj-cell { padding: 36px 32px; }
.obj-num { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; color: var(--teal); letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.obj-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.obj-body { font-size: 13.5px; line-height: 1.65; color: rgba(10,22,40,0.6); }

/* CTA band */
.cta-band-cell { padding: 60px 68px; position: relative; overflow: hidden; }
.cta-band-title { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -0.025em; color: #fff; margin-bottom: 14px; max-width: 560px; line-height: 1.18; position: relative; z-index: 1; }
.cta-band-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 480px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; font-weight: 600;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88); text-decoration: none;
  padding: 13px 24px; border-radius: 9px; transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.18); }

/* GROW window interior */
.grow-chars-grid { grid-template-columns: repeat(4, 1fr); }
.grow-char { padding: 32px 28px; }
.grow-char-val { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -0.03em; color: var(--w-grow); margin-bottom: 6px; }
.grow-char-lbl { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }

.elig-tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.elig-tbl th { font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); text-align: left; padding: 12px 16px; border-bottom: 1px solid rgba(10,22,40,0.1); }
.elig-tbl td { padding: 14px 16px; border-bottom: 1px solid rgba(10,22,40,0.07); color: var(--navy); line-height: 1.5; }
.elig-tbl tr:last-child td { border-bottom: none; }
.elig-tbl td:first-child { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13.5px; }

.process-bento { grid-template-columns: repeat(4, 1fr); }
.proc-cell { padding: 32px 28px; }
.proc-step-num { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; color: var(--teal); letter-spacing: -0.04em; margin-bottom: 14px; line-height: 1; }
.proc-step-title { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.proc-step-body { font-size: 13.5px; line-height: 1.65; color: rgba(10,22,40,0.6); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .lang { display: none; }
  .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .hero-main { padding: 36px 22px; }
  .stat-cell { display: none; }
  .win-grid { grid-template-columns: 1fr !important; }
  /* Override inline grid-column/grid-row on featured/full-width cells */
  #win0 { grid-column: 1 !important; grid-row: auto !important; }
  #win6 { grid-column: 1 !important; grid-row: auto !important; }
  /* Win0 inner two-column layout → single column */
  .win0-inner { grid-template-columns: 1fr !important; height: auto !important; }
  .win0-inner > div:first-child { padding: 32px 22px !important; }
  .win0-inner > div:last-child { padding: 24px 22px !important; border-left: none !important; border-top: 1px solid rgba(153,37,37,0.18) !important; }
  .win0-stat-num { font-size: 56px !important; }
  /* Win6 startup bar → stack vertically */
  .win6-inner { grid-template-columns: 1fr !important; gap: 16px !important; padding: 22px !important; }
  .win6-inner > a { align-self: flex-start; }
  .mission-grid { grid-template-columns: 1fr !important; }
  .stories-grid { grid-template-columns: 1fr !important; }
  .story-full { grid-column: 1 !important; }
  .story-inner { grid-template-columns: 1fr !important; gap: 28px !important; padding: 36px 22px !important; }
  .news-grid { grid-template-columns: 1fr !important; }
  .elig-inner { grid-template-columns: 1fr !important; padding: 44px 22px !important; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; padding: 36px 22px !important; }
  .sec-hdr { flex-direction: column; gap: 6px; }
  .bento.partners-2col { grid-template-columns: 1fr !important; }
  .stats-band { grid-template-columns: 1fr 1fr !important; }
  .values-grid { grid-template-columns: 1fr 1fr !important; }
  .obj-grid { grid-template-columns: 1fr !important; }
  .grow-chars-grid { grid-template-columns: 1fr 1fr !important; }
  .process-bento { grid-template-columns: 1fr 1fr !important; }
  .page-hero-cell { padding: 44px 24px; }
  .cta-band-cell { padding: 44px 24px; }
  .mission-l { padding: 44px 28px; }
  .mission-r { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .grow-chars-grid { grid-template-columns: 1fr !important; }
  .process-bento { grid-template-columns: 1fr !important; }
}
