/* ═══════════════════════════════════════════════════════════════════════════
   VISIONAIRES INVESTMENT GROUP — Design System v4
   Premium · Matte · Architectural · Cinematic · Controlled Luxury
   Black-and-Gold — no metallic, no sci-fi, no industrial
═══════════════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  /* Core palette — never flat, always layered */
  --black:      #000000;
  --charcoal:   #0c0c0c;
  --charcoal-2: #111111;
  --charcoal-3: #161616;
  --charcoal-4: #1c1c1c;
  --charcoal-5: #222222;

  /* Gold — warm, matte, controlled warmth */
  --gold:    #C9A34E;
  --gold-lt: #dfc07e;
  --gold-dk: #9a7630;
  --gold-glow: rgba(201,163,78,0.22);

  --white: #ffffff;

  /* White alpha scale */
  --w95: rgba(255,255,255,0.95);
  --w90: rgba(255,255,255,0.90);
  --w70: rgba(255,255,255,0.70);
  --w80: rgba(255,255,255,0.80);
  --w60: rgba(255,255,255,0.60);
  --w50: rgba(255,255,255,0.50);
  --w40: rgba(255,255,255,0.40);
  --w35: rgba(255,255,255,0.35);
  --w20: rgba(255,255,255,0.20);
  --w15: rgba(255,255,255,0.15);
  --w08: rgba(255,255,255,0.08);
  --w05: rgba(255,255,255,0.05);
  --w04: rgba(255,255,255,0.04);
  --w02: rgba(255,255,255,0.02);

  /* Gold alpha scale */
  --g40: rgba(201,163,78,0.40);
  --g30: rgba(201,163,78,0.30);
  --g20: rgba(201,163,78,0.20);
  --g15: rgba(201,163,78,0.15);
  --g12: rgba(201,163,78,0.12);
  --g10: rgba(201,163,78,0.10);
  --g08: rgba(201,163,78,0.08);
  --g06: rgba(201,163,78,0.06);
  --g04: rgba(201,163,78,0.04);
  --g03: rgba(201,163,78,0.03);

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h: 76px;
  --max-w: 1320px;

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.55, 0, 1, 0.45);
  --t:        0.38s var(--ease);
  --t-fast:   0.22s var(--ease);

  /* Texture: brushed/matte noise overlay for dividers & select panels */
  --texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea { font-family: inherit; }
canvas { display: block; }

/* ── HOMEPAGE — cinematic single-screen experience ─────────────────────── */
/* Hero fills exactly the viewport; footer follows immediately with no gap.
   No hidden scrollable sections, no overflow-y scroll on the main axis.   */
body.page-home {
  /* Allow normal scroll so footer is reachable, but clamp total page height
     so there is never blank space below the footer. */
}
body.page-home .hero-full {
  /* Reinforce exact 100dvh so nothing bleeds below */
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
}
/* Guarantee zero gap / margin between hero and footer on homepage */
body.page-home .site-footer {
  margin-top: 0;
}

/* ── PAGE TRANSITION ────────────────────────────────────────────────────── */
#page-transition {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s ease;
}

/* ── UTILITIES ───────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 3rem; width: 100%; }
.gold-txt   { color: var(--gold); }
.centered   { text-align: center; }
.mt-sm  { margin-top: 0.75rem; }
.mt-md  { margin-top: 1.25rem; }
.mt-lg  { margin-top: 2rem; }
.mt-xl  { margin-top: 2.5rem; }
.hidden { display: none !important; }

/* Eyebrow — refined gold pre-header */
.eyebrow {
  display: inline-block;
  font-size: 0.60rem; font-weight: 700;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.eyebrow-gold { color: var(--gold); }

/* ── MATTE TEXTURE OVERLAY — applied to dividers & selected panels ────── */
/* Brushed, barely-noticeable — adds tactile depth without sheen */
.texture-overlay::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.018;
  z-index: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
/* Primary — gold fill with soft glow on hover */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.9rem 2.4rem;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  color: var(--black);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--gold);
  position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
  cursor: pointer;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(201,163,78,0.36),
    0  4px 14px rgba(201,163,78,0.20),
    0  0   1px  rgba(201,163,78,0.50);
  filter: brightness(1.08);
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold.btn-lg { padding: 1.15rem 3.2rem; font-size: 0.8rem; }
.btn-gold.btn-full { width: 100%; justify-content: center; }

/* Secondary — outline with gold fill-transition on hover */
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.9rem 2.4rem;
  background: transparent; color: var(--w70);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid var(--w20);
  position: relative; overflow: hidden;
  transition: border-color var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}
.btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.38s var(--ease-out);
  z-index: 0;
}
.btn-outline span,
.btn-outline i { position: relative; z-index: 1; }
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201,163,78,0.18);
}
.btn-outline:hover::before { transform: translateY(0); }
.btn-outline.btn-lg { padding: 1.15rem 3.2rem; }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 2.2rem;
  background: transparent; color: var(--gold);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid var(--g20);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.btn-outline-gold:hover { background: var(--g10); border-color: var(--gold); }

.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.68rem; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── NAVIGATION ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 950;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.nav-transparent { background: transparent; }
.nav.nav-solid,
.nav.scrolled {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.97) 0%, rgba(8,6,2,0.96) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-bottom-color: var(--w05);
  box-shadow: 0 1px 0 var(--g08), 0 4px 24px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 3rem; height: 100%;
  display: flex; align-items: center;
  justify-content: space-between;
}

/* Logo — left */
.nav-logo { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.logo-mark {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.04em; line-height: 1;
  text-shadow: 0 0 20px rgba(201,163,78,0.20);
}
.logo-name {
  font-size: 0.64rem; font-weight: 400;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--w40);
}

/* Right cluster — About link + burger */
.nav-right { display: flex; align-items: center; gap: 2.5rem; flex-shrink: 0; }

.nav-about-link {
  font-size: 0.67rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--w60); position: relative;
  transition: color var(--t);
}
.nav-about-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 6px rgba(201,163,78,0.35);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-about-link:hover,
.nav-about-link.active { color: var(--white); }
.nav-about-link:hover::after,
.nav-about-link.active::after { transform: scaleX(1); }

/* ── BURGER — gold lines, morphs to × ───────────────────────────────────── */
/* z-index 970 — stays above overlay (z:850) */
.nav-burger {
  display: flex; flex-direction: column;
  gap: 5px; padding: 6px;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
  position: relative; z-index: 970;
}
.burger-line {
  display: block;
  width: 24px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
  box-shadow: 0 0 6px rgba(201,163,78,0.22);
  transition: width var(--t), opacity var(--t), transform var(--t);
  transform-origin: center;
}
.nav-burger .burger-line:nth-child(2) { width: 16px; }
.nav-burger:hover .burger-line { width: 24px; }

/* Burger → gold × when open */
.nav-burger.is-open .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px); width: 24px; opacity: 1;
}
.nav-burger.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px); width: 24px; opacity: 1;
}

/* ── OVERLAY MENU ────────────────────────────────────────────────────────── */
/* z-index: 850 — nav (950) and burger (970) sit above */
.nav-overlay {
  position: fixed; inset: 0; z-index: 850;
  /* Layered gradients — not flat black */
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(14,10,3,1) 0%, rgba(0,0,0,1) 65%),
    var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}
/* Subtle matte-texture depth inside overlay */
.nav-overlay::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, var(--g06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 85%, rgba(201,163,78,0.025) 0%, transparent 55%);
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 40%, var(--g06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 85%, rgba(201,163,78,0.025) 0%, transparent 55%),
    var(--texture);
  background-size: auto, auto, 200px 200px;
  opacity: 1;
}
.nav-overlay.overlay-open {
  opacity: 1; visibility: visible; pointer-events: all;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0s;
}

.overlay-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 0; text-align: center;
  position: relative; z-index: 1;
}
.overlay-links { display: flex; flex-direction: column; gap: 0; list-style: none; }
.overlay-links li { overflow: hidden; }

.overlay-links a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300; letter-spacing: -0.01em; line-height: 1.15;
  color: var(--w60); padding: 0.3rem 0; position: relative;
  transform: translateY(32px); opacity: 0;
  transition: color 0.3s var(--ease),
              transform 0.55s var(--ease),
              opacity 0.55s var(--ease);
}
.nav-overlay.overlay-open .overlay-links a { transform: translateY(0); opacity: 1; }
.nav-overlay.overlay-open .overlay-links li:nth-child(1) a { transition-delay: 0.05s; }
.nav-overlay.overlay-open .overlay-links li:nth-child(2) a { transition-delay: 0.10s; }
.nav-overlay.overlay-open .overlay-links li:nth-child(3) a { transition-delay: 0.15s; }
.nav-overlay.overlay-open .overlay-links li:nth-child(4) a { transition-delay: 0.20s; }

.overlay-links a::after {
  content: ''; position: absolute;
  bottom: 6px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 8px rgba(201,163,78,0.35);
  transition: transform 0.3s var(--ease); transform-origin: center;
}
.overlay-links a:hover { color: var(--white); }
.overlay-links a.active { color: var(--white); }
.overlay-links a.active::after,
.overlay-links a:hover::after { transform: translateX(-50%) scaleX(1); }

/* Matte divider between links and access */
.overlay-divider {
  width: 40px; height: 1px;
  background:
    linear-gradient(90deg, transparent, var(--g20), transparent);
  /* Barely-noticeable brushed texture on divider */
  box-shadow: 0 0 4px rgba(201,163,78,0.08);
  margin: 2rem auto 1.75rem; opacity: 0;
  transition: opacity 0.4s var(--ease) 0.35s;
}
.nav-overlay.overlay-open .overlay-divider { opacity: 1; }

.overlay-access {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); opacity: 0; transform: translateY(10px);
  transition: color 0.3s var(--ease),
              opacity 0.4s var(--ease) 0.38s,
              transform 0.4s var(--ease) 0.38s;
  position: relative; z-index: 1;
  text-shadow: 0 0 16px rgba(201,163,78,0.25);
}
.nav-overlay.overlay-open .overlay-access { opacity: 1; transform: translateY(0); }
.overlay-access:hover { color: var(--gold-lt); }
.overlay-access > i { font-size: 0.65rem; }

.overlay-footer {
  position: absolute; bottom: 2.5rem; left: 0; right: 0;
  text-align: center; font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--w15);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  opacity: 0; transition: opacity 0.4s var(--ease) 0.48s;
  z-index: 1;
}
.nav-overlay.overlay-open .overlay-footer { opacity: 1; }
.ovf-sep { color: var(--gold); opacity: 0.4; }

body.overlay-active { overflow: hidden; }

