:root {
  --obsidian: #0a0a0a;
  --gold: #b8860b;
  --gold-light: #d4a853;
  --gold-dark: #8b6508;
  --gold-deep: #6b4f06;
  --gold-bright: #f0d88a;
  --gold-highlight: #fff4d4;
  --ivory: #f5f2eb;
  --graphite: #2c2c2c;
  --muted: #a8a29e;
  --line: rgba(184, 134, 11, 0.22);
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --header-h: 76px;
  --gold-text-3d: linear-gradient(
    180deg,
    #fff8e8 0%,
    #f0d88a 14%,
    #d4a853 32%,
    #b8860b 48%,
    #7a5906 56%,
    #a07810 72%,
    #d4a853 88%,
    #f5e6a8 100%
  );
  --gold-surface-3d: linear-gradient(
    180deg,
    #f5e090 0%,
    #d4a853 18%,
    #b8860b 42%,
    #7a5906 52%,
    #9a7209 72%,
    #c9a044 90%,
    #e8c878 100%
  );
  --gold-edge-light: inset 0 1px 0 rgba(255, 245, 215, 0.62);
  --gold-edge-dark: inset 0 -2px 5px rgba(35, 22, 0, 0.38);
  --gold-text-shadow: 0 1px 0 rgba(255, 235, 185, 0.45), 0 2px 4px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--obsidian);
  color: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, .display { font-family: 'Playfair Display', 'Manrope', serif; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

/* Animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes goldPulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.08); }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.05); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes titleReveal {
  from { opacity: 0; transform: translateY(32px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes titleShine {
  0% { opacity: 0; letter-spacing: 0.12em; }
  100% { opacity: 1; letter-spacing: normal; }
}
@keyframes abstractDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(12px, -18px) rotate(3deg); }
}
@keyframes abstractPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.65; }
}
@keyframes sparkleGlint {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.35); }
  8% { opacity: 0; transform: translate(-50%, -50%) scale(0.45); }
  22% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  38% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.82); }
  52% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Accent labels — clean type, no 3D gold */
.kicker,
.hero-eyebrow,
.leader-role,
.founder-role,
.venture-category {
  color: var(--gold-light);
}
.stat-card strong,
.value-num {
  color: var(--gold-light);
  font-weight: 800;
}
.hero-logo-tagline {
  color: var(--gold-light);
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a.is-active,
.nav-links a.is-scrolling,
.mobile-nav a.is-scrolling,
.mobile-nav a.is-active {
  color: var(--gold-light);
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 300;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright), var(--gold-light));
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.5), 0 1px 0 rgba(255, 240, 200, 0.35);
  pointer-events: none;
}

/* Logo sparkle */
.logo-sparkle-wrap {
  position: relative; display: inline-block; line-height: 0;
}
.logo-sparkle-wrap img { position: relative; z-index: 2; }
.sparkle { display: none !important; }
.sparkle::before {
  content: '';
  position: absolute; left: 50%; top: 50%;
  width: 118%; height: 118%;
  transform: translate(-50%, -50%) rotate(45deg);
  background:
    radial-gradient(circle at center,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.55) 8%,
      rgba(255, 248, 235, 0.2) 16%,
      transparent 28%),
    linear-gradient(90deg,
      transparent 0%,
      transparent 47.5%,
      rgba(255, 255, 255, 0.35) 49.5%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.35) 50.5%,
      transparent 52.5%,
      transparent 100%),
    linear-gradient(0deg,
      transparent 0%,
      transparent 47.5%,
      rgba(255, 255, 255, 0.35) 49.5%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.35) 50.5%,
      transparent 52.5%,
      transparent 100%);
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.45));
}
.logo-sparkle-wrap--header .sparkle { --sz: 11px; }
.logo-sparkle-wrap--header .sparkle--lg { --sz: 13px; }
.logo-sparkle-wrap--hero .sparkle { --sz: 15px; }
.logo-sparkle-wrap--hero .sparkle--lg { --sz: 18px; }

/* Directional scroll reveals — charity-site pattern */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}
.stagger-1.is-visible { transition-delay: 0.05s; }
.stagger-2.is-visible { transition-delay: 0.12s; }
.stagger-3.is-visible { transition-delay: 0.19s; }
.stagger-4.is-visible { transition-delay: 0.26s; }
.stagger-5.is-visible { transition-delay: 0.33s; }
.reveal:not(.is-visible),
.reveal-left:not(.is-visible),
.reveal-right:not(.is-visible) {
  transition-delay: 0s;
}

