/* ============================================================
   MESTRAL VENTURES — Design System
   Direction: Refined Institutional Editorial
   Palette: Deep Navy · Warm Cream · Gold Accent
   Type: Fraunces (display) · Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Color — Dark surfaces */
  --navy:        #06091A;
  --navy-2:      #0C1226;
  --navy-3:      #111929;
  --navy-border: rgba(255,255,255,0.07);

  /* Color — Light surfaces */
  --cream:       #F4F0E8;
  --cream-2:     #EDE9E0;
  --cream-border:rgba(0,0,0,0.08);

  /* Color — Accent */
  --gold:        #B89A4A;
  --gold-light:  #D4B96B;
  --gold-subtle: rgba(184,154,74,0.12);

  /* Color — Text on dark */
  --text-dark:   #EDE8DF;
  --muted-dark:  #6B7A94;
  --dim-dark:    rgba(237,232,223,0.45);

  /* Color — Text on light */
  --text-light:  #111726;
  --muted-light: #5C6478;
  --dim-light:   rgba(17,23,38,0.45);

  /* Type */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --f-mono:    'DM Mono', 'Courier New', monospace;

  /* Spacing */
  --container-w: 1280px;
  --pad-x: clamp(24px, 5vw, 80px);
  --section-y: clamp(80px, 10vw, 140px);

  /* Easing */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  background: var(--navy);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Grain overlay ─────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── Typography scale ──────────────────────────────────────── */
.display-xl {
  font-family: var(--f-display);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.display-sm {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 400; }

h4, h5, h6 { font-family: var(--f-body); font-weight: 600; }

em { font-style: italic; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--section-y); }

/* ── Section labels ────────────────────────────────────────── */
.section-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 3px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--text-dark);
  color: var(--navy);
}
.btn--primary:hover { background: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--navy-border);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.btn--gold:hover { background: var(--gold-light); }

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(237,232,223,0.3);
}
.btn--outline:hover { border-color: var(--text-dark); }

/* Arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: gap 0.2s var(--ease-out);
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 14px; }

.link-arrow--dark { color: var(--text-light); }
.link-arrow--dark::after { content: '→'; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-in-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6, 9, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--navy-border);
}

.nav__container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.8; }
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-dark);
  transition: color 0.2s;
  position: relative;
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:not(.nav__cta):hover { color: var(--text-dark); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a.active { color: var(--text-dark); }

.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 13px !important;
  transition: background 0.2s, opacity 0.2s !important;
}
.nav__cta:hover { background: var(--gold-light) !important; }
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s var(--ease-out);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: var(--pad-x);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: var(--pad-x);
  font-size: 28px;
  color: var(--text-dark);
  background: none;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(6,9,26,0.72) 0%,
      rgba(6,9,26,0.50) 35%,
      rgba(6,9,26,0.78) 75%,
      rgba(6,9,26,0.95) 100%),
    url('../img/fondo.png') center 40% / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 60% -10%, rgba(184,154,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border) 30%, var(--navy-border) 70%, transparent);
}

.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 40px;
  max-width: 900px;
}

.hero__headline em {
  font-style: italic;
  color: var(--cream);
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}
.hero__line:nth-child(1) { animation: fadeUp 0.9s 0.35s var(--ease-out) forwards; }
.hero__line:nth-child(2) { animation: fadeUp 0.9s 0.45s var(--ease-out) forwards; }
.hero__line:nth-child(3) { animation: fadeUp 0.9s 0.55s var(--ease-out) forwards; }
.hero__line:nth-child(4) { animation: fadeUp 0.9s 0.65s var(--ease-out) forwards; }

.hero__body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted-dark);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s var(--ease-out) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}

.hero__scroll-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding-right: 64px;
}

/* ── OPPORTUNITY ───────────────────────────────────────────── */
.opportunity {
  background: var(--cream);
  color: var(--text-light);
  padding-block: var(--section-y);
}

.opportunity .section-label { color: var(--gold); }
.opportunity .section-label::before { background: var(--gold); }

.opportunity__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.opportunity__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

.opportunity__body {
  font-size: 17px;
  color: var(--muted-light);
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid var(--cream-border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--cream-border);
  border-left: 1px solid var(--cream-border);
}

