/* Color Palette (Adaptive Light/Dark Theme) */
:root {
  /* Bespoke Premium Light Mode (Default) */
  --c-bg:           #f0f4f8; /* Soft premium ice blue */
  --c-surface:      #ffffff;
  --c-surface-2:    #ffffff; /* Alternating sections are white */
  --c-border:       #d2dfeb; /* Soft blue-grey border */
  --c-border-subtle:#e1ebf5;
  --c-teal:         #0f4668; /* Brand Blue */
  --c-teal-bright:  #1b5a82; /* Brand Blue Bright */
  --c-teal-dim:     #dcecf7; /* Very soft brand blue tint */
  
  --c-white:        #0f172a; /* Primary Navy Text */
  --c-grey-1:       #3e4e5e; /* Muted blue-grey text */
  --c-grey-2:       #6e8092; /* Lighter blue-grey text */
  --c-rule:         #e2ecf5;

  --c-nav-bg:       rgba(240, 244, 248, 0.85);
  --glass-bg:       rgba(255, 255, 255, 0.75);
  --glass-border:   rgba(15, 70, 104, 0.08);
  --c-shadow:       rgba(15, 70, 104, 0.04);
  --c-shadow-hover: rgba(15, 70, 104, 0.1);
  --c-shadow-btn:   rgba(15, 70, 104, 0.2);

  --c-btn-text:     #ffffff; /* Light text for dark blue button in light mode */
  --c-btn-glow:     rgba(15, 70, 104, 0.3);
  --c-btn-outline-hover: rgba(15, 70, 104, 0.08);
  --c-btn-outline-glow: rgba(15, 70, 104, 0.15);

  --logo-display-light: none;
  --logo-display-dark: block;
  --logo-opacity:   0.9;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1.05rem;
  --text-lg:   1.15rem;
  --text-xl:   1.35rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  clamp(2.5rem, 4vw, 3.5rem);
  --text-5xl:  clamp(3rem, 5vw, 4.5rem);
  --text-hero: clamp(4rem, 8vw, 7.5rem);

  --space-1: 0.25rem;   --space-2: 0.5rem;    --space-3: 0.75rem;
  --space-4: 1rem;      --space-6: 1.5rem;    --space-8: 2rem;
  --space-10: 2.5rem;   --space-12: 3rem;     --space-16: 4rem;
  --space-20: 5rem;     --space-24: 6rem;     --space-32: 8rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Luminous Prestige Dark Mode (System Fallback) */
    --c-bg:           #0e1515;
    --c-surface:      #161d1d;
    --c-surface-2:    #1a2121;
    --c-border:       #3b4949;
    --c-border-subtle:#242b2b;
    --c-teal:         #47eaed;
    --c-teal-bright:  #5af8fb;
    --c-teal-dim:     #005354;
    
    --c-white:        #dde4e3;
    --c-grey-1:       #bac9c9;
    --c-grey-2:       #859493;
    --c-rule:         #2f3636;

    --c-nav-bg:       rgba(14, 21, 21, 0.7);
    --glass-bg:       rgba(47, 54, 54, 0.4);
    --glass-border:   rgba(133, 148, 147, 0.2);
    --c-shadow:       rgba(0, 0, 0, 0.5);
    --c-shadow-hover: rgba(0, 0, 0, 0.8);
    --c-shadow-btn:   rgba(71, 234, 237, 0.3);

    --c-btn-text:     #003738; /* Dark green text for bright teal button in dark mode */
    --c-btn-glow:     rgba(71, 234, 237, 0.3);
    --c-btn-outline-hover: rgba(71, 234, 237, 0.1);
    --c-btn-outline-glow: rgba(71, 234, 237, 0.15);

    --logo-display-light: block;
    --logo-display-dark: none;
    --logo-opacity:   1;
  }
}