/* Card hover lift after reveal (charity seg-card / work-card pattern) */
.stat-card.reveal.is-visible:hover,
.value-card.reveal.is-visible:hover,
.philo-card.reveal.is-visible:hover,
.venture-card.reveal.is-visible:hover,
.presence-card.reveal.is-visible:hover,
.vm-card.reveal.is-visible:hover,
.corp-info-card.reveal.is-visible:hover,
.venture-card-compact.reveal.is-visible:hover,
.philo-card-compact.reveal.is-visible:hover,
.impact-card-compact.reveal.is-visible:hover,
.leadership-teaser.reveal.is-visible:hover {
  transform: translateY(-6px);
}
.value-card.reveal.is-visible:hover { transform: translateY(-5px); }
.philo-card.reveal.is-visible:hover,
.philo-card-compact.reveal.is-visible:hover { transform: translateY(-8px); }
.venture-card.reveal.is-visible:hover,
.venture-card-compact.reveal.is-visible:hover { transform: translateY(-4px); }
.presence-card.reveal.is-visible:hover { transform: translateY(-5px); }
.vm-card.reveal.is-visible:hover { transform: translateY(-4px); }
.venture-card-compact.is-soon.reveal.is-visible { opacity: 0.88; }

/* Card fly-in reveals */
.stat-card.reveal,
.value-card.reveal,
.philo-card.reveal,
.venture-card.reveal,
.presence-card.reveal,
.vm-card.reveal,
.corp-info-card.reveal,
.venture-card-compact.reveal,
.philo-card-compact.reveal,
.impact-card-compact.reveal,
.leadership-teaser.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.aspire-item.reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-card.reveal.is-visible,
.value-card.reveal.is-visible,
.philo-card.reveal.is-visible,
.venture-card.reveal.is-visible,
.presence-card.reveal.is-visible,
.vm-card.reveal.is-visible,
.aspire-item.reveal.is-visible,
.corp-info-card.reveal.is-visible,
.venture-card-compact.reveal.is-visible,
.philo-card-compact.reveal.is-visible,
.impact-card-compact.reveal.is-visible,
.leadership-teaser.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.aspire-item.reveal.is-visible {
  transform: translateX(0);
}

/* Section heads — keep container visible so h2 title animation can play */
.section-head.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.section-head.reveal:not(.is-visible) .kicker,
.section-head.reveal:not(.is-visible) .section-sub,
.section-head.reveal:not(.is-visible) > p,
.section-head.reveal:not(.is-visible) h2 {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-head.reveal.is-visible .kicker {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.05s;
}
.section-head.reveal.is-visible h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.12s;
}
.section-head.reveal.is-visible .section-sub,
.section-head.reveal.is-visible > p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.22s;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--header-h);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.nav-wrap {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img {
  height: 52px; width: auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 220, 150, 0.25))
    drop-shadow(0 4px 14px rgba(184, 134, 11, 0.35))
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4))
    brightness(1.04) contrast(1.06) saturate(1.08);
}
.logo-sparkle-wrap--header img { height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.05rem; letter-spacing: 0.08em; color: var(--gold-light); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 700; color: rgba(245, 242, 235, 0.82);
  transition: color .15s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-bright), var(--gold));
  box-shadow: 0 1px 0 rgba(255, 235, 190, 0.3), 0 2px 6px rgba(184, 134, 11, 0.35);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active::after {
  transform: scaleX(1);
  opacity: 0.65;
}
.nav-links a.is-scrolling::after {
  transform: scaleX(1);
  opacity: 1;
}
@keyframes navPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
html.is-page-scrolling { scroll-behavior: auto; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-btn {
  border: 1px solid var(--line); background: transparent; color: var(--ivory);
  border-radius: 8px; padding: 8px 14px; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-1px); }
