@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Barlow:wght@400;600;700;800;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  /* Brand & Aurora Colors */
  --tz-green: #3FAA61;
  --tz-green-alt: #40AB61;
  --tz-green-bright: #10B981;
  --tz-dark-blue: #12274A;

  /* Aurora Gradient Spectrum */
  --aurora-indigo: #4F46E5;
  --aurora-purple: #7C3AED;
  --aurora-coral: #F97316;
  --aurora-blue: #0284C7;
  --aurora-cyan: #06B6D4;
  --aurora-bg-dark: #12274A;

  /* Light Theme Surfaces */
  --tz-bg-light: #F8FAFC;
  --tz-card-white: #FFFFFF;
  --tz-card-subtle: #F1F5F9;

  /* Text Palette */
  --tz-text-heading: #FFFFFF;
  --tz-text-body: rgba(255, 255, 255, 0.85);
  --tz-text-muted: rgba(255, 255, 255, 0.65);
  --tz-text-white: #FFFFFF;
  --tz-text-white-subtle: rgba(255, 255, 255, 0.85);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-main: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;

  /* Radius & Shadows */
  --radius-pill: 9999px;
  --radius-card: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-aurora-card: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
  --shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.35);
  --shadow-glow: 0 10px 30px rgba(63, 170, 97, 0.25);

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-display);
  background-color: var(--tz-dark-blue);
  color: var(--tz-text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Canvas — sits ABOVE section backgrounds, BELOW content cards */
#bodyBackgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
  opacity: 0.60;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section-padding {
  padding: 5rem 0;
  position: relative;
  z-index: 3;
}

/* Experiment Theme Badge */
.exp-label {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.5px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--tz-green-bright);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  white-space: nowrap;
}

/* Aurora Fluid Header Navbar */
/* Navbar base & theme lock */
.aurora-navbar,
body.theme-light .aurora-navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  padding: 0.95rem 0 !important;
  background: rgba(18, 39, 74, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  transition: var(--transition) !important;
}

.aurora-navbar.scrolled,
body.theme-light .aurora-navbar.scrolled {
  padding: 0.68rem 0 !important;
  background: rgba(18, 39, 74, 0.98) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.aurora-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aurora-brand img,
body.theme-light .aurora-brand img {
  height: 38px !important;
  width: auto !important;
  display: block !important;
  filter: none !important;
  opacity: 1 !important;
}

.aurora-nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.aurora-nav-links a,
body.theme-light .aurora-nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
  transition: var(--transition);
  padding: 0.35rem 0.65rem;
  border-radius: 0;
  background: transparent !important;
}

.aurora-nav-links a:hover,
.aurora-nav-links a.active,
body.theme-light .aurora-nav-links a:hover,
body.theme-light .aurora-nav-links a.active {
  color: #3FAA61 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.pill-btn-outline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: #FFFFFF !important;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  background: #3FAA61 !important;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(63, 170, 97, 0.35);
}

.pill-btn-outline:hover {
  background: #338B4E !important;
  color: #FFFFFF !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(63, 170, 97, 0.5);
}

.pill-btn-white {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF !important;
  background: #3FAA61 !important;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(63, 170, 97, 0.35);
  border: none;
  cursor: pointer;
}

.pill-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(63, 170, 97, 0.55);
  background: #338B4E !important;
  color: #FFFFFF !important;
}

/* Page Hero Banner */
.page-hero {
  position: relative;
  padding-top: 135px;
  padding-bottom: 35px;
  text-align: center;
  background: #12274A;
  color: #FFFFFF;
  z-index: 10;
}

.page-hero + .portfolio-section {
  padding-top: 1rem !important;
}

.page-hero + .portfolio-section .portfolio-sticky-header-container {
  margin-bottom: 2rem !important;
}

.page-hero-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.page-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

/* Aurora Hero Section - Deep Professional Dark Navy VC Background */
.aurora-hero {
  position: relative;
  min-height: 85vh;
  padding-top: 140px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0F1C36;
  color: #FFFFFF;
  overflow: hidden;
  z-index: 4;
}

/* HCMC Night Skyline Background Layer in Hero */
.hero-skyline-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Left & Right side fade masks to guarantee zero vertical edges */
.hero-skyline-bg::before,
.hero-skyline-bg::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  z-index: 2;
  pointer-events: none;
}