/* Explicit Light Mode Override */
html.light {
  --c-bg:           #f0f4f8; /* Soft premium ice blue */
  --c-surface:      #ffffff;
  --c-surface-2:    #ffffff; /* Alternating sections are white */
  --c-border:       #d2dfeb; /* Soft blue-grey border */
  --c-border-subtle:#e1ebf5;
  --c-teal:         #0f4668; /* Brand Blue */
  --c-teal-bright:  #1b5a82; /* Brand Blue Bright */
  --c-teal-dim:     #dcecf7; /* Very soft brand blue tint */
  
  --c-white:        #0f172a;
  --c-grey-1:       #3e4e5e; /* Muted blue-grey text */
  --c-grey-2:       #6e8092; /* Lighter blue-grey text */
  --c-rule:         #e2ecf5;

  --c-nav-bg:       rgba(240, 244, 248, 0.85);
  --glass-bg:       rgba(255, 255, 255, 0.75);
  --glass-border:   rgba(15, 70, 104, 0.08);
  --c-shadow:       rgba(15, 70, 104, 0.04);
  --c-shadow-hover: rgba(15, 70, 104, 0.1);
  --c-shadow-btn:   rgba(15, 70, 104, 0.2);

  --c-btn-text:     #ffffff; /* Light text for dark blue button in light mode */
  --c-btn-glow:     rgba(15, 70, 104, 0.3);
  --c-btn-outline-hover: rgba(15, 70, 104, 0.08);
  --c-btn-outline-glow: rgba(15, 70, 104, 0.15);

  --logo-display-light: none;
  --logo-display-dark: block;
  --logo-opacity:   0.9;
}

/* Explicit Dark Mode Override */
html.dark {
  --c-bg:           #0e1515;
  --c-surface:      #161d1d;
  --c-surface-2:    #1a2121;
  --c-border:       #3b4949;
  --c-border-subtle:#242b2b;
  --c-teal:         #47eaed;
  --c-teal-bright:  #5af8fb;
  --c-teal-dim:     #005354;
  
  --c-white:        #dde4e3;
  --c-grey-1:       #bac9c9;
  --c-grey-2:       #859493;
  --c-rule:         #2f3636;

  --c-nav-bg:       rgba(14, 21, 21, 0.7);
  --glass-bg:       rgba(47, 54, 54, 0.4);
  --glass-border:   rgba(133, 148, 147, 0.2);
  --c-shadow:       rgba(0, 0, 0, 0.5);
  --c-shadow-hover: rgba(0, 0, 0, 0.8);
  --c-shadow-btn:   rgba(71, 234, 237, 0.3);

  --c-btn-text:     #003738; /* Dark green text for bright teal button in dark mode */
  --c-btn-glow:     rgba(71, 234, 237, 0.3);
  --c-btn-outline-hover: rgba(71, 234, 237, 0.1);
  --c-btn-outline-glow: rgba(71, 234, 237, 0.15);

  --logo-display-light: block;
  --logo-display-dark: none;
  --logo-opacity:   1;
}



/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--c-white);
  background: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}

body.loaded {
  visibility: visible;
  transition: opacity 0.2s ease;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Typography Constraints */
p {
  color: var(--c-grey-1);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  max-width: 65ch; /* Optimal reading length */
  letter-spacing: -0.01em;
}
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: 'EB Garamond', serif;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.content-subheading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--c-white);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.content-subheading:first-child {
  margin-top: 0;
}


/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* Base state — applied via JS before page paint */
.reveal,
.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.revealed,
.reveal-child.revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Stagger delays for reveal-group children */
.reveal-group .reveal-child:nth-child(1) { transition-delay: 0.05s; }
.reveal-group .reveal-child:nth-child(2) { transition-delay: 0.12s; }
.reveal-group .reveal-child:nth-child(3) { transition-delay: 0.2s; }
.reveal-group .reveal-child:nth-child(4) { transition-delay: 0.28s; }
.reveal-group .reveal-child:nth-child(5) { transition-delay: 0.36s; }


