/* =========================================================
   GCPA Green Capital — Main Stylesheet v2.0.0
   Ported from React SPA design system (index.css)
   Navy #0B1C2E | Gold #B8975A | White #ffffff
   Playfair Display (headings) + Montserrat (body)
   ========================================================= */

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

:root {
  --navy:   #0B1C2E;
  --navy2:  #0e2240;
  --gold:   #B8975A;
  --white:  #ffffff;
  --off:    #f7f8fa;
  --text:   #1a2a3a;
  --muted:  #5a6a7a;
  --border: #dde3ea;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-b);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 900px) { .container { padding: 0 24px; } }

/* ── HEADER ───────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 44px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  text-decoration: none; transition: color .25s; background: none; border: none;
  cursor: pointer; font-family: var(--font-b); padding: 0;
}
.nav-link:hover, .nav-link.active { color: #fff; }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-b); padding: 0;
  display: flex; align-items: center; gap: 5px;
  transition: color .25s;
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active { color: #fff; }
.nav-dropdown-toggle svg {
  width: 9px; height: 9px; stroke: currentColor; fill: none;
  stroke-width: 2.5; transition: transform .25s; flex-shrink: 0;
}
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 22px); left: 50%;
  transform: translateX(-50%);
  background: var(--navy2); border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--gold);
  min-width: 280px; padding: 6px 0;
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
  z-index: 500;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 22px;
  font-size: 11px; font-weight: 400; letter-spacing: .5px;
  text-transform: none; color: rgba(255,255,255,.65);
  text-decoration: none; transition: all .2s;
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active {
  color: var(--gold); background: rgba(255,255,255,.04); padding-left: 28px;
}

/* burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.burger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.7); transition: .3s; }

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999;
  padding: 24px; flex-direction: column; gap: 4px;
  overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav button {
  display: block; padding: 12px 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  text-decoration: none; background: none; border: none;
  cursor: pointer; font-family: var(--font-b); text-align: left;
  transition: color .2s; border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav a:hover, .mobile-nav button:hover { color: #fff; }
.mobile-nav .mobile-sub a {
  padding-left: 24px; font-size: 11px; font-weight: 400;
  text-transform: none; letter-spacing: .5px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .site-nav { display: none; }
  .burger { display: flex; }
}

/* ── FOOTER ───────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.55); }
.footer-main {
  padding: 72px 0 0;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: var(--font-b); font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; color: #fff; margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-desc {
  font-size: 12px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,.4); max-width: 260px;
}
.footer-col-title {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 12px; color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 10.5px; color: rgba(255,255,255,.3); margin: 0; }
.footer-legal a {
  color: rgba(255,255,255,.3); text-decoration: none; margin-left: 20px;
  font-size: 10.5px; transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ── SHARED SECTION ATOMS ─────────────────── */
.section-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; color: var(--navy); line-height: 1.15;
  margin: 0 0 16px;
}
.rule-thin { width: 40px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.rule-thin.center { margin-left: auto; margin-right: auto; }
.lead-text { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.9; }
.body-text { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.95; }
.hero-rule { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 24px auto 0; }
.hero-rule span { display: block; width: 44px; height: 1px; background: rgba(184,151,90,.4); }
.hero-rule i { display: block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: var(--navy); padding: 140px 0 88px; text-align: center;
}
.page-hero-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: block;
}
.page-hero-title {
  font-family: var(--font-h); font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400; color: #fff; line-height: 1.1; margin: 0 0 24px;
}
.page-hero-desc {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,.6);
  max-width: 600px; margin: 0 auto; line-height: 1.9;
}

/* ── BTN ──────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--gold); color: #fff;
  font-family: var(--font-b); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  transition: background .25s, transform .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #a07d44; transform: translateY(-2px); }
.btn-navy {
  display: inline-block; padding: 14px 36px;
  background: var(--navy); color: #fff;
  font-family: var(--font-b); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  transition: background .25s, transform .2s;
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }

/* ── ARROW LINK ───────────────────────────── */
.arrow-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 3px;
  transition: all .25s; width: fit-content;
}
.arrow-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .25s; }
.arrow-link:hover { color: var(--gold); border-color: var(--gold); }
.arrow-link:hover svg { transform: translate(3px,-3px); }