.stat {
  padding: 40px 32px;
  border-bottom: 1px solid var(--cream-border);
  border-right: 1px solid var(--cream-border);
}

.stat__number {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 12px;
}

.stat__number em {
  font-style: normal;
  color: var(--gold);
}

.stat__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.stat__desc {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.5;
}

/* ── THESIS ────────────────────────────────────────────────── */
.thesis {
  background: var(--navy-2);
  padding-block: var(--section-y);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.thesis__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--navy-border);
}

.thesis__quote {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  flex: 1;
}

.thesis__quote em {
  font-style: italic;
  color: var(--gold);
}

.thesis__intro {
  max-width: 340px;
  flex-shrink: 0;
  padding-top: 8px;
}

.thesis__intro p {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.thesis__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--navy-border);
}

.pillar {
  padding: 48px 40px;
  border-right: 1px solid var(--navy-border);
  transition: background 0.3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(184,154,74,0.04); }

.pillar__number {
  display: block;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.pillar__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.pillar__body {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* ── VALUE CREATION ────────────────────────────────────────── */
.value-creation {
  background: var(--cream-2);
  color: var(--text-light);
  padding-block: var(--section-y);
}

.value-creation .section-label { color: var(--gold); }
.value-creation .section-label::before { background: var(--gold); }

.value-creation__header {
  margin-bottom: 64px;
}

.value-creation__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

.levers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--cream-border);
}

.lever {
  padding: 40px 28px;
  border-right: 1px solid var(--cream-border);
  transition: background 0.3s;
}
.lever:last-child { border-right: none; }
.lever:hover { background: rgba(184,154,74,0.05); }

.lever__icon {
  display: block;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
}

.lever h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.lever p {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.65;
}

/* ── FUND FACTS ────────────────────────────────────────────── */
.fund-facts {
  background: var(--navy);
  padding-block: var(--section-y);
  border-top: 1px solid var(--navy-border);
}

.fund-facts__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.fund-facts__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.fund-facts__body {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.7;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--navy-border);
  border-left: 1px solid var(--navy-border);
  margin-bottom: 32px;
}

.fact {
  padding: 36px 24px;
  border-right: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.fact__value {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.fact__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.fund-facts__legal {
  font-size: 12px;
  color: var(--muted-dark);
  opacity: 0.7;
  letter-spacing: 0.01em;
}

/* ── TEAM PREVIEW ──────────────────────────────────────────── */
.team-preview {
  background: var(--cream);
  color: var(--text-light);
  padding-block: var(--section-y);
}

.team-preview .section-label { color: var(--gold); }
.team-preview .section-label::before { background: var(--gold); }

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

.team-preview__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

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

.team-card {
  padding: 40px 32px;
  border: 1px solid var(--cream-border);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.team-card__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 100%);
  margin-bottom: 28px;
  border: 2px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--gold);
}

.team-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}

.team-card__role {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.team-card p {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.65;
}

/* ── DUAL CTA ──────────────────────────────────────────────── */
.dual-cta {
  background: var(--navy-3);
  padding-block: var(--section-y);
  border-top: 1px solid var(--navy-border);
}

.dual-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.cta-card {
  padding: 64px 56px;
  border: 1px solid var(--navy-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-card--investors { background: rgba(184,154,74,0.06); }

.cta-card__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-card h3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-dark);
}

.cta-card p {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.65;
  flex: 1;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--navy-border);
  margin-bottom: 32px;
}

.footer__logo {
  display: block;
  margin-bottom: 16px;
}
.footer__logo img {
  height: 56px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.65;
}

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

.footer__nav-title {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 14px;
  color: var(--muted-dark);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text-dark); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--muted-dark);
  opacity: 0.65;
  line-height: 1.6;
  max-width: 480px;
}

/* ── INNER PAGE STYLES ─────────────────────────────────────── */

/* Page hero (for inner pages) */
.page-hero {
  background: var(--navy);
  padding-top: 140px;
  padding-bottom: var(--section-y);
  border-bottom: 1px solid var(--navy-border);
}