.menu-btn {
  display: none; border: 1px solid var(--line); background: transparent; color: var(--ivory);
  border-radius: 8px; width: 42px; height: 42px; font-size: 1.2rem; cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 10px; cursor: pointer; font-weight: 700; text-decoration: none;
  font-family: inherit; padding: 13px 24px; font-size: 0.95rem; transition: all .22s ease;
}
.btn-gold {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, #f2d98a 0%, #e4c06a 38%, #d4a853 100%);
  color: #0a0a0a;
  border: 1px solid #a07810;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 230, 0.95),
    inset 0 -1px 0 rgba(122, 89, 6, 0.2),
    0 4px 14px rgba(184, 134, 11, 0.22);
  text-shadow: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 42%; z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
  pointer-events: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #f8e6a0 0%, #e8c878 40%, #d4a853 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 235, 1),
    inset 0 -1px 0 rgba(122, 89, 6, 0.18),
    0 8px 22px rgba(184, 134, 11, 0.32);
  color: #0a0a0a;
}
.btn-outline {
  background: transparent; color: var(--ivory); border: 1.5px solid rgba(245, 242, 235, 0.45);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 0.86rem; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(184, 134, 11, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(44, 44, 44, 0.9), transparent 70%),
    linear-gradient(165deg, #111 0%, var(--obsidian) 55%, #050505 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0, transparent 72px, rgba(184, 134, 11, 0.04) 72px, rgba(184, 134, 11, 0.04) 73px),
    repeating-linear-gradient(-35deg, transparent 0, transparent 120px, rgba(184, 134, 11, 0.025) 120px, rgba(184, 134, 11, 0.025) 121px);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 75%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 168, 83, 0.12) 0%, transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(184, 134, 11, 0.08) 0%, transparent 32%),
    linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.85) 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(40px); animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 {
  width: 420px; height: 420px; top: 8%; right: 12%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.18), transparent 70%);
}
.hero-orb-2 {
  width: 300px; height: 300px; bottom: 15%; left: 5%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12), transparent 70%);
  animation-delay: -4s;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(32px);
}
.hero.is-hero-visible .hero-copy > * {
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-eyebrow { animation-delay: 0.15s !important; }
.hero h1 { animation-delay: 0.35s !important; }
.hero-lead { animation-delay: 0.55s !important; }
.hero-tags { animation-delay: 0.7s !important; }
.hero-cta { animation-delay: 0.85s !important; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; font-weight: 800; margin: 0 0 18px;
}
.hero-title { margin: 0 0 18px; }
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}
.hero.is-hero-visible .title-line {
  animation: titleReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.title-line-1 { animation-delay: 0.35s; }
.title-line-2 { animation-delay: 0.55s; }
.section-head h2.title-animate {
  animation: titleShine 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.section-head.is-visible h2.title-animate {
  animation: titleShine 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-tag {
  padding: 8px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(184, 134, 11, 0.45);
  color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(184, 134, 11, 0.22), rgba(60, 40, 0, 0.35));
  box-shadow: inset 0 1px 0 rgba(255, 235, 190, 0.18), 0 2px 8px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.hero-tag:hover { transform: translateY(-2px); border-color: var(--gold-light); box-shadow: inset 0 1px 0 rgba(255, 235, 190, 0.28), 0 4px 12px rgba(184, 134, 11, 0.25); }
.hero-lead { font-size: 1.08rem; color: rgba(245, 242, 235, 0.82); max-width: 52ch; margin-bottom: 28px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateY(32px);
}
.hero.is-hero-visible .hero-visual {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.hero-logo-showcase {
  text-align: center; position: relative; padding: 12px 0;
}
.hero-logo-glow {
  position: absolute; inset: 5% 10%; z-index: 0;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.25), transparent 68%);
  filter: blur(36px);
}
.hero-logo-img {
  width: min(460px, 100%); margin: 0 auto; position: relative; z-index: 2;
  filter:
    drop-shadow(0 1px 0 rgba(255, 220, 150, 0.3))
    drop-shadow(0 12px 36px rgba(184, 134, 11, 0.38))
    drop-shadow(0 20px 48px rgba(0, 0, 0, 0.35))
    brightness(1.05) contrast(1.07) saturate(1.1);
  animation: heroLogoFloat 5.5s ease-in-out infinite;
}
.logo-sparkle-wrap--hero { width: min(460px, 100%); margin: 0 auto 2px; }
.logo-sparkle-wrap--hero .hero-logo-img { margin: 0; width: 100%; display: block; }
.hero-logo-slogan {
  margin: -6px 0 0; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.hero-logo-tagline {
  display: block; margin-top: 6px; font-size: 0.92rem;
  letter-spacing: 0.06em; font-weight: 700;
}

/* Marquee */
.marquee-band {
  border-block: 1px solid var(--line);
  background: rgba(44, 44, 44, 0.45);
  overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; width: max-content; gap: 48px;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
}

/* Sections */
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(44,44,44,0.35) 0%, transparent 100%); }
.section-head { max-width: 68ch; margin-bottom: 48px; }
.kicker {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 800;
  margin-bottom: 12px;
}
.section h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.12; margin: 0 0 16px; font-weight: 800; }
.section-head.is-visible h2:not(.title-animate) {
  animation: titleReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.section-head.reveal:not(.is-visible) h2:not(.title-animate) {
  animation: none;
  opacity: 0;
  transform: translateY(18px);
}
.section-sub { color: var(--muted); font-size: 1.02rem; max-width: 62ch; margin: 0; }

/* Founder spotlight */
.section-founder { padding: 96px 0; }
.founder-spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.founder-spotlight .founder-photo {
  width: max-content;
}
.founder-spotlight .leader-photo-wrap,
.founder-photo-wrap {
  min-height: 0;
  max-width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background: #2c2c2c;
}
.founder-spotlight .leader-photo-wrap img,
.founder-photo-wrap img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.15; margin: 0 0 10px; font-weight: 800;
  font-family: 'Playfair Display', serif;
  animation: titleReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.founder-copy.reveal-right.is-visible h3 {
  animation: titleReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.founder-copy.reveal-right:not(.is-visible) h3 {
  animation: none;
  opacity: 0;
  transform: translateY(14px);
}
.founder-role {
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 20px; color: var(--gold-light);
}
.founder-copy p:last-child { margin-bottom: 0; }
.founder-copy p { color: rgba(245, 242, 235, 0.78); margin: 0 0 16px; font-size: 0.98rem; line-height: 1.75; }
.founder-copy .founder-quote {
  margin-top: 8px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(184, 134, 11, 0.14), rgba(184, 134, 11, 0.04) 48%, transparent);
  color: rgba(245, 242, 235, 0.9);
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.7;
  border-radius: 0 10px 10px 0;
}

.section-head::after {
  content: ''; display: block; width: 64px; height: 3px; margin-top: 20px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-bright), transparent);
  box-shadow: 0 1px 0 rgba(255, 235, 190, 0.25);
  transform-origin: left; animation: lineGrow 0.8s ease forwards;
}
.section-head.reveal:not(.is-visible)::after { transform: scaleX(0); }
.section-head.is-visible::after { transform: scaleX(1); }

