
  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding: 120px 48px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--soil);
    background-image: url('/assets/images/hero-valley.webp');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(4,18,46,0.75) 0%, rgba(4,18,46,0.55) 50%, rgba(4,18,46,0.80) 100%),
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 201, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Animated watershed lines */
  .hero-bg-lines {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    overflow: hidden;
  }
  .hero-bg-lines svg {
    width: 100%;
    height: 100%;
  }

  .hero-left {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 32px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--terracotta);
  }

  .hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(52px, 5.5vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-headline strong {
    font-weight: 700;
    display: block;
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(232, 213, 183, 0.75);
    max-width: 480px;
    margin-bottom: 48px;
  }

  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--soil);
    background: var(--gold);
    border: none;
    padding: 14px 32px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-hero-ghost {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--sand);
    background: none;
    border: 1px solid rgba(232, 213, 183, 0.3);
    padding: 14px 28px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
  }
  .btn-hero-ghost:hover { border-color: var(--sand); }

  .hero-right {
    position: relative;
    z-index: 2;
  }

  .hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232, 213, 183, 0.08);
    padding: 32px 28px;
    animation: fadeUp 0.8s ease both;
  }
  .stat-card:nth-child(1) { animation-delay: 0.1s; }
  .stat-card:nth-child(2) { animation-delay: 0.2s; }
  .stat-card:nth-child(3) { animation-delay: 0.3s; }
  .stat-card:nth-child(4) { animation-delay: 0.4s; }

  .stat-card:hover {
    background: rgba(255,255,255,0.07);
    transition: background 0.25s;
  }

  .stat-number {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(232, 213, 183, 0.5);
    line-height: 1.4;
  }

  .stat-card.featured {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
  }
  .stat-card.featured .stat-number {
    font-size: 36px;
    color: var(--white);
  }
  .stat-card.featured .stat-label {
    color: rgba(200,222,255,0.8);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION BASE ── */
  section { padding: 100px 48px; }
  .section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before {
    content: none;
  }

  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 3.5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--soil);
    margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--terracotta); }
  .section-title strong { font-weight: 700; }

  .section-body {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--umber);
    max-width: 600px;
  }

  /* ── WHO IT'S FOR ── */
  .who {
    background: var(--white);
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .who-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 48px 72px;
    border-bottom: 1px solid rgba(4, 18, 46, 0.08);
  }
  .who-intro .section-label { justify-content: center; }
  .who-intro .section-title { font-size: clamp(36px, 4vw, 60px); }

  /* Editorial two-column tier */
  .roles-tier {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-top: 1px solid rgba(4, 18, 46, 0.08);
  }

  .roles-tier-label {
    padding: 56px 32px 56px 48px;
    border-right: 1px solid rgba(4, 18, 46, 0.08);
    display: flex;
    align-items: flex-start;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(4, 18, 46, 0.35);
    line-height: 1.6;
  }

  .roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .roles-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }

  .role-card {
    padding: 56px 48px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background 0.25s;
    overflow: hidden;
    border-right: 1px solid rgba(4, 18, 46, 0.08);
  }
  .role-card:last-child { border-right: none; }
  .role-card:hover { background: var(--mist); }

  .role-name {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 12px;
  }

  .role-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--soil);
    margin-bottom: 16px;
  }

  .role-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(4, 18, 46, 0.55);
    font-weight: 300;
    margin-bottom: 32px;
  }

  .role-cta {
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--blue-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s, opacity 0.2s;
    opacity: 0.7;
  }
  .role-cta:hover { opacity: 1; gap: 10px; }

  /* ── WHO IT'S FOR — TAB INTERFACE ── */
  /* ── WHO IT'S FOR ── */
  .who-tabs {
    background: var(--white);
    padding: 80px 0 0;
  }

  .who-tabs-inner {
    padding: 0 72px 88px;
    display: grid;
    grid-template-columns: minmax(620px, 1fr) minmax(320px, 0.82fr);
    gap: 56px;
    align-items: center;
  }

  /* ── Left column ── */
  .who-left {
    min-width: 620px;
  }

  .who-tabs-kicker {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 16px;
  }

  .who-tabs-headline {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--soil);
    margin-bottom: 28px;
  }

  .who-tabs-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    gap: 4px;
    background: rgba(4,18,46,0.05);
    border: 1px solid rgba(4,18,46,0.1);
    border-radius: 100px;
    padding: 5px;
    margin-bottom: 36px;
  }

.who-tabs-select-wrap {
  display: none;
  margin-bottom: 32px;
}

