/* ═══════════════════════════════════════════════════════════════
   PRESS ON VENTURES — Investor Deck Styles
   Design System: Inter Bold / Poppins Medium+Regular
   Colors: #292929 · #FFFFFF · #F2F2F2 · #E0D8D1
═══════════════════════════════════════════════════════════════ */

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

:root {
  --dark:   #292929;
  --white:  #FFFFFF;
  --grey:   #F2F2F2;
  --beige:  #E0D8D1;
  --accent: #292929;

  --nav-h: 64px;

  --font-heading: 'Inter', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── LOGO COMPONENT ────────────────────────────────────────── */
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-power-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 0.06em;
}

.logo-power-lg .power-icon,
.cover-logo .power-icon,
.contact-logo .power-icon {
  width: 0.8em;
  height: 0.8em;
}

.power-icon {
  display: block;
  width: 1em;
  height: 1em;
}

/* ── TOP NAV ───────────────────────────────────────────────── */
#top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(41, 41, 41, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}

#top-nav.nav-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  gap: 0;
}

.nav-logo .logo-text {
  font-size: 0.82rem;
}

.nav-logo .power-icon {
  width: 14px;
  height: 14px;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links li a {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── FLOATING NAV DOTS ─────────────────────────────────────── */
#nav-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  padding: 0;
  position: relative;
}

.dot::before {
  content: attr(title);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(41,41,41,0.85);
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.dot:hover::before { opacity: 1; }

.dot:hover {
  background: rgba(255,255,255,0.7);
  transform: scale(1.3);
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}

/* ── SECTION BASE ──────────────────────────────────────────── */
.section {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}

.section-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.section-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-inner.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

/* Section colors */
.section-dark  { background: var(--dark); color: #fff; }
.section-white { background: var(--white); color: var(--dark); }
.section-grey  { background: var(--grey); color: var(--dark); }
.section-beige { background: var(--beige); color: var(--dark); }

/* ── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(41,41,41,0.5);
  margin-bottom: 12px;
}

.eyebrow.light { color: rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title.light { color: #fff; }

.title-rule {
  width: 40px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  margin-bottom: 40px;
}

.title-rule.light { background: rgba(255,255,255,0.4); }

.section-header {
  margin-bottom: 60px;
}

.number-accent {
  color: var(--dark);
  position: relative;
}

/* ── AOS (SCROLL ANIMATIONS) ───────────────────────────────── */
.aos {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.aos.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cover reveal (immediate) */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s var(--ease-out) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════ SLIDE 1: COVER ══ */
#cover {
  background: var(--dark);
}

.cover-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.cover-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.cover-logo {
  font-size: clamp(2.8rem, 7vw, 6rem);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  line-height: 1;
}

.cover-logo .logo-text {
  font-size: inherit;
}

.cover-logo .logo-power-wrap {
  display: inline-flex;
  align-items: center;
}

.cover-logo .power-icon {
  width: 0.75em;
  height: 0.75em;
}

.cover-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
}

.cover-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 720px;
}

.cover-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  flex: 1;
  white-space: nowrap;
}