/* Hero entrance — CSS only, no JS needed */
.hero-headline { animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.hero-sub { animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both; }
.hero-cta { animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Navigation CSS */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 900;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  height: 72px;
  background-color: var(--c-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px var(--c-shadow);
  border-bottom: 1px solid var(--c-border-subtle);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.4s ease;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 36px;
  width: auto;
  opacity: var(--logo-opacity);
  transition: opacity 0.3s;
  object-fit: contain;
}
.nav-logo:hover img {
  opacity: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-grey-1);
  transition: color 0.3s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2) 0;
  font-weight: 500;
}
.nav-link:hover {
  color: var(--c-white);
}
.nav-link.active {
  color: var(--c-accent, #00dcbe);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-teal);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  min-width: 260px;
  padding: var(--space-4) 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  box-shadow: 0 16px 48px var(--c-shadow);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}
.nav-dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  color: var(--c-grey-1);
  transition: background 0.2s, color 0.2s, padding-left 0.3s;
  font-weight: 400;
}
.nav-dropdown-menu a:hover {
  color: var(--c-white);
  background: var(--c-surface-2);
  padding-left: calc(var(--space-8) + var(--space-2));
}

.nav-cta {
  border: 1px solid var(--c-teal);
  border-radius: 2px;
  color: var(--c-teal);
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--c-teal);
  color: var(--c-surface);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--c-shadow-btn);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-white);
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--c-nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-24) var(--space-8) var(--space-8);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: var(--space-8);
  background: transparent;
  border: none;
  color: var(--c-white);
  font-size: var(--text-2xl);
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.mobile-nav-links a {
  font-family: 'EB Garamond', serif;
  font-size: var(--text-3xl);
  color: var(--c-white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open .mobile-nav-links a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-cta {
  margin-top: var(--space-12);
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: var(--text-xs) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-teal) !important;
  border: 1px solid var(--c-teal);
  padding: var(--space-3) var(--space-8);
  text-align: center;
  align-self: flex-start;
  border-radius: 2px;
}

/* Ambient Shimmer Effect */
@keyframes slowShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HERO Homepage */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, var(--c-teal-dim), transparent);
  background-size: 200% 200%;
  animation: slowShimmer 15s ease infinite;
  opacity: 0.3;
  pointer-events: none;
}
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 0 var(--space-8);
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-teal-bright);
  margin-bottom: var(--space-6);
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}
.hero-headline {
  font-size: var(--text-hero);
  line-height: 1.05;
  margin-bottom: var(--space-8);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-grey-1);
  max-width: 600px;
  margin: 0 auto var(--space-12) auto;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--c-accent, #00dcbe));
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* STATS BAR */
.stats-bar {
  background: var(--c-surface-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-16) 0;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  border-right: 1px solid var(--c-border);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  background: transparent;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--c-teal);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}
.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(71, 234, 237, 0.02);
}
.stat-item:hover::after {
  width: 40px;
}
.stat-item:hover .stat-number {
  color: var(--c-teal);
}
.stat-number {
  display: block;
  font-family: 'EB Garamond', serif;
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-weight: 400;
  color: var(--c-teal-bright);
  margin-bottom: var(--space-3);
  transition: color 0.4s ease;
  white-space: nowrap;
}
.stat-number-text {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  letter-spacing: -0.02em;
  font-weight: 400;
}
.stat-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-grey-2);
  font-weight: 600;
  transition: color 0.4s ease;
}
.stat-item:hover .stat-label {
  color: var(--c-white);
}

/* ABOUT */
.about-section {
  padding: var(--space-32) 0;
  background: var(--c-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-20);
  align-items: start;
}
.about-quote blockquote {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-white);
  line-height: 1.3;
  border-left: 2px solid var(--c-teal);
  padding-left: var(--space-8);
  margin: 0;
  letter-spacing: -0.01em;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pillar {
  border-top: 1px solid var(--c-accent, #00dcbe);
  padding-top: 1.25rem;
}
.pillar h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-teal-bright);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