/* About */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.founder-spotlight.split {
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.split p { color: rgba(245, 242, 235, 0.78); margin: 0 0 16px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-card:not(.reveal) {
  background: rgba(44, 44, 44, 0.55); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.stat-card {
  background: rgba(44, 44, 44, 0.55); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: center;
}
.stat-card:not(.reveal):hover { transform: translateY(-6px); border-color: rgba(184,134,11,0.45); box-shadow: 0 16px 36px rgba(0,0,0,0.3); }
.stat-card strong { display: block; font-size: 1.8rem; margin-bottom: 6px; }
.stat-card span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* About — business segments */
.about-segments { margin-top: 48px; }
.about-segments-head { max-width: 720px; margin-bottom: 28px; }
.about-segments-head h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--ivory);
}
.about-segments-head p {
  margin: 0;
  color: rgba(245, 242, 235, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}
.about-segments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.about-seg-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(36, 36, 36, 0.92), rgba(12, 12, 12, 0.96));
  border: 1px solid rgba(245, 242, 235, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.about-seg-card:hover {
  border-color: rgba(184, 134, 11, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}
.about-seg-card h4 {
  margin: 14px 0 10px;
  font-size: 1.08rem;
  color: var(--ivory);
  line-height: 1.35;
}
.about-seg-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(245, 242, 235, 0.68);
}
.about-seg-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-seg-badge--live {
  background: rgba(184, 134, 11, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(184, 134, 11, 0.25);
}
.about-seg-badge--soon {
  background: rgba(245, 242, 235, 0.04);
  color: rgba(245, 242, 235, 0.45);
  border: 1px solid rgba(245, 242, 235, 0.1);
}

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.value-card {
  position: relative;
  padding: 24px 18px;
  border-radius: var(--radius);
  text-align: center;
  background: rgba(44, 44, 44, 0.5);
  border: 1px solid var(--line);
  overflow: hidden;
}
.value-card:not(.reveal) {
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.value-card:not(.reveal):hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}
.value-card:hover::before { opacity: 1; }
.value-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.value-card__body { display: block; }
.value-card h4 { margin: 0 0 8px; font-size: 0.95rem; color: var(--ivory); }
.value-card p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* Philosophy */
.philo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.philo-card {
  background: linear-gradient(160deg, rgba(44,44,44,0.8), rgba(10,10,10,0.9));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px;
  position: relative; overflow: hidden;
}
.philo-card:not(.reveal) {
  transition: transform 0.35s, box-shadow 0.35s;
}
.philo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-light), var(--gold-dark));
  box-shadow: 0 1px 0 rgba(255, 235, 190, 0.28);
}
.philo-card:not(.reveal):hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(184,134,11,0.12); }
.philo-card h3 { font-size: 1.5rem; margin: 0 0 12px; }
.philo-card p { color: rgba(245,242,235,0.75); margin: 0; font-size: 0.95rem; }