.cover-stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.cover-stat-lbl {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.cover-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-arrow {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ══════════════════════════════════ SLIDE 2: MISSION ══ */
.mission-banner {
  background: var(--dark);
  padding: 20px 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 60px;
}

.mission-banner-logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.mission-banner-logo .logo-text {
  font-size: 0.85rem;
}

.mission-banner-logo .power-icon {
  width: 14px;
  height: 14px;
}

.mission-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.mission-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 32px;
  max-width: 860px;
}

.mission-rule {
  width: 48px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  margin-bottom: 32px;
}

.mission-statements {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.mission-statement {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(41,41,41,0.7);
}

/* ══════════════════════════════ SLIDE 3: OPPORTUNITY ══ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.split-left {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.split-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(41,41,41,0.55);
  margin-top: 24px;
}

.split-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0;
}

.info-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(41,41,41,0.08);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.section-grey .info-card { background: var(--white); }
.section-white .info-card { background: var(--grey); }

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-card-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark);
}

.info-card-body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(41,41,41,0.7);
}

.info-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-card-body ul li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(41,41,41,0.7);
  padding-left: 14px;
  position: relative;
}

.info-card-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(41,41,41,0.3);
  font-size: 0.75rem;
}

/* ══════════════════════════════ SLIDE 4: FUND DESIGN ══ */
.fund-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.fund-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fund-bar-chart {
  width: 100px;
  height: 280px;
  display: flex;
  flex-direction: column-reverse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  position: relative;
}

.fund-bar-segment {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.fund-bar-initial {
  flex: 3;
  background: var(--dark);
}

.fund-bar-follow {
  flex: 1;
  background: rgba(41,41,41,0.35);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.fund-bar-fill {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1.2s var(--ease-out);
}

.fund-bar-initial .fund-bar-fill { background: var(--dark); }
.fund-bar-follow .fund-bar-fill  { background: rgba(41,41,41,0.4); }

.fund-bar-segment.animated .fund-bar-fill { transform: scaleY(1); }

.fund-bar-tag {
  position: absolute;
  left: calc(100% + 16px);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(41,41,41,0.65);
}

.fund-total-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.fund-check-stat {
  text-align: center;
  margin-top: 24px;
}

.stat-xl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(41,41,41,0.45);
  margin-top: 6px;
}

.fund-cats-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.5;
}

.cat-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cat-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.cat-primary {
  background: var(--dark);
  color: #fff;
}

.cat-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid rgba(41,41,41,0.1);
}

.cat-pct {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
}

.cat-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.cat-primary h4  { color: #fff; }
.cat-secondary h4 { color: var(--dark); }

.cat-subs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-sub {
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ══════════════════════════════ SLIDE 5: THESIS ══ */
.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.thesis-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.thesis-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.thesis-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 4rem;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.thesis-icon-wrap {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.thesis-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.thesis-intro {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  line-height: 1.6;
}

.thesis-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thesis-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.thesis-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════ SLIDE 6: PORTFOLIO SNAPSHOT ══ */
.donut-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.donut-chart {
  position: relative;
  width: 180px;
  height: 180px;
}

.donut-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.donut-track {
  fill: none;
  stroke: #f2f2f2;
  stroke-width: 10;
}

.donut-ring {
  fill: none;
  stroke: var(--dark);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dasharray 1.4s var(--ease-out);
}

.donut-ring-small {
  stroke: rgba(41,41,41,0.35);
  stroke-width: 10;
}

.donut-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.donut-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.donut-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(41,41,41,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.donut-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(41,41,41,0.6);
  letter-spacing: 0.04em;
  text-align: center;
}

.company-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 4px;
  padding: 28px 40px;
  background: var(--grey);
  border-radius: 16px;
}

.legend-co {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(41,41,41,0.08);
}

.legend-sep {
  color: rgba(41,41,41,0.2);
  font-size: 1.2rem;
}

/* ════════════════════════ PORTFOLIO CARDS (SLIDES 7-10) ══ */
.pco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pco-grid-featured {
  grid-template-columns: 1.4fr 0.6fr;
  align-items: start;
}

.pco-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.section-white .pco-card { background: var(--grey); }
.section-grey  .pco-card { background: var(--white); }

.pco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Clickable company cards */
.pco-card[data-company-url] {
  cursor: pointer;
}
.pco-card[data-company-url]:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.16);
}

.pco-header {
  background: var(--bg, #1a1a1a);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pco-logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.pco-logo-img-wrap {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
  box-sizing: border-box;
}

.pco-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pco-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.pco-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.pco-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pco-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

.badge-amount {
  background: var(--dark);
  color: #fff;
}

.badge-cap {
  background: rgba(41,41,41,0.08);
  color: var(--dark);
}

.badge-ownership {
  background: rgba(41,41,41,0.05);
  color: rgba(41,41,41,0.65);
  border: 1px solid rgba(41,41,41,0.1);
}

.pco-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pco-bullets li {
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(41,41,41,0.68);
  padding-left: 16px;
  position: relative;
}

.pco-bullets li::before {
  content: '·';
  position: absolute;
  left: 4px;
  font-size: 1rem;
  color: rgba(41,41,41,0.3);
  line-height: 1.55;
}

.pco-card-wide {
  /* Full width if needed */
}

.portfolio-complete-badge {
  background: var(--dark);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 40px;
}

.pcb-inner {
  text-align: center;
  color: #fff;
}

.pcb-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.pcb-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════ SLIDE 11: TEAM ══ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: background 0.3s, transform 0.3s;
}

.team-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-card h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.team-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.team-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}

.team-stat {
  text-align: center;
  padding: 0 48px;
  flex: 1;
}

.team-stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 4px;
}

.team-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.team-stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ══════════════════════════ SLIDE 12: VENTURE PARTNERS ══ */
.vp-intro-text {
  max-width: 720px;
  margin-bottom: 48px;
}

.vp-intro-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(41,41,41,0.65);
}

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

.vp-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(41,41,41,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}

.vp-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* VP card as clickable anchor */
a.vp-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.vp-card-link:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

a.vp-card-link h4 {
  color: var(--dark);
}

a.vp-card-link:hover h4 {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vp-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--beige);
  border: 2px solid rgba(41,41,41,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(41,41,41,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.vp-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.vp-focus-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--dark);
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.vp-card p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(41,41,41,0.6);
}

.vp-footer-note {
  font-size: 0.8rem;
  color: rgba(41,41,41,0.4);
  font-style: italic;
}

/* ══════════════════════════════════ SLIDE 13: LP TERMS ══ */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.term-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(41,41,41,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

.term-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.term-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark);
}

.term-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
}

.term-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.term-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(41,41,41,0.06);
}

.term-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.term-lbl {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(41,41,41,0.55);
  line-height: 1.4;
}

.term-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  white-space: nowrap;
  text-align: right;
}

.term-highlight {
  background: var(--dark);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
}

/* ══════════════════════════════════ SLIDE 14: CONTACT ══ */
#contact {
  background: var(--dark);
}

.contact-bg-accent {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.025) 0%, transparent 70%);
  pointer-events: none;
}

.contact-logo {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

.contact-logo .logo-text { font-size: inherit; }
.contact-logo .power-icon { width: 1em; height: 1em; }

.contact-logo-img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.5;
}

.contact-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 56px;
}