/* ════════════════════════════════════════════════════════════════════════════
   HERO — FULL-VIEWPORT GATEWAY
════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* Layered warm-toned depth — not flat */
  background:
    radial-gradient(ellipse 120% 90% at 50% 0%,   rgba(24,16,4,0.90) 0%, transparent 60%),
    radial-gradient(ellipse 90%  70% at 50% 100%, rgba(10,7,1,0.75)  0%, transparent 55%),
    radial-gradient(ellipse 60%  50% at 80% 50%,  rgba(16,11,3,0.35) 0%, transparent 60%),
    var(--black);
}

/* Full-viewport homepage hero — exact 100vh, footer sits flush below */
.hero-full {
  height: 100vh;
  height: 100dvh;
  min-height: 560px; /* absolute floor on very small devices */
  flex-direction: column;
  justify-content: center;
}

/* Subtle architectural grid */
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(var(--w04) 1px, transparent 1px),
    linear-gradient(90deg, var(--w04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 88% 82% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 50% 50%, black 10%, transparent 70%);
  opacity: 0.5;
}

/* Soft gold ambient glow — centered, not harsh */
.hero-glow {
  position: absolute; z-index: 3; pointer-events: none;
  width: 900px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(ellipse at center,
    rgba(201,163,78,0.07) 0%,
    rgba(201,163,78,0.025) 40%,
    transparent 68%
  );
  animation: pulse 8s ease-in-out infinite;
}

/* Vignette edges — cinematic framing */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.55) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, transparent 18%, transparent 78%, rgba(0,0,0,0.65) 100%);
}

/* ── HERO CENTER ──────────────────────────────────────────────────────────── */
.hero-center {
  position: relative; z-index: 10;
  width: 100%; max-width: 1320px; margin: 0 auto;
  padding: calc(var(--nav-h) + 3.5rem) 3rem 4rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  flex: 1; justify-content: center;
}

/* Pre-header eyebrow — small gold uppercase, refined */
.hero-eyebrow {
  display: inline-block; margin-bottom: 1.8rem;
  font-size: 0.60rem; font-weight: 700;
  letter-spacing: 0.40em; text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(201,163,78,0.30);
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.15s forwards;
}

/* Main headline — slightly larger, no line break */
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8.5vw, 9.8rem);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.025em; white-space: nowrap;
  margin-bottom: 0;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 0.35s forwards;
  overflow: visible;
}

/* White portion */
.hl-white { color: var(--white); display: inline; position: relative; overflow: hidden; }

/* Gold portion — soft warm glow */
.hl-gold {
  color: var(--gold); display: inline; position: relative;
  text-shadow:
    0 0 100px rgba(201,163,78,0.32),
    0 0  40px rgba(201,163,78,0.16),
    0 0  10px rgba(201,163,78,0.08);
  animation: goldBreath 7s ease-in-out infinite;
}

@keyframes goldBreath {
  0%, 100% {
    text-shadow:
      0 0 100px rgba(201,163,78,0.32),
      0 0  40px rgba(201,163,78,0.16),
      0 0  10px rgba(201,163,78,0.08);
  }
  50% {
    text-shadow:
      0 0 140px rgba(201,163,78,0.46),
      0 0  60px rgba(201,163,78,0.24),
      0 0  18px rgba(201,163,78,0.14);
  }
}

/* Diagonal light sweep across "Where Vision" */
@keyframes shimmer {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(320%)  skewX(-18deg); }
}
.hero-headline .hl-white::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.04) 40%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 60%,
    transparent 100%
  );
  animation: shimmer 6s ease-in-out 1.8s infinite;
  pointer-events: none;
}

/* Gold hairline rule — load animation, soft glow */
.hero-rule {
  width: 64px; height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dk) 15%,
    var(--gold) 50%,
    var(--gold-dk) 85%,
    transparent 100%
  );
  margin: 2.4rem auto 2.4rem;
  opacity: 0; transform: scaleX(0); transform-origin: center;
  animation: ruleExpand 1.1s var(--ease) 0.7s forwards;
  box-shadow: 0 0 16px rgba(201,163,78,0.40), 0 0 4px rgba(201,163,78,0.20);
}
@keyframes ruleExpand {
  0%   { opacity: 0; transform: scaleX(0); }
  40%  { opacity: 1; transform: scaleX(0.4); }
  100% { opacity: 1; transform: scaleX(1); }
}

/* Supporting / power line */
.hero-statement {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--w40); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeIn 1.1s ease 0.68s forwards;
}

/* Lead copy */
.hero-lead {
  font-size: 1.05rem; line-height: 1.88;
  color: var(--w55, rgba(255,255,255,0.55)); max-width: 540px;
  margin-bottom: 2.8rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.78s forwards;
}

/* CTA row — Explore Platform (primary) + Investor Access (outline) */
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.95s forwards;
}

/* Category row */
.hero-divisions {
  display: flex; align-items: center; gap: 1.5rem; margin-top: 3.2rem;
  opacity: 0; animation: fadeIn 1.1s ease 1.28s forwards;
}
.hero-divisions span {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--w35); transition: color var(--t), text-shadow var(--t);
}
.hero-divisions span:not(.hd-sep):hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201,163,78,0.30);
}
/* Vertical separator */
.hd-sep { width: 1px; height: 12px; background: var(--w15); flex-shrink: 0; }

/* ── HERO HAIRLINE DIVIDER (below hero on inner-page flows) ─────────────── */
/* Matte brushed gold line — barely noticeable texture */
.hero-divider {
  height: 1px; position: relative;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--g12) 18%,
    var(--gold) 50%,
    var(--g12) 82%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(201,163,78,0.18);
  overflow: hidden;
}
.hero-divider::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.03;
}

/* ── HERO MICRO-FOOTER ────────────────────────────────────────────────────── */
.hero-foot {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: 1.5rem 3rem;
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--w15);
  opacity: 0; animation: fadeIn 1s ease 1.65s forwards;
}
.hf-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); opacity: 0.4; flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION DEPTH SYSTEM — layered gradients, no flat backgrounds
════════════════════════════════════════════════════════════════════════════ */

/* ── OPERATING PLATFORM ──────────────────────────────────────────────────── */
.s-platform {
  background:
    radial-gradient(ellipse 90% 60% at 15% 50%, rgba(16,11,3,0.6) 0%, transparent 55%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  padding: 7.5rem 0 7rem;
  border-bottom: 1px solid var(--w05);
  position: relative; overflow: hidden;
}
/* Matte texture on platform panel */
.s-platform::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.025;
}
/* Soft gold left-edge accent */
.s-platform::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--g08) 25%,
    var(--g15) 50%,
    var(--g08) 75%,
    transparent 100%
  );
  box-shadow: 1px 0 8px rgba(201,163,78,0.06);
}

.s-platform-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 5fr 7fr; gap: 7rem; align-items: start;
  position: relative; z-index: 1;
}

.platform-editorial .eyebrow { display: block; }
.platform-h {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.10;
  color: var(--white);
}
.platform-h em { font-style: normal; color: var(--gold); }
.platform-lead {
  font-size: 1.05rem; color: var(--w60); line-height: 1.90; margin-bottom: 0;
}

/* ── SECTION SEPARATOR — brushed matte gold hairline ─────────────────────── */
.s-divider {
  height: 1px; position: relative;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--g08) 20%,
    var(--g20) 50%,
    var(--g08) 80%,
    transparent 100%
  );
  box-shadow: 0 0 6px rgba(201,163,78,0.10);
  overflow: hidden;
}
.s-divider::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.04;
}

/* ── DIVISIONS ────────────────────────────────────────────────────────────── */
.s-divisions {
  background:
    linear-gradient(180deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  padding: 0;
  border-bottom: 1px solid var(--w05);
  position: relative; overflow: hidden;
}
.s-divisions::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--g03) 0%, transparent 60%);
}

.s-divisions-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  position: relative; z-index: 1;
}

.division-card {
  padding: 4.5rem 3rem 4rem;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--w05);
  transition: background var(--t), box-shadow var(--t);
  cursor: default;
  /* Layer separation shadow */
  box-shadow: inset -1px 0 0 var(--w04);
}
.division-card:last-child { border-right: none; box-shadow: none; }

/* Subtle hover lift */
.division-card:hover {
  background:
    linear-gradient(135deg, rgba(201,163,78,0.04) 0%, transparent 60%),
    rgba(255,255,255,0.01);
  box-shadow:
    inset -1px 0 0 var(--w04),
    0 4px 32px rgba(0,0,0,0.35);
}

/* Matte texture on division panels */
.division-card::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.02;
  transition: opacity var(--t);
  z-index: 0;
}
.division-card:hover::after { opacity: 0.04; }

/* Gold underline reveals on hover */
.division-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dk) 20%,
    var(--gold) 50%,
    var(--gold-dk) 80%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(201,163,78,0.35);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
  z-index: 1;
}
.division-card:hover::before { transform: scaleX(1); }

.div-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2rem; position: relative; z-index: 1;
}
.div-icon { font-size: 1.4rem; color: var(--gold); }
.div-number {
  font-family: var(--serif); font-size: 3.8rem; font-weight: 300;
  color: var(--g08); line-height: 1; letter-spacing: -0.02em;
  transition: color var(--t);
}
.division-card:hover .div-number { color: var(--g15); }

.div-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400; line-height: 1.2;
  color: var(--white); margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}

.div-desc {
  font-size: 0.9rem; color: var(--w60); line-height: 1.82;
  margin-bottom: 2.2rem; position: relative; z-index: 1;
}

.div-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t), color var(--t), text-shadow var(--t);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  position: relative; z-index: 1;
}
.div-cta:hover {
  gap: 0.8rem;
  border-bottom-color: var(--g20);
  text-shadow: 0 0 12px rgba(201,163,78,0.30);
}
.div-cta i { font-size: 0.6rem; transition: transform var(--t); }
.div-cta:hover i { transform: translateX(3px); }

/* ── STATEMENT BAND ──────────────────────────────────────────────────────── */
.s-statement {
  background:
    radial-gradient(ellipse 90% 140% at 50% 50%, rgba(16,11,3,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60%  80% at 50% 50%, var(--g06) 0%, transparent 65%),
    var(--black);
  border-top: 1px solid var(--w05);
  border-bottom: 1px solid var(--w05);
  padding: 8rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
/* Cinematic vignette */
.s-statement::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,0.50) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.50) 100%);
  z-index: 0;
}
/* Matte texture */
.s-statement::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.03; z-index: 0;
}