/* Ventures */
.section-ventures {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 134, 11, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(44, 44, 44, 0.2) 0%, transparent 100%);
}
.venture-showcase { display: flex; flex-direction: column; gap: 36px; }
.venture-featured {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.venture-upcoming-label {
  margin: 0 0 18px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.venture-upcoming-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.venture-card {
  position: relative;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(245, 242, 235, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
.venture-card:not(.reveal) {
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.venture-card--featured {
  min-height: 300px;
  padding: 36px 32px;
  background: linear-gradient(165deg, rgba(30, 30, 30, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.venture-card--compact {
  min-height: 0; padding: 24px 22px;
  background: rgba(16, 16, 16, 0.7);
}
.venture-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.venture-card--compact .venture-card-top { margin-bottom: 16px; }
.venture-card:not(.reveal):hover {
  transform: translateY(-4px);
  border-color: rgba(184, 134, 11, 0.28);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.venture-card.is-live {
  border-left: 3px solid var(--gold);
}
.venture-card.is-soon { opacity: 1; }
.venture-icon {
  width: 48px; height: 48px; margin-bottom: 0; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184, 134, 11, 0.08); border: 1px solid rgba(184, 134, 11, 0.18);
  transition: background 0.3s, border-color 0.3s;
  position: relative; flex-shrink: 0;
}
.venture-card--compact .venture-icon { width: 40px; height: 40px; border-radius: 12px; }
.venture-icon::before {
  content: ''; display: block;
  width: 18px; height: 18px;
  background: var(--gold-light);
  mask-size: contain; mask-repeat: no-repeat; mask-position: center;
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
}
.venture-icon--travel::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
}
.venture-icon--charity::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}
.venture-icon--edu::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 3 1 9l11 6 9-4.91V17h2V9L12 3zm0 13L5 12v4.5c0 2.5 3.5 4.5 7 4.5s7-2 7-4.5V12l-7 4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 3 1 9l11 6 9-4.91V17h2V9L12 3zm0 13L5 12v4.5c0 2.5 3.5 4.5 7 4.5s7-2 7-4.5V12l-7 4z'/%3E%3C/svg%3E");
}
.venture-icon--agro::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3A4.94 4.94 0 0 0 8 20c4 0 5.5-2.5 9-2.5s5 2.5 9 2.5a4.94 4.94 0 0 0 1.29.7l1 2.3 1.89-.66C18.1 16.17 16 10 7 8V5h10V3H7v5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3A4.94 4.94 0 0 0 8 20c4 0 5.5-2.5 9-2.5s5 2.5 9 2.5a4.94 4.94 0 0 0 1.29.7l1 2.3 1.89-.66C18.1 16.17 16 10 7 8V5h10V3H7v5z'/%3E%3C/svg%3E");
}
.venture-icon--foundation::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 3 2 9v2h20V9L12 3zm0 2.18L18.82 9H5.18L12 5.18zM4 11v8h3v-6h2v6h6v-6h2v6h3v-8H4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 3 2 9v2h20V9L12 3zm0 2.18L18.82 9H5.18L12 5.18zM4 11v8h3v-6h2v6h6v-6h2v6h3v-8H4z'/%3E%3C/svg%3E");
}
.venture-card:hover .venture-icon { border-color: rgba(184, 134, 11, 0.35); background: rgba(184, 134, 11, 0.12); }
.venture-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: var(--ivory);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.venture-card--featured .venture-brand {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}
.venture-card--compact .venture-brand {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}
.venture-category {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin: 0 0 14px; color: var(--gold-light);
}
.venture-card p {
  color: rgba(245, 242, 235, 0.62); font-size: 0.94rem; line-height: 1.7;
  flex: 1; margin: 0 0 24px;
}
.venture-card--compact p { font-size: 0.88rem; margin-bottom: 0; line-height: 1.65; }
.venture-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700; color: var(--gold-light);
  text-decoration: none; letter-spacing: 0.02em;
  padding-top: 4px; margin-top: auto;
  border-top: 1px solid rgba(245, 242, 235, 0.08);
  padding-top: 20px;
  transition: color 0.2s, gap 0.2s;
}
.venture-link:hover { color: var(--ivory); gap: 12px; }
.venture-link svg { flex-shrink: 0; opacity: 0.85; }
.venture-badge {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0; width: fit-content;
}
.badge-live {
  background: rgba(184, 134, 11, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(184, 134, 11, 0.25);
}
.badge-soon {
  background: rgba(245, 242, 235, 0.04);
  color: rgba(245, 242, 235, 0.45);
  border: 1px solid rgba(245, 242, 235, 0.1);
}

/* Roadmap */
.roadmap { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 720px; }
.roadmap::before {
  content: ''; position: absolute; left: 18px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold), var(--gold-deep), rgba(184,134,11,0.15));
  box-shadow: 0 0 8px rgba(184, 134, 11, 0.25);
}
.roadmap-item {
  display: grid; grid-template-columns: 40px 1fr; gap: 20px; padding: 20px 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.roadmap-item.is-visible { opacity: 1; transform: none; }
.roadmap-item:nth-child(2).is-visible { transition-delay: 0.08s; }
.roadmap-item:nth-child(3).is-visible { transition-delay: 0.16s; }
.roadmap-item:nth-child(4).is-visible { transition-delay: 0.24s; }
.roadmap-item:nth-child(5).is-visible { transition-delay: 0.32s; }
.roadmap-item:not(.is-visible) { transition-delay: 0s; }
.roadmap-dot {
  width: 14px; height: 14px; border-radius: 50%; margin-top: 6px; margin-left: 12px;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 0 0 4px rgba(184,134,11,0.2), inset 0 1px 2px rgba(255, 235, 190, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
}
.roadmap-item h4 { margin: 0 0 6px; }
.roadmap-item p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.roadmap-item.is-active .roadmap-dot { animation: goldPulse 2s ease-in-out infinite; }

/* Vision mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card {
  background: rgba(44,44,44,0.55); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
}
.vm-card:not(.reveal) { transition: transform 0.3s; }
.vm-card:not(.reveal):hover { transform: translateY(-4px); }
.vm-card h3 { margin: 0 0 14px; font-size: 1.35rem; }
.vm-card p, .vm-card li { color: rgba(245,242,235,0.78); }
.vm-list { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 10px; }

/* Presence */
.presence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.presence-card {
  padding: 24px 22px; border-radius: var(--radius); background: rgba(44,44,44,0.55);
  border: 1px solid var(--line);
}
.presence-card:not(.reveal) { transition: transform 0.3s, border-color 0.3s; }
.presence-card:not(.reveal):hover { transform: translateY(-5px); border-color: var(--gold); }
.presence-card h4 { margin: 0 0 8px; font-size: 1.1rem; }
.presence-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.presence-future {
  margin-top: 24px; padding: 20px 22px; border-radius: var(--radius);
  border: 1px dashed var(--line); color: var(--muted); font-weight: 600;
}

/* Leadership */
.leadership-section {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #080808 0%, var(--obsidian) 45%, #111 100%);
}
.leadership-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.leadership-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(184, 134, 11, 0.14), transparent 65%),
    radial-gradient(ellipse 45% 40% at 80% 70%, rgba(212, 168, 83, 0.1), transparent 60%),
    repeating-linear-gradient(125deg, transparent 0, transparent 90px, rgba(184, 134, 11, 0.035) 90px, rgba(184, 134, 11, 0.035) 91px);
}
.abstract-shape {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184, 134, 11, 0.18);
  animation: abstractDrift 18s ease-in-out infinite;
}
.abstract-shape-1 {
  width: 420px; height: 420px; top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.08), transparent 68%);
}
.abstract-shape-2 {
  width: 280px; height: 280px; bottom: -60px; left: -40px;
  background: radial-gradient(circle, rgba(44, 44, 44, 0.9), transparent 70%);
  animation-delay: -6s;
}
.abstract-shape-3 {
  width: 160px; height: 160px; top: 40%; left: 55%;
  background: conic-gradient(from 45deg, rgba(184, 134, 11, 0.15), transparent, rgba(184, 134, 11, 0.08));
  border-radius: 30% 70% 60% 40%;
  animation: abstractPulse 8s ease-in-out infinite;
}
.leadership-section .container { position: relative; z-index: 1; }
.leadership-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.leader-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start;
  padding: 28px; border-radius: 20px;
  background: linear-gradient(145deg, rgba(44, 44, 44, 0.72), rgba(10, 10, 10, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.leader-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 134, 11, 0.45);
  box-shadow: 0 28px 64px rgba(184, 134, 11, 0.12);
}
.leader-photo-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  background: linear-gradient(160deg, rgba(184, 134, 11, 0.28), rgba(10, 10, 10, 0.98));
  min-height: 280px;
}
.leader-photo-frame {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border: 2px solid rgba(184, 134, 11, 0.35);
  border-radius: 16px;
  box-shadow: inset 0 0 32px rgba(184, 134, 11, 0.08);
}
.leader-photo-placeholder {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(212, 168, 83, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(44, 44, 44, 0.9), rgba(10, 10, 10, 1));
}
.leader-photo-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--gold-light);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.leader-photo-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  display: block; position: relative; z-index: 1;
  background: transparent;
}
.leader-photo-wrap--solid {
  background: #ffffff;
}
.leader-photo-wrap--solid img {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}
.leader-info h3 {
  margin: 0 0 6px; font-size: 1.35rem;
  animation: titleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.leader-role {
  font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 16px;
}
.leader-info p { color: rgba(245, 242, 235, 0.78); margin: 0 0 12px; font-size: 0.94rem; }

/* Impact */
.impact-panel {
  background: linear-gradient(135deg, rgba(184,134,11,0.12), rgba(44,44,44,0.4));
  border: 1px solid var(--line); border-radius: 20px; padding: 40px 36px;
}
.impact-panel p { color: rgba(245,242,235,0.82); margin: 0 0 14px; font-size: 1.02rem; }
.aspire-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.aspire-item {
  padding: 16px 18px; border-radius: 12px; background: rgba(10,10,10,0.5);
  border-left: 3px solid var(--gold-dark);
  border-image: linear-gradient(180deg, var(--gold-bright), var(--gold), var(--gold-deep)) 1;
  font-weight: 700; color: var(--ivory);
  box-shadow: inset 2px 0 8px rgba(184, 134, 11, 0.12);
}
.aspire-item:not(.reveal) { transition: transform 0.25s, background 0.25s; }
.aspire-item:hover { background: rgba(184,134,11,0.08); }
.aspire-item.reveal.is-visible:hover {
  transform: translateY(0) translateX(6px);
}

/* CTA band */
.cta-band {
  text-align: center; padding: 64px 24px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(184,134,11,0.15), rgba(44,44,44,0.6));
  border: 1px solid var(--line);
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 24px; }
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
}
@media (max-width: 960px) {
  .cta-actions {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .cta-actions .btn {
    width: min(100%, 300px);
    margin: 0;
  }
}

/* Back to top */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 180;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(10, 10, 10, 0.88);
  color: var(--gold-light); font-size: 1.1rem; font-weight: 800;
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold); background: rgba(184, 134, 11, 0.15); }