/* VALUES */
.values-section {
  padding: var(--space-32) 0;
  background: var(--c-surface-2);
  border-top: 1px solid var(--c-border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.value-number {
  display: block;
  font-family: 'Inter', system-ui, sans-serif; font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
  font-size: var(--text-sm);
  color: var(--c-teal);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
}
.strategy-card, .value-item {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: var(--space-10) var(--space-8);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--c-shadow);
  position: relative;
  overflow: hidden;
}
.strategy-card::before, .value-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--c-shadow-btn), transparent 70%);
  pointer-events: none;
}
.strategy-card:hover, .value-item:hover {
  border-color: var(--c-teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--c-shadow-hover);
}

.value-item h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

/* STRATEGIES */
.strategies-section {
  padding: var(--space-32) 0;
  background: var(--c-bg);
}
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.card-icon {
  display: block;
  margin-bottom: var(--space-4);
  opacity: 0.9;
}
.strategy-number {
  font-family: 'Inter', system-ui, sans-serif; font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
  font-size: var(--text-xs);
  color: var(--c-teal);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-8);
}
.strategy-card h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.strategy-card p {
  font-size: var(--text-sm);
  flex-grow: 1;
}
.card-link {
  display: inline-block;
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  color: var(--c-teal-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* INNER PAGES */
.page-hero {
  position: relative;
  padding: 160px 0 80px 0;
  background: var(--c-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--c-teal-dim), transparent, transparent);
  opacity: 0.4;
  pointer-events: none;
}
.page-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}
.page-hero-headline {
  font-family: 'EB Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  color: var(--c-white);
}
.page-hero-sub {
  font-size: var(--text-xl);
  color: var(--c-grey-1);
}

.content-section {
  padding: var(--space-32) 0;
  border-bottom: 1px solid var(--c-rule);
}
.content-section:nth-child(even) {
  background: var(--c-surface-2);
}
.section-number {
  font-family: 'Inter', system-ui, sans-serif; font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--space-8);
  display: block;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-20);
  align-items: start;
}
.col-heading h2 {
  font-size: var(--text-4xl);
  position: sticky;
  top: var(--space-32);
  letter-spacing: -0.01em;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
  line-height: 1.6;
  display: flex;
  gap: var(--space-6);
  align-items: baseline;
}
.feature-list li:first-child {
  border-top: 1px solid rgba(128, 128, 128, 0.15);
}
.feature-list li::before {
  content: '—';
  color: var(--c-teal);
  font-family: 'Inter', system-ui, sans-serif; font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
  flex-shrink: 0;
}
.feature-list strong {
  color: var(--c-white);
  font-weight: 500;
}
.feature-list.aligned-list li {
  display: grid;
  grid-template-columns: auto var(--label-width, 240px) 1fr;
  align-items: baseline;
  gap: var(--space-2) var(--space-6);
}
.feature-list.aligned-list li::before {
  grid-column: 1;
}
.feature-list.aligned-list .feature-label {
  grid-column: 2;
  color: var(--c-white);
  font-weight: 500;
}
.feature-list.aligned-list .feature-value {
  grid-column: 3;
}
@media (max-width: 768px) {
  .feature-list.aligned-list li {
    grid-template-columns: auto 1fr;
    gap: var(--space-1) var(--space-4);
  }
  .feature-list.aligned-list .feature-label {
    grid-column: 2;
  }
  .feature-list.aligned-list .feature-value {
    grid-column: 2;
  }
}
.content-image {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
}
.page-cta-banner {
  padding: var(--space-32) 0;
  text-align: center;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.page-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--c-teal-dim) 0%, transparent 60%);
  opacity: 0.3;
  pointer-events: none;
}
.page-cta-banner p {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto var(--space-8);
  text-align: center;
  color: var(--c-white);
  line-height: 1.2;
}