.statement-text {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 300; line-height: 1.16;
  color: var(--white); letter-spacing: -0.02em;
  max-width: 960px; margin: 0 auto;
  position: relative; z-index: 1;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.statement-text em {
  font-style: normal; color: var(--gold);
  text-shadow:
    0 0 60px rgba(201,163,78,0.28),
    0 0 20px rgba(201,163,78,0.12);
}

/* ── WHY VISIONAIRES ─────────────────────────────────────────────────────── */
.s-why {
  background:
    linear-gradient(180deg,
      var(--charcoal-2) 0%,
      var(--charcoal-3) 60%,
      var(--charcoal-2) 100%
    );
  padding: 7.5rem 0;
  border-bottom: 1px solid var(--w05);
  position: relative; overflow: hidden;
}
.s-why::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 85% 40%, rgba(16,11,3,0.5) 0%, transparent 55%);
}

.s-why-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 3rem;
  position: relative; z-index: 1;
}

.why-header { margin-bottom: 4.5rem; max-width: 640px; }
.why-header .eyebrow { display: block; }
.why-h {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 300; line-height: 1.10; color: var(--white); margin-bottom: 1rem;
}
.why-sub { font-size: 1rem; color: var(--w60); line-height: 1.78; }

/* Three pillars */
.why-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--w05);
  border: 1px solid var(--w05);
  /* Layer separation shadow */
  box-shadow: 0 8px 40px rgba(0,0,0,0.40);
}
.why-pillar {
  padding: 3.25rem 2.75rem;
  background:
    linear-gradient(180deg, var(--charcoal-3) 0%, var(--charcoal-4) 100%);
  position: relative; overflow: hidden;
  transition: background var(--t), box-shadow var(--t);
}
.why-pillar:hover {
  background:
    linear-gradient(180deg, var(--charcoal-4) 0%, var(--charcoal-5) 100%);
  box-shadow: inset 0 0 24px rgba(201,163,78,0.04);
}
/* Matte texture on pillars */
.why-pillar::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.025; z-index: 0;
}
/* Gold top reveal */
.why-pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dk) 20%,
    var(--gold) 50%,
    var(--gold-dk) 80%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(201,163,78,0.30);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 1;
}
.why-pillar:hover::before { transform: scaleX(1); }

.wp-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  color: var(--g08); line-height: 1; margin-bottom: 1.5rem;
  letter-spacing: -0.02em; position: relative; z-index: 1;
  transition: color var(--t);
}
.why-pillar:hover .wp-num { color: var(--g18, rgba(201,163,78,0.18)); }
.wp-title {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 500;
  color: var(--white); line-height: 1.25; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.wp-body { font-size: 0.9rem; color: var(--w60); line-height: 1.80; position: relative; z-index: 1; }

/* ── INVESTOR ACCESS CTA ──────────────────────────────────────────────────── */
.s-investor-cta {
  background:
    radial-gradient(ellipse 80% 90% at 50% 50%, rgba(16,11,3,0.75) 0%, transparent 65%),
    radial-gradient(ellipse 70% 80% at 50% 50%, var(--g06) 0%, transparent 70%),
    var(--charcoal-2);
  padding: 7.5rem 0;
  border-top: 1px solid var(--w05);
  border-bottom: 1px solid var(--w05);
  position: relative; overflow: hidden;
}
.s-investor-cta::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,0.40) 0%, transparent 28%, transparent 72%, rgba(0,0,0,0.40) 100%);
}
/* Matte texture */
.s-investor-cta::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.025;
}

.s-investor-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 5rem; position: relative; z-index: 1;
}
.investor-cta-copy .eyebrow { display: block; }
.investor-cta-h {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 300; line-height: 1.14; color: var(--white); margin-bottom: 1rem;
}
.investor-cta-h em { font-style: normal; color: var(--gold); }
.investor-cta-body { font-size: 1rem; color: var(--w60); line-height: 1.82; max-width: 520px; }
.investor-cta-action { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER — Multi-column premium layout
   Brand block left  ·  Three columns right  ·  Copyright bar bottom
══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  /* Start at #080808 — splits the logo's left-edge (#020102) and
     right-edge (#1f1f1f) tones so the brand block feels flush on both sides */
  background:
    linear-gradient(180deg,
      #080808  0%,
      #0d0d0d  25%,
      #111111  60%,
      #080808 100%
    );
  border-top: 1px solid transparent;
  position: relative; overflow: hidden;
  margin-top: 0;
}
body.page-home .site-footer {
  background:
    linear-gradient(180deg,
      #060606  0%,
      #0a0a0a  25%,
      #0f0f0f  60%,
      #070707 100%
    );
}

/* Gold hairline — top edge, soft glow */
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent  0%,
    var(--g08)  15%,
    var(--g20)  50%,
    var(--g08)  85%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(201,163,78,0.14);
  pointer-events: none; z-index: 2;
}

/* Barely-noticeable matte texture */
.site-footer::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.022; z-index: 0;
}

/* ── INNER CONTAINER ──────────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════════════════
   FOOTER — HORIZONTAL BRAND ROW
   Logo  ·  vertical gold divider  ·  tagline
   Architecture: one row, flush with site background, no box, no card.
══════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER — SINGLE UNIFIED ROW
   [brand: logo + tagline]  |  divider  |  [FIRM · DIVISIONS · CONTACT]
   One flex band. No stacking. No separate containers.
══════════════════════════════════════════════════════════════════════════ */

/* ── OUTER WRAPPER: constrained, padded, one row ───────────────────────── */
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 3rem 1.75rem;    /* tight band — no excess height */
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--w05);
  position: relative; z-index: 1;
}

/* ── LEFT: brand unit ───────────────────────────────────────────────────── */
/* Logo stacked directly above tagline — locked as one visual unit.         */
.footer-brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;           /* tagline centres under the logo */
  gap: 0.55rem;
  margin-right: 3.5rem;
  /* Transparent PNG — no background treatment needed, logo sits on footer surface */
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.footer-logo-link {
  display: block;
  line-height: 0;
  text-decoration: none;
  outline: none;
  transition: opacity 0.32s ease;
}
.footer-logo-link:hover        { opacity: 0.76; }
.footer-logo-link:focus-visible {
  outline: 1px solid rgba(201,163,78,0.40);
  outline-offset: 6px;
}

.footer-logo-img {
  display: block;
  width: clamp(200px, 22vw, 300px);
  height: auto;
  /* Transparent PNG — renders directly on footer background, no treatment */
  background: none;
  border: none;
  box-shadow: none;
}

/* Tagline — centred caption directly under the logo */
.footer-logo-tagline {
  margin: 0;
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(0.80rem, 1.15vw, 0.92rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;            /* centred under logo */
}
.footer-logo-tagline em {
  font-style: inherit;
  color: var(--gold, #c9a34e);
}

/* ── CENTER: vertical gold divider ─────────────────────────────────────── */
.footer-vdivider {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  min-height: 80px;
  background: linear-gradient(
    180deg,
    transparent           0%,
    rgba(201,163,78,0.18) 15%,
    rgba(201,163,78,0.40) 50%,
    rgba(201,163,78,0.18) 85%,
    transparent          100%
  );
  /* Space on both sides of the divider */
  margin: 0 3.5rem;
}

/* ── RIGHT: nav columns ─────────────────────────────────────────────────── */
.footer-nav {
  flex: 1;                       /* fills remaining space */
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

/* ── COLUMN STYLES (shared with old .footer-col) ───────────────────────── */
.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 100px;
}

/* Column title — gold, uppercase, tracked */
.footer-col-title {
  font-size: 0.60rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201,163,78,0.18);
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--g12);
  white-space: nowrap;
}

/* Column link list */
.footer-col-links {
  display: flex; flex-direction: column;
  gap: 0.9rem; list-style: none;
}

.footer-col-links a {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--w50, rgba(255,255,255,0.50));
  position: relative;
  transition: color 0.28s var(--ease);
  display: inline-block;
  padding-bottom: 1px;
}

/* Gold underline reveal on hover */
.footer-col-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
  box-shadow: 0 0 6px rgba(201,163,78,0.25);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.30s var(--ease);
}
.footer-col-links a:hover { color: var(--w90); }
.footer-col-links a:hover::after { transform: scaleX(1); }

/* ── LEGAL BAR ──────────────────────────────────────────────────────────── */
.footer-legal {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative; z-index: 1;
}
.footer-legal span {
  font-size: 0.63rem;
  color: var(--w20);
  letter-spacing: 0.04em;
}
.footer-disc {
  font-size: 0.62rem;
  color: var(--w20);
  text-align: right;
  letter-spacing: 0.02em;
}



/* ══════════════════════════════════════════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════════════════════════════════════════ */
.page-banner {
  padding: calc(var(--nav-h) + 5rem) 3rem 5.5rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(16,11,3,0.85) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 50% 50%, var(--g06) 0%, transparent 65%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.55) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, transparent 40%);
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.025;
}
.page-banner-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-banner h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.25rem;
}
.page-banner p { font-size: 1.05rem; color: var(--w60); line-height: 1.82; }

/* ══════════════════════════════════════════════════════════════════════════
   SECTION PADS & BACKGROUNDS
══════════════════════════════════════════════════════════════════════════ */
.s-pad  { padding: 6rem 0; position: relative; }
.s-dark { background: var(--charcoal); }

/* ── INNER LAYOUTS ───────────────────────────────────────────────────────── */
.two-col-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: start;
}
.col-text .eyebrow, .col-text h2 { margin-bottom: 0.75rem; }
.col-text h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 1.25rem;
}
.col-text p { color: var(--w60); line-height: 1.82; }

/* ── SECTION HEADINGS ────────────────────────────────────────────────────── */
.container > .eyebrow,
.container > h2,
.container > p.section-lead { margin-bottom: 0.65rem; }
.container > h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 1.25rem;
}
.section-lead {
  font-size: 1.05rem; color: var(--w60); line-height: 1.87;
  max-width: 660px; margin-bottom: 2.75rem !important;
}

/* ── FOUR GRID ───────────────────────────────────────────────────────────── */
.four-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--w05);
  border: 1px solid var(--w05); margin-top: 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
}
.f-card {
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.s-dark .f-card { background: linear-gradient(160deg, var(--charcoal-3) 0%, var(--charcoal-4) 100%); }
.f-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(201,163,78,0.30);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.f-card:hover {
  background: linear-gradient(160deg, var(--charcoal-3) 0%, var(--charcoal-4) 100%);
  box-shadow: 0 2px 16px rgba(201,163,78,0.06);
}
.s-dark .f-card:hover { background: linear-gradient(160deg, var(--charcoal-4) 0%, var(--charcoal-5) 100%); }
.f-card:hover::before { transform: scaleX(1); }
.f-card > i { font-size: 1.6rem; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.f-card h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.6rem; }
.f-card p  { font-size: 0.87rem; color: var(--w60); line-height: 1.72; }

/* ── VALUE CARDS ─────────────────────────────────────────────────────────── */
.col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.v-card {
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border-left: 2px solid var(--gold);
  box-shadow: 0 2px 0 var(--g06);
  transition: transform var(--t), box-shadow var(--t);
}
.v-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 1px rgba(201,163,78,0.20);
}
.v-card > i { font-size: 1.3rem; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.v-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; }
.v-card p  { font-size: 0.82rem; color: var(--w60); line-height: 1.65; }