/* ── FADE-UP ANIMATION ────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-s1 { transition-delay: .05s; }
.fade-s2 { transition-delay: .15s; }
.fade-s3 { transition-delay: .25s; }
.fade-s4 { transition-delay: .35s; }

/* ── HOME HERO ────────────────────────────── */
.home-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #0e2240;
  will-change: transform;
}
.home-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,28,46,.4) 0%, rgba(11,28,46,.55) 50%, rgba(11,28,46,.75) 100%);
}
.home-hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
}
.home-hero-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 24px;
}
.home-hero-eyebrow .line { display: block; width: 48px; height: 1px; background: rgba(184,151,90,.5); }
.home-hero-eyebrow span {
  font-size: 9px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
}
.home-hero-title {
  font-family: var(--font-h); font-size: clamp(48px, 7.5vw, 90px);
  font-weight: 600; color: #fff; line-height: 1.05; letter-spacing: -1px; margin: 0 0 10px;
}
.home-hero-title em { color: var(--gold); font-style: normal; }
.home-hero-sub {
  font-size: 11px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin: 0 0 36px;
}
.home-hero-rule { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 36px; }
.home-hero-rule span { display: block; width: 44px; height: 1px; background: rgba(184,151,90,.4); }
.home-hero-rule i { display: block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.home-hero-desc {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.75);
  letter-spacing: .3px; line-height: 1.8; max-width: 520px; margin: 0 auto 48px;
}
.home-hero-scroll {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 8px; cursor: pointer; opacity: .65; background: none; border: none;
}
.home-hero-scroll span { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; }
.home-hero-scroll svg {
  width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.5;
  animation: heroScrollBounce 2s infinite ease-in-out;
}
@keyframes heroScrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ── HOME INTRO ───────────────────────────── */
.home-intro {
  background: #fff; padding: 80px 0; border-bottom: 1px solid var(--border);
}
.home-intro .container {
  display: flex; align-items: center; gap: 80px;
}
.home-intro-left { flex: 1; }
.home-intro-right {
  flex: 1; font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.9; border-left: 2px solid var(--border); padding-left: 48px;
}
.home-intro-right .byline {
  margin-top: 24px; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
@media (max-width: 900px) {
  .home-intro .container { flex-direction: column; gap: 32px; }
  .home-intro-right { border-left: none; border-top: 2px solid var(--border); padding-left: 0; padding-top: 32px; }
}

/* ── HOME NEWS ────────────────────────────── */
.home-news { background: #fff; padding: 100px 0; }
.home-news-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; flex-wrap: wrap; gap: 20px;
}
.home-news-header .view-all {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: 3px; transition: all .25s;
}
.home-news-header .view-all:hover { color: var(--gold); border-color: var(--gold); }
.news-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.news-card {
  display: block; background: #fff; border: 1px solid var(--border);
  text-decoration: none; overflow: hidden; transition: box-shadow .3s, transform .3s;
}
.news-card:hover { box-shadow: 0 12px 40px rgba(11,28,46,.09); transform: translateY(-3px); }
.news-card-img-wrap { overflow: hidden; }
.news-card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .5s; }
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-body { padding: 28px 24px 32px; }
.news-card-tag {
  font-size: 8.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--font-h); font-size: 17px; font-weight: 600;
  color: var(--navy); line-height: 1.35; margin-bottom: 10px;
}
.news-card-date { font-size: 10.5px; color: var(--muted); letter-spacing: .5px; margin-bottom: 18px; }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .news-grid { grid-template-columns: 1fr; } }

