/* ==========================================================================
   Founders Circle Capital — Shared CSS Framework
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Roboto+Slab:wght@400;700&display=swap');

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  /* Brand Colors */
  --color-primary-text: #2D2D2D;
  --color-body-text: #444444;
  --color-teal: #45C5C8;
  --color-gold: #C9D63B;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-medium-gray: #888888;
  --color-dark-footer: #1a1a2e;
  --color-gradient-start: #E8F7F5;
  --color-gradient-end: #F5F9E0;
  --color-teal-hero: #2ABFBF;

  /* Typography */
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Roboto Slab', serif;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-body-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-primary-text);
  line-height: 1.15;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */
.display-xl {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.display-md {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.body-lg {
  font-size: 18px;
  line-height: 1.8;
}

.body-md {
  font-size: 16px;
  line-height: 1.7;
}

.body-sm {
  font-size: 14px;
  line-height: 1.6;
}

.label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (min-width: 768px) {
  .display-xl {
    font-size: 64px;
  }
  .display-lg {
    font-size: 48px;
  }
  .display-md {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .display-xl {
    font-size: 76px;
  }
  .display-lg {
    font-size: 56px;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-teal { color: #45C5C8; }
.text-gold { color: #C9D63B; }
.text-white { color: #FFFFFF; }
.text-dark { color: var(--color-primary-text); }
.text-body { color: var(--color-body-text); }
.text-muted { color: var(--color-medium-gray); }

.gradient-bg {
  background: linear-gradient(135deg, #E8F7F5, #F5F9E0);
}

.section-padding {
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: var(--section-padding) 0;
  }
}

.bg-white { background-color: var(--color-white); }
.bg-light { background-color: var(--color-light-gray); }
.bg-dark { background-color: var(--color-dark-footer); }

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--color-teal), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA arrow link */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-teal);
  transition: gap var(--transition-base), color var(--transition-base);
}

.cta-link:hover {
  gap: 12px;
  color: var(--color-primary-text);
}

.cta-link svg,
.cta-link .arrow {
  transition: transform var(--transition-base);
}

.cta-link:hover svg,
.cta-link:hover .arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition-base);
  height: 80px;
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  width: 180px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

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

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-text);
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-text);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 1023px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 18px;
    padding: 16px 0;
  }
}

/* Body offset for fixed nav */
body {
  padding-top: 80px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-dark-footer);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.footer-logo img {
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-col a:hover {
  color: var(--color-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-left a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom-left a:hover {
  color: var(--color-teal);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   Shared Section Styles
   ========================================================================== */
.section-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .section-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
  }
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 8px;
  background: var(--color-light-gray);
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-primary-text);
  line-height: 1;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 48px;
  }
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-medium-gray);
  line-height: 1.4;
}

/* Company Circles Grid */
.company-circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .company-circles {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.company-circle {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.company-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.company-circle img {
  width: 60%;
  height: 40%;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity var(--transition-base);
}

.company-circle:hover img {
  opacity: 1;
}

/* ==========================================================================
   Tabs (Our Values page)
   ========================================================================== */
.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body-text);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.tab-btn.active {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}

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

/* ==========================================================================
   Company Filters (Companies page)
   ========================================================================== */
.companies-filter {
  padding: 20px 0 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-medium-gray);
}

.filter-dropdowns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-dropdown {
  position: relative;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-body-text);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.filter-btn .chevron {
  font-size: 10px;
  transition: transform var(--transition-base);
}

.filter-dropdown.open .filter-btn .chevron {
  transform: rotate(180deg);
}

.filter-options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 8px 0;
  min-width: 180px;
  z-index: 100;
}

.filter-dropdown.open .filter-options {
  display: block;
}

.filter-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--color-body-text);
  transition: all var(--transition-base);
}

.filter-option:hover {
  background: var(--color-light-gray);
  color: var(--color-teal);
}

.filter-option.active {
  color: var(--color-teal);
  font-weight: 500;
}