/* Infrastructure grid */
.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-12);
}
.infra-item h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}
.infra-item .content-image-container {
  margin-bottom: var(--space-6);
}
.infra-item .content-image {
  height: 220px;
  max-height: 220px;
  margin-bottom: 0;
  margin-top: 0;
  object-fit: cover;
  display: block;
  width: 100%;
}

/* Advisory grid — Capital Solutions section 02 */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.advisory-item {
  background: var(--glass-bg);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: var(--space-8);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.advisory-item:hover {
  border-color: var(--c-teal-bright);
  box-shadow: 0 4px 24px var(--c-shadow-hover);
}
.advisory-number {
  display: block;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--c-teal-bright);
  margin-bottom: var(--space-4);
  line-height: 1;
}
.advisory-item h3 {
  font-family: 'EB Garamond', serif;
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.advisory-item p {
  color: var(--c-grey-1);
  font-size: var(--text-base);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .advisory-grid { grid-template-columns: 1fr; }
}

/* Shared Utility CSS */
.section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: var(--space-6);
  display: block;
  font-weight: 500;
}
h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-8);
  letter-spacing: -0.01em;
}

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-10);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

@keyframes shimmer {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
  100% { filter: brightness(1); }
}

.btn-primary {
  background: var(--c-teal);
  color: var(--c-btn-text);
  border: 1px solid var(--c-teal);
}
.btn-primary:hover {
  background: var(--c-teal-bright);
  border-color: var(--c-teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--c-btn-glow);
  animation: shimmer 3s infinite ease-in-out;
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid var(--c-border);
}
.btn-outline:hover {
  background: var(--c-btn-outline-hover);
  border-color: var(--c-teal);
  color: var(--c-teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--c-btn-outline-glow);
}

.rule {
  height: 1px;
  background: var(--c-border);
  border: none;
  margin: var(--space-20) 0;
}

/* Contact Section */
.contact-section {
  background: var(--c-surface-2);
  border-top: 1px solid var(--c-border);
  padding: var(--space-32) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
}
.contact-info h2 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-10);
}
.contact-details p {
  margin-bottom: var(--space-4);
}
.contact-details a {
  color: var(--c-white);
  transition: color 0.3s;
  font-weight: 500;
}
.contact-details a:hover {
  color: var(--c-teal-bright);
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-6);
  transition: transform 0.3s ease;
}
.linkedin-link:hover {
  transform: translateY(-2px);
}
.linkedin-link img {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  background: var(--c-surface);
  padding: var(--space-10);
  border-radius: 4px;
  box-shadow: 0 10px 40px var(--c-shadow);
  border: 1px solid var(--c-border);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.form-field label {
  font-size: var(--text-sm);
  color: var(--c-grey-1);
  font-weight: 500;
}
.form-field input, .form-field textarea {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  color: var(--c-white);
  padding: var(--space-4);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-base);
  border-radius: 2px;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-field input {
  width: 100%;
  box-sizing: border-box;
}
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
  max-height: 400px;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--c-teal);
  outline: none;
  background: var(--c-surface);
  box-shadow: 0 0 16px var(--c-shadow-btn);
}
.contact-form .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: var(--space-4);
}

/* Footer */
.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: var(--space-20) 0 var(--space-10) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer-col h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--space-2);
}
.footer-col p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--c-grey-1);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: var(--space-3);
}
.footer-col ul li a {
  font-size: var(--text-sm);
  color: var(--c-grey-2);
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: var(--c-teal-bright);
}
.footer-logo img {
  height: 28px;
  width: auto;
  opacity: var(--logo-opacity);
  transition: opacity 0.3s;
  object-fit: contain;
}
.footer-logo:hover img {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--c-grey-2);
  margin: 0;
}
.footer-legal-links {
  display: flex;
  gap: var(--space-6);
}
.footer-legal-links a {
  font-size: var(--text-xs);
  color: var(--c-grey-2);
  transition: color 0.3s ease;
}
.footer-legal-links a:hover {
  color: var(--c-teal-bright);
}