/* Footer */
.site-footer {
  padding: 56px 0 36px; border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(44,44,44,0.4));
}
.footer-logo-img {
  height: 80px; margin-bottom: 16px;
  filter:
    drop-shadow(0 1px 0 rgba(255, 220, 150, 0.22))
    drop-shadow(0 6px 16px rgba(184, 134, 11, 0.28))
    brightness(1.04) contrast(1.05) saturate(1.08);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-grid h3 { font-size: 1rem; margin: 0 0 14px; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  color: var(--muted); font-size: 0.82rem;
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 190;
  background: rgba(10,10,10,0.97); padding: 24px; flex-direction: column; gap: 16px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { text-decoration: none; font-weight: 700; font-size: 1.1rem; color: var(--ivory); transition: color 0.2s; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .split, .philo-grid, .venture-featured, .venture-upcoming-grid, .vm-grid, .presence-grid, .leadership-grid, .footer-grid, .values-grid, .about-segments-grid { grid-template-columns: 1fr; }
  .founder-spotlight,
  .founder-spotlight.split {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    margin: 0;
  }
  .founder-spotlight .founder-photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .founder-spotlight .leader-photo-wrap,
  .founder-photo-wrap {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  .founder-copy {
    width: 100%;
    min-width: 0;
  }
  .leader-card { grid-template-columns: 1fr; }
  .stat-row, .aspire-list { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .section { padding: 72px 0; }

  .values-grid { gap: 14px; }
  .value-card {
    display: flex;
    align-items: stretch;
    text-align: left;
    padding: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.96) 0%, rgba(14, 14, 14, 0.98) 100%);
    border: 1px solid rgba(245, 242, 235, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }
  .value-card::before {
    opacity: 1;
    height: 100%;
    width: 3px;
    right: auto;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  }
  .value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 134, 11, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  }
  .value-num {
    flex: 0 0 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--gold-bright);
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.16), rgba(184, 134, 11, 0.05));
    border-right: 1px solid rgba(184, 134, 11, 0.18);
    text-shadow: 0 1px 12px rgba(212, 168, 83, 0.35);
  }
  .value-card__body {
    flex: 1;
    padding: 20px 22px 20px 18px;
    min-width: 0;
  }
  .value-card h4 {
    font-size: 1.08rem;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
  }
  .value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.68);
  }
}