.contact-info-grid {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child { border-right: none; }

.contact-lbl {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.contact-val {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.contact-link {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.contact-link:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.4);
}

.contact-disclaimer {
  max-width: 600px;
  padding: 0 24px;
}

.contact-disclaimer p {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.2);
}

/* ── COUNT-UP ────────────────────────────────────────────── */
.count-up {
  transition: opacity 0.3s;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-left {
    position: static;
  }

  .fund-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fund-bar-wrap {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .thesis-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pco-grid {
    grid-template-columns: 1fr;
  }

  .pco-grid-featured {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .vp-grid {
    grid-template-columns: 1fr;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .team-stats-row {
    flex-direction: column;
    gap: 24px;
  }

  .team-stat-div { width: 40px; height: 1px; }

  .contact-info-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .section {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 56px;
  }

  .section-inner { padding: 0 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(41,41,41,0.98);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  #nav-dots { display: none; }

  .cover-stats {
    gap: 0;
  }

  .cover-stat { padding: 0 20px; }

  .donut-row { gap: 32px; }
  .donut-chart { width: 140px; height: 140px; }
  .donut-val { font-size: 1.3rem; }

  .cover-logo {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .mission-headline { font-size: clamp(1.5rem, 4vw, 2rem); }
}

@media (max-width: 480px) {
  .cover-stats {
    flex-direction: column;
    gap: 24px;
  }
  .cover-stat-divider {
    width: 40px;
    height: 1px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NEW STYLES — Comprehensive Deck Update
═══════════════════════════════════════════════════════════════ */

/* ── CENTERED COLUMN LAYOUT (for mission etc.) ─────────────── */
.section-inner.centered-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── SLIDE PAGE NUMBERS ────────────────────────────────────── */
.slide-number {
  position: absolute;
  bottom: 32px;
  right: 48px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(41,41,41,0.2);
  z-index: 10;
}

.slide-number-light {
  color: rgba(255,255,255,0.18);
}

/* ── COVER: OFFICIAL LOGO ASSET ───────────────────────────── */
.cover-logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.cover-logo-img {
  height: clamp(60px, 10vw, 120px);
  width: auto;
  display: block;
}

/* ── PORTFOLIO SNAPSHOT: STATS SCORECARD ───────────────────── */
.stats-scorecard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 56px 48px;
  background: var(--grey);
  border-radius: 24px;
  flex-wrap: wrap;
}

.scorecard-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  flex: 1;
}

.scorecard-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.scorecard-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(41,41,41,0.45);
}

.scorecard-divider {
  width: 1px;
  height: 80px;
  background: rgba(41,41,41,0.1);
  flex-shrink: 0;
}

/* Light variants for dark backgrounds */
/* Fund Performance on dark background — max contrast */
.section-dark .scorecard-num,
.scorecard-num.light { color: #fff !important; }
.section-dark .scorecard-label,
.scorecard-label.light { color: rgba(255,255,255,0.75) !important; }
.section-dark .scorecard-divider,
.scorecard-divider-light { background: rgba(255,255,255,0.25) !important; }
.section-sub-note.light { color: rgba(255,255,255,0.5) !important; }

/* ── 5-CARD PORTFOLIO GRID ─────────────────────────────────── */
.pco-grid-5 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.pco-grid-5 .pco-card {
  flex: 0 0 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  min-width: 280px;
}

/* ── PORTFOLIO CARD: FOUNDERS + MEMO LINK ──────────────────── */
.pco-founders {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(41,41,41,0.5);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(41,41,41,0.06);
  line-height: 1.5;
}

.founder-link {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.founder-link:hover {
  opacity: 0.6;
}

.pco-memo-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.pco-memo-link:hover {
  opacity: 0.6;
}

/* ── FUND BAR: 3-SEGMENT DESIGN ────────────────────────────── */
.fund-bar-deployed {
  flex: 30;
  background: var(--dark);
}

.fund-bar-reserves {
  flex: 25;
  background: rgba(41,41,41,0.45);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.fund-bar-available {
  flex: 45;
  background: rgba(41,41,41,0.15);
  border-top: 1px solid rgba(41,41,41,0.12);
}

.fund-bar-deployed .fund-bar-fill  { background: var(--dark); }
.fund-bar-reserves .fund-bar-fill  { background: rgba(41,41,41,0.45); }
.fund-bar-available .fund-bar-fill { background: rgba(41,41,41,0.15); }

/* ── SPV SECTION ───────────────────────────────────────────── */
.section-sub-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(41,41,41,0.55);
  max-width: 640px;
  margin: 0 auto;
}

.spv-placeholder-card .pco-header {
  opacity: 0.8;
}

/* ── CO-INVESTORS GRID ─────────────────────────────────────── */
.coinvestors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.coinvestor-card {
  background: var(--grey);
  border: 1px solid rgba(41,41,41,0.08);
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.coinvestor-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.coinvestor-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.coinvestor-more {
  background: transparent;
  border-style: dashed;
  opacity: 0.5;
}

.coinvestor-more .coinvestor-name {
  color: rgba(41,41,41,0.4);
}

/* ── CO-INVESTOR LOGO GRID ─────────────────────────── */

/* Background panel */
.coinvestors-panel {
  background: #F2F2F2;
  border-radius: 20px;
  padding: 52px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* 5/5/4 grid — rows 1-2 are 5-col, row 3 is 4 logos centered */
.coinvestors-logo-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);  /* 10-col for centering math */
  gap: 36px 8px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

/* Row 1 & 2: each logo spans 2 cols = 5 per row */
.coinvestor-logo-card {
  grid-column: span 2;
}

/* Row 3 (items 11-14): offset by 1 col to center 4 logos in 10-col grid */
.coinvestor-logo-card:nth-child(11) { grid-column: 2 / span 2; }
.coinvestor-logo-card:nth-child(12) { grid-column: 4 / span 2; }
.coinvestor-logo-card:nth-child(13) { grid-column: 6 / span 2; }
.coinvestor-logo-card:nth-child(14) { grid-column: 8 / span 2; }

a.coinvestor-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  padding: 8px;
  min-height: 64px;  /* consistent row height for vertical rhythm */
  box-sizing: border-box;
  transition: transform 0.2s;
}

/* Monochrome: logos pre-recolored to #292929 in PNG.
   No CSS filter needed — clean rendering with transparency intact. */
.coinvestor-logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: opacity 0.3s;
}

/* ── Optical sizing: equalize visual weight ── */

/* Thin wordmarks: boost size for optical balance */
[data-logo="lerer-hippeau"] .coinvestor-logo-img {
  height: 58px;
  max-width: 190px;
}

[data-logo="initialized"] .coinvestor-logo-img {
  height: 54px;
  max-width: 180px;
}

[data-logo="offline"] .coinvestor-logo-img {
  height: 54px;
  max-width: 170px;
}

/* Tall logomarks: slightly larger to balance */
[data-logo="upfront"] .coinvestor-logo-img {
  height: 52px;
}

[data-logo="bold-capital"] .coinvestor-logo-img {
  height: 54px;
}

[data-logo="point72"] .coinvestor-logo-img {
  height: 58px;
}

[data-logo="courtside-vc"] .coinvestor-logo-img {
  height: 56px;
  max-width: 190px;
}

[data-logo="bbg-ventures"] .coinvestor-logo-img {
  height: 54px;
  max-width: 180px;
}

[data-logo="red-sea"] .coinvestor-logo-img {
  height: 54px;
  max-width: 170px;
}

/* Wide horizontal logos: constrain width, let height flex */
[data-logo="palm-tree-crew"] .coinvestor-logo-img {
  height: 44px;
  max-width: 160px;
}

[data-logo="bam-ventures"] .coinvestor-logo-img {
  height: 44px;
  max-width: 160px;
}

/* Hover: reveal original brand colors (JS swaps to -color.png) */
a.coinvestor-logo-card:hover {
  transform: scale(1.06);
}

a.coinvestor-logo-card:hover .coinvestor-logo-img {
  opacity: 1;
}

/* ── GP cards: clickable LinkedIn links ─────────────────── */
a.team-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

a.team-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* ── GENERAL PARTNERS: LARGER PHOTOS + BRAND LOGOS ─────────── */
.team-photo-lg {
  width: 120px !important;
  height: 120px !important;
  font-size: 1.6rem !important;
  margin-bottom: 28px;
}

.team-brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.brand-logo-placeholder {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* GP credential logo row */
.gp-logo-row {
  gap: 16px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.gp-brand-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.team-card-link:hover .gp-brand-logo {
  opacity: 0.6;
}

/* GP credential tab row */
.gp-tab-row {
  gap: 8px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.gp-tab {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}

.team-card-link:hover .gp-tab {
  color: rgba(255,255,255,0.70);
  border-color: rgba(255,255,255,0.20);
}

/* Remove old paragraph style from team cards */
.team-card p {
  display: none;
}

/* ── MEET THE TEAM SECTION ─────────────────────────────────── */
.meet-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

.meet-team-card {
  background: #fff;
  border: 1px solid rgba(41,41,41,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  width: 100%;
}

.meet-team-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.meet-team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--beige);
  border: 2px solid rgba(41,41,41,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: rgba(41,41,41,0.5);
  margin: 0 auto 20px;
  letter-spacing: 0.05em;
}

.meet-team-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(41,41,41,0.1);
  margin: 0 auto 20px;
}

.meet-team-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-team-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.meet-team-role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.76rem;
  color: rgba(41,41,41,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.meet-team-bio {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(41,41,41,0.6);
  margin-bottom: 16px;
}

.meet-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.meet-team-tag {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--grey);
  border: 1px solid rgba(41,41,41,0.08);
  color: rgba(41,41,41,0.55);
  letter-spacing: 0.04em;
}

.meet-team-placeholder-card {
  opacity: 0.6;
}

/* Clickable team cards */
a.meet-team-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

a.meet-team-card-link:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* Team member experience logos */
.meet-team-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(41,41,41,0.06);
  min-height: 36px;
}

.meet-team-logo {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.3s;
}

a.meet-team-card-link:hover .meet-team-logo {
  opacity: 0.85;
}

/* Cards with 4+ logos: shrink to fit single row */
.meet-team-logos-dense .meet-team-logo {
  height: 22px;
  max-width: 70px;
}

.meet-team-logos-dense {
  gap: 10px;
}

/* ── VENTURE PARTNERS: LARGER AVATARS ──────────────────────── */
.vp-avatar-lg {
  width: 96px !important;
  height: 96px !important;
  font-size: 1.1rem !important;
  margin-bottom: 20px;
}

.vp-avatar-photo {
  padding: 0 !important;
  overflow: hidden;
  background: #e5e5e5 !important;
  border: 2px solid rgba(41,41,41,0.1) !important;
}

.vp-headshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ── RESPONSIVE: NEW SECTIONS ──────────────────────────────── */
@media (max-width: 960px) {
  .pco-grid-5 .pco-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .coinvestors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coinvestors-logo-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px 0;
  }
  .coinvestor-logo-card { grid-column: span 2; }
  .coinvestor-logo-card:nth-child(11),
  .coinvestor-logo-card:nth-child(12),
  .coinvestor-logo-card:nth-child(13),
  .coinvestor-logo-card:nth-child(14) {
    grid-column: span 2;
  }
  /* Center last row of 2 remaining after 3-col wrap */
  .coinvestors-panel {
    padding: 32px 20px;
  }

  .meet-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── FUND BAR: INLINE SEGMENT LABELS ──────────────────────── */
.fund-bar-inline-label {
  position: absolute;
  z-index: 2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.fund-bar-inline-label--dark {
  color: rgba(255,255,255,0.85);
}

.fund-bar-inline-label--mid {
  color: rgba(255,255,255,0.85);
}

.fund-bar-inline-label--light {
  color: rgba(41,41,41,0.55);
}

/* ── GP HEADSHOTS ──────────────────────────────────────────── */

/* ── FUND DESIGN v2: SPLIT BAR ───────────────────────────── */
.fd-lede {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.fd-lede-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--dark);
}
.fd-lede-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.15rem;
  color: rgba(41,41,41,0.55);
  max-width: 360px;
  line-height: 1.45;
  margin: 0;
}
.fd-lede-text strong {
  color: var(--dark);
  font-weight: 600;
}

.fd-split-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  padding: 0 4px;
}
.fd-split-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(41,41,41,0.4);
}

.fd-split-bar {
  display: grid;
  grid-template-columns: 80fr 20fr;
  gap: 8px;
  height: 240px;
}
.fd-split-panel {
  position: relative;
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.fd-split-panel--tech {
  background: var(--dark);
  color: #fff;
}
.fd-split-panel--products {
  background: var(--beige);
  color: var(--dark);
}

.fd-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.fd-panel-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.fd-panel-pct {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(48px, 5vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.fd-panel-pct sup {
  font-size: 0.4em;
  font-weight: 600;
  top: -0.8em;
  margin-left: 2px;
  opacity: 0.65;
}

.fd-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.fd-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.fd-split-panel--tech .fd-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}
.fd-split-panel--products .fd-tag {
  background: rgba(41,41,41,0.06);
  color: rgba(41,41,41,0.55);
  border: 1px solid rgba(41,41,41,0.08);
}

/* Products panel: stack number above name */
.fd-split-panel--products { padding: 28px 24px; }
.fd-split-panel--products .fd-panel-top {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.fd-split-panel--products .fd-panel-name { font-size: 1.15rem; line-height: 1.15; }
.fd-split-panel--products .fd-panel-pct { font-size: clamp(40px, 4vw, 52px); }
.fd-split-panel--products .fd-tag { font-size: 0.75rem; padding: 6px 11px; }
.fd-split-panel--products .fd-panel-tags { gap: 6px; }

@media (max-width: 820px) {
  .fd-lede-num { font-size: 56px; }
  .fd-lede-text { font-size: 1rem; text-align: center; }
  .fd-split-bar {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto;
    height: auto;
    gap: 12px;
  }
  .fd-split-panel { padding: 28px; min-height: 180px; }
}

/* ── GP HEADSHOTS ──────────────────────────────────────────── */
.team-headshot-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 3px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.team-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── GP BIO TEXT ───────────────────────────────────────────── */
.team-bio-text {
  margin-bottom: 20px;
}

.team-bio-text p {
  display: block !important;
  font-family: var(--font-body);
  font-size: 0.80rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.team-bio-text p:last-child {
  margin-bottom: 0;
}

/* ── CO-INVESTOR POLISH ────────────────────────────────────── */
.coinvestor-card {
  background: var(--white);
  border: 1px solid rgba(41,41,41,0.1);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.coinvestor-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.coinvestor-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* ── VP NETWORK SUMMARY SLIDE ──────────────────────────────── */
.vp-network-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.vp-network-stat {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: background 0.3s, transform 0.3s;
}

.vp-network-stat:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

.vp-network-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
}

.vp-network-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.vp-network-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* VP Network Company Logos */
.vp-company-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.vp-company-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.vp-company-logo {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s;
}

.vp-company-logo:hover {
  opacity: 0.8;
}

/* Southern Glazer's logo is dark on dark — brighten it */
.vp-company-logos a:first-child .vp-company-logo {
  filter: brightness(1.8);
  opacity: 0.85;
}

/* ── VP GRID: 6-COLUMN (RESPONSIVE) ───────────────────────── */
.vp-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 960px) {
  .vp-network-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .vp-network-stats {
    grid-template-columns: 1fr 1fr;
  }

  .vp-grid-6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pco-grid-5 .pco-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stats-scorecard {
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px;
  }

  .scorecard-divider {
    width: 40px;
    height: 1px;
  }

  .scorecard-stat {
    padding: 0;
  }

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

  .coinvestors-logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 0;
  }
  .coinvestor-logo-card { grid-column: span 2; }
  .coinvestor-logo-card:nth-child(11),
  .coinvestor-logo-card:nth-child(12),
  .coinvestor-logo-card:nth-child(13),
  .coinvestor-logo-card:nth-child(14) {
    grid-column: span 2;
  }
  .coinvestor-logo-img {
    height: 36px;
    max-width: 120px;
  }
  .coinvestors-panel {
    padding: 24px 16px;
  }

  .meet-team-grid {
    grid-template-columns: 1fr;
  }

  .cover-logo-img {
    height: clamp(44px, 8vw, 80px);
  }

  .slide-number {
    bottom: 20px;
    right: 24px;
  }
}


/* ── FUND PERFORMANCE v2 — pixel-perfect ────────────────── */
.fp-slide { background: #292929; color: #fff; padding: 64px 72px !important; }

/* Top bar */
.fp-topbar { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.fp-topbar h2 { font-family: var(--font-heading); font-weight: 700; font-size: 2.4rem; letter-spacing: -0.02em; color: #fff; margin: 0; }
.fp-chips { display: flex; gap: 8px; }
.fp-chip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 10px 18px; display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 80px; }
.fp-chip span { font-family: var(--font-body); font-weight: 500; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); }
.fp-chip strong { color: #fff; font-weight: 700; font-size: 1rem; font-family: var(--font-heading); }

/* Main grid: 1.4fr returns | 1fr capital */
.fp-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-bottom: 40px; }
@media(max-width:900px) { .fp-grid { grid-template-columns: 1fr; } .fp-slide { padding: 40px 24px !important; } }

/* Returns column — no outer box */
.fp-returns-col { display: flex; flex-direction: column; gap: 16px; }

/* Eyebrow + sub labels */
.fp-panel-head { margin-bottom: 8px; }
.fp-eyebrow { font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.fp-panel-sub { font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* Metric name/desc */
.fp-metric-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 2px; }
.fp-metric-desc { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ── TVPI hero card — beige gradient ── */
.fp-card-tvpi {
  background: linear-gradient(180deg, #E0D8D1 0%, #FFFFFF 100%);
  border: none;
  border-radius: 16px;
  padding: 32px;
}
.fp-card-tvpi .fp-metric-name { color: #292929; font-size: 1.1rem; }
.fp-card-tvpi .fp-metric-desc { color: rgba(41,41,41,0.60); }
.fp-tvpi-row { display: flex; justify-content: space-between; align-items: center; }
.fp-tvpi-right { text-align: right; }
.fp-tvpi-num { font-family: var(--font-heading); font-weight: 700; font-size: 4.5rem; letter-spacing: -0.05em; line-height: 1; color: #292929; }
.fp-bench-pill { display: inline-block; background: rgba(26,110,58,0.12); color: #1a6e3a; border-radius: 6px; padding: 4px 10px; font-size: 0.78rem; font-weight: 600; margin-top: 8px; }

/* ── DPI / RVPI metric cards ── */
.fp-split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fp-card-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
}
.fp-split-val { font-family: var(--font-heading); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.03em; color: #fff; margin: 10px 0 4px; }
.fp-split-bench { font-family: var(--font-body); font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.fp-meter { width: 100%; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.fp-meter-fill { height: 100%; background: #E0D8D1; border-radius: 2px; }

/* ── IRR card ── */
.fp-card-irr {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px 28px;
}
.fp-irr-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.fp-irr-num { font-family: var(--font-heading); font-weight: 700; font-size: 2.4rem; color: #fff; letter-spacing: -0.02em; }
.fp-irr-bar { position: relative; width: 100%; height: 10px; background: rgba(255,255,255,0.08); border-radius: 5px; margin-bottom: 24px; }
.fp-irr-fill { height: 100%; background: linear-gradient(90deg, #E0D8D1, #fff); border-radius: 5px; }
.fp-irr-mark { position: absolute; top: -1px; width: 2px; height: 12px; background: #fff; transform: translateX(-50%); }
.fp-irr-mark span { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); font-size: 0.62rem; color: rgba(255,255,255,0.4); white-space: nowrap; }

/* ── Capital Deployment panel ── */
.fp-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px;
}

/* Donut: 260×260 */
.fp-donut-wrap { position: relative; width: 260px; height: 260px; margin: 20px auto 28px; }
.fp-donut { width: 100%; height: 100%; }
.fp-donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.fp-donut-pct { font-family: var(--font-heading); font-weight: 700; font-size: 2.8rem; color: #fff; letter-spacing: -0.03em; }
.fp-donut-lbl { font-family: var(--font-body); font-weight: 500; font-size: 0.65rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.18em; }
.fp-donut-fund { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 500; }

/* Legend rows */
.fp-legend { display: flex; flex-direction: column; gap: 8px; }
.fp-legend-row { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 12px; font-size: 0.8rem; background: rgba(255,255,255,0.03); border-radius: 10px; padding: 12px 16px; }
.fp-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.fp-dot-invested { background: #E0D8D1; }
.fp-dot-reserves { background: rgba(224,216,209,0.45); }
.fp-dot-uncalled { background: rgba(255,255,255,0.10); }
.fp-dot-fees { background: rgba(207,126,104,0.50); }
.fp-legend-name { color: rgba(255,255,255,0.70); }
.fp-legend-val { color: #fff; font-weight: 600; }
.fp-legend-pct { color: rgba(255,255,255,0.45); text-align: right; }

/* Disclosure footer */
.fp-disclosure { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.fp-disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media(max-width:700px) { .fp-disc-grid { grid-template-columns: 1fr; } }
.fp-disc-label { font-family: var(--font-body); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); display: block; margin-bottom: 6px; font-weight: 500; }
.fp-disc-grid p { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.6; }

/* Fund Raise progress strip */
.fp-raise-strip { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 18px; margin-bottom: 20px; }
.fp-raise-labels { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.fp-raise-lbl { font-family: var(--font-body); font-weight: 500; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.fp-raise-val { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.fp-raise-val strong { color: #fff; font-weight: 700; font-family: var(--font-heading); }
.fp-raise-of { color: rgba(255,255,255,0.4); }
.fp-raise-track { width: 100%; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.fp-raise-fill { height: 100%; background: #E0D8D1; border-radius: 3px; }

/* Donut hero dollar amount */
.fp-donut-hero { font-family: var(--font-heading); font-weight: 700; font-size: 2rem; color: #fff; letter-spacing: -0.03em; }

.fp-dot-called { background: rgba(255,255,255,0.45); }

/* Fee Impact Tile */
.fp-fee-tile { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 16px 18px; margin-bottom: 20px; }
.fp-fee-tile-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.fp-fee-tile-icon { font-size: 0.9rem; opacity: 0.5; }
.fp-fee-tile-title { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.12em; }
.fp-fee-tile-term { margin-left: auto; font-family: var(--font-body); font-size: 0.65rem; color: rgba(207,126,104,0.70); font-weight: 500; letter-spacing: 0.06em; }
.fp-fee-tile-body { display: flex; flex-direction: column; gap: 8px; }
.fp-fee-row { display: flex; justify-content: space-between; align-items: center; }
.fp-fee-label { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.fp-fee-rate { font-size: 0.65rem; color: rgba(255,255,255,0.30); margin-left: 4px; }
.fp-fee-val { font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; color: rgba(207,126,104,0.85); }
.fp-fee-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0; }
.fp-fee-total .fp-fee-label { color: rgba(255,255,255,0.80); font-weight: 600; }
.fp-fee-total .fp-fee-val { color: rgba(207,126,104,1); font-weight: 700; font-size: 0.88rem; }

/* ── ENHANCED ANIMATIONS ──────────────────────────── */

/* Subtle scale-in for cards */
.aos-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.aos-scale.visible { opacity: 1; transform: scale(1); }

/* Fade-in from left */
.aos-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.aos-left.visible { opacity: 1; transform: translateX(0); }

/* Fade-in from right */
.aos-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.aos-right.visible { opacity: 1; transform: translateX(0); }

/* Smooth hover lift for interactive cards */
.pco-card { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.pco-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

/* Gentle pulse for donut on scroll */
@keyframes donutPulse {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.fp-donut-wrap.visible svg { animation: donutPulse 0.8s var(--ease-out) forwards; }
.fp-donut-wrap svg { opacity: 0; }

/* Stagger children in grids */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.56s; }

/* Smooth section transitions */
.section { transition: opacity 0.3s ease; }

/* Title rule grow animation */
@keyframes ruleGrow {
  from { width: 0; }
  to { width: 44px; }
}
.title-rule.visible { animation: ruleGrow 0.6s var(--ease-out) 0.3s forwards; width: 0; }

/* Number counter glow effect */
@keyframes counterGlow {
  0% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 20px rgba(224,216,209,0.2); }
  100% { text-shadow: 0 0 0 transparent; }
}
.scorecard-num.counted { animation: counterGlow 1s ease 0.5s; }

/* Smooth logo fade for co-investor grid */
.coinvestor-logo-card { transition: opacity 0.5s var(--ease-out), transform 0.3s var(--ease-out); }

/* VP card hover enhancement */
.vp-card { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s; }
.vp-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }

/* Meet team card hover */
.meet-team-card { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }

/* Cover slide subtle float */
@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.cover-stat-num { animation: subtleFloat 4s ease-in-out infinite; }
.cover-stat-num:nth-child(2) { animation-delay: 0.5s; }
.cover-stat-num:nth-child(3) { animation-delay: 1s; }

/* Smooth scroll indicator pulse */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(4px); }
}

/* Fund raise bar fill animation */
@keyframes barFill {
  from { width: 0; }
}
.fp-raise-fill { animation: barFill 1s var(--ease-out) 0.5s backwards; }

/* IRR bar fill animation */
.fp-irr-fill { animation: barFill 1s var(--ease-out) 0.7s backwards; }

/* Meter bar fill animations */
.fp-meter-fill { animation: barFill 0.8s var(--ease-out) 0.5s backwards; }

/* ── CAPITAL DEPLOYMENT ANIMATIONS ────────────────── */

/* Donut segments draw-in (clockwise spin fill) */
@keyframes donutDraw {
  from { stroke-dashoffset: 596.9; }
}
.fp-donut-wrap.visible circle:nth-child(2) {
  animation: donutDraw 1.2s var(--ease-out) 0.3s backwards;
}
.fp-donut-wrap.visible circle:nth-child(3) {
  animation: donutDraw 1.2s var(--ease-out) 0.5s backwards;
}
.fp-donut-wrap.visible circle:nth-child(4) {
  animation: donutDraw 1.2s var(--ease-out) 0.7s backwards;
}
.fp-donut-wrap.visible circle:nth-child(5) {
  animation: donutDraw 1.2s var(--ease-out) 0.9s backwards;
}

/* Donut center content fades in after ring draws */
@keyframes centerReveal {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.fp-donut-wrap.visible .fp-donut-center {
  animation: centerReveal 0.5s var(--ease-out) 1.4s backwards;
}

/* Override the simpler pulse — the draw-in is better */
.fp-donut-wrap.visible svg { animation: none; opacity: 1; }

/* Fund raise bar — slide out with a slight bounce */
@keyframes slideOut {
  from { width: 0 !important; }
}
.fp-raise-strip.visible .fp-raise-fill {
  animation: slideOut 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
}

/* Fund raise labels fade in */
@keyframes labelFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.fp-raise-strip.visible .fp-raise-labels {
  animation: labelFade 0.5s var(--ease-out) 0.2s backwards;
}

/* Legend rows stagger in from right */
@keyframes legendSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.fp-legend .fp-legend-row:nth-child(1) { opacity: 0; }
.fp-legend .fp-legend-row:nth-child(2) { opacity: 0; }
.fp-legend .fp-legend-row:nth-child(3) { opacity: 0; }
.fp-legend .fp-legend-row:nth-child(4) { opacity: 0; }
.fp-legend .fp-legend-row:nth-child(5) { opacity: 0; }

.fp-legend.visible .fp-legend-row:nth-child(1) { animation: legendSlide 0.4s var(--ease-out) 1.6s forwards; }
.fp-legend.visible .fp-legend-row:nth-child(2) { animation: legendSlide 0.4s var(--ease-out) 1.72s forwards; }
.fp-legend.visible .fp-legend-row:nth-child(3) { animation: legendSlide 0.4s var(--ease-out) 1.84s forwards; }
.fp-legend.visible .fp-legend-row:nth-child(4) { animation: legendSlide 0.4s var(--ease-out) 1.96s forwards; }
.fp-legend.visible .fp-legend-row:nth-child(5) { animation: legendSlide 0.4s var(--ease-out) 2.08s forwards; }

/* Donut track subtle rotation */
@keyframes trackSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── PORTFOLIO IN THE PRESS ──────────────────────── */
.press-slide { overflow: hidden; }

.press-marquee { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); margin-top: 48px; overflow: hidden; }
.press-light .press-marquee { background: rgba(255,255,255,0.45); border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); border-radius: 0; width: 100vw; margin-left: calc(-50vw + 50%); padding: 36px 0; }
.press-fade { position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.press-fade-l { left: 0; background: linear-gradient(to right, var(--press-bg, #1a1a1a), transparent); }
.press-fade-r { right: 0; background: linear-gradient(to left, var(--press-bg, #1a1a1a), transparent); }
.press-slide { --press-bg: #1a1a1a; }
.press-light { --press-bg: var(--beige, #E0D8D1); }

.press-rows { display: flex; flex-direction: column; gap: 16px; padding: 8px 0; }
.press-row { display: flex; gap: 16px; width: max-content; }
.press-row:hover { animation-play-state: paused !important; }

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

.press-scroll-l { animation: pressScrollL 45s linear infinite; }
.press-scroll-r { animation: pressScrollR 50s linear infinite; }
.press-scroll-l-slow { animation: pressScrollL 60s linear infinite; }

.press-card {
  flex-shrink: 0;
  width: 320px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.press-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Light-mode press cards */
.press-light .press-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.press-light .press-card:hover {
  background: #ffffff;
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.press-card-outlet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.press-outlet-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.50);
}
.press-light .press-outlet-name { color: #292929; font-weight: 700; }
.press-outlet-name.press-serif {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.82rem;
}
.press-outlet-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.30);
}
.press-light .press-outlet-date { color: rgba(0,0,0,0.40); }

.press-card-headline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press-light .press-card-headline { color: #1a1a1a; }
.press-card-company {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #E0D8D1;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.press-light .press-card-company { color: rgba(0,0,0,0.40); }

.press-outlets-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.press-bar-dot { color: rgba(255,255,255,0.20); }
.press-light .press-outlets-bar { color: rgba(0,0,0,0.40); justify-content: center; }
.press-light .press-bar-dot { color: rgba(0,0,0,0.15); }

@media (max-width: 768px) {
  .press-card { width: 260px; padding: 16px 18px; }
  .press-fade { width: 60px; }
  .press-outlets-bar { flex-wrap: wrap; gap: 8px; font-size: 0.7rem; }
}