.page-hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  max-width: 900px;
  margin-bottom: 32px;
}

.page-hero__body {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted-dark);
  max-width: 560px;
  line-height: 1.65;
}

/* Prose */
.prose {
  font-size: 17px;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 680px;
}

.prose h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 48px;
  margin-bottom: 16px;
}

.prose p { margin-bottom: 20px; }

.prose strong { font-weight: 600; color: var(--text-light); }

/* Two column content */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Numbered list */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--navy-border);
}

.numbered-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--navy-border);
  align-items: start;
}

.numbered-item__num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.numbered-item__title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.numbered-item__body {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* Light numbered list */
.numbered-list--light { border-color: var(--cream-border); }
.numbered-list--light .numbered-item { border-color: var(--cream-border); }
.numbered-list--light .numbered-item__title { color: var(--text-light); }
.numbered-list--light .numbered-item__body { color: var(--muted-light); }

/* Team page */
.team-full {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--cream-border);
}

.team-member {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--cream-border);
  align-items: start;
}

.team-member__left { }

.team-member__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A2235, #0D1424);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--gold);
  border: 2px solid var(--cream-border);
}

.team-member__name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 4px;
}

.team-member__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.team-member__linkedin {
  font-size: 13px;
  color: var(--muted-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.team-member__linkedin:hover { color: var(--gold); }

.team-member__bio {
  font-size: 16px;
  color: var(--muted-light);
  line-height: 1.75;
}

.team-member__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-border);
}

.highlight-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-light);
}
.highlight-item::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text-light);
  background: transparent;
  border: 1px solid var(--cream-border);
  padding: 14px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* Form on dark */
.form-dark .form-group label { color: var(--muted-dark); }
.form-dark .form-group input,
.form-dark .form-group select,
.form-dark .form-group textarea {
  color: var(--text-dark);
  border-color: var(--navy-border);
  background: rgba(255,255,255,0.03);
}
.form-dark .form-group input:focus,
.form-dark .form-group select:focus,
.form-dark .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.05);
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.portfolio-card {
  aspect-ratio: 4/3;
  border: 1px solid var(--navy-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.portfolio-card:hover { border-color: var(--gold); }

.portfolio-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.portfolio-card__name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
}

.portfolio-card__sector {
  font-size: 13px;
  color: var(--muted-dark);
  margin-top: 6px;
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .levers { grid-template-columns: repeat(3, 1fr); }
  .levers .lever:nth-child(3) { border-right: none; }
  .levers .lever:nth-child(4),
  .levers .lever:nth-child(5) { border-top: 1px solid var(--cream-border); }

  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .fact:nth-child(3) { border-right: none; }

  .opportunity__header { grid-template-columns: 1fr; gap: 40px; }
  .fund-facts__header { grid-template-columns: 1fr; gap: 24px; }
  .team-member { grid-template-columns: 200px 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-y: clamp(60px, 8vw, 100px); }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .thesis__top { flex-direction: column; }
  .thesis__intro { max-width: 100%; }
  .thesis__pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--navy-border); }
  .pillar:last-child { border-bottom: none; }

  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: 1px solid var(--cream-border); }

  .levers { grid-template-columns: 1fr 1fr; }
  .levers .lever:nth-child(2n) { border-right: none; }
  .levers .lever:nth-child(n+3) { border-top: 1px solid var(--cream-border); }

  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2n) { border-right: none; }

  .team-grid { grid-template-columns: 1fr; }
  .team-preview__header { flex-direction: column; gap: 16px; align-items: flex-start; }

  .dual-cta .container { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 32px; }

  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__bottom { flex-direction: column; }

  .content-2col { grid-template-columns: 1fr; gap: 48px; }
  .team-member { grid-template-columns: 1fr; gap: 32px; }

  .numbered-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.0;
    margin-bottom: 24px;
  }
  .hero__eyebrow { margin-bottom: 20px; }
  .hero__body { font-size: 14px; margin-bottom: 24px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .page-hero__title { font-size: clamp(30px, 9vw, 44px); }
  .facts-grid { grid-template-columns: 1fr; }
  .fact { border-right: 1px solid var(--navy-border); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 56px !important; }
}
