/* ========== FONTS ========== */
/* Trebuchet MS for team section heading & Helvetica stack for primary body */

/* ========== CSS VARIABLES ========== */
:root {
  --gold: #C41E3A;
  --gold-light: #E8354F;
  --gold-dark: #9A1830;
  --gold-glow: rgba(196, 30, 58, 0.4);
  --dark-950: #050505;
  --dark-900: #0A0A0A;
  --dark-800: #111111;
  --dark-700: #1A1A1A;
  --dark-600: #222222;
  --dark-500: #333333;
  --dark-400: #888888;
  --dark-300: #BBBBBB;
  --dark-200: #DDDDDD;
  --dark-100: #F0F0F0;
  --green: #00C853;
  --red: #FF1744;
  --text-secondary: #BBBBBB;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--dark-950);
  color: #E0E0E0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Film grain overlay */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025; mix-blend-mode: overlay;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-900); }
::-webkit-scrollbar-thumb { background: var(--dark-500); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ========== UTILITIES ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.gold-text { background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gold-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); border-radius: 2px; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.section-subtitle { font-size: 1.05rem; color: var(--dark-200); line-height: 1.7; max-width: 600px; }

/* ========== GLASS CARD ========== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(196, 30, 58, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(196, 30, 58, 0.05);
}

/* ========== BUTTONS ========== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; letter-spacing: 0.5px;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 40px var(--gold-glow); }
.btn-gold:hover::before { left: 100%; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid var(--gold); color: var(--gold);
  letter-spacing: 0.5px; transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  background: transparent; position: relative; overflow: hidden;
}
.btn-outline::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
  background: rgba(196, 30, 58, 0.08);
  transition: height 0.4s ease;
  z-index: 0;
}
.btn-outline:hover::before { height: 100%; }
.btn-outline:hover {
  background: rgba(196, 30, 58, 0.1);
  box-shadow: 0 0 25px rgba(196, 30, 58, 0.15);
  transform: translateY(-3px);
}
.btn-outline span { position: relative; z-index: 1; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 800; }
.nav-logo .logo-icon {
  width: 80px; height: 80px; border-radius: 8px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.nav-logo .logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--dark-200); transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px !important; font-size: 0.8rem !important; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.mobile-toggle span { width: 24px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 1px; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(5,5,5,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.2rem; font-weight: 600; color: var(--dark-200); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }



/* ========== HERO ========== */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: #030303;
}
#heroCanvas {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  filter: blur(2px);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(3,3,3,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 140px; padding-bottom: 60px;
}
.hero-center { text-align: center; max-width: 880px; margin: 0 auto; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(196, 30, 58, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.25);
  font-size: 0.75rem; font-weight: 600; color: var(--gold-light);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 32px;
  animation: badgeGlow 3s ease-in-out infinite alternate;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s infinite;
}
@keyframes badgeGlow {
  0% { box-shadow: 0 0 10px rgba(196,30,58,0); }
  100% { box-shadow: 0 0 25px rgba(196,30,58,0.12); }
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900;
  color: #fff; line-height: 1.02; margin-bottom: 24px;
  letter-spacing: -1px;
  min-height: 2.15em;
}
.hero-headline .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.type-cursor {
  color: var(--gold); font-weight: 300;
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-desc {
  font-size: 1.05rem; color: var(--dark-200); line-height: 1.8;
  max-width: 520px; margin: 0 auto 40px;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Stats Row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.stat-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  backdrop-filter: blur(12px); transition: all 0.4s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.stat-card:hover { border-color: rgba(196,30,58,0.3); transform: translateY(-3px); }
.stat-card:hover::before { opacity: 1; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.stat-label { font-size: 0.72rem; color: var(--dark-300); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero-scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dark-400); font-weight: 600;
}


/* ========== TICKER MARQUEE ========== */
.ticker-wrap {
  width: 100%; overflow: hidden;
  background: rgba(196, 30, 58, 0.04);
  border-top: 1px solid rgba(196, 30, 58, 0.12);
  border-bottom: 1px solid rgba(196, 30, 58, 0.12);
  padding: 14px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  font-size: 0.72rem; font-weight: 600; color: var(--dark-300);
  letter-spacing: 1px; text-transform: uppercase;
}
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(196, 30, 58, 0.5); flex-shrink: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== TEAM SHOWCASE ========== */
.team-showcase {
  position: relative; overflow: hidden;
  background: #030303;
}
.team-image-wrap {
  position: relative; width: 100%; height: 70vh; min-height: 400px;
  overflow: hidden;
  opacity: 0; transform: translateY(80px) scale(0.95);
  transition: opacity 1.2s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
.team-image-wrap.visible {
  opacity: 1; transform: translateY(0) scale(1);
}
.team-hero-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
  transition: transform 8s ease-out;
}
.team-image-wrap.visible .team-hero-img {
  transform: scale(1.05);
}
.team-image-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(3,3,3,0.85) 100%),
    linear-gradient(180deg, rgba(3,3,3,0.6) 0%, rgba(3,3,3,0.3) 40%, rgba(3,3,3,0.3) 60%, rgba(3,3,3,0.8) 100%);
}
.trebuchet-text,
.team-image-overlay h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: #fff;
  text-align: center; letter-spacing: -0.5px;
}
.team-image-overlay .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ========== INSIGHTS ========== */
.insights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.insight-card { border-radius: 16px; overflow: hidden; }
.insight-card .card-img { height: 200px; overflow: hidden; position: relative; }
.insight-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.insight-card:hover .card-img img { transform: scale(1.08); }
.insight-card .card-body { padding: 20px; }
.insight-tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(196,30,58,0.15); color: var(--gold); margin-bottom: 12px;
}
.insight-card h3 { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 10px; }
.insight-card .date { font-size: 0.75rem; color: var(--dark-400); }
.insights-cta { text-align: center; margin-top: 48px; }