.hero-skyline-bg::before {
  left: 0;
  background: linear-gradient(to right, #0F1C36 0%, rgba(15, 28, 54, 0) 100%);
}

.hero-skyline-bg::after {
  right: 0;
  background: linear-gradient(to left, #0F1C36 0%, rgba(15, 28, 54, 0) 100%);
}

.hero-skyline-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0.95;
  filter: contrast(1.1) brightness(1.0);
  -webkit-mask-image: radial-gradient(ellipse 55% 85% at 50% 68%, #000 15%, transparent 78%);
  mask-image: radial-gradient(ellipse 55% 85% at 50% 68%, #000 15%, transparent 78%);
}

.hero-skyline-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(180deg, 
    rgba(18, 39, 74, 0.45) 0%, 
    rgba(18, 39, 74, 0.1) 50%, 
    rgba(18, 39, 74, 0.5) 100%);
}

/* Warm horizon glow at bottom of hero */
.aurora-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(to top, 
    rgba(140, 95, 25, 0.32) 0%, 
    rgba(200, 130, 30, 0.12) 25%, 
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-orbit-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-orbit-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-orbit-svg path,
.orbit-path {
  fill: none !important;
}

#heroParticleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.aurora-hero-content {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.aurora-hero-badge {
  display: inline-block;
  padding: 0.45rem 1.25rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.aurora-hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.8px;
  margin-bottom: 1.35rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-highlight,
.gradient-text,
.aurora-hero-title span {
  color: #FFFFFF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background-clip: unset !important;
}

.aurora-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 2.2rem;
}

/* Floating Hero Key Highlights Bento Container */
.floating-hero-card-container {
  position: relative;
  z-index: 20;
  margin-top: -60px;
  margin-bottom: 2.5rem;
}

.floating-hero-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3.2rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: #0F172A;
}

.floating-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.floating-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.floating-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ECFDF5 0%, #EFF6FF 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card-item:hover .floating-card-icon {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2);
}

.floating-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  text-align: center;
  max-width: 320px;
}

.floating-card-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
  text-align: center;
  max-width: 320px;
  font-weight: 450;
}

/* ======================================================================
   MANAGED VC FUNDS TIMELINE SECTION
   ====================================================================== */
.funds-section {
  position: relative;
  z-index: 3;
  background: rgba(18, 39, 74, 0.30);
  color: #FFFFFF;
}

.funds-sticky-header-container {
  position: sticky;
  top: 65px;
  z-index: 90;
  background: rgba(18, 39, 74, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.2rem 0 1.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-vertical-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #F59E0B 0%, #10B981 33%, #EF4444 66%, #2563EB 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  z-index: 2;
  opacity: 0.42;
  filter: blur(2.5px);
  transform: scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), filter 0.45s cubic-bezier(0.4,0,0.2,1), transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.timeline-item.active {
  opacity: 1 !important;
  filter: blur(0px) !important;
  transform: scale(1) !important;
}

/* Node wrapper is a flex item that sits on the spine line */
.timeline-node-wrapper {
  flex: 0 0 16%;
  width: 16%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  min-height: 60px;
}

.timeline-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #64748B;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
  flex-shrink: 0;
  transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
}

.timeline-item.active .timeline-node,
.timeline-node.active {
  background: #10B981 !important;
  border: 3.5px solid #FFFFFF !important;
  box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.32), 0 0 22px rgba(16, 185, 129, 0.55) !important;
  transform: scale(1.4) !important;
}

/* Symmetrical layout: 42% card | 16% node | 42% date */
.timeline-counter-date {
  width: 42%;
  flex: 0 0 42%;
  padding: 0;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: #3FAA61 !important;
  letter-spacing: -0.5px;
  text-shadow: none !important;
  transition: all 0.45s ease;
}

/* .timeline-spine is child(1), so items are:
   child(2)=TZ Fund I  → date on RIGHT → text-align: left  (closest to spine)
   child(3)=TZ Fund II → date on LEFT  → text-align: right (closest to spine)
   child(4)=BK Fund I  → date on RIGHT → text-align: left
   child(5)=Global Minds → date on LEFT → text-align: right
   So EVEN = date-right = text-align left; ODD = date-left = text-align right */