/* ── PHILOSOPHY GRID ─────────────────────────────────────────────────────── */
.philo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.philo-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border: 1px solid var(--w05);
  position: relative; overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.philo-card:hover {
  border-color: var(--g20);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.45), 0 0 1px rgba(201,163,78,0.15);
}
.philo-n {
  font-family: var(--serif); font-size: 4.5rem; font-weight: 300;
  color: var(--g08); position: absolute; top: 0.5rem; right: 1.25rem;
  line-height: 1; pointer-events: none;
}
.philo-card h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 0.75rem; }
.philo-card p  { font-size: 0.88rem; color: var(--w60); line-height: 1.75; }

/* ── CHECKLIST ───────────────────────────────────────────────────────────── */
.checklist {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem; margin-top: 2rem;
}
.cl-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border: 1px solid var(--w05);
  font-size: 0.88rem; font-weight: 500;
  transition: border-color var(--t), box-shadow var(--t);
}
.cl-item:hover {
  border-color: var(--g20);
  box-shadow: 0 2px 12px rgba(201,163,78,0.06);
}
.cl-item > i { color: var(--gold); }

/* ── SECTOR STRIP ────────────────────────────────────────────────────────── */
.sector-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--w05); border: 1px solid var(--w05); margin-top: 3rem;
}
.sec-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 3rem 1.5rem;
  background: linear-gradient(180deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  transition: background var(--t);
}
.sec-item:hover { background: linear-gradient(180deg, var(--charcoal-3) 0%, var(--charcoal-4) 100%); }
.sec-item > i { font-size: 2rem; color: var(--gold); }
.sec-item span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--w60); text-align: center;
}

/* ── FRAMEWORK ───────────────────────────────────────────────────────────── */
.framework { display: flex; flex-direction: column; margin-top: 2.5rem; }
.fw-item {
  display: flex; gap: 2.5rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--w05); align-items: flex-start;
}
.fw-item:last-child { border-bottom: none; }
.fw-n {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
  color: var(--gold); min-width: 55px; line-height: 1; padding-top: 3px;
  text-shadow: 0 0 20px rgba(201,163,78,0.18);
}
.fw-body h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 0.6rem; }
.fw-body p  { font-size: 0.9rem; color: var(--w60); line-height: 1.75; }

/* ── REAL ESTATE: PILLARS & MODELS ──────────────────────────────────────── */
.col-pillars { display: flex; flex-direction: column; gap: 1.25rem; }
.pillar-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border-left: 2px solid var(--gold);
  box-shadow: 2px 0 0 var(--g06);
  transition: background var(--t), box-shadow var(--t);
}
.pillar-item:hover {
  background: linear-gradient(135deg, var(--charcoal-3) 0%, var(--charcoal-4) 100%);
  box-shadow: 2px 0 16px rgba(201,163,78,0.08);
}
.pillar-item > i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.pillar-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
.pillar-item p  { font-size: 0.83rem; color: var(--w60); line-height: 1.65; }

.model-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--w05); border: 1px solid var(--w05); margin-top: 3rem;
}
.model-card {
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, var(--charcoal-3) 0%, var(--charcoal-4) 100%);
  transition: background var(--t);
}
.model-card:hover { background: linear-gradient(160deg, var(--charcoal-4) 0%, var(--charcoal-5) 100%); }
.mc-tag {
  display: inline-block; padding: 0.2rem 0.7rem;
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.2em; margin-bottom: 1rem;
}
.model-card h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.65rem; }
.model-card p  { font-size: 0.87rem; color: var(--w60); line-height: 1.7; }

/* ── MEDIA: KVF PREMIUM FEATURE ──────────────────────────────────────────── */
.s-kvf-feature {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, var(--g06) 0%, transparent 60%),
    var(--black);
  border-top: 1px solid var(--w05); padding: 0;
}
#kvfCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.kvf-feature-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 6rem 3rem 3.5rem;   /* tighter bottom — connector bridge owns the gap below */
}
.kvf-header {
  display: flex; align-items: center; gap: 2rem; margin-bottom: 4rem;
}
.kvf-header-line { flex: 1; height: 1px; background: var(--w05); }
.kvf-header-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); flex-shrink: 0;
}
.kvf-main {
  display: grid; grid-template-columns: auto 1fr;
  gap: 6rem; align-items: center;
  /* margin/padding-bottom and border-bottom removed — Mahogany Row no longer exists below */
}
.kvf-emblem-col { display: flex; justify-content: center; flex-shrink: 0; }
/* ── KVF LOGO (replaces old ring/text emblem) ───────────────────────────── */
.kvf-logo-link {
  display: block;
  line-height: 0;
  text-decoration: none;
  outline: none;
  flex-shrink: 0;
  /* Smooth premium hover — brightness lift only, no scale bounce */
  transition: opacity 0.38s ease, filter 0.38s ease;
}
.kvf-logo-link:hover {
  opacity: 0.88;
  filter: brightness(1.12);
}
.kvf-logo-link:focus-visible {
  outline: 1px solid rgba(201,163,78,0.45);
  outline-offset: 8px;
}

.kvf-logo-img {
  display: block;
  /* Square logo — sized to match the visual weight of the old 220px emblem
     but with more presence; logo bg (#050402) ≈ section bg (#000) so no treatment needed */
  width: clamp(160px, 18vw, 220px);
  height: auto;
  /* No border, no shadow, no background treatment — blends naturally */
}

.kvf-copy-main .eyebrow { display: block; }
/* Flex column so CTA anchors to the left like all other copy children */
.kvf-copy-main { display: flex; flex-direction: column; align-items: flex-start; }
.kvf-main-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
}

/* "Vision" — soft cinematic breathing glow, scoped to this word only */
.kvf-vision-word {
  color: var(--gold);
  text-shadow:
    0 0 18px rgba(201,163,78,0.18),
    0 0  8px rgba(201,163,78,0.10);
  animation: kvfVisionGlow 5s ease-in-out infinite;
  will-change: text-shadow;
}
@keyframes kvfVisionGlow {
  0%, 100% {
    text-shadow:
      0 0 18px rgba(201,163,78,0.18),
      0 0  8px rgba(201,163,78,0.10);
  }
  50% {
    text-shadow:
      0 0 28px rgba(201,163,78,0.30),
      0 0 12px rgba(201,163,78,0.16),
      0 0  4px rgba(201,163,78,0.08);
  }
}

.kvf-main-body { font-size: 1rem; color: var(--w60); line-height: 1.85; max-width: 560px; }
.kvf-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.kvf-tags span {
  padding: 0.3rem 1rem; border: 1px solid var(--g20);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  transition: background var(--t), border-color var(--t);
}
.kvf-tags span:hover { background: var(--g10); border-color: var(--gold); }

/* ── PRODUCTION ARM CTAs ─────────────────────────────────────────────────── */
/* Shared base — sits bottom-left of its copy column, always gold, never white */
.kvf-cta,
.msp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 2rem;               /* 32px from tags row above */
  align-self: flex-start;         /* anchor left inside flex column — never centred */
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 500;               /* slightly heavier — better readability on dark bg */
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  /* Continuous 6s breathing glow — overridden per-class below */
  animation: ctaGlow 6s ease-in-out infinite;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}
/* Arrow child — translates independently on hover */
.kvf-cta .cta-arrow,
.msp-cta .cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-style: normal;
}
.kvf-cta:hover .cta-arrow,
.msp-cta:hover .cta-arrow {
  transform: translateX(2px);
}
.kvf-cta:focus-visible,
.msp-cta:focus-visible {
  outline: 1px solid rgba(201,163,78,0.50);
  outline-offset: 5px;
}

/* KVF — gold, cinematic studio tone.
   --gold (#C9A34E) baseline so it reads clearly gold on black. */
.kvf-cta {
  color: #C9A34E;                 /* exact site gold — never white */
  text-shadow:
    0 0 18px rgba(201,163,78,0.30),
    0 0  7px rgba(201,163,78,0.18);
  animation-name: ctaGlowKvf;
}
.kvf-cta:hover {
  color: #dfc07e;                 /* gold-lt: still clearly gold, not white */
  text-shadow:
    0 0 26px rgba(201,163,78,0.55),
    0 0 11px rgba(201,163,78,0.32),
    0 0  5px rgba(201,163,78,0.16);
}

/* MSP — gold, warm inviting tone.
   Slightly warmer glow radius than KVF. */
.msp-cta {
  color: #C9A34E;                 /* same gold base — consistent brand */
  text-shadow:
    0 0 22px rgba(201,163,78,0.26),
    0 0  9px rgba(201,163,78,0.14);
  animation-name: ctaGlowMsp;
}
.msp-cta:hover {
  color: #dfc07e;                 /* gold-lt on hover */
  text-shadow:
    0 0 30px rgba(201,163,78,0.50),
    0 0 13px rgba(201,163,78,0.28),
    0 0  6px rgba(201,163,78,0.14);
}

/* 6s breathing glow — KVF: tighter/sharper */
@keyframes ctaGlowKvf {
  0%, 100% {
    text-shadow:
      0 0 18px rgba(201,163,78,0.30),
      0 0  7px rgba(201,163,78,0.18);
    color: #C9A34E;
  }
  50% {
    text-shadow:
      0 0 28px rgba(201,163,78,0.55),
      0 0 12px rgba(201,163,78,0.32),
      0 0  5px rgba(201,163,78,0.16);
    color: #d4ae65;
  }
}
/* 6s breathing glow — MSP: wider/warmer */
@keyframes ctaGlowMsp {
  0%, 100% {
    text-shadow:
      0 0 22px rgba(201,163,78,0.26),
      0 0  9px rgba(201,163,78,0.14);
    color: #C9A34E;
  }
  50% {
    text-shadow:
      0 0 32px rgba(201,163,78,0.50),
      0 0 14px rgba(201,163,78,0.28),
      0 0  6px rgba(201,163,78,0.12);
    color: #d4ae65;
  }
}

/* ── ECOSYSTEM CONNECTOR BRIDGE (KVF → MSP) ──────────────────────────────── */
/* Sits between the two sections; owns all the vertical breathing room.
   Gold gradient hairlines + subtle label replace the two separate border-tops. */