/* Reveal cards — shadow/border transitions after base card rules */
.stat-card.reveal,
.value-card.reveal,
.philo-card.reveal,
.venture-card.reveal,
.presence-card.reveal,
.vm-card.reveal,
.aspire-item.reveal,
.impact-panel.reveal,
.cta-band.reveal,
.corp-info-card.reveal,
.venture-card-compact.reveal,
.philo-card-compact.reveal,
.impact-card-compact.reveal,
.leadership-teaser.reveal {
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .roadmap-item { opacity: 1; transform: none; transition: none; }
  .page-hero .kicker, .page-hero h1, .page-hero .page-hero-lead { opacity: 1; animation: none; }
  .section-head.reveal .kicker, .section-head.reveal h2, .section-head.reveal .section-sub, .section-head.reveal > p { opacity: 1; animation: none; transform: none; }
  .hero.is-hero-visible .hero-copy > *,
  .hero.is-hero-visible .hero-visual,
  .hero.is-hero-visible .title-line,
  .hero.is-hero-visible .hero-corporate-inner > * { animation: none; opacity: 1; transform: none; }
  .hero-copy > *, .hero-visual, .title-line, .title-animate,
  .hero-corporate-inner > .hero-eyebrow,
  .hero-corporate-inner > .hero-lead-compact,
  .hero-corporate-inner > .hero-cta { animation: none; }
  .hero-logo-img, .hero-orb, .marquee-track, .abstract-shape { animation: none; }
  .sparkle { animation: none; display: none; }
  .venture-card:hover, .stat-card:hover, .philo-card:hover, .leader-card:hover { transform: none; }
}