.timeline-item:nth-child(even) .timeline-counter-date {
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-counter-date {
  text-align: right;
}

.timeline-card-content {
  width: 42%;
  flex: 0 0 42%;
  padding: 1.4rem 1.6rem;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: all 0.45s ease;
  position: relative;
  z-index: 4;
}

.timeline-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.timeline-card-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.timeline-card-ticket {
  display: inline-block;
  padding: 0.38rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Fund Specific Card Themes (Shared across Dark & Light Modes) */
.timeline-card-content.tz-fund-1 {
  background: #FFFBEB !important;
  border: 1.5px solid #F59E0B !important;
  color: #1E293B !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
.tz-fund-1 .timeline-card-title { color: #92400E !important; }
.tz-fund-1 .timeline-card-desc { color: rgba(120, 53, 15, 0.75) !important; font-size: 0.82rem !important; }
.tz-fund-1 .timeline-card-ticket { background: #1E293B !important; color: #FFFFFF !important; }
.timeline-item.active .timeline-card-content.tz-fund-1 {
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4), 0 12px 35px rgba(0, 0, 0, 0.35) !important;
}

.timeline-card-content.tz-fund-2 {
  background: linear-gradient(145deg, #0B1B3D 0%, #162B57 100%) !important;
  border: 1.5px solid rgba(16, 185, 129, 0.4) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
.tz-fund-2 .timeline-card-title { color: #FFFFFF !important; }
.tz-fund-2 .timeline-card-desc { color: rgba(255, 255, 255, 0.68) !important; font-size: 0.82rem !important; }
.tz-fund-2 .timeline-card-ticket { background: #10B981 !important; color: #FFFFFF !important; }
.timeline-item.active .timeline-card-content.tz-fund-2 {
  border-color: #10B981 !important;
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.5), 0 12px 35px rgba(0, 0, 0, 0.35) !important;
}

.timeline-card-content.bk-fund-1 {
  background: linear-gradient(145deg, #7F1D1D 0%, #B21F24 100%) !important;
  border: 1.5px solid rgba(245, 158, 11, 0.5) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
.bk-fund-1 .timeline-card-title { color: #FFFFFF !important; }
.bk-fund-1 .timeline-card-desc { color: rgba(255, 255, 255, 0.70) !important; font-size: 0.82rem !important; }
.bk-fund-1 .timeline-card-ticket { background: #F59E0B !important; color: #FFFFFF !important; font-weight: 800 !important; }
.timeline-item.active .timeline-card-content.bk-fund-1 {
  border-color: #F59E0B !important;
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.5), 0 12px 35px rgba(0, 0, 0, 0.35) !important;
}

.timeline-card-content.global-minds {
  background: linear-gradient(145deg, #0F2042 0%, #1A346B 100%) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.5) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
.global-minds .timeline-card-title { color: #FFFFFF !important; }
.global-minds .timeline-card-desc { color: rgba(255, 255, 255, 0.68) !important; font-size: 0.82rem !important; }
.global-minds .timeline-card-ticket { background: #2563EB !important; color: #FFFFFF !important; }
.timeline-item.active .timeline-card-content.global-minds {
  border-color: #2563EB !important;
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.5), 0 12px 35px rgba(0, 0, 0, 0.35) !important;
}

/* Funds Specification Grid */

.funds-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fund-detail-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem 2.2rem;
  backdrop-filter: blur(16px);
}

.fund-detail-header {
  margin-bottom: 1.5rem;
}

.fund-detail-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.fund-detail-badge.deployed { background: #FEF3C7; color: #92400E; }
.fund-detail-badge.active { background: #D1FAE5; color: #065F46; }
.fund-detail-badge.flagship { background: #DBEAFE; color: #1E40AF; }

.fund-detail-year {
  font-size: 0.85rem;
  color: var(--tz-green-bright);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.fund-detail-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF !important;
}

.fund-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.fund-spec-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
}

.fund-spec-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fund-spec-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* ======================================================================
   PORTFOLIO SECTION & CONTROL GROUP
   ====================================================================== */
.portfolio-section {
  position: relative;
  z-index: 3;
  background: rgba(18, 39, 74, 0.30);
  color: #FFFFFF;
}

.portfolio-sticky-header-container {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(18, 39, 74, 0.98);
  backdrop-filter: blur(24px);
  padding: 1.25rem 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-unified-control-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.portfolio-search-box {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.portfolio-search-box .search-icon {
  position: absolute;
  left: 1.1rem;
  font-size: 1rem;
  opacity: 0.7;
}

.portfolio-search-input {
  width: 100%;
  padding: 0.85rem 1.2rem 0.85rem 2.8rem;
  background: rgba(18, 39, 74, 0.80);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.portfolio-search-input:focus {
  border-color: var(--tz-green-bright);
  background: rgba(18, 39, 74, 0.95);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.25);
}

.portfolio-search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.portfolio-dropdown-box {
  width: 220px;
}

.portfolio-sector-select {
  width: 100%;
  padding: 0.85rem 2.8rem 0.85rem 1.2rem;
  background: rgba(18, 39, 74, 0.80);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

.portfolio-sector-select:focus {
  border-color: var(--tz-green-bright);
  background-color: rgba(18, 39, 74, 0.95);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.portfolio-sector-select option {
  background: #12274A;
  color: #FFFFFF;
}

.portfolio-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.portfolio-clean-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 1.2rem;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.portfolio-clean-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--tz-green-bright);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.portfolio-clean-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.portfolio-logo-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

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

.exit-clean-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.exit-clean-badge.partial-exit { background: #FEF3C7; color: #92400E; }
.exit-clean-badge.full-exit { background: #FEE2E2; color: #991B1B; }
.exit-clean-badge.co-invest { background: #DBEAFE; color: #1E40AF; }

.portfolio-clean-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.25rem;
}

.portfolio-clean-sector {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #10B981;
  margin-bottom: 0.85rem;
}

.portfolio-clean-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-clean-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.portfolio-why-invest-btn,
.portfolio-visit-site-btn {
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: #0F172A;
  transition: var(--transition);
}

.portfolio-why-invest-btn {
  color: #10B981;
}

.portfolio-why-invest-btn:hover {
  text-decoration: underline;
}

.portfolio-visit-site-btn {
  background: #10B981;
  color: #FFFFFF;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}

.portfolio-visit-site-btn:hover {
  background: #059669;
  color: #FFFFFF;
}

.portfolio-why-invest-disabled {
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.35);
}

/* ======================================================================
   TEAM SECTION & FILTER PILLS
   ====================================================================== */
#team, .team-section {
  position: relative;
  z-index: 3;
  background: rgba(18, 39, 74, 0.30);
  color: #FFFFFF;
}

.team-filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.team-filter-pill {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: var(--transition);
}

.team-filter-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.team-filter-pill.active {
  background: var(--tz-green-bright);
  border-color: var(--tz-green-bright);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.team-portrait-grid, .team-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.team-portrait-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative;
  z-index: 4;
}

.team-portrait-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border-color: var(--tz-green-bright);
}

.team-portrait-img-box {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #1E293B;
}

.team-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-portrait-card:hover .team-portrait-img {
  transform: scale(1.04);
}

.team-linkedin-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(18, 39, 74, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-linkedin-btn:hover {
  background: #0077B5;
  border-color: #0077B5;
  transform: scale(1.1);
}

.team-portrait-info {
  padding: 1.35rem;
  text-align: center;
}

.team-portrait-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.team-portrait-role {
  font-size: 0.88rem;
  color: var(--tz-green-bright);
  font-weight: 600;
}

/* ======================================================================
   INSIGHTS & BLOG PREVIEW
   ====================================================================== */
.blog-section {
  position: relative;
  z-index: 3;
  background: rgba(18, 39, 74, 0.30);
  color: #FFFFFF;
}

.blog-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.blog-clean-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  z-index: 4;
}

.blog-clean-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
  border-color: var(--tz-green-bright);
}

.blog-clean-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #E2E8F0;
}

.blog-clean-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-clean-card:hover .blog-clean-thumb img {
  transform: scale(1.05);
}

.blog-clean-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  color: #0F172A;
}

.blog-clean-cat {
  font-size: 0.78rem;
  font-weight: 800;
  color: #10B981;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.blog-clean-title {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: #0F172A;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-clean-desc {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-clean-meta {
  font-size: 0.82rem;
  color: #64748B;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  padding-top: 0.9rem;
}

/* ======================================================================
   FOUNDERS COMMUNITY & CTA SECTION
   ====================================================================== */
.founders-cta-section {
  position: relative;
  z-index: 3;
  padding: 6rem 0;
  overflow: hidden;
  background: rgba(18, 39, 74, 0.30);
  color: #FFFFFF;
}

.founders-mosaic-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 2rem;
  align-items: center;
}

.mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mosaic-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mosaic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic-photo.h-medium { height: 180px; }
.mosaic-photo.h-tall { height: 250px; }

.cta-box-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tz-logo-anim-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  pointer-events: none;
  z-index: 1;
}

.tz-logo-symbol-img {
  width: 312px;
  height: auto;
  filter:
    blur(7px)
    drop-shadow(0 0 32px rgba(16, 185, 129, 0.75))
    drop-shadow(0 0 65px rgba(16, 185, 129, 0.40));
  animation: logoPulseGlow 3.5s ease-in-out infinite alternate;
}

@keyframes logoPulseGlow {
  0%   { filter: blur(6px) drop-shadow(0 0 24px rgba(16,185,129,0.60)) drop-shadow(0 0 52px rgba(16,185,129,0.30)); }
  100% { filter: blur(8px) drop-shadow(0 0 40px rgba(16,185,129,0.90)) drop-shadow(0 0 80px rgba(16,185,129,0.50)); }
}

.cta-box-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #091738 0%, #1D4ED8 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-badge-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 1.25rem;
}

.cta-headline-text {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.55;
  color: #FFFFFF;
  margin-bottom: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.cta-pill-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: #FFFFFF !important;
  background: #3FAA61 !important;
  text-decoration: none;
  padding: 0.85rem 2.4rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 8px 24px rgba(63, 170, 97, 0.35);
  transition: var(--transition);
}

.cta-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(63, 170, 97, 0.55);
  background: #338B4E !important;
  color: #FFFFFF !important;
}

/* Footer */
.aurora-footer {
  position: relative;
  z-index: 10;
  background: #0B172E;
  color: #FFFFFF;
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--tz-green-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating Theme Switcher Button */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  padding: 4px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  border-color: var(--tz-green-bright);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.35);
}

.theme-toggle-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s ease;
  color: rgba(255, 255, 255, 0.7);
}

.theme-toggle-option.active {
  background: var(--tz-green-bright);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #FFFFFF;
  color: #0F172A;
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 23, 42, 0.06);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover { background: rgba(15, 23, 42, 0.12); }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: #0F172A; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #CBD5E1;
  font-family: var(--font-display);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--tz-green); box-shadow: 0 0 12px rgba(63, 170, 97, 0.25); }

/* Scroll to top button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 39, 74, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

/* ======================================================================
   LIGHT THEME OVERRIDES (EXCLUDING NAVBAR, FUNDS, CTA BOX, & FOOTER)
   ====================================================================== */
body.theme-light {
  background-color: #F8FAFC !important;
  color: #0F172A !important;
}

/* Hero Section - Shared Dark Navy Design for Both Dark Mode & Light Mode */
.aurora-hero,
body.theme-light .aurora-hero {
  position: relative !important;
  min-height: 85vh !important;
  padding-top: 140px !important;
  padding-bottom: 120px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: #12274A !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
  z-index: 4 !important;
}

.aurora-hero::after,
body.theme-light .aurora-hero::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 38% !important;
  background: linear-gradient(to top, 
    rgba(140, 95, 25, 0.32) 0%, 
    rgba(200, 130, 30, 0.12) 25%, 
    transparent 60%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.aurora-hero-title,
body.theme-light .aurora-hero-title {
  color: #FFFFFF !important;
  font-size: 3.8rem !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -1.8px !important;
  margin-bottom: 1.35rem !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.gradient-text,
.hero-title-highlight,
body.theme-light .gradient-text,
body.theme-light .hero-title-highlight,
body.theme-light .aurora-hero-title span {
  color: #FFFFFF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background-clip: unset !important;
  display: inline !important;
  font-weight: 900 !important;
}

.aurora-hero-subtitle,
body.theme-light .aurora-hero-subtitle {
  font-size: 1.2rem !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.65 !important;
  max-width: 720px !important;
  margin: 0 auto 2.2rem !important;
  font-weight: 400 !important;
}

.aurora-hero-badge,
body.theme-light .aurora-hero-badge {
  display: inline-block !important;
  padding: 0.45rem 1.25rem !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: var(--radius-pill) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 1.5rem !important;
  backdrop-filter: blur(10px) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

.hero-orbit-svg ellipse,
body.theme-light .hero-orbit-svg ellipse {
  stroke: rgba(255, 255, 255, 0.06) !important;
  stroke-width: 1 !important;
}

.hero-orbit-svg path,
body.theme-light .hero-orbit-svg path {
  stroke-opacity: 1 !important;
}

/* Managed VC Funds Section Light Theme Overrides */
body.theme-light .funds-section {
  background: #F8FAFC !important;
  color: #0F172A !important;
}

body.theme-light .funds-sticky-header-container {
  background: rgba(248, 250, 252, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

body.theme-light .funds-section .section-title,
body.theme-light .funds-sticky-header-container .section-title {
  color: #0F172A !important;
}

body.theme-light .funds-section .section-subtitle,
body.theme-light .funds-sticky-header-container .section-subtitle {
  color: #475569 !important;
}

body.theme-light .funds-section .section-eyebrow,
body.theme-light .funds-sticky-header-container .section-eyebrow {
  color: #3FAA61 !important;
}

/* CTA Section Light Theme Overrides */
body.theme-light .founders-cta-section {
  background: #F8FAFC !important;
}

/* Portfolio, Team, and Blog Sections Light Theme */
body.theme-light .portfolio-section,
body.theme-light .team-section,
body.theme-light #team,
body.theme-light .blog-section {
  background: rgba(248, 250, 252, 0.70) !important;
  color: #0F172A !important;
}

body.theme-light .portfolio-section .section-title,
body.theme-light #team .section-title,
body.theme-light .blog-section .section-title {
  color: #0F172A !important;
}

body.theme-light .portfolio-section .section-subtitle,
body.theme-light #team .section-subtitle,
body.theme-light .blog-section .section-subtitle {
  color: #475569 !important;
}

body.theme-light .portfolio-sticky-header-container {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

body.theme-light .portfolio-search-input,
body.theme-light .portfolio-sector-select {
  background-color: #FFFFFF !important;
  color: #0F172A !important;
  border: 1.5px solid #CBD5E1 !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
}

body.theme-light .portfolio-search-input::placeholder {
  color: #64748B !important;
  opacity: 1 !important;
}

body.theme-light .portfolio-search-box .search-icon {
  color: #64748B !important;
  opacity: 0.9 !important;
}

body.theme-light .portfolio-sector-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230F172A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 16px !important;
}

body.theme-light .portfolio-sector-select option {
  background-color: #FFFFFF !important;
  color: #0F172A !important;
}

body.theme-light .portfolio-clean-card,
body.theme-light .team-portrait-card {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
}

body.theme-light .portfolio-clean-name,
body.theme-light .team-portrait-name {
  color: #0F172A !important;
}

body.theme-light .portfolio-clean-desc {
  color: #475569 !important;
}

body.theme-light .team-filter-pill {
  background: #FFFFFF !important;
  color: #475569 !important;
  border-color: #CBD5E1 !important;
}

body.theme-light .team-filter-pill.active {
  background: var(--tz-green-bright) !important;
  color: #FFFFFF !important;
  border-color: var(--tz-green-bright) !important;
}

.exp-label,
#themeBadge {
  display: none !important;
}

/* ======================================================================
   HAMBURGER MENU — Mobile Navigation
   ====================================================================== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.hamburger-btn:hover {
  background: transparent;
  border: none;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer menu */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}

.mobile-nav-drawer.open {
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: #0B172E;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 5rem 1.75rem 2rem;
  gap: 0.35rem;
  overflow-y: auto;
}

.mobile-nav-drawer.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  transition: var(--transition);
  border: none;
  display: block;
  background: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #FFFFFF;
  background: transparent;
  border: none;
}

.mobile-nav-link.active {
  color: var(--tz-green-bright);
  background: transparent;
  border: none;
  font-weight: 700;
}

.mobile-nav-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-cta a {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  background: #3FAA61;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(63, 170, 97, 0.35);
  transition: var(--transition);
}

.mobile-nav-cta a:hover {
  background: #338B4E;
}

/* ======================================================================
   RESPONSIVE DESIGN — 1280px (Large Tablet / Small Desktop)
   ====================================================================== */
@media (max-width: 1280px) {
  .container { padding: 0 1.25rem; }
  .aurora-hero-title { font-size: 3.4rem; }
  .floating-card-grid { gap: 1.5rem; }
}

/* ======================================================================
   RESPONSIVE DESIGN — 1024px (Tablet Landscape)
   ====================================================================== */
@media (max-width: 1024px) {
  /* Typography */
  .aurora-hero-title { font-size: 3rem; }
  .section-title { font-size: 2.1rem; }
  .section-subtitle { white-space: normal; }

  /* Hero */
  .aurora-hero { min-height: 75vh; padding-top: 120px; padding-bottom: 80px; }

  /* Floating hero card */
  .floating-card-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .floating-hero-card { padding: 2rem 1.75rem; }

  /* Funds / Timeline */
  .fund-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-vertical-wrapper { max-width: 680px; }

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

  /* Team */
  .team-portrait-grid, .team-clean-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog */
  .blog-clean-grid { grid-template-columns: repeat(2, 1fr); }

  /* Founders CTA */
  .founders-mosaic-wrapper { grid-template-columns: 1fr; }
  .mosaic-col { display: none; }
  .cta-box-card { max-width: 560px; margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ======================================================================
   RESPONSIVE DESIGN — 768px (Tablet Portrait)
   ====================================================================== */
@media (max-width: 768px) {
  /* Navbar */
  .aurora-nav-links { display: none; }
  .hamburger-btn { display: flex; }
  .mobile-nav-drawer { display: block; }

  /* Reduce padding on send pitch deck button in navbar */
  .aurora-navbar .pill-btn-outline {
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
  }

  /* Typography */
  .aurora-hero-title { font-size: clamp(1.5rem, 5.8vw, 2.2rem); letter-spacing: -0.6px; line-height: 1.1; }
  .aurora-hero-subtitle { font-size: 0.95rem; line-height: 1.55; }
  .section-title { font-size: 1.85rem; }
  .section-subtitle { font-size: 1rem; white-space: normal; }
  .page-hero-title { font-size: 2.1rem; }
  .page-hero-subtitle { font-size: 1rem; }

  /* Hero — fit entire content in one screen */
  .aurora-hero {
    min-height: 100svh;
    padding-top: 80px;
    padding-bottom: 30px;
    justify-content: center;
  }

  .aurora-hero-badge { font-size: 0.7rem; padding: 0.3rem 0.9rem; margin-bottom: 0.65rem; letter-spacing: 1px; }
  .aurora-hero-title { margin-bottom: 0.75rem; }
  .aurora-hero-subtitle { margin-bottom: 1.25rem; font-size: 0.9rem; max-width: 100%; }

  /* Floating hero card */
  .floating-hero-card-container { margin-top: -30px; }
  .floating-hero-card { padding: 1.75rem 1.25rem; border-radius: 20px; }
  .floating-card-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .floating-card-item { flex-direction: row; text-align: left; align-items: flex-start; gap: 1rem; }
  .floating-card-icon { margin-bottom: 0; flex-shrink: 0; width: 54px; height: 54px; }
  .floating-card-title { font-size: 1.2rem; text-align: left; }
  .floating-card-desc { text-align: left; font-size: 0.88rem; }

  /* Funds */
  .funds-sticky-header-container { top: 58px; padding: 1rem 0; }
  .timeline-vertical-wrapper { padding: 1rem 0; }
  .timeline-spine { left: 20px; transform: none; }
  .timeline-node-wrapper {
    position: absolute;
    left: 12px;
    top: 24px;
    transform: none;
    width: 20px;
    height: 20px;
    min-height: auto;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 48px;
    position: relative;
    margin-bottom: 2rem;
  }
  .timeline-counter-date {
    width: 100%;
    text-align: left !important;
    order: 1 !important;
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
  }
  .timeline-card-content {
    width: 100%;
    order: 2 !important;
  }
  .fund-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .fund-detail-title { font-size: 1.45rem; }

  /* Portfolio */
  .portfolio-sticky-header-container { top: 58px; }
  .portfolio-unified-control-group { flex-direction: column; gap: 0.75rem; }
  .portfolio-dropdown-box { width: 100%; }
  .portfolio-clean-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .portfolio-clean-card { aspect-ratio: auto; padding: 1rem; }

  /* Team */
  .team-filter-container { flex-wrap: wrap; gap: 0.5rem; }
  .team-filter-pill { font-size: 0.82rem; padding: 0.5rem 1.1rem; }
  .team-portrait-grid, .team-clean-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-portrait-img-box { height: 220px; }

  /* Blog */
  .blog-clean-grid { grid-template-columns: 1fr; }

  /* Founders CTA */
  .founders-cta-section { padding: 4rem 0; }
  .cta-box-card { padding: 2.25rem 1.75rem; border-radius: 20px; }
  .cta-headline-text { font-size: 1.05rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; margin-bottom: 2.5rem; }

  /* Section padding */
  .section-padding { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* Modal */
  .modal-container { margin: 1rem; max-width: calc(100% - 2rem); padding: 2rem 1.5rem; }
}

/* ======================================================================
   RESPONSIVE DESIGN — 480px (Mobile Portrait)
   ====================================================================== */
@media (max-width: 480px) {
  /* Navbar */
  .aurora-navbar .pill-btn-outline { display: none; } /* hide CTA in navbar to save space, only show hamburger */

  /* Typography */
  .aurora-hero-title { font-size: clamp(1.1rem, 5.5vw, 1.55rem); letter-spacing: -0.3px; line-height: 1.1; }
  .aurora-hero-subtitle { font-size: 0.85rem; line-height: 1.5; }
  .section-title { font-size: 1.65rem; }
  .page-hero-title { font-size: 1.75rem; }
  .page-hero { padding-top: 110px; padding-bottom: 20px; }

  /* Hero — compact fit for small phones */
  .aurora-hero {
    min-height: 100svh;
    padding-top: 75px;
    padding-bottom: 20px;
    justify-content: center;
  }
  .aurora-hero-badge { font-size: 0.65rem; letter-spacing: 1px; padding: 0.28rem 0.75rem; margin-bottom: 0.5rem; }
  .aurora-hero-title { margin-bottom: 0.6rem; }
  .aurora-hero-subtitle { margin-bottom: 1rem; max-width: 100%; }

  /* Floating card — stay horizontal but smaller */
  .floating-card-icon { width: 46px; height: 46px; border-radius: 14px; }
  .floating-card-title { font-size: 1.05rem; }
  .floating-card-desc { font-size: 0.82rem; }

  /* Portfolio */
  .portfolio-clean-grid { grid-template-columns: 1fr; }
  .portfolio-clean-card { aspect-ratio: auto; }

  /* Team */
  .team-portrait-grid, .team-clean-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .team-portrait-img-box { height: 180px; }
  .team-portrait-name { font-size: 1rem; }
  .team-portrait-role { font-size: 0.78rem; }

  /* Fund spec */
  .fund-spec-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Timeline */
  .timeline-card-title { font-size: 1.2rem; }

  /* Sections */
  .section-padding { padding: 2.75rem 0; }

  /* Buttons */
  .pill-btn-white { padding: 0.75rem 1.75rem; font-size: 0.88rem; }
}

/* ======================================================================
   RESPONSIVE DESIGN — 360px (Smallest phones)
   ====================================================================== */
@media (max-width: 360px) {
  .container { padding: 0 1rem; }
  .aurora-hero-title { font-size: 1.5rem; letter-spacing: -0.3px; }
  .aurora-hero-subtitle { font-size: 0.83rem; }
  .aurora-hero { padding-top: 75px; padding-bottom: 25px; }
  .aurora-hero-badge { font-size: 0.64rem; padding: 0.28rem 0.7rem; margin-bottom: 0.5rem; }
  .section-title { font-size: 1.5rem; }
  .team-portrait-grid, .team-clean-grid { grid-template-columns: 1fr; }
  .floating-card-item { flex-direction: column; align-items: flex-start; }
  .floating-card-icon { margin-bottom: 0.75rem; }
}


/* ======================================================================
   MOBILE HERO — STRONG OVERRIDE (ensures full hero fits in 1 screen)
   Applied LAST so it wins over all other rules.
   ====================================================================== */
@media (max-width: 768px) {
  .aurora-hero,
  body.theme-light .aurora-hero {
    min-height: 100svh !important;
    padding-top: 105px !important;
    padding-bottom: 24px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    box-sizing: border-box !important;
    background: #12274A !important;
    color: #FFFFFF !important;
  }

  .aurora-hero-content,
  body.theme-light .aurora-hero-content {
    padding: 0 1.25rem !important;
  }

  .aurora-hero-badge,
  body.theme-light .aurora-hero-badge {
    font-size: 0.65rem !important;
    padding: 0.28rem 0.85rem !important;
    margin-bottom: 0.65rem !important;
    letter-spacing: 1px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    color: #FFFFFF !important;
  }

  .aurora-hero-title,
  body.theme-light .aurora-hero-title {
    font-size: clamp(1.6rem, 7.5vw, 2.4rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 0.7rem !important;
    color: #FFFFFF !important;
  }

  .aurora-hero-subtitle,
  body.theme-light .aurora-hero-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.1rem !important;
    max-width: 100% !important;
    color: rgba(255, 255, 255, 0.88) !important;
  }

  /* Key Highlights — adjust position and center layout */
  .floating-hero-card-container {
    margin-top: -200px !important;
  }

  .floating-card-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.25rem !important;
  }

  .floating-card-icon {
    margin-bottom: 0.4rem !important;
    flex-shrink: 0 !important;
  }

  .floating-card-title {
    font-size: 1.45rem !important;
    text-align: center !important;
  }

  .floating-card-desc {
    text-align: center !important;
    margin-top: 0.1rem !important;
  }

  /* Horizontal Scroll for Portfolio, Team, and Insights on Mobile */
  .portfolio-clean-grid,
  .team-portrait-grid,
  .team-clean-grid,
  .blog-clean-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 1rem !important;
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
    gap: 1.25rem !important;
    scroll-padding-left: 1.25rem !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }

  .portfolio-clean-grid::-webkit-scrollbar,
  .team-portrait-grid::-webkit-scrollbar,
  .team-clean-grid::-webkit-scrollbar,
  .blog-clean-grid::-webkit-scrollbar {
    display: none !important;
  }

  .portfolio-clean-card {
    flex: 0 0 78% !important;
    max-width: 280px !important;
    scroll-snap-align: start !important;
  }

  .team-portrait-card {
    flex: 0 0 68% !important;
    max-width: 240px !important;
    scroll-snap-align: start !important;
  }

  .blog-clean-card {
    flex: 0 0 85% !important;
    max-width: 320px !important;
    scroll-snap-align: start !important;
  }

  /* Max 3 lines limit & optimized line-height/font-size for all section descriptions on mobile */
  .section-subtitle,
  .aurora-hero-subtitle,
  .floating-card-desc,
  .timeline-card-desc,
  .portfolio-clean-desc,
  .blog-clean-desc {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  /* Reduce ThinkZone logo max size by 10% on mobile */
  .aurora-brand img,
  body.theme-light .aurora-brand img {
    height: 34px !important;
  }

  .founders-cta-section {
    padding: 6.5rem 0 !important;
    overflow: visible !important;
  }

  .tz-logo-anim-wrapper {
    z-index: 1 !important;
  }

  .cta-box-card {
    z-index: 2 !important;
  }

  .tz-logo-symbol-img {
    width: 294px !important;
    max-width: 294px !important;
  }

  /* Remove outer border & background for menu open/close button and page navigation links */
  .hamburger-btn,
  .hamburger-btn:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .mobile-nav-link,
  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* On dedicated Portfolio page (portfolio.html), show all portfolio cards vertically in 1 column on mobile */
  body.page-portfolio .portfolio-clean-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    gap: 1.25rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.page-portfolio .portfolio-clean-card {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: none !important;
  }
}

/* Footer Social Media Links (Facebook Fanpage & LinkedIn) */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: #3FAA61;
  color: #FFFFFF;
  border-color: #3FAA61;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(63, 170, 97, 0.45);
}