.media-ecosystem-bridge {
  position: relative;
  /* Gradient from KVF black (#000) through to MSP near-black (#080608) */
  background: linear-gradient(180deg, #000000 0%, #080608 100%);
  padding: 0;
  /* No border — the inner lines carry the visual weight */
}
.meb-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
  padding: 2.5rem 3rem;  /* controls total gap between sections */
}
.meb-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,163,78,0.22) 30%,
    rgba(201,163,78,0.38) 50%,
    rgba(201,163,78,0.22) 70%,
    transparent 100%);
}
.meb-label {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(201,163,78,0.55);
  flex-shrink: 0; white-space: nowrap;
}

/* ── MUSTARDSEED PRODUCTIONS ─────────────────────────────────────────────── */
.s-msp-feature {
  position: relative; overflow: hidden;
  /* Slightly warmer than KVF (pure black) — subtle hierarchy: KVF dominant, MSP warm */
  background:
    radial-gradient(ellipse 65% 60% at 22% 55%, rgba(201,163,78,0.07) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 75% 30%, rgba(201,163,78,0.04) 0%, transparent 50%),
    #080608;   /* barely-warm near-black vs KVF's pure #000 */
  /* No border-top — connector bridge provides the visual break */
  border-top: none;
  padding: 0;
}
.msp-feature-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  /* Reduced top: connector bridge owns the upper breathing room.
     Tighter bottom to match KVF rhythm before footer. */
  padding: 3rem 3rem 4rem;
}

/* Two-column grid: logo left, copy right — slightly narrower logo column */
.msp-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: center;
}

/* Logo column */
.msp-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Pull the logo slightly left so it fills the column edge-to-edge */
  margin-left: -1rem;
}
.msp-logo-link {
  display: block;
  line-height: 0;
  text-decoration: none;
  outline: none;
  flex-shrink: 0;
  /* Smooth premium hover — brightness lift only, matches KVF logo-link pattern */
  transition: opacity 0.38s ease, filter 0.38s ease;
}
.msp-logo-link:hover {
  opacity: 0.88;
  filter: brightness(1.10) drop-shadow(0 0 48px rgba(201,163,78,0.22)) drop-shadow(0 0 14px rgba(201,163,78,0.12));
}
.msp-logo-link:focus-visible {
  outline: 1px solid rgba(201,163,78,0.45);
  outline-offset: 8px;
}
.msp-logo-img {
  display: block;
  /* Square logo — constrain by width, height auto to preserve 1:1 ratio */
  width: clamp(260px, 34vw, 440px);
  height: auto;
  aspect-ratio: 1 / 1;
  /* No background, no borders — transparent PNG blends directly */
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  /* Very faint warm drop-shadow so gold tree glows softly onto page */
  filter: drop-shadow(0 0 40px rgba(201,163,78,0.16)) drop-shadow(0 0 12px rgba(201,163,78,0.08));
}

/* Copy column */
.msp-copy-col { display: flex; flex-direction: column; align-items: flex-start; }

.msp-eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}

.msp-title {
  /* Slightly smaller than KVF (3.5rem max) — intentional visual hierarchy */
  font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.6rem;
  color: var(--white);
}
/* "Seed" — gold, same treatment as "Vision" on KVF */
.msp-seed-word { color: var(--gold); }
/* "Productions" — white explicitly */
.msp-prod-word { color: var(--white); }

.msp-body {
  font-size: 1rem; color: var(--w60); line-height: 1.85; max-width: 540px;
}
.msp-body.mt-md { margin-top: 1.1rem; }

/* Final italic tagline — cinematic sign-off */
.msp-tagline {
  margin-top: 2rem;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Capability tags — same style as KVF tags */
.msp-tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem;
}
.msp-tags span {
  padding: 0.3rem 1rem; border: 1px solid var(--g20);
  border-radius: 2px; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--w60);
  transition: background var(--t), border-color var(--t);
}
.msp-tags span:hover { background: var(--g10); border-color: var(--gold); }

/* ── FOUNDATION: STATS & IMPACT ──────────────────────────────────────────── */
.found-stats {
  display: flex; flex-direction: column; gap: 1.25rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border: 1px solid var(--g20);
}
.fs-item { display: flex; align-items: center; gap: 1.25rem; }
.fs-item > i { font-size: 1.5rem; color: var(--gold); width: 36px; flex-shrink: 0; }
.fs-label { display: block; font-size: 0.92rem; font-weight: 600; }
.fs-sub   { display: block; font-size: 0.72rem; color: var(--w35); letter-spacing: 0.08em; }

.impact-pull {
  max-width: 780px; margin: 0 auto; text-align: center;
  padding: 4rem 0; position: relative;
}
.ip-mark {
  font-family: var(--serif); font-size: 12rem; font-weight: 300;
  color: var(--g06); line-height: 0.5;
  position: absolute; top: 4rem; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.ip-quote {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 300; font-style: italic; line-height: 1.7;
  color: var(--white); position: relative; z-index: 1; margin-bottom: 1.5rem;
}
.ip-attr { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════════════
   FOUNDATION PAGE — CINEMATIC REDESIGN
   Seven sections: Hero · Mission · Why · Program · Philosophy · Eligibility · Commitment
══════════════════════════════════════════════════════════════════════════ */

/* ── Shared utility ─────────────────────────────────────────────────────── */
.fn-section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  margin: 0.6rem 0 1.5rem;
}
.fn-body {
  font-size: 1rem; color: var(--w60); line-height: 1.88;
}
.fn-body.mt-sm { margin-top: 1rem; }
.fn-body.mt-md { margin-top: 1.75rem; }
.fn-mission-anchor { color: var(--w70); font-style: italic; }

/* ── 1. HERO ────────────────────────────────────────────────────────────── */
.fn-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* Cinematic dark gradient — deep charcoal, slight warm undertone */
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,163,78,0.05) 0%, transparent 60%),
    linear-gradient(
      180deg,
      #050404  0%,
      #080706  30%,
      #0a0909  65%,
      #060504 100%
    );
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
}
/* Subtle noise/grain texture overlay */
.fn-hero-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.035;
}
/* Faint horizontal gold hairline at bottom */
.fn-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--g12) 30%, var(--g20) 50%, var(--g12) 70%, transparent 100%);
  pointer-events: none;
}
.fn-hero-inner {
  position: relative; z-index: 2;
  max-width: 860px;
  text-align: center;
  animation: fnHeroFade 1.8s ease forwards;
}
.fn-hero-quote {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--w90);
  letter-spacing: -0.01em;
  margin: 0 0 2.5rem;
}
.fn-hero-name {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes fnHeroFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Safety net — Foundation reveal-el elements are always visible.
   JS adds in-view for the transition effect; if JS is absent/slow
   the sections remain readable (never stuck at opacity:0). */
.fn-hero-inner,
.fn-mission-left, .fn-mission-right,
.fn-why-inner,
.fn-program-header, .fn-program-body,
.fn-define-inner,
.fn-philosophy-inner,
.fn-elig-left, .fn-elig-right,
.fn-commitment-inner,
.msp-grid {
  opacity: 1 !important;
  transform: none !important;
}

/* ── 2. MISSION ─────────────────────────────────────────────────────────── */
.fn-mission {
  background: var(--charcoal);
  border-bottom: 1px solid var(--w05);
}
.fn-mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 5rem;
  align-items: start;
}
.fn-mission-divider {
  background: linear-gradient(180deg, transparent 0%, var(--g20) 20%, var(--g20) 80%, transparent 100%);
  align-self: stretch;
  margin: 0;
}
/* FOCUS LIST */
.fn-focus-list {
  list-style: none; padding: 0; margin: 1.2rem 0 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.fn-focus-list li {
  padding: 0.45rem 0 0.45rem 1.2rem;
  border-left: 2px solid var(--gold);
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--w80);
}
/* RIGHT PILLARS */
.fn-mission-right {
  display: flex; flex-direction: column; gap: 2.5rem;
  padding-top: 0.5rem;
}
.fn-pillar {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.fn-pillar-bar {
  flex-shrink: 0; width: 2px; align-self: stretch; min-height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--g08) 100%);
}
.fn-pillar-body { flex: 1; }
.fn-pillar-body > i {
  font-size: 1.1rem; color: var(--gold); margin-bottom: 0.7rem; display: block;
}
.fn-pillar-body h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  margin: 0 0 0.5rem; color: var(--w90);
}
.fn-pillar-body p {
  font-size: 0.9rem; color: var(--w50); line-height: 1.75;
  margin: 0;
}

/* ── 3. WHY WE GIVE BACK ────────────────────────────────────────────────── */
.fn-why {
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,163,78,0.04) 0%, transparent 65%),
    var(--charcoal-2);
  border-bottom: 1px solid var(--w05);
}
.fn-why-inner {
  max-width: 780px; margin: 0 auto;
  padding: 6.5rem 2rem;
  text-align: center;
}
.fn-why-body {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--w60); line-height: 1.9;
}
.fn-why-body.mt-sm { margin-top: 1.25rem; }
.fn-why-emphasis {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; font-style: italic;
  color: var(--white);
  margin: 2rem 0;
  line-height: 1.3;
}
.fn-why-standout {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 400;
  color: var(--gold);
  margin: 2.5rem 0 2rem;
  letter-spacing: 0.02em;
}

/* ── 4. THE MONOPOLIZE PROGRAM ──────────────────────────────────────────── */
.fn-program {
  background: var(--charcoal);
  border-bottom: 1px solid var(--w05);
}
.fn-program-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.fn-program-header .eyebrow { display: block; margin-bottom: 0.4rem; }
.fn-program-lead {
  font-size: 1.05rem; color: var(--w70);
  line-height: 1.8; margin-top: 0.5rem;
}
.fn-program-close {
  border-top: 1px solid var(--w05);
  padding-top: 1.5rem;
  color: var(--w50) !important;
  font-style: italic;
}
/* SUPPORT GRID */
.fn-support-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1.5rem;
}
.fn-support-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1.1rem 1.1rem;
  background: var(--charcoal-2);
  border: 1px solid var(--w05);
  border-left: 2px solid var(--gold);
  transition: background var(--t), border-color var(--t);
}
.fn-support-item:hover {
  background: var(--charcoal-3);
  border-left-color: var(--gold-lt);
}
.fn-support-item > i {
  font-size: 0.9rem; color: var(--gold); margin-top: 0.2rem; flex-shrink: 0;
}
.fn-support-item > span {
  font-size: 0.88rem; color: var(--w70); line-height: 1.55;
}