/* ========== BENTO GRID (What We Do) ========== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}
.bento-card {
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.bento-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.bento-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.bento-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(196,30,58,0.1); border: 1px solid rgba(196,30,58,0.2);
  display: flex; align-items: center; justify-content: center;
}
.bento-num {
  font-size: 1rem; font-weight: 800; color: var(--gold);
  opacity: 0.6; letter-spacing: -0.5px;
}
.bento-card h3 {
  font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.bento-card p {
  font-size: 0.85rem; color: var(--dark-300); line-height: 1.7;
  margin-bottom: 16px;
}
.bento-mini-stats {
  display: flex; gap: 16px; margin-bottom: 16px; margin-top: auto;
  padding: 16px; border-radius: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border);
}
.bento-mini-stat { text-align: center; flex: 1; }
.bms-num {
  display: block; font-size: 1.2rem; font-weight: 800; color: #fff;
  margin-bottom: 2px;
}
.bms-label {
  display: block; font-size: 0.62rem; color: var(--dark-400);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.bento-link {
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.3s; margin-top: auto; padding-top: 12px;
}
.bento-link:hover { gap: 10px; }
.bento-partner-logos {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.bento-partner {
  padding: 5px 12px; border-radius: 6px; font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.5px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  color: var(--dark-300);
}

/* Bento CTA */
.bento-cta { margin-top: 24px; }
.bento-cta-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 36px; border-radius: 16px;
  background: rgba(196,30,58,0.04) !important;
  border: 1px solid rgba(196,30,58,0.15) !important;
}
.bento-cta-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(196,30,58,0.1); border: 1px solid rgba(196,30,58,0.2);
  display: flex; align-items: center; justify-content: center;
}
.bento-cta-text { flex: 1; }
.bento-cta-text h3 {
  font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.bento-cta-text p {
  font-size: 0.85rem; color: var(--dark-300);
}

/* ========== CLIENTS & COLLABORATORS MARQUEE ========== */
#clients {
  padding: 48px 0 36px;
}

.clients-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0 24px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: clientsMarqueeScroll 30s linear infinite;
  will-change: transform;
}

.clients-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes clientsMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-card {
  width: 240px;
  min-width: 240px;
  flex-shrink: 0;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 130px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.client-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(196, 30, 58, 0.12);
}

.client-logo {
  width: 90px;
  height: 55px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.4s ease;
}

.client-card:hover .client-logo {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

.client-card span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--dark-300);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.client-card:hover span { color: var(--gold); }

/* ========== INVESTMENT FUND MASTER CARD (IDEA 4 PILL / BADGE STYLE) ========== */
.fund-master-card {
  padding: 36px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(8, 8, 8, 0.96));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fund-master-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.16), transparent 70%);
  pointer-events: none;
}

.fund-master-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 36px;
  align-items: center;
}

.fund-overview-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.fund-glowing-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 25px rgba(196, 30, 58, 0.25), inset 0 0 15px rgba(196, 30, 58, 0.15);
  margin-top: 4px;
}

.fund-glowing-badge::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(196, 30, 58, 0.45);
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fund-overview-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.fund-overview-text p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 10px;
}