.who-tabs-select {
  display: block;
  width: 100%;
  border: 1px solid rgba(4,18,46,0.18);
  border-radius: 12px;
  background: #fff;
  color: rgba(4,18,46,0.9);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(4,18,46,0.55) 50%), linear-gradient(135deg, rgba(4,18,46,0.55) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

  .who-tab {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: rgba(4,18,46,0.45);
    background: transparent;
    border: none;
    border-radius: 100px;
    padding: 8px 10px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  .who-tab:hover { color: rgba(4,18,46,0.75); }

  .who-tab.active {
    background: #04122e;
    color: #fff;
    font-weight: 600;
  }

  .who-panels {
    position: relative;
  }

  .who-panel {
    display: none;
    animation: whoPanelIn 0.35s ease both;
  }

  .who-panel.active {
    display: block;
  }

  @keyframes whoPanelIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .who-panel-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 12px;
  }

  .who-panel-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--soil);
    margin-bottom: 16px;
  }

  .who-panel-desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(4,18,46,0.6);
    font-weight: 300;
    margin-bottom: 20px;
  }

  .who-panel-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .who-panel-bullets li {
    font-size: 16px;
    font-weight: 400;
    color: rgba(4,18,46,0.7);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
  }

  .who-panel-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-size: 12px;
  }

  .who-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #04122e;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 26px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .who-panel-cta:hover {
    background: var(--blue-primary);
    transform: translateY(-1px);
  }

  /* ── Right column ── */
  .who-right {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .who-panel-img-wrap {
    width: 100%;
    height: 560px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 72px rgba(4,18,46,0.18), 0 0 0 1px rgba(4,18,46,0.07);
  }

  .who-panel-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }

  .who-panel-img-wrap img.is-swapping {
    opacity: 0;
  }

  .who-panel-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 64px 28px 28px;
    background: linear-gradient(to top, rgba(4,18,46,0.88) 0%, rgba(4,18,46,0.5) 60%, transparent 100%);
  }

  .who-panel-quote p {
    font-family: var(--font-serif);
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.45;
    color: rgba(255,255,255,0.9);
    margin: 0;
  }

  /* ── WATERSHED SECTION ── */
  .watershed {
    background: var(--cream);
    background-image: none;
    position: relative;
    padding: 100px 48px;
    overflow: hidden;
  }
  .watershed::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/images/water-texture.webp') center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
    transform: scale(1.04);
  }
  .watershed::after {
    display: none;
  }
  .watershed-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    background: none;
  }
  .watershed .section-title { color: var(--soil); }
  .watershed .section-body { color: rgba(4, 18, 46, 0.6); }

  .watershed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4,18,46,0.88);
    pointer-events: none;
  }

  .watershed-inner {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
    background: none;
  }

  .watershed .section-title { color: var(--soil); }
  .watershed .section-body { color: rgba(4, 18, 46, 0.6); }

  .watershed-flows {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
  }

  .flow-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(4, 18, 46, 0.08);
    transition: all 0.25s;
  }
  .flow-item:first-child { padding-top: 0; }
  .flow-item:last-child { border-bottom: none; }
  .flow-item:hover { padding-left: 8px; }

  .flow-num {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    color: rgba(7, 58, 160, 0.2);
    line-height: 1;
    align-self: start;
    padding-top: 4px;
  }

  .flow-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--soil);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .flow-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(4, 18, 46, 0.55);
    font-weight: 300;
  }
  /* Portfolio visual */
  .watershed-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 80px;
  }

  .mini-fund-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(4,18,46,0.1);
    border-radius: 4px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    transition: background 0.2s, transform 0.2s;
  }
  .mini-fund-card:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(4px);
  }

  .mini-fund-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--soil);
    margin-bottom: 4px;
  }
  .mini-fund-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(4,18,46,0.4);
    letter-spacing: 0.05em;
  }

  .mini-fund-amount {
    text-align: right;
  }
  .mini-fund-value {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-primary);
    display: block;
  }
  .mini-fund-type {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(7,58,160,0.5);
  }

  .capital-spectrum {
    margin-top: 24px;
    padding: 20px 24px;
    background: rgba(7,58,160,0.05);
    border: 1px solid rgba(7,58,160,0.15);
    border-radius: 4px;
  }
  .spectrum-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(7,58,160,0.7);
    margin-bottom: 12px;
  }
  .spectrum-bar {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #073aa0, #304697, #00c9ff, #00eeff);
    margin-bottom: 12px;
  }
  .spectrum-labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    color: rgba(4,18,46,0.4);
  }

  /* ── FLOW DIAGRAM ── */
  .flow-diagram-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(4,18,46,0.35);
    margin-bottom: 20px;
  }

  .flow-diagram-wrap {
    background: rgba(7,58,160,0.04);
    border: 1px solid rgba(7,58,160,0.12);
    border-radius: 8px;
    padding: 28px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .flow-diagram-svg {
    width: 100%;
    height: auto;
  }

  /* ── PORTFOLIO SECTION ── */
  .portfolio {
    background: var(--white);
    padding-bottom: 80px;
  }

  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }

  .portfolio-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .filter-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--umber);
    background: none;
    border: 1px solid rgba(74,55,40,0.2);
    padding: 6px 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--soil);
    border-color: var(--soil);
    color: var(--cream);
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .fund-card {
    background: var(--mist);
    padding: 36px 32px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .fund-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(28,23,18,0.1);
    z-index: 2;
  }

  .fund-card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
  }

  .accent-indigenous { background: var(--blue-primary); }
  .accent-coop { background: var(--blue-bright); }
  .accent-community { background: var(--blue-mid); }
  .accent-land { background: var(--blue-bright); }
  .accent-worker { background: var(--blue-deep); }
  .accent-movement { background: var(--blue-primary); }

  .fund-org-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 12px;
    margin-top: 8px;
  }

  .fund-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--soil);
    margin-bottom: 12px;
  }

  .fund-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--umber);
    font-weight: 300;
    margin-bottom: 24px;
  }

  .fund-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
  }
  .fund-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue-primary);
    background: rgba(7,58,160,0.07);
    border: 1px solid rgba(7,58,160,0.15);
    padding: 3px 10px;
    border-radius: 20px;
  }
  .fund-tag.sage-tag {
    color: var(--blue-deep);
    background: rgba(25,66,112,0.08);
    border-color: rgba(25,66,112,0.18);
  }
  .fund-tag.water-tag {
    color: #0077aa;
    background: rgba(0,201,255,0.08);
    border-color: rgba(0,201,255,0.2);
  }

  .fund-meta-row {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    margin-top: auto;
    border-top: 1px solid rgba(74,55,40,0.08);
  }

  .fund-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .fund-meta-val {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--soil);
    letter-spacing: -0.01em;
  }
  .fund-meta-key {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(74,55,40,0.4);
  }

  .fund-card-footer {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
  }
  .fund-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--terracotta);
    text-decoration: none;
    transition: letter-spacing 0.2s;
  }
  .fund-link:hover { letter-spacing: 0.08em; }

  /* ── GATED BADGE (equity compliance) ── */
  .gated-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a6200;
    background: rgba(180,120,0,0.08);
    border: 1px solid rgba(180,120,0,0.25);
    padding: 5px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
  }
  .gated-badge svg { width: 10px; height: 10px; flex-shrink: 0; }
  .fund-meta-val--gated {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    color: rgba(7,58,160,0.7);
    background: rgba(7,58,160,0.07);
    border-radius: 3px;
    padding: 6px 9px;
    vertical-align: middle;
    white-space: nowrap;
  }
  .portfolio-intro {
    margin-bottom: 24px;
    text-align: center;
  }

  .portfolio-kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 12px;
  }

  .portfolio-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--soil);
    margin: 0;
  }

  .fund-card-stats {
    background: var(--blue-navy-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    height: 100%;
  }

  .fund-card-stats .fund-card-accent {
    background: rgba(255,255,255,0.22);
  }

  .fund-card-stats-headline {
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    color: var(--blue-bright);
    line-height: 1.1;
    letter-spacing: 0.0em;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .fund-card-stats-kicker {
    font-family: var(--font-sans);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255,255,255,0.92);
    margin-bottom: 16px;
  }

  .fund-card-stats-copy {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    font-weight: 300;
    line-height: 1.65;
    max-width: 300px;
    margin: 0 auto 32px;
    text-align: center;
  }

  .fund-card-stats .btn-hero-primary--light {
    margin-top: 0;
  }

  .btn-hero-primary--light {
    background: var(--white);
    color: var(--soil);
  }

  .btn-hero-primary--light:hover {
    background: rgba(255,255,255,0.92);
  }

  /* ── QUOTE ── */
  .quote-section {
    background: var(--blue-navy-soft);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .quote-section > * {
    position: relative;
    z-index: 1;
  }
  .quote-waterway {
    position: absolute;
    color: rgba(255,255,255,0.58);
    pointer-events: none;
    z-index: 0;
  }
  .quote-waterway svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  /* clouds + rain — left side */
  .quote-waterway-left {
    width: clamp(380px, 48vw, 620px);
    aspect-ratio: 900 / 300;
    left: -90px;
    top: 20px;
  }
  /* abstract waterway channels — right side, rotated 180° */
  .quote-waterway-right {
    width: clamp(380px, 48vw, 620px);
    aspect-ratio: 900 / 210;
    right: -90px;
    bottom: 0;
  }

  .big-quote {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }

  .quote-source {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }

  @media (max-width: 760px) {
    .quote-waterway-left {
    width: clamp(280px, 68vw, 430px);
    left: -88px;
    top: -24px;
      color: rgba(255,255,255,0.38);
    }
    .quote-waterway-right {
    width: clamp(300px, 72vw, 460px);
    right: -96px;
    bottom: -8px;
      color: rgba(255,255,255,0.38);
    }
  }

  /* ── PARTNERS ── */
  .partners {
    background: var(--blue-navy-soft);
    padding: 40px 0;
    overflow: hidden;
  }

  .marquee3k {
    overflow: hidden;
  }

  .marquee3k > div {
    display: inline-flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
  }

  .partner-item {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 56px;
  }

  .partner-item img {
    display: block;
    max-height: 48px;
    width: auto;
    object-fit: contain;
  }

  img {
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  .partner-item img.partner-logo--knockout {
    mix-blend-mode: screen;
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--white);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before { display: none; }
  .cta-section::after { display: none; }

  .cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .cta-inner .section-title { color: var(--soil); max-width: none; }
  .cta-inner .section-body { color: rgba(4,18,46,0.6); margin: 0 auto 48px; text-align: center; }

  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-section .btn-hero-ghost {
    color: var(--soil);
    border-color: rgba(4,18,46,0.25);
    border-radius: 4px;
  }
  .cta-section .btn-hero-ghost:hover {
    border-color: var(--soil);
  }
  .cta-section .btn-hero-primary {
    background: var(--blue-primary);
    color: #fff;
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: 4px;
  }
  .cta-section .btn-hero-primary:hover {
    background: var(--soil);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--cream);
    padding: 56px 48px 36px;
    border-top: 1px solid rgba(4,18,46,0.08);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(232,213,183,0.08);
    margin-bottom: 36px;
  }

  .footer-brand {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--soil);
    margin-bottom: 12px;
  }
  .footer-brand span { color: var(--blue-primary); }

  .footer-tagline {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(4,18,46,0.45);
    font-weight: 300;
    max-width: 240px;
    margin-bottom: 24px;
  }

  .footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(4,18,46,0.4);
    margin-bottom: 16px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    font-size: 14px;
    color: rgba(4,18,46,0.55);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--soil); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(4,18,46,0.08);
    padding-top: 24px;
    margin-top: 24px;
  }
  .footer-copy {
    font-size: 12px;
    color: rgba(4,18,46,0.35);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
  }
  .footer-indigenous {
    font-size: 12px;
    color: rgba(4,18,46,0.35);
    font-style: italic;
    max-width: 300px;
    text-align: right;
    line-height: 1.5;
  }

  @media (max-width: 1320px) {
    .who-tabs-inner { grid-template-columns: minmax(580px, 1fr) minmax(280px, 0.7fr); }
    .who-left { min-width: 580px; }
    .who-panel-img-wrap { height: 520px; }
    .who-tab { font-size: 13px; padding: 8px 8px; }
  }

  @media (max-width: 1160px) {
    .who-tabs-inner { grid-template-columns: minmax(540px, 1fr) minmax(220px, 0.55fr); gap: 40px; }
    .who-left { min-width: 540px; }
    .who-panel-img-wrap { height: 460px; }
    .who-tab { font-size: 12px; padding: 7px 6px; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; gap: 48px; padding: 100px 24px 60px; }
    .roles-tier { grid-template-columns: 1fr; }
    .roles-tier-label { border-right: none; border-bottom: 1px solid rgba(4,18,46,0.08); padding: 24px 24px; }
    .roles-grid { grid-template-columns: 1fr; }
    .roles-grid--two { grid-template-columns: 1fr; }
    .role-card { border-right: none; border-bottom: 1px solid rgba(4,18,46,0.08); padding: 40px 24px; }
    .watershed-inner { grid-template-columns: 1fr; gap: 48px; }
    .watershed-visual { padding-top: 0; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    section { padding: 72px 24px; }
  .cta-section { padding: 72px 24px; }

    /* Who tabs — tablet */
    .who-tabs { padding: 60px 0 72px; }
    .who-tabs-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
    .who-left { min-width: 0; }
    .who-tabs-nav { gap: 3px; padding: 4px; }
    .who-tab { font-size: 13px; padding: 7px 10px; }
    .who-panel-img-wrap { height: 320px; }
  }

  @media (max-width: 640px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .hero-stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-indigenous { text-align: center; }

    /* Who tabs — mobile */
    .who-tabs { padding: 48px 0 56px; }
    .who-tabs-inner { padding: 0 24px; gap: 32px; }
  .who-tabs-nav { display: none; }
  .who-tabs-select-wrap { display: block; }
    .who-panel-img-wrap { height: 260px; }

  .flow-item { grid-template-columns: 1fr; gap: 0; }
  .flow-num { display: none; }

  .cta-section { padding: 72px 24px; }
  }