/* ── 4b. WHAT WE MEAN BY "MONOPOLIZE" ──────────────────────────────────── */
.fn-define {
  background:
    radial-gradient(ellipse 55% 60% at 50% 50%, rgba(201,163,78,0.05) 0%, transparent 65%),
    var(--charcoal-3);
  border-top: 1px solid var(--w05);
  border-bottom: 1px solid var(--w05);
}
.fn-define-inner {
  max-width: 680px; margin: 0 auto;
  padding: 7rem 2rem;
  text-align: center;
}

/* Top gold hairline rule */
.fn-define-rule-top {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2.75rem;
}

/* Section title */
.fn-define-title {
  margin-bottom: 2.75rem;
}

/* Body copy */
.fn-define-body { }

.fn-define-text {
  font-size: clamp(1rem, 1.65vw, 1.12rem);
  color: var(--w60);
  line-height: 1.95;
  font-style: italic;
  font-family: var(--serif);
}
.fn-define-text.mt-sm { margin-top: 1.5rem; }

/* Signature closing line — the visual punch */
.fn-define-closing {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--w05);
}

/* Bottom gold hairline rule */
.fn-define-rule-bot {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2.75rem auto 0;
}

/* ── 5. PHILOSOPHY ──────────────────────────────────────────────────────── */
.fn-philosophy {
  background:
    radial-gradient(ellipse 70% 80% at 50% 40%, rgba(201,163,78,0.06) 0%, transparent 65%),
    linear-gradient(180deg, #060504 0%, #0a0808 50%, #060504 100%);
  border-bottom: 1px solid var(--w05);
}
.fn-philosophy-inner {
  max-width: 740px; margin: 0 auto;
  padding: 7rem 2rem;
  text-align: center;
}
.fn-phil-title { margin-bottom: 2.5rem; }
.fn-phil-body {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--w60); line-height: 1.9;
}
.fn-phil-body.mt-sm { margin-top: 1rem; }
.fn-phil-em {
  font-family: var(--serif) !important;
  font-style: italic;
  color: var(--w80) !important;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem) !important;
}
.fn-restore-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 2.5rem auto;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.fn-restore-sep {
  display: inline-block; width: 1px; height: 1.4em;
  background: rgba(201,163,78,0.30);
  margin: 0 1.5rem; align-self: center;
}
.fn-phil-close {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 300; font-style: normal;
  color: var(--w80);
  line-height: 1.75; margin-top: 2.5rem;
}
.fn-phil-close em { font-style: italic; color: var(--white); }

/* ── 6. ELIGIBILITY ─────────────────────────────────────────────────────── */
.fn-eligibility {
  background: var(--charcoal-2);
  border-bottom: 1px solid var(--w05);
}
.fn-eligibility-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 5rem;
  align-items: start;
}
.fn-elig-divider {
  background: linear-gradient(180deg, transparent 0%, var(--g20) 20%, var(--g20) 80%, transparent 100%);
  align-self: stretch;
}
.fn-criteria-list {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.fn-criteria-list li {
  padding: 0.5rem 0 0.5rem 1.2rem;
  border-left: 2px solid var(--g20);
  font-size: 0.9rem; color: var(--w60); line-height: 1.6;
  transition: border-color var(--t);
}
.fn-criteria-list li:hover { border-left-color: var(--gold); color: var(--w80); }
.fn-elig-sub {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 300; margin: 0.5rem 0 1rem;
  color: var(--w80);
}
.fn-honoree-block {
  margin-top: 2.25rem;
  padding: 1.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(201,163,78,0.06) 0%, transparent 80%);
  border: 1px solid var(--g20);
  border-left: 2px solid var(--gold);
}
.fn-honoree-rule {
  width: 36px; height: 1px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.fn-honoree-text {
  font-size: 0.92rem; color: var(--w60); line-height: 1.8; margin: 0;
}
.fn-honoree-title {
  color: var(--gold); font-weight: 600; font-style: normal;
}

/* ── 7. COMMITMENT ──────────────────────────────────────────────────────── */
.fn-commitment {
  background:
    linear-gradient(180deg, #050404 0%, #030303 50%, #060504 100%);
}
.fn-commitment-inner {
  max-width: 720px; margin: 0 auto;
  padding: 7rem 2rem 8rem;
  text-align: center;
}
.fn-commit-title { margin-bottom: 2rem; }
.fn-commit-body {
  font-size: clamp(1rem, 1.65vw, 1.15rem);
  color: var(--w60); line-height: 1.9;
}
.fn-commit-body.mt-sm { margin-top: 1rem; }
.fn-commit-close {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 300;
  color: var(--w80);
  line-height: 1.7; margin-top: 3rem;
}
.fn-commit-close em { font-style: italic; color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════════════
   FOUNDATION — RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fn-mission-inner  { gap: 0 3rem; padding: 5rem 2rem; }
  .fn-program-inner  { gap: 3.5rem; padding: 5rem 2rem; }
  .fn-eligibility-inner { gap: 0 3rem; padding: 5rem 2rem; }
}
@media (max-width: 768px) {
  .fn-hero           { min-height: 80vh; padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem; }
  .fn-hero-quote     { font-size: clamp(1.25rem, 5.5vw, 1.9rem); }
  .fn-mission-inner  {
    grid-template-columns: 1fr; gap: 3rem 0; padding: 4rem 1.5rem;
  }
  .fn-mission-divider { display: none; }
  .fn-why-inner      { padding: 4.5rem 1.5rem; }
  .fn-define-inner   { padding: 5rem 1.5rem; }
  .fn-program-inner  { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .fn-support-grid   { grid-template-columns: 1fr; }
  .fn-philosophy-inner { padding: 5rem 1.5rem; }
  .fn-eligibility-inner {
    grid-template-columns: 1fr; gap: 3rem 0; padding: 4rem 1.5rem;
  }
  .fn-elig-divider   { display: none; }
  .fn-commitment-inner { padding: 5rem 1.5rem 6rem; }
  .fn-restore-row    { gap: 0; font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .fn-restore-sep    { margin: 0 1rem; }
}
@media (max-width: 480px) {
  .fn-section-title  { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .fn-hero-quote     { font-size: clamp(1.15rem, 6vw, 1.6rem); }
  .fn-program-inner  { padding: 3.5rem 1.25rem; }
  .fn-mission-inner  { padding: 3.5rem 1.25rem; }
  .fn-eligibility-inner { padding: 3.5rem 1.25rem; }
  .fn-why-inner      { padding: 4rem 1.25rem; }
  .fn-define-inner   { padding: 4rem 1.25rem; }
  .fn-philosophy-inner { padding: 4rem 1.25rem; }
  .fn-commitment-inner { padding: 4rem 1.25rem 5rem; }
}

/* ── INVESTOR PORTAL ─────────────────────────────────────────────────────── */
.portal-hero {
  min-height: 50vh; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, var(--g06) 0%, transparent 65%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  padding: calc(var(--nav-h) + 5rem) 3rem 5rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.portal-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--w04) 1px, transparent 1px),
    linear-gradient(90deg, var(--w04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 90%);
  opacity: 0.5;
}
.portal-hero-content { position: relative; z-index: 1; max-width: 680px; }
.portal-lock {
  width: 70px; height: 70px; margin: 0 auto 2rem;
  border: 2px solid var(--g20);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold); position: relative;
}
.portal-lock::before { content: ''; position: absolute; inset: -8px; border: 1px solid var(--g10); }
.portal-hero-content .eyebrow { display: block; }
.portal-hero-content h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 4rem); font-weight: 300; margin-bottom: 1.25rem; }
.portal-hero-content p  { font-size: 1.05rem; color: var(--w60); }
.portal-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.portal-left .eyebrow { display: block; }
.portal-left h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; margin-bottom: 2rem; }
.portal-items { display: flex; flex-direction: column; gap: 1.5rem; }
.pi-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border-left: 2px solid var(--gold);
  transition: background var(--t), box-shadow var(--t);
}
.pi-item:hover {
  background: linear-gradient(135deg, var(--charcoal-3) 0%, var(--charcoal-4) 100%);
  box-shadow: 2px 0 12px rgba(201,163,78,0.08);
}
.pi-item > i { font-size: 1.35rem; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.pi-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
.pi-item p  { font-size: 0.85rem; color: var(--w60); line-height: 1.65; }
.portal-right { position: sticky; top: calc(var(--nav-h) + 2rem); }
.portal-form-box {
  padding: 2.75rem;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border: 1px solid var(--g20);
}
.portal-form-box h3 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 0.5rem; }
.pf-sub { font-size: 0.87rem; color: var(--w60); margin-bottom: 2rem; line-height: 1.7; }
.inv-form { display: flex; flex-direction: column; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--w60);
}
.fg input, .fg select, .fg textarea {
  background: var(--charcoal-3); border: 1px solid var(--w15);
  color: var(--white); padding: 0.85rem 1rem; font-size: 0.9rem;
  outline: none; transition: border-color var(--t); width: 100%;
}
.fg select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A34E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.fg select option { background: var(--charcoal-3); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--w35); }
.fg textarea { resize: vertical; min-height: 96px; }
.form-ok {
  text-align: center; padding: 3rem 1.5rem;
  background: var(--g10); border: 1px solid var(--g20);
}
.form-ok > i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.form-ok h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.form-ok p  { font-size: 0.9rem; color: var(--w60); line-height: 1.7; }

/* ── PLATFORM CARDS ──────────────────────────────────────────────────────── */
.platform-row { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--w05); }
.p-card {
  display: flex; flex-direction: column; padding: 3rem 2.5rem;
  border-right: 1px solid var(--w05); cursor: pointer;
  position: relative; overflow: hidden;
  transition: background var(--t), box-shadow var(--t);
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
}
.p-card:last-child { border-right: none; }
.p-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(201,163,78,0.30);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.p-card:hover {
  background: linear-gradient(160deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  box-shadow: 0 4px 20px rgba(201,163,78,0.05);
}
.p-card:hover::before { transform: scaleX(1); }
.pc-num { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: var(--g08); line-height: 1; position: absolute; top: 1.5rem; right: 2rem; transition: color var(--t); }
.p-card:hover .pc-num { color: var(--g15); }
.pc-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 1.5rem; }
.pc-content { flex: 1; }
.pc-content h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
.pc-content p { font-size: 0.87rem; color: var(--w60); line-height: 1.75; }
.pc-cta { display: flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); transition: gap var(--t); }
.p-card:hover .pc-cta { gap: 0.8rem; }