/* Responsiveness */
/* Responsiveness */
@media (max-width: 1024px) {
  /* Navigation Breakpoint Optimization */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content {
    text-align: left;
    max-width: 900px;
    padding-left: 10%;
  }
  .strategies-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: var(--space-4) 0;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--c-border);
  }
  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .about-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .about-pillars { grid-template-columns: 1fr; }
  .col-heading h2 { position: static; margin-bottom: var(--space-6); }
  .section-number { margin-bottom: var(--space-4); }
  .hero-headline { font-size: clamp(3.5rem, 8vw, 5rem); }
}

@media (max-width: 768px) {
  /* Container Padding Optimization */
  .container {
    padding: 0 var(--space-4);
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .strategies-grid { grid-template-columns: 1fr; }
  /* Collapse infrastructure grid to single column on tablet to prevent narrow 36px heading overlaps */
  .infrastructure-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Portfolio Metrics Optimization */
  .portfolio-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-headline { font-size: clamp(3rem, 12vw, 4rem); }
  .page-hero-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .contact-form { padding: var(--space-6); }
  .hero-content { padding-top: var(--space-20); }
}

@media (max-width: 480px) {
  .stats-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  /* Infrastructure grid collapse inherited from 768px block */
  .stats-grid {
    gap: 0;
  }
  .stat-item {
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid var(--c-border) !important;
    padding: var(--space-4) 0;
  }
  .stat-item:last-child {
    border-bottom: none !important;
  }

  /* Portfolio Metrics single column on mobile */
  .portfolio-metrics {
    grid-template-columns: 1fr;
  }
}

/* Background Brand Layers for Section Transitions */
.bg-brand-layer {
  position: relative;
  z-index: 1;
}
.bg-brand-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/light-is-stream-photons-specific-frequency-band.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
}

.contact-section.bg-brand-layer::before {
  background-image: url('assets/images/blurred-night-lights.jpg');
  opacity: 0.06;
}

/* Add transition fade overlapping */
.content-section {
  position: relative;
}
.content-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--c-surface-2));
  pointer-events: none;
  z-index: 0;
}
.content-section:nth-child(even)::after {
  background: linear-gradient(to bottom, transparent, var(--c-bg));
}

/* Premium Polish Utilities & Refinements */

/* Logo Display Helpers */
.logo-light {
  display: var(--logo-display-light) !important;
}
.logo-dark {
  display: var(--logo-display-dark) !important;
}

/* Theme Toggle Button */
/* theme-toggle-btn styles removed — button replaced by system preference */

/* Form refinement - Avoid layout shifts */
.form-field input, .form-field textarea {
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image Zoom & Parallax container */
.content-image-container {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  position: relative;
  width: 100%;
  line-height: 0;  /* kills descender gap */
  box-shadow: 0 8px 32px var(--c-shadow);
}
.content-image-container .content-image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.content-image-container:hover .content-image {
  transform: scale(1.03);
}

/* Lucide Stat and Strategy Icons consistent alignment */
.stat-icon svg, .card-icon {
  width: 28px;
  height: 28px;
  stroke: var(--c-teal);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke 0.3s ease, transform 0.3s ease;
}
.strategy-card:hover .card-icon {
  stroke: var(--c-teal-bright);
  transform: scale(1.05);
}

/* Real Assets Accordion (Safari-Optimized Grid Transition) */
.ra-accordion {
  border-top: 1px solid var(--c-border);
}
.ra-accordion-item {
  border-bottom: 1px solid var(--c-border);
}
.ra-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--c-white);
  transition: color 0.25s ease;
}
.ra-accordion-trigger:hover {
  color: var(--c-teal-bright);
}
.ra-acc-num {
  font-family: 'EB Garamond', serif;
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--c-teal-bright);
  min-width: 40px;
  flex-shrink: 0;
  line-height: 1;
}
.ra-acc-title {
  font-family: 'EB Garamond', serif;
  font-size: var(--text-3xl);
  font-weight: 500;
  flex: 1;
  line-height: 1.2;
  color: inherit;
  transition: color 0.25s ease;
}
.ra-acc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--c-grey-1);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.ra-accordion-trigger:hover .ra-acc-icon {
  border-color: var(--c-teal);
  color: var(--c-teal-bright);
  background: var(--c-shadow-btn);
}
.ra-acc-icon .icon-vert {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform-origin: center;
}
.ra-accordion-item.open .ra-acc-icon .icon-vert {
  transform: scaleY(0);
  opacity: 0;
}
.ra-accordion-item.open .ra-acc-title {
  color: var(--c-teal-bright);
}
.ra-accordion-item.open .ra-acc-icon {
  border-color: var(--c-teal);
  color: var(--c-teal-bright);
  background: var(--c-shadow-btn);
}