/* Company Logo Grid — 6-column flat grid */
.companies-grid-section {
  padding: 0 0 80px;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  .companies-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .companies-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.company-cell {
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  transition: background var(--transition-base);
}

.company-cell:hover {
  background: var(--color-light-gray);
}

.company-cell img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity var(--transition-base);
}

.company-cell:hover img {
  opacity: 1;
}

.company-cell.hidden {
  display: none;
}

/* ==========================================================================
   Team Grid — Seamless Mosaic
   ========================================================================== */
.team-hero {
  padding: 60px 0 40px;
}

.team-hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.team-hero .hero-subtext {
  font-size: 18px;
  color: var(--color-body-text);
  line-height: 1.7;
  max-width: 800px;
}

@media (min-width: 768px) {
  .team-hero h1 {
    font-size: 56px;
  }
}

.team-grid-section {
  padding-bottom: 0;
}

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

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.team-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.0) 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-card-name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-card-title {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Page Specific: Hero Section
   ========================================================================== */
.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  max-width: 560px;
}

.hero-content .display-xl {
  margin-bottom: 24px;
}

.hero-content .body-lg {
  color: var(--color-body-text);
  margin-bottom: 8px;
}

.hero-visual {
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-visual {
    display: flex;
  }
}

/* Rotating words */
.rotating-word {
  display: inline-block;
  position: relative;
  min-width: 200px;
}

.rotating-word span {
  display: inline-block;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--color-teal), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rotating-word span.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

/* ==========================================================================
   Values / Community Sections
   ========================================================================== */
.centered-section {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.centered-section .display-lg {
  margin-bottom: 24px;
}

.centered-section .body-lg {
  margin-bottom: 32px;
}

/* Dark overlay section */
.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dark-section .container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Page Hero Banners (inner pages)
   ========================================================================== */
.page-hero {
  padding: 80px 0 60px;
  background: var(--color-light-gray);
}

@media (min-width: 768px) {
  .page-hero {
    padding: 120px 0 80px;
  }
}

.page-hero .display-lg {
  max-width: 700px;
}

.page-hero .body-lg {
  max-width: 600px;
  margin-top: 20px;
}

/* ==========================================================================
   Responsive Helpers
   ========================================================================== */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* ==========================================================================
   Bio Page Styles
   ========================================================================== */

/* Bio Hero */
.bio-hero {
  background-color: var(--color-teal-hero);
  padding: 60px 0 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bio-hero {
    padding: 80px 0 0;
  }
}

.bio-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}

@media (min-width: 768px) {
  .bio-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.bio-hero-info {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .bio-hero-info {
    padding-bottom: 80px;
  }
}

.bio-hero-name {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .bio-hero-name {
    font-size: 60px;
  }
}

.bio-hero-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.bio-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.bio-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  background: transparent;
  transition: all var(--transition-base);
}

.bio-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.bio-hero-social {
  display: flex;
  gap: 12px;
}

.bio-hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  transition: all var(--transition-base);
}

.bio-hero-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.bio-hero-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bio-hero-photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .bio-hero-photo {
    justify-content: flex-end;
  }
}

.bio-hero-photo img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}

/* Bio Content */
.bio-content-inner {
  max-width: 760px;
  margin: 0 auto;
}

.bio-pullquote {
  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: #7A8A2E;
  border-left: 3px solid var(--color-gold);
  padding-left: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .bio-pullquote {
    font-size: 26px;
    padding-left: 32px;
    margin-bottom: 48px;
  }
}

.bio-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-body-text);
  margin-bottom: 1.2em;
}

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

/* Bio Investments */
.bio-investments-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-text);
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .bio-investments-heading {
    font-size: 40px;
    margin-bottom: 48px;
  }
}

.bio-company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 600px) {
  .bio-company-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .bio-company-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .bio-company-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.bio-company-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  transition: all var(--transition-base);
}

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

.bio-company-card img {
  max-width: 100px;
  max-height: 36px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.bio-company-card:hover img {
  opacity: 1;
}