/* ── BUILD LIST ──────────────────────────────────────────────────────────── */
.build-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 3rem; }
.bl-item {
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  border-left: 3px solid var(--gold);
}
.bl-status { display: inline-block; padding: 0.2rem 0.75rem; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; }
.status-active  { background: var(--g20); color: var(--gold); }
.status-concept { background: var(--w05); color: var(--w60); }
.bl-item h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.5rem; }
.bl-item p  { font-size: 0.9rem; color: var(--w60); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════════════════
   PLATFORM PAGE HERO
   Full-section with architectural grid, soft gold glow, centered copy.
   Distinct from the homepage hero — no fullscreen lock, content-height.
══════════════════════════════════════════════════════════════════════════ */
.plat-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 7rem) 3rem 7.5rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%,   rgba(24,16,4,0.90) 0%, transparent 55%),
    radial-gradient(ellipse 80%  60% at 50% 100%, rgba(10,7,1,0.70)  0%, transparent 50%),
    radial-gradient(ellipse 55%  45% at 80% 50%,  rgba(16,11,3,0.30) 0%, transparent 60%),
    var(--black);
}

/* Architectural grid — same language as homepage hero */
.plat-hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(var(--w04) 1px, transparent 1px),
    linear-gradient(90deg, var(--w04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 10%, transparent 72%);
  opacity: 0.45;
}

/* Soft centered gold ambient glow */
.plat-hero-glow {
  position: absolute; z-index: 2; pointer-events: none;
  width: 800px; height: 400px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(201,163,78,0.06) 0%,
    rgba(201,163,78,0.02) 40%,
    transparent 68%
  );
}

/* Cinematic edge vignette */
.plat-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.55) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.45) 100%);
}

/* Matte texture overlay */
.plat-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.02;
}

.plat-hero-inner {
  position: relative; z-index: 10;
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
}

.plat-hero-eyebrow {
  margin-bottom: 1.6rem;
}

.plat-hero-h {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 300; line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.plat-hero-sub {
  font-size: 1.08rem; line-height: 1.85;
  color: var(--w55, rgba(255,255,255,0.55));
  max-width: 600px;
}

/* ══════════════════════════════════════════════════════════════════════════
   STRATEGY — OUR APPROACH (Acquire · Develop · Scale)
   Three numbered steps in a vertical editorial stack.
   Clean, minimal, structured.
══════════════════════════════════════════════════════════════════════════ */
.s-strategy {
  background:
    radial-gradient(ellipse 70% 50% at 85% 40%, rgba(16,11,3,0.45) 0%, transparent 55%),
    linear-gradient(180deg, var(--charcoal-3) 0%, var(--charcoal-4) 100%);
  padding: 7.5rem 0;
  border-top: 1px solid var(--w05);
  border-bottom: 1px solid var(--w05);
  position: relative; overflow: hidden;
}

/* Matte texture */
.s-strategy::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.022;
}

/* Right gold accent edge */
.s-strategy::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--g08) 25%,
    var(--g12) 50%,
    var(--g08) 75%,
    transparent 100%
  );
}

.s-strategy-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 3rem;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 4fr 8fr; gap: 7rem; align-items: start;
}

/* Left: header block */
.strategy-header { padding-top: 0.5rem; }
.strategy-header .eyebrow { display: block; }

.strategy-h {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300; line-height: 1.10;
  color: var(--white); margin-bottom: 1.25rem;
}

.strategy-sub {
  font-size: 0.95rem; color: var(--w50); line-height: 1.85;
  max-width: 300px;
}

/* Right: vertical step list */
.strategy-steps {
  display: flex; flex-direction: column;
}

.strat-step {
  display: grid; grid-template-columns: 72px 1fr; gap: 2.5rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid var(--w05);
  position: relative;
  transition: background var(--t);
}
.strat-step:first-child { padding-top: 0; }
.strat-step:last-child  { border-bottom: none; padding-bottom: 0; }

/* Gold left rule that grows on hover */
.strat-step::before {
  content: '';
  position: absolute; left: -3rem; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold) 40%,
    var(--gold) 60%,
    transparent 100%
  );
  opacity: 0;
  transform: scaleY(0); transform-origin: top;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.strat-step:hover::before { opacity: 1; transform: scaleY(1); }

/* Step number */
.strat-num {
  font-family: var(--serif);
  font-size: 3.6rem; font-weight: 300;
  color: var(--g08); line-height: 1;
  letter-spacing: -0.03em;
  padding-top: 0.2rem;
  transition: color var(--t);
  flex-shrink: 0;
  align-self: flex-start;
}
.strat-step:hover .strat-num { color: var(--g25, rgba(201,163,78,0.25)); }

/* Step title + copy */
.strat-title {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500;
  color: var(--white); line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.strat-copy {
  font-size: 0.92rem; color: var(--w55, rgba(255,255,255,0.55));
  line-height: 1.82;
}

/* ── INVESTOR ACCESS NOTE (small text above CTA) ───────────────────────── */
.inv-access-note {
  font-size: 0.75rem; line-height: 1.65;
  color: var(--w40); letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 769px) {
  .inv-access-note { text-align: left; }
}

/* ══════════════════════════════════════════════════════════════════════════
   MEDIA PAGE — CINEMATIC VIDEO HERO
   No gate. No overlay. Video plays immediately on load (autoplay muted).
   Vignette softens edges into the black page background — no hard frame.
══════════════════════════════════════════════════════════════════════════ */

/* ── OUTER SECTION ─────────────────────────────────────────────────────── */
.media-video-hero {
  position: relative;
  background: #000;
  padding-top: var(--nav-h);
  /* Bottom pseudo-element dissolves into media-identity's charcoal */
  padding-bottom: 0;
  overflow: hidden;
}

/* ── STAGE ─────────────────────────────────────────────────────────────── */
.mvh-stage {
  position: relative;
  width: 100%;
  /* Full-bleed: no max-width, no horizontal padding — video fills edge-to-edge */
  padding: 0;
  margin: 0;
}

/* ── VIDEO ─────────────────────────────────────────────────────────────── */
.mvh-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  /* Default visible; JS sets opacity:0 once canvas crossfade completes */
  opacity: 1;
  visibility: visible !important;
  transition: opacity 0.4s ease;
}

/* ── FINAL-FRAME CANVAS ─────────────────────────────────────────────────────
   Absolutely positioned over the video, same dimensions.
   Invisible by default; JS adds .mvh-final-frame--visible after drawImage().
   Uses pointer-events:none so the sound button and hero click still work.
   z-index:1 keeps it above the video (z-index:0 implied) but below the
   vignette overlay (z-index:2) so edge-fades still apply. */
.mvh-final-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
  /* canvas background is transparent — underlying #000 shows if drawImage fails */
  background: transparent;
}
.mvh-final-frame--visible {
  opacity: 1 !important;
}

/* ── VIGNETTE — softens all four edges into the black background ────────── */
/* Uses stacked linear-gradients — no mask, no filter, no clip-path.
   Left/right: narrow dark fade so video feels part of the black stage.
   Top: dissolves under the nav bar.
   Bottom: strong fade down so video melts into media-identity below. */
.mvh-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    /* Left edge — very subtle, just 4% feather so no visible dark bar */
    linear-gradient(to right,
      rgba(0,0,0,0.35) 0%,
      transparent      4%
    ),
    /* Right edge — same subtle feather */
    linear-gradient(to left,
      rgba(0,0,0,0.35) 0%,
      transparent      4%
    ),
    /* Top — merges with nav */
    linear-gradient(to bottom,
      rgba(0,0,0,0.45) 0%,
      transparent      7%
    ),
    /* Bottom — strong dissolve into media-identity */
    linear-gradient(to top,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.55) 10%,
      rgba(0,0,0,0.15) 22%,
      transparent      38%
    );
}

/* ── SOUND CONTROL — cinematic bottom-right mute toggle ─────────────────── */

/*
  Initial state  : shows speaker-with-waves (muted) — invites user to click
  After click    : shows speaker-with-X (sound ON) — allows re-mute
  Transition     : smooth opacity + transform; no layout shift
  z-index 4      : above vignette (z-index 2) but below nav
*/

.mvh-sound-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 4;

  /* Reset button styles */
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;

  /* Layout */
  display: flex;
  align-items: center;
  gap: 0.55rem;

  /* Typography */
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);

  /* Subtle container: frosted gold hairline pill */
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(201,163,78,0.28);
  border-radius: 2px;
  padding: 0.55rem 0.85rem 0.55rem 0.7rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* Transitions */
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

/* Hover — subtle gold brightening */
.mvh-sound-btn:hover {
  color: rgba(255,255,255,0.90);
  border-color: rgba(201,163,78,0.65);
  background: rgba(0,0,0,0.52);
  box-shadow: 0 0 14px rgba(201,163,78,0.18);
}

/* Active click feedback */
.mvh-sound-btn:active {
  transform: scale(0.97);
}

/* Focus visible — keyboard accessibility */
.mvh-sound-btn:focus-visible {
  outline: 1px solid rgba(201,163,78,0.6);
  outline-offset: 3px;
}

/* Sound ON state — gold tint to signal active audio */
.mvh-sound-btn.sound-on {
  color: rgba(201,163,78,0.85);
  border-color: rgba(201,163,78,0.45);
  background: rgba(0,0,0,0.45);
}
.mvh-sound-btn.sound-on:hover {
  color: rgba(201,163,78,1);
  border-color: rgba(201,163,78,0.75);
  box-shadow: 0 0 18px rgba(201,163,78,0.22);
}

/* SVG icon sizing */
.mvh-sound-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mvh-sound-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Label */
.mvh-sound-label {
  display: block;
  line-height: 1;
}

/* ── DEFAULT STATE: muted — show waves, hide X ────── */
.mvh-mute-lines  { display: none; }
.mvh-wave-lines  { display: block; }

/* ── SOUND-ON STATE: unmuted — show X, hide waves ─── */
.mvh-sound-btn.sound-on .mvh-mute-lines { display: block; }
.mvh-sound-btn.sound-on .mvh-wave-lines { display: none; }

/* ── RESPONSIVE ─────────────────────────────────────── */
/* Tablet: move slightly inward */
@media (max-width: 768px) {
  .mvh-sound-btn {
    bottom: 1.5rem;
    right: 1.25rem;
    font-size: 0.68rem;
    padding: 0.5rem 0.75rem 0.5rem 0.6rem;
  }
}
/* Mobile: smaller, stay clear of bottom vignette */
@media (max-width: 480px) {
  .mvh-sound-btn {
    bottom: 1.25rem;
    right: 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    gap: 0.45rem;
    padding: 0.45rem 0.65rem 0.45rem 0.55rem;
  }
  .mvh-sound-icon svg { width: 14px; height: 14px; }
}

/* ── MEDIA IDENTITY — brand anchor directly below video ─────────────────── */
.media-identity {
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(16,11,3,0.55) 0%, transparent 55%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  border-bottom: 1px solid var(--w05);
  position: relative; overflow: hidden;
}