.fund-framework-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.fund-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fund-subcard {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 18px 14px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.fund-subcard:hover {
  border-color: rgba(196, 30, 58, 0.4);
  background: rgba(196, 30, 58, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(196, 30, 58, 0.12);
}

.fund-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.12);
  border: 1px solid rgba(196, 30, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.fund-subcard h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.fund-subcard p {
  font-size: 0.72rem;
  color: var(--dark-400);
  line-height: 1.5;
  margin: 0;
}

/* Chart */
.donut-chart { width: 200px; height: 200px; margin: 0 auto 24px; position: relative; }
.donut-chart svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-chart circle { fill: none; stroke-width: 28; transition: stroke-dashoffset 1s ease; }
.donut-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.donut-center .value { font-size: 1.5rem; font-weight: 800; color: #fff; }
.donut-center .label { font-size: 0.65rem; color: var(--dark-400); text-transform: uppercase; letter-spacing: 1px; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--dark-300); }
.legend-dot { width: 8px; height: 8px; border-radius: 2px; }

/* Metrics */
.metric-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--glass-border); }
.metric-row:last-child { border: none; }
.metric-label { font-size: 0.82rem; color: var(--dark-300); }
.metric-value { font-size: 0.88rem; font-weight: 700; color: #fff; }
.metric-value.green { color: var(--green); }
.metric-value.red { color: var(--red); }

/* Stock Cards */
.stock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.stock-card {
  background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 16px;
}
.stock-card .ticker { font-size: 0.85rem; font-weight: 700; color: var(--gold); }
.stock-card .company { font-size: 0.72rem; color: var(--dark-400); margin: 4px 0; }
.stock-card .change { font-size: 0.8rem; font-weight: 700; }
.stock-card .change.up { color: var(--green); }
.stock-card .change.down { color: var(--red); }

/* ========== ACHIEVEMENTS ========== */
.timeline { position: relative; margin-top: 60px; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--gold), var(--dark-600));
}
.timeline-item { position: relative; margin-bottom: 40px; padding-left: 40px; }
.timeline-dot {
  position: absolute; left: -33px; top: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.timeline-item .year { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.timeline-item h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.timeline-item p { font-size: 0.88rem; color: var(--dark-300); line-height: 1.6; }
.achievement-counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.counter-card { text-align: center; padding: 32px; }
.counter-card .count { font-size: 2.5rem; font-weight: 900; margin-bottom: 8px; }
.counter-card .count-label { font-size: 0.8rem; color: var(--dark-300); font-weight: 500; }

/* ========== TEAM ========== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.team-card { padding: 32px 24px; text-align: center; }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: var(--gold);
  border: 2px solid var(--glass-border);
  transition: border-color 0.3s;
}
.team-card:hover .team-avatar { border-color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); }
.team-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.team-card .role { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.team-card .domain { font-size: 0.72rem; color: var(--dark-400); margin-bottom: 14px; }
.team-linkedin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--glass-border);
  color: var(--dark-400); transition: all 0.3s; font-size: 0.8rem;
}
.team-linkedin:hover { color: var(--gold); border-color: var(--gold); background: rgba(196,30,58,0.1); }

/* ========== FOOTER ========== */
.footer { background: var(--dark-900); border-top: 1px solid var(--glass-border); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: var(--dark-300); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--dark-300); padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.newsletter-input {
  display: flex; margin-top: 12px; border: 1px solid var(--glass-border);
  border-radius: 8px; overflow: hidden;
}
.newsletter-input input {
  flex: 1; padding: 12px 16px; background: transparent; border: none;
  color: #fff; font-size: 0.85rem; font-family: inherit; outline: none;
}
.newsletter-input input::placeholder { color: var(--dark-400); }
.newsletter-input button {
  padding: 12px 20px; background: var(--gold); color: #fff;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.5px;
  transition: background 0.3s;
}
.newsletter-input button:hover { background: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-300); transition: all 0.3s;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(196,30,58,0.1); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--dark-400); }

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 5px var(--gold-glow); } 50% { box-shadow: 0 0 20px var(--gold-glow); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ========== HERO GLOW (mouse-reactive) ========== */
.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(600px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(196,30,58,0.12), transparent 60%);
  transition: background 0.15s ease;
}

/* ========== HERO ORBS (slow floating gradients) ========== */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(80px); opacity: 0.18;
}
.hero-orb-1 {
  width: 500px; height: 500px; top: 10%; left: -5%;
  background: radial-gradient(circle, rgba(196,30,58,0.5), transparent 70%);
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: 10%; right: -5%;
  background: radial-gradient(circle, rgba(160,0,40,0.4), transparent 70%);
  animation: orbFloat2 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0); } 50% { transform: translate(60px, -40px); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px, 30px); }
}