/* ── BRANDS PAGE ──────────────────────────── */
.brands-list { padding: 80px 0 100px; background: #fff; }
.brands-list-inner { display: flex; flex-direction: column; gap: 2px; }
.brand-row {
  display: grid; grid-template-columns: 280px 1fr;
  border: 1px solid var(--border); background: #fff;
  text-decoration: none; color: inherit;
  transition: box-shadow .3s, transform .3s;
}
.brand-row:hover { box-shadow: 0 8px 32px rgba(11,28,46,.08); transform: translateY(-1px); }
.brand-row-left {
  background: var(--navy); padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.brand-ticker {
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.brand-name { font-family: var(--font-h); font-size: 19px; font-weight: 600; color: #fff; line-height: 1.25; }
.brand-row-right { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.brand-desc { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.85; margin: 0 0 20px; }
.brand-badge {
  display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(11,28,46,.35);
  border: 1px solid var(--border); padding: 5px 12px;
}
@media (max-width: 900px) {
  .brand-row { grid-template-columns: 1fr; }
}

/* ── ABOUT PAGE ───────────────────────────── */
.about-overview { background: #fff; padding: 80px 0; border-bottom: 1px solid var(--border); }
.about-overview .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.legal-badge {
  display: inline-flex; flex-direction: column; gap: 5px;
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
  padding: 16px 22px; background: var(--off); margin-top: 36px;
}
.legal-badge-label { font-size: 8.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.legal-badge-value { font-size: 13px; font-weight: 600; color: var(--navy); }
.stat-navy { background: var(--navy); padding: 36px; margin-bottom: 2px; }
.stat-navy-num { font-family: var(--font-h); font-size: 52px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-navy-label { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.stat-navy-text { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.85; }
.stat-off { background: var(--off); border: 1px solid var(--border); padding: 36px; }
.stat-off-label { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.stat-off-title { font-family: var(--font-h); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.stat-off-text { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.8; }
.about-purpose { background: var(--navy); padding: 96px 0; }
.about-purpose .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-brands { background: var(--off); padding: 72px 0; border-bottom: 1px solid var(--border); }
.about-brands .container > .fade-up:first-child { text-align: center; margin-bottom: 52px; }
.about-brands .section-label, .about-brands .section-title { text-align: center; }
.about-brands .rule-thin { margin-left: auto; margin-right: auto; }
.brands-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.brands-two-col-card { background: #fff; border: 1px solid var(--border); padding: 40px 40px; }
.brands-two-col-tag {
  font-size: 8.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.brands-two-col-tag .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; }
.brands-two-col-name { font-family: var(--font-h); font-size: 21px; font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.brands-two-col-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.9; margin: 0; }
.about-entity { background: #fff; padding: 80px 0; }
.about-entity .container { }
.about-entity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 52px; }
.entity-card { background: var(--off); padding: 44px 40px; border: 1px solid var(--border); }
.entity-card:hover { box-shadow: 0 8px 32px rgba(11,28,46,.07); }
.entity-card-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.entity-card-label .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; }
.entity-card-title { font-family: var(--font-h); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.entity-card-text { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.85; margin: 0; }
.about-presence { background: var(--navy); padding: 72px 0; }
.about-presence .container { display: grid; grid-template-columns: 1.2fr 2fr; gap: 72px; align-items: center; }
.presence-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.presence-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 24px 22px; }
.presence-item.highlight { background: rgba(184,151,90,.06); border-color: rgba(184,151,90,.2); }
.presence-country { font-family: var(--font-h); font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.presence-item.highlight .presence-country { color: var(--gold); }
.presence-note { font-size: 9.5px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.35); }
.about-organised { background: var(--off); padding: 80px 0 100px; }
.organised-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.organised-card { background: #fff; border: 1px solid var(--border); padding: 36px 32px; transition: all .3s; }
.organised-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(11,28,46,.07); }
.organised-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.organised-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.organised-title { font-family: var(--font-h); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.organised-text { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8; margin: 0; }
@media (max-width: 900px) {
  .about-overview .container, .about-purpose .container, .about-presence .container { grid-template-columns: 1fr !important; gap: 40px !important; }
  .brands-two-col, .about-entity-grid, .presence-grid, .organised-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .presence-grid, .organised-grid { grid-template-columns: 1fr !important; }
}

/* ── BOARD OF TRUSTEES ────────────────────── */
.board-intro { padding: 80px 0; background: #fff; border-bottom: 1px solid var(--border); }
.board-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.board-resp { padding: 80px 0; background: var(--off); }
.board-resp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.board-resp-card { background: #fff; border: 1px solid var(--border); padding: 40px 32px; transition: all .3s; }
.board-resp-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(11,28,46,.07); }
.board-resp-num { font-family: var(--font-h); font-size: 56px; color: rgba(184,151,90,.15); line-height: 1; margin-bottom: 16px; }
.board-resp-title { font-family: var(--font-h); font-size: 19px; color: var(--navy); font-weight: 600; margin-bottom: 12px; line-height: 1.25; }
.board-resp-text { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.85; margin: 0; }
.board-members { padding: 80px 0; background: #fff; }
.board-members-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.trustee-card {
  background: var(--off); border: 1px solid var(--border); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.trustee-avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.trustee-avatar span { font-family: var(--font-h); font-size: 20px; color: var(--gold); font-weight: 400; }
.trustee-name { font-family: var(--font-h); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.trustee-title { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.trustee-bio { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.8; margin: 0; }
.board-charter { background: var(--navy); padding: 72px 0; }
.board-charter .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.charter-label { font-size: 9.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.charter-title { font-family: var(--font-h); font-size: clamp(26px,3.5vw,40px); font-weight: 400; color: #fff; margin: 0 0 20px; line-height: 1.2; }
.charter-text { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.9; }
.charter-items { display: flex; flex-direction: column; gap: 16px; }
.charter-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.07);
}
.charter-item:nth-child(odd) { background: rgba(255,255,255,.03); }
.charter-item .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.charter-item span { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.65); letter-spacing: .3px; }
.board-committees { padding: 80px 0 100px; background: var(--off); }
.board-committees-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.committee-card {
  background: #fff; border: 1px solid var(--border); border-top: 2px solid transparent;
  padding: 32px 28px; transition: border-top-color .25s;
}
.committee-card:hover { border-top-color: var(--gold); }
.committee-name { font-family: var(--font-h); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.committee-desc { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.8; margin: 0; }
@media (max-width: 960px) {
  .board-intro .container, .board-charter .container { grid-template-columns: 1fr !important; gap: 48px !important; }
  .board-resp-grid, .board-members-grid, .board-committees-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .board-resp-grid, .board-members-grid, .board-committees-grid { grid-template-columns: 1fr !important; }
}

/* ── CDFI INITIATIVES ─────────────────────── */
.cdfi-intro { padding: 80px 0; background: #fff; border-bottom: 1px solid var(--border); }
.cdfi-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cdfi-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.cdfi-stat { background: #fff; padding: 36px 28px; }
.cdfi-stat-num { font-family: var(--font-h); font-size: 40px; color: var(--navy); font-weight: 400; line-height: 1; margin-bottom: 8px; }
.cdfi-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.cdfi-stat-sub { font-size: 12px; color: var(--muted); font-weight: 300; }
.cdfi-framework { padding: 80px 0; background: var(--navy); }
.cdfi-framework-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
.framework-card { border: 1px solid rgba(255,255,255,.08); border-top: 2px solid rgba(255,255,255,.08); padding: 40px 36px; transition: border-top-color .25s; }
.framework-card:hover { border-top-color: var(--gold); }
.framework-num { font-family: var(--font-h); font-size: 52px; color: rgba(184,151,90,.15); line-height: 1; margin-bottom: 14px; }
.framework-title { font-family: var(--font-h); font-size: 20px; color: #fff; font-weight: 400; margin-bottom: 14px; line-height: 1.25; }
.framework-text { font-size: 13.5px; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.85; margin: 0; }
.cdfi-programmes { padding: 80px 0; background: var(--off); }
.cdfi-programmes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.programme-card { background: #fff; border: 1px solid var(--border); padding: 36px 32px; transition: all .3s; }
.programme-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(11,28,46,.07); }
.programme-tag { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.programme-title { font-family: var(--font-h); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.programme-desc { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.85; margin: 0; }
.cdfi-criteria { padding: 80px 0; background: #fff; }
.cdfi-criteria .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.criteria-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.criteria-item {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border: 1px solid var(--border);
}
.criteria-item:nth-child(odd) { background: var(--off); }
.criteria-item .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.criteria-item span { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.7; }
.cdfi-cta { background: var(--off); padding: 80px 0; border-top: 1px solid var(--border); }
.cdfi-cta .container { text-align: center; }
@media (max-width: 960px) {
  .cdfi-intro .container, .cdfi-criteria .container { grid-template-columns: 1fr !important; gap: 48px !important; }
  .cdfi-framework-grid, .cdfi-programmes-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .cdfi-framework-grid, .cdfi-programmes-grid { grid-template-columns: 1fr !important; }
}

/* ── COMMUNITIES PAGE ─────────────────────── */
.comm-mission { padding: 96px 0; background: #fff; }
.comm-mission .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.comm-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border: 1px solid var(--border); }
.comm-stat { background: #fff; padding: 36px 28px; }
.comm-stat-num { font-family: var(--font-h); font-size: 44px; color: var(--navy); font-weight: 400; line-height: 1; margin-bottom: 8px; }
.comm-stat-num sup { font-size: 24px; color: var(--gold); }
.comm-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.comm-stat-desc { font-size: 12.5px; color: var(--muted); font-weight: 300; line-height: 1.7; }
.regions-strip { background: var(--navy); padding: 56px 0; }
.regions-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; }
.region-item { padding: 20px 36px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; }
.region-item:last-child { border-right: none; }
.region-name { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.85); }
.region-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; margin: 8px auto 0; }
.comm-expertise { padding: 96px 0; background: var(--off); }
.expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); margin-top: 60px; }
.expertise-card { background: #fff; padding: 40px 32px; transition: background .25s; cursor: default; }
.expertise-card:hover { background: var(--navy); }
.expertise-icon { width: 44px; height: 44px; margin-bottom: 20px; }
.expertise-icon svg { width: 100%; height: 100%; stroke: var(--navy); fill: none; stroke-width: 1.3; transition: stroke .25s; }
.expertise-card:hover .expertise-icon svg { stroke: var(--gold); }
.expertise-tag { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.expertise-title { font-family: var(--font-h); font-size: 20px; color: var(--navy); font-weight: 500; margin-bottom: 12px; line-height: 1.3; transition: color .25s; }
.expertise-card:hover .expertise-title { color: #fff; }
.expertise-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.8; margin: 0; transition: color .25s; }
.expertise-card:hover .expertise-desc { color: rgba(255,255,255,.55); }
.comm-resources { padding: 96px 0; background: #fff; }
.comm-resources .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.comm-resources-left { position: sticky; top: 100px; }
.resources-list { display: flex; flex-direction: column; gap: 24px; }
.resource-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  padding: 28px; border: 1px solid var(--border); transition: border-color .25s, box-shadow .25s;
}
.resource-item:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(11,28,46,.06); }
.resource-icon {
  width: 56px; height: 56px; background: var(--off);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.resource-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.resource-title { font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: .3px; margin-bottom: 8px; }
.resource-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.75; }
.comm-futures { background: var(--navy); padding: 96px 0; }
.futures-header { text-align: center; margin-bottom: 64px; }
.futures-eyebrow { font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: rgba(184,151,90,.9); font-weight: 600; display: block; margin-bottom: 16px; }
.futures-title { font-family: var(--font-h); font-size: clamp(28px,3.5vw,42px); color: #fff; font-weight: 400; margin: 0 0 20px; }
.futures-rule { width: 48px; height: 2px; background: rgba(184,151,90,.5); margin: 0 auto; }
.futures-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.future-card {
  border: 1px solid rgba(255,255,255,.1); border-top: 2px solid transparent;
  padding: 44px 36px; transition: border-top-color .25s;
}
.future-card:hover { border-top-color: var(--gold); }
.future-num { font-family: var(--font-h); font-size: 56px; color: rgba(184,151,90,.15); line-height: 1; margin-bottom: 16px; }
.future-title { font-family: var(--font-h); font-size: 22px; color: #fff; font-weight: 400; margin-bottom: 16px; line-height: 1.3; }
.future-desc { font-size: 13.5px; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.85; margin-bottom: 0; }
.future-items { margin-top: 24px; list-style: none; padding: 0; }
.future-item {
  font-size: 12.5px; color: rgba(255,255,255,.45); font-weight: 300;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 10px;
}
.future-item .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; display: block; }
.comm-alliance { padding: 96px 0; background: var(--off); border-top: 1px solid var(--border); }
.comm-alliance .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.alliance-title { font-family: var(--font-h); font-size: clamp(30px,3.5vw,44px); color: var(--navy); font-weight: 400; margin: 0 0 20px; line-height: 1.2; }
.alliance-pillars { display: flex; flex-direction: column; gap: 16px; }
.alliance-pillar {
  background: #fff; border: 1px solid var(--border); padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
}
.alliance-pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: var(--navy);
}
.alliance-pillar-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.alliance-pillar-title { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: .3px; margin-bottom: 4px; text-transform: uppercase; }
.alliance-pillar-desc { font-size: 12.5px; color: var(--muted); font-weight: 300; }
@media (max-width: 960px) {
  .comm-mission .container, .comm-resources .container, .comm-alliance .container { grid-template-columns: 1fr !important; gap: 48px !important; }
  .expertise-grid, .futures-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .expertise-grid, .futures-grid { grid-template-columns: 1fr !important; }
  .region-item { padding: 16px 20px; }
}

/* ── CONTACT PAGE ─────────────────────────── */
.contact-img { position: relative; height: 380px; overflow: hidden; }
.contact-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,28,46,.35), rgba(11,28,46,.1)); }
.contact-body { padding: 80px 0 100px; background: #fff; }
.contact-body .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-offices { display: flex; flex-direction: column; gap: 36px; margin-top: 0; }
.office-item { display: flex; gap: 18px; align-items: flex-start; }
.office-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.office-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.office-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.office-value { font-size: 13.5px; color: var(--text); line-height: 1.75; font-weight: 300; }
.office-value a { color: var(--text); text-decoration: none; }
.contact-note {
  background: var(--off); border: 1px solid var(--border); border-left: 3px solid var(--navy);
  padding: 32px 32px; margin-bottom: 36px;
}
.contact-note p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.9; margin-bottom: 16px; }
.contact-note p:last-child { margin-bottom: 0; }
.contact-note strong { color: var(--navy); font-weight: 600; }
@media (max-width: 900px) {
  .contact-body .container { grid-template-columns: 1fr !important; gap: 48px !important; }
}

/* ── IMPACT PAGE ──────────────────────────── */
.impact-mission { background: #fff; padding: 80px 0; border-bottom: 1px solid var(--border); }
.impact-mission .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.impact-stats { display: flex; flex-direction: column; gap: 2px; }
.impact-stat-row {
  display: grid; grid-template-columns: 120px 1fr; background: var(--off);
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
}
.impact-stat-row:nth-child(even) { background: #fff; }
.impact-stat-val {
  padding: 20px 24px; border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.impact-stat-val span { font-family: var(--font-h); font-size: 28px; color: var(--navy); font-weight: 400; line-height: 1; }
.impact-stat-label { padding: 20px 24px; display: flex; align-items: center; }
.impact-stat-label span { font-size: 12.5px; color: var(--muted); font-weight: 300; line-height: 1.65; }
.impact-pillars { padding: 80px 0; background: var(--off); }
.impact-pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
.pillar-card { background: #fff; border: 1px solid var(--border); padding: 44px 40px; transition: box-shadow .3s; }
.pillar-card:hover { box-shadow: 0 8px 32px rgba(11,28,46,.07); }
.pillar-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.pillar-icon-wrap {
  width: 52px; height: 52px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pillar-icon-wrap svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.pillar-num { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.pillar-title { font-family: var(--font-h); font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.pillar-desc { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 24px; }
.pillar-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pillar-item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); font-weight: 300; }
.pillar-item .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.impact-footprint { background: var(--navy); padding: 80px 0; }
.footprint-header { text-align: center; margin-bottom: 56px; }
.footprint-label { font-size: 9.5px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.footprint-title { font-family: var(--font-h); font-size: clamp(28px,3.5vw,44px); font-weight: 400; color: #fff; margin: 0 0 16px; }
.footprint-rule { width: 40px; height: 2px; background: rgba(184,151,90,.5); margin: 0 auto 20px; }
.footprint-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.55); max-width: 560px; margin: 0 auto; line-height: 1.9; }
.nations-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px; }
.nation-tag { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: 10px 18px; }
.nation-tag span { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,.65); letter-spacing: .5px; }
@media (max-width: 960px) {
  .impact-mission .container { grid-template-columns: 1fr !important; gap: 48px !important; }
  .impact-pillars-grid { grid-template-columns: 1fr !important; }
}

/* ── SOLUTIONS PAGE ───────────────────────── */
.solutions-body { padding: 80px 0 100px; background: #fff; }
.solutions-body .container { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.solutions-note {
  background: var(--off); border: 1px solid var(--border); border-left: 3px solid var(--navy);
  padding: 28px 32px; margin-bottom: 40px;
}
.solutions-note p { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.9; margin: 0; }
.solutions-note strong { color: var(--navy); font-weight: 600; }
.solutions-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.solution-item {
  display: flex; align-items: center; gap: 20px; padding: 22px 28px;
  border: 1px solid var(--border); background: #fff; transition: all .25s; cursor: default;
}
.solution-item:hover { background: var(--off); transform: translateX(4px); }
.solution-item .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.solution-name { font-family: var(--font-h); font-size: 17px; font-weight: 500; color: var(--navy); }
@media (max-width: 900px) {
  .solutions-body .container { grid-template-columns: 1fr !important; gap: 48px !important; }
}

/* ── TECHNOLOGY PAGE ──────────────────────── */
.tech-intro { padding: 80px 0; background: #fff; border-bottom: 1px solid var(--border); }
.tech-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tech-feature-list { display: flex; flex-direction: column; gap: 2px; }
.tech-feature-item {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
}
.tech-feature-item:nth-child(odd) { background: var(--off); }
.tech-feature-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tech-feature-sub { font-size: 12px; color: var(--muted); font-weight: 300; }
.tech-gcipay { background: var(--navy); padding: 80px 0; }
.tech-gcipay .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.gcipay-box {
  background: rgba(184,151,90,.08); border: 1px solid rgba(184,151,90,.2); padding: 56px 48px;
}
.gcipay-box-title { font-family: var(--font-h); font-size: clamp(40px,5.5vw,72px); font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.gcipay-box-sub { font-size: 9px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 32px; }
.gcipay-features { display: flex; flex-direction: column; gap: 12px; }
.gcipay-feature { display: flex; align-items: center; gap: 12px; }
.gcipay-feature .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.gcipay-feature span { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 300; }
.tech-platform-label { font-size: 9.5px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.tech-platform-title { font-family: var(--font-h); font-size: clamp(26px,3.5vw,40px); font-weight: 400; color: #fff; margin: 0 0 20px; line-height: 1.2; }
.tech-platform-rule { width: 40px; height: 2px; background: rgba(184,151,90,.5); margin-bottom: 28px; }
.tech-platform-text { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.95; margin-bottom: 20px; }
.tech-components { padding: 80px 0; background: var(--off); }
.tech-components-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.platform-card { background: #fff; border: 1px solid var(--border); border-top: 2px solid transparent; padding: 36px 32px; transition: all .3s; }
.platform-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(11,28,46,.07); border-top-color: var(--gold); }
.platform-tag { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.platform-title { font-family: var(--font-h); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.platform-desc { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.85; margin: 0; }
.tech-security { padding: 80px 0; background: #fff; }
.tech-security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 52px; }
.security-card {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start;
  padding: 32px 32px; border: 1px solid var(--border); background: var(--off); transition: box-shadow .3s;
}
.security-card:hover { box-shadow: 0 8px 32px rgba(11,28,46,.07); }
.security-icon { width: 56px; height: 56px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.security-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.security-title { font-family: var(--font-h); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.security-desc { font-size: 12.5px; color: var(--muted); font-weight: 300; line-height: 1.8; margin: 0; }
.tech-roadmap { background: var(--navy); padding: 80px 0; }
.roadmap-list { display: flex; flex-direction: column; gap: 2px; margin-top: 56px; }
.roadmap-item { display: grid; grid-template-columns: 180px 1fr; border: 1px solid rgba(255,255,255,.08); }
.roadmap-item.launched { background: rgba(184,151,90,.06); }
.roadmap-phase { padding: 28px 28px; border-right: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.roadmap-phase-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.roadmap-status {
  display: inline-block; padding: 3px 8px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
}
.roadmap-status.launched { border: 1px solid rgba(184,151,90,.4); color: var(--gold); }
.roadmap-status.in-progress { border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.45); }
.roadmap-status.planned { border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.45); }
.roadmap-body { padding: 28px 36px; }
.roadmap-title { font-family: var(--font-h); font-size: 17px; font-weight: 400; color: #fff; margin-bottom: 8px; }
.roadmap-desc { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 300; line-height: 1.8; margin: 0; }
.tech-cta { background: var(--off); padding: 80px 0; border-top: 1px solid var(--border); }
.tech-cta .container { text-align: center; }
.cta-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
@media (max-width: 960px) {
  .tech-intro .container, .tech-gcipay .container { grid-template-columns: 1fr !important; gap: 48px !important; }
  .tech-components-grid, .tech-security-grid { grid-template-columns: 1fr 1fr !important; }
  .roadmap-item { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .tech-components-grid, .tech-security-grid { grid-template-columns: 1fr !important; }
}

/* ── LOCATIONS PAGE ───────────────────────── */
.locations-body { padding: 80px 0 100px; background: #fff; }
.locations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 52px; }
.location-card {
  background: #fff; border: 1px solid var(--border); padding: 40px 32px 36px;
  position: relative; overflow: hidden; transition: box-shadow .3s, transform .3s;
}
.location-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .3s;
}
.location-card:hover::after { transform: scaleX(1); }
.location-card:hover { box-shadow: 0 8px 32px rgba(11,28,46,.08); transform: translateY(-2px); }
.location-name { font-family: var(--font-h); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.location-status { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.location-desc { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.75; }
@media (max-width: 960px) { .locations-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 600px) { .locations-grid { grid-template-columns: 1fr !important; } }

/* ── INVESTMENTS ─────────────────────────────────────────────────────────── */
.investments-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.investor-eligibility {
  background: var(--navy);
  padding: 44px 40px;
  border-top: 2px solid var(--gold);
}
.investor-eligibility-label,
.venture-label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.investor-eligibility-title {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
}
.investor-eligibility-text {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.9;
}
.eligibility-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.eligibility-pills span {
  padding: 7px 10px;
  border: 1px solid rgba(184,151,90,.35);
  color: rgba(255,255,255,.74);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.investments-vehicles {
  padding: 88px 0;
  background: var(--off);
}
.investments-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.investment-vehicle-card {
  min-height: 100%;
  padding: 40px 34px;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform .3s, box-shadow .3s;
}
.investment-vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(11,28,46,.08);
}
.investment-vehicle-number {
  margin-bottom: 18px;
  color: rgba(184,151,90,.2);
  font-family: var(--font-h);
  font-size: 54px;
  line-height: 1;
}
.investment-vehicle-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}
.investment-vehicle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
}
.investments-venture {
  padding: 88px 0;
  background: var(--navy);
}
.investments-venture-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.investments-venture h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}
.venture-rule {
  width: 40px;
  height: 2px;
  margin-bottom: 28px;
  background: rgba(184,151,90,.5);
}
.investments-venture > .container > div:first-child > p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
}
.investment-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.investment-partner-card {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
}
.investment-partner-icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(184,151,90,.35);
}
.investment-partner-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}
.investment-partner-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  line-height: 1.35;
}
.investment-partner-card p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
}
.investment-notice {
  max-width: 880px;
  margin: 0 auto;
  padding: 30px 34px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: var(--off);
}
.investment-notice > span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.investment-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.85;
}
@media (max-width: 960px) {
  .investments-intro-grid,
  .investments-venture-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .investments-vehicle-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .investments-vehicle-grid,
  .investment-partner-grid { grid-template-columns: 1fr; }
  .investor-eligibility,
  .investment-vehicle-card { padding: 32px 26px; }
}