/* Matte texture */
.media-identity::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--texture);
  background-size: 200px 200px;
  opacity: 0.022; z-index: 0;
}

/* Gold left accent */
.media-identity::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--g08) 25%,
    var(--g15) 50%,
    var(--g08) 75%,
    transparent 100%
  );
}

.media-identity-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 6.5rem 3rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 5rem;
  align-items: start;
  position: relative; z-index: 1;
}

/* Left — brand name + tagline */
.mi-left .eyebrow { display: block; }
.mi-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.mi-tagline {
  font-family: var(--serif);
  font-size: 1.12rem; font-weight: 300;
  font-style: italic;
  color: var(--w60); line-height: 1.65;
}

/* Center 1px vertical rule */
.mi-rule {
  background: linear-gradient(180deg,
    transparent 0%,
    var(--g15) 20%,
    var(--g25, rgba(201,163,78,0.25)) 50%,
    var(--g15) 80%,
    transparent 100%
  );
  width: 1px;
  align-self: stretch;
  min-height: 120px;
}

/* Right — about copy */
.mi-body {
  font-size: 1.05rem; color: var(--w60);
  line-height: 1.88;
  padding-top: 0.5rem;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  /* no stage padding override needed — already zero */
}

@media (max-width: 768px) {
  /* stage stays full-bleed on mobile too */
  /* On mobile: full-width edge-to-edge, keep bottom dissolve strong */
  .mvh-vignette {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 7%),
      linear-gradient(to top,    rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.40) 12%, transparent 32%);
  }
  .media-identity-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem 0;
    padding: 4rem 1.5rem 3.5rem;
  }
  .mi-rule { display: none; }
  .mi-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
}

@media (max-width: 480px) {
  .media-identity-inner { padding: 3rem 1.25rem 3rem; }
  .mi-headline { font-size: clamp(2rem, 9vw, 2.8rem); }
  .mi-body { font-size: 0.97rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: 0.30; }
  50%       { opacity: 0.90; }
}

/* ══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL — max 10px upward motion, soft fade
══════════════════════════════════════════════════════════════════════════ */
.reveal-el {
  opacity: 0; transform: translateY(10px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}
.reveal-el.in-view { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-headline { font-size: clamp(3rem, 7vw, 7rem); }
  .s-platform-inner { gap: 4.5rem; }
  .s-why-inner .why-pillars { grid-template-columns: 1fr 1fr; }
  .s-strategy-inner { gap: 4.5rem; }
  .plat-hero-h { font-size: clamp(2.4rem, 4.8vw, 4.2rem); }
  .four-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-strip { grid-template-columns: repeat(2, 1fr); }
  .model-strip  { grid-template-columns: repeat(2, 1fr); }
  .platform-row { grid-template-columns: repeat(2, 1fr); }
  .p-card:nth-child(2) { border-right: none; }
  .kvf-main { gap: 3.5rem; }
  .msp-grid { gap: 3.5rem; }
  .meb-inner { padding: 2rem 2rem; gap: 1.25rem; }
}

@media (max-width: 1024px) {
  .hero-grid { mask-image: none; -webkit-mask-image: none; opacity: 0.20; }
  .hero-headline { white-space: normal; }
  .s-platform-inner { grid-template-columns: 1fr; gap: 3rem; }
  /* Platform page hero */
  .plat-hero { padding: calc(var(--nav-h) + 4.5rem) 2rem 5.5rem; }
  .plat-hero-grid { mask-image: none; -webkit-mask-image: none; opacity: 0.20; }
  /* Strategy section */
  .s-strategy-inner { grid-template-columns: 1fr; gap: 0; }
  .strategy-header { padding-bottom: 3.5rem; border-bottom: 1px solid var(--w05); margin-bottom: 0; }
  .strategy-sub { max-width: 100%; }
  .strat-step::before { left: -1.5rem; }
  .s-strategy { padding: 5.5rem 0; }
  .s-divisions-inner { grid-template-columns: 1fr; }
  .division-card { border-right: none; border-bottom: 1px solid var(--w05); }
  .division-card:last-child { border-bottom: none; }
  .s-why .why-pillars { grid-template-columns: 1fr; }
  .s-investor-inner { flex-direction: column; gap: 2.5rem; align-items: flex-start; }
  .two-col-layout { grid-template-columns: 1fr; gap: 3rem; }
  .kvf-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .kvf-emblem-col { justify-content: flex-start; }
  .portal-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .portal-right { position: static; }
  .footer-main { padding: 2rem 2rem 1.75rem; gap: 0; }
  .footer-brand { margin-right: 2.5rem; }
  .footer-vdivider { margin: 0 2.5rem; }
  .footer-nav { gap: 2.5rem; }
  .s-pad { padding: 5rem 0; }
  .s-platform { padding: 5.5rem 0; }
  .s-why { padding: 5.5rem 0; }
  .s-statement { padding: 5.5rem 2rem; }
  .s-investor-cta { padding: 5.5rem 0; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 1.5rem; }
  .nav-inner { padding: 0 1.5rem; }
  .logo-name { display: none; }
  .nav-right { gap: 1.75rem; }
  /* Platform hero */
  .plat-hero { padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem; }
  .plat-hero-h { font-size: clamp(2rem, 8vw, 3.2rem); }
  .plat-hero-sub { font-size: 0.97rem; }
  /* Strategy steps */
  .strat-step { grid-template-columns: 52px 1fr; gap: 1.5rem; padding: 2.2rem 0; }
  .strat-num { font-size: 2.8rem; }
  .strat-title { font-size: 1.28rem; }
  .strat-step::before { display: none; }

  .hero-center { padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem; }
  .hero-full .hero-center { padding-top: 0; padding-bottom: 0; }
  .hero-headline { font-size: clamp(2.4rem, 9.5vw, 4.2rem); white-space: normal; }
  .hero-rule { margin: 1.4rem auto; }
  .hero-lead { font-size: 0.97rem; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-divisions { flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
  .hero-foot { padding: 1.2rem 1.5rem; gap: 0.6rem; font-size: 0.54rem; }

  .s-platform-inner { padding: 0 1.5rem; }
  .s-divisions-inner { padding: 0; }
  .division-card { padding: 3rem 2rem; }
  .s-why-inner { padding: 0 1.5rem; }
  .s-investor-inner { padding: 0 1.5rem; }
  .s-statement { padding: 4.5rem 1.5rem; }

  /* Footer: compress to one row but tighter on tablet */
  .footer-main { padding: 1.75rem 1.5rem 1.5rem; }
  .footer-brand { margin-right: 2rem; }
  .footer-vdivider { margin: 0 2rem; }
  .footer-nav { gap: 2rem; flex-wrap: wrap; }
  .footer-col { min-width: 90px; }
  .footer-legal { padding: 1.25rem 1.5rem; flex-direction: column; text-align: center; gap: 0.4rem; }
  .footer-disc { text-align: center; }

  .platform-row { grid-template-columns: 1fr; }
  .p-card { border-right: none; border-bottom: 1px solid var(--w05); }
  .p-card:last-child { border-bottom: none; }
  .kvf-feature-inner { padding: 4rem 1.5rem 3rem; }   /* tighter bottom — tablet */
  .kvf-main { gap: 2.5rem; }
  .msp-feature-inner { padding: 2.5rem 1.5rem 3.5rem; }
  .msp-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .msp-logo-col { justify-content: flex-start; margin-left: 0; }
  .msp-logo-img { width: clamp(180px, 52vw, 300px); }
  .meb-inner { padding: 1.75rem 1.5rem; }
  .kvf-header { margin-bottom: 3.5rem; }
  .kvf-logo-img { width: clamp(140px, 38vw, 190px); }
  .four-grid { grid-template-columns: 1fr; }
  .col-cards { grid-template-columns: 1fr; }
  .philo-grid { grid-template-columns: 1fr; }
  .sector-strip { grid-template-columns: 1fr 1fr; }
  .model-strip  { grid-template-columns: 1fr; }
  .s-pad { padding: 4rem 0; }
  .page-banner { padding: calc(var(--nav-h) + 2.5rem) 1.5rem 3.5rem; }
  .section-lead { margin-bottom: 2rem !important; }
}

@media (max-width: 480px) {
  .hero-center { padding: calc(var(--nav-h) + 1.5rem) 1.25rem 2.5rem; }
  .hero-full .hero-center { padding-top: 0; padding-bottom: 0; }
  .hero-headline { font-size: clamp(2rem, 10.5vw, 3.2rem); }
  .btn-row { flex-direction: column; }
  /* Footer: stack brand above nav on mobile */
  .footer-main { flex-direction: column; align-items: flex-start; padding: 1.75rem 1.25rem 1.5rem; }
  .footer-brand { margin-right: 0; margin-bottom: 0; width: 100%; align-items: flex-start; }
  .footer-logo-img { width: clamp(160px, 52vw, 220px); }
  .footer-logo-tagline { text-align: left; }
  .footer-vdivider {
    width: 100%; height: 1px; min-height: unset; align-self: auto;
    margin: 1.5rem 0;
    background: linear-gradient(90deg, transparent, rgba(201,163,78,0.38) 40%, rgba(201,163,78,0.38) 60%, transparent);
  }
  .footer-nav { width: 100%; gap: 1.5rem; flex-wrap: wrap; }
  .footer-col { min-width: unset; flex: 1 1 calc(33% - 1rem); }
  .sector-strip { grid-template-columns: 1fr; }
  .platform-row .p-card { padding: 2rem 1.5rem; }
  .kvf-feature-inner { padding: 3.5rem 1.25rem 2.5rem; }  /* mobile */
  .msp-feature-inner { padding: 2rem 1.25rem 3rem; }
  .msp-logo-img { width: clamp(160px, 62vw, 260px); }
  .msp-title { font-size: clamp(1.85rem, 8.5vw, 2.8rem); }
  .meb-inner { padding: 1.5rem 1.25rem; gap: 1rem; }
  .meb-label { font-size: 0.52rem; letter-spacing: 0.28em; }
  .s-pad { padding: 3.5rem 0; }
  .s-platform { padding: 4rem 0; }
  .s-why { padding: 4rem 0; }
  .s-statement { padding: 4rem 1.25rem; }
  .s-investor-cta { padding: 4rem 0; }
  .statement-text { font-size: clamp(2rem, 8.5vw, 3rem); }
  .s-strategy { padding: 4rem 0; }
  .plat-hero { padding: calc(var(--nav-h) + 2.5rem) 1.25rem 3.5rem; }
  .plat-hero-h { font-size: clamp(1.9rem, 9.5vw, 2.8rem); }
  .strat-step { grid-template-columns: 44px 1fr; gap: 1.2rem; }
  .strat-num { font-size: 2.4rem; }
}