/* ========== TERMINAL OVERLAYS ========== */
.terminal-overlay {
  position: absolute; z-index: 3; pointer-events: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.65rem; color: rgba(196,30,58,0.5); letter-spacing: 1px;
  display: flex; align-items: center; gap: 10px;
}
.terminal-tl { top: 100px; left: 28px; }
.terminal-tr { top: 100px; right: 28px; }
.terminal-bl { bottom: 28px; left: 28px; }
.terminal-sep { opacity: 0.3; }
.t-green { color: rgba(0,200,83,0.6); }
.live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #00C853; margin-right: 6px; animation: pulse-dot 2s infinite;
}
.terminal-live { display: flex; align-items: center; }
.terminal-cursor { animation: cursorBlink 0.8s step-end infinite; }
.terminal-prompt { color: rgba(0,200,83,0.4); }

/* ========== HERO MANIFESTO ========== */
.hero-manifesto {
  font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px; margin-top: 48px; text-align: center;
}

/* ========== HERO ACHIEVEMENT TICKER ========== */
.hero-ticker {
  width: 100%; overflow: hidden; padding: 12px 0;
  background: linear-gradient(90deg, rgba(196,30,58,0.06), rgba(196,30,58,0.02), rgba(196,30,58,0.06));
  border-bottom: 1px solid rgba(196,30,58,0.08);
}
.hero-ticker-track {
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap; animation: tickerScroll 25s linear infinite;
  width: max-content;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 3px;
  color: rgba(196,30,58,0.4); text-transform: uppercase;
}
.ht-dot { font-size: 0.4rem; opacity: 0.4; }

/* ========== PROOF BADGE ========== */
.proof-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px; margin-top: 16px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1px;
  background: rgba(196,30,58,0.06); border: 1px solid rgba(196,30,58,0.15);
  color: var(--gold-light);
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9998;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%; transition: width 0.05s linear; pointer-events: none;
}

/* ========== FOOTER PROOF STRIP ========== */
.footer-proof {
  font-size: 0.72rem; color: var(--dark-400); letter-spacing: 1px;
  margin-top: 12px; font-weight: 500;
}



/* ========== ENHANCED CLIENT/PARTNERSHIP CARDS ========== */
.client-card:hover {
  box-shadow: 0 0 40px rgba(196,30,58,0.15);
  transform: translateY(-4px) scale(1.03);
}
.client-card:hover span {
  color: var(--gold) !important;
  text-shadow: 0 0 20px rgba(196,30,58,0.3);
}

/* ========== ENHANCED REVEAL ANIMATIONS ========== */
.reveal-scale { opacity: 0; transform: scale(0.95); filter: blur(4px); transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-scale.visible { opacity: 1; transform: scale(1); filter: blur(0); }

/* ========== FILM GRAIN FLICKER ========== */
@keyframes grainFlicker {
  0%, 100% { opacity: 0.025; }
  50% { opacity: 0.035; }
}
body::after { animation: grainFlicker 4s ease-in-out infinite; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-row: auto; }
  .fund-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .achievement-counters { grid-template-columns: repeat(2, 1fr); }
  .terminal-overlay { display: none; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 250px; height: 250px; }
}
@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }
  .section-header { text-align: center; margin-bottom: 40px; }
  .section-tag { justify-content: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { text-align: center; align-items: center; }
  .insights-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .fund-master-card { grid-template-columns: 1fr; gap: 24px; }
  .fund-overview-card { text-align: center; align-items: center; }
  .fund-badge-group { justify-content: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-member-card { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-col { align-items: center; text-align: center; }
  .hero-headline { font-size: clamp(2rem, 10vw, 3rem); min-height: auto; text-align: center; }
  .hero-desc { font-size: 0.95rem; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-content { padding-top: 110px; padding-bottom: 40px; text-align: center; }
  .hero-manifesto { font-size: 0.88rem; margin-top: 32px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-ticker-track { font-size: 0.6rem; letter-spacing: 2px; }
  .ticker-item { font-size: 0.65rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); text-align: center; }
  .hero-orb { display: none; }
  .clients-marquee-track { gap: 14px; animation-duration: 22s; }
  .client-card { width: 200px; min-width: 200px; padding: 18px 14px; min-height: 115px; }
  .client-logo { width: 75px; height: 45px; }
  .client-card span { font-size: 0.7rem; letter-spacing: 1px; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; text-align: center; }
  .achievement-counters { grid-template-columns: 1fr 1fr; }
  .stock-cards { grid-template-columns: 1fr; }
  .stat-card { padding: 20px 14px; text-align: center; }
  .stat-number { font-size: 1.8rem; }
  .hero-headline { font-size: 1.8rem; }
  .client-card { width: 175px; min-width: 175px; padding: 16px 12px; }
  .container { padding-left: 20px; padding-right: 20px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-orb, .hero-glow { display: none; }
}