/* ——— Corporate homepage redesign ——— */
.section-compact { padding: 64px 0; }
.page-main { padding-top: var(--header-h); }
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 40px;
  background: linear-gradient(180deg, rgba(44, 44, 44, 0.35) 0%, transparent 100%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
  line-height: 1.12;
}
.page-hero-lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.7;
}
.page-hero .kicker,
.page-hero h1,
.page-hero .page-hero-lead {
  opacity: 0;
}
.page-hero .kicker {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.page-hero h1 {
  animation: titleReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.page-hero .page-hero-lead {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-corporate {
  min-height: min(88vh, 720px);
  max-height: 720px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 48px;
  position: relative;
  overflow: hidden;
}
.hero-bg-corporate {
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(184, 134, 11, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.4) 0%, var(--obsidian) 100%);
  opacity: 0.35;
}
.hero-bg-corporate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/img/logo.png') center center / min(420px, 52vw) no-repeat;
  opacity: 0.55;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 15%, transparent 72%);
}
.hero-corporate-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-title-compact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
}
.hero-corporate-inner > .hero-eyebrow,
.hero-corporate-inner > .hero-lead-compact,
.hero-corporate-inner > .hero-cta {
  opacity: 0;
  transform: translateY(32px);
}
.hero.is-hero-visible .hero-corporate-inner > .hero-eyebrow,
.hero.is-hero-visible .hero-corporate-inner > .hero-lead-compact,
.hero.is-hero-visible .hero-corporate-inner > .hero-cta {
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-corporate-inner > .hero-eyebrow { animation-delay: 0.15s !important; }
.hero-corporate-inner > .hero-lead-compact { animation-delay: 0.65s !important; }
.hero-corporate-inner > .hero-cta { animation-delay: 0.85s !important; }
.hero-lead-compact {
  font-size: 1.05rem;
  max-width: 54ch;
  color: rgba(245, 242, 235, 0.78);
  margin: 0 0 28px;
}

.btn-nav-cta {
  padding: 8px 16px;
  font-size: 0.78rem;
  white-space: nowrap;
}
.btn-nav-cta-mobile {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.82rem;
  margin-top: auto;
  align-self: flex-start;
}
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}
.text-link:hover { color: var(--gold-bright); }

.corp-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.corp-split-intro h2 { margin: 0 0 14px; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.corp-split-intro p { color: rgba(245, 242, 235, 0.78); margin: 0; line-height: 1.7; }
.corp-info-cards {
  display: grid;
  gap: 14px;
}
.corp-info-card {
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(24, 24, 24, 0.9);
  border: 1px solid rgba(245, 242, 235, 0.08);
}
.corp-info-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--gold-light);
}
.corp-info-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.7);
  line-height: 1.6;
}

.venture-grid-compact {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.venture-card-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.88);
  border: 1px solid rgba(245, 242, 235, 0.08);
  min-height: 220px;
}
.venture-card-compact h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}
.venture-card-compact p {
  margin: 0;
  flex: 1;
  font-size: 0.82rem;
  color: rgba(245, 242, 235, 0.68);
  line-height: 1.55;
}
.venture-card-compact.is-soon { opacity: 0.85; }

.philo-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.philo-card-compact {
  text-align: center;
  padding: 28px 22px;
  border-radius: 16px;
  background: rgba(24, 24, 24, 0.75);
  border: 1px solid rgba(245, 242, 235, 0.08);
}
.philo-card-compact h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--gold-light);
}
.philo-card-compact p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.72);
  line-height: 1.6;
}

.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.stat-row-inline {
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.leadership-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.leadership-teaser {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(245, 242, 235, 0.08);
}
.leadership-teaser-photo {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.25);
}
.leadership-teaser-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.leadership-teaser h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.leadership-teaser p:last-child {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(245, 242, 235, 0.72);
  line-height: 1.6;
}
.section-cta-link { text-align: center; margin-top: 20px; }

.impact-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.impact-card-compact {
  padding: 26px 22px;
  border-radius: 16px;
  background: rgba(24, 24, 24, 0.8);
  border-top: 3px solid var(--gold);
}
.impact-card-compact h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--gold-light);
}
.impact-card-compact p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.72);
  line-height: 1.6;
}

.cta-band-compact {
  text-align: center;
  padding: 40px 32px;
}
.cta-band-compact h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.nav-links { gap: 16px; }
.nav-links a { font-size: 0.82rem; }

@media (max-width: 1100px) {
  .venture-grid-compact { grid-template-columns: repeat(3, 1fr); }
  .btn-nav-cta { display: none; }
}

@media (max-width: 960px) {
  .hero-corporate {
    min-height: auto;
    max-height: none;
    padding: calc(var(--header-h) + 24px) 0 40px;
  }
  .corp-split { grid-template-columns: 1fr; }
  .venture-grid-compact { grid-template-columns: 1fr; }
  .philo-grid-compact { grid-template-columns: 1fr; }
  .stat-row-inline { grid-template-columns: repeat(2, 1fr); }
  .leadership-teaser-grid { grid-template-columns: 1fr; }
  .impact-grid-compact { grid-template-columns: 1fr; }
  .section-compact { padding: 52px 0; }
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
}