/* Optimized Height Transition & Safari clipping/jank fixes */
.ra-accordion-body {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  /* Stacking context & GPU promotion for lag-free Safari transitions */
  transform: translateZ(0);
  will-change: height;
}
.ra-accordion-item.open .ra-accordion-body {
  visibility: visible;
}
.ra-acc-inner {
  padding-bottom: var(--space-10);
  padding-left: calc(40px + var(--space-6));
}
.ra-acc-inner > p {
  font-size: var(--text-base);
  color: var(--c-grey-1);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: var(--space-8);
}
.ra-acc-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.ra-acc-detail {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: var(--space-6);
}
.ra-acc-detail-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--space-2);
  border-bottom: 1px solid var(--c-border);
  padding-bottom: var(--space-2);
}
.ra-acc-detail p {
  font-size: var(--text-sm);
  color: var(--c-grey-1);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .ra-acc-items {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .ra-acc-inner {
    padding-left: 0;
  }
  .ra-acc-title {
    font-size: var(--text-2xl);
  }
}


/* Team Section Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.team-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: var(--space-10);
  display: flex;
  gap: var(--space-8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px var(--c-shadow);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--c-shadow-btn), transparent 70%);
  pointer-events: none;
}

.team-card:hover {
  border-color: var(--c-teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--c-shadow-hover);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--c-teal-bright);
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px var(--c-shadow);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-avatar {
  background: var(--c-teal);
  color: #003738;
  border-color: var(--c-teal);
}

.team-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-role {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-teal-bright);
  margin-bottom: var(--space-1);
}

.team-name {
  font-size: var(--text-2xl);
  color: var(--c-white);
  margin-bottom: var(--space-3);
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--c-grey-1);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.team-bio-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-top: 1px solid var(--c-border-subtle);
  padding-top: var(--space-4);
}

.team-bio-bullets li {
  font-size: var(--text-xs);
  color: var(--c-grey-1);
  line-height: 1.4;
  display: flex;
  gap: var(--space-2);
  align-items: baseline;
}

.team-bio-bullets li::before {
  content: '▪';
  color: var(--c-teal);
  font-size: 8px;
  flex-shrink: 0;
}

/* Portfolio Exposure Metrics Styles */
.portfolio-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
  border-top: 1px solid var(--c-border-subtle);
  padding-top: var(--space-6);
}

.metric-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  background: var(--c-surface);
  border: 1px solid var(--c-border-subtle);
  padding: var(--space-3);
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.portfolio-item:hover .metric-box {
  border-color: var(--c-border);
}

.metric-val {
  font-family: 'Inter', system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-teal-bright);
}

.metric-lbl {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-grey-2);
  font-weight: 500;
}

.portfolio-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--text-xs);
  color: var(--c-grey-1);
  margin-top: var(--space-4);
  font-weight: 500;
}

.portfolio-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c-teal-bright);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Footer & Team Grid Responsiveness */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--space-8);
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-8);
  }
  .team-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
}

