/* ============================================================
   HOUSETRADING FINANCIAL — STYLES
   Aesthetic: Futuristic Dark + Classical Gold — Canary Wharf Nights
   ============================================================ */

:root {
  --black:      #080c10;
  --deep:       #0c1118;
  --surface:    #111820;
  --surface2:   #16202c;
  --border:     rgba(201,168,76,0.18);
  --gold:       #c9a84c;
  --gold-light: #e8c96e;
  --gold-dim:   rgba(201,168,76,0.35);
  --cyan:       #00d4ff;
  --cyan-dim:   rgba(0,212,255,0.12);
  --white:      #f0ece4;
  --muted:      rgba(240,236,228,0.55);
  --up:         #00e676;
  --down:       #ff4444;
  --radius:     4px;
  --radius-lg:  8px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Rajdhani', sans-serif;
  --font-mono:  'Space Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── GRID OVERLAY ── */
.grid-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.scanline {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
em { font-style: italic; color: var(--gold-light); }
p { color: var(--muted); font-family: var(--font-sans); font-size: 1.05rem; font-weight: 400; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION TAG ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.section-tag span {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-dim); padding: 0.3rem 0.8rem; border-radius: 2px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-header p { margin-top: 1rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: var(--radius);
  border: 2px solid var(--gold); cursor: pointer; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform 0.4s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
.btn-primary.sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--white);
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: var(--radius);
  border: 1.5px solid rgba(240,236,228,0.3); cursor: pointer; transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  background: rgba(8,12,16,0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#navbar.scrolled { background: rgba(8,12,16,0.95); }
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; height: 72px; gap: 1.2rem;
}
.logo { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.logo-mark {
  font-family: var(--font-mono); font-size: 1rem; font-weight: 700;
  color: var(--black); background: var(--gold);
  padding: 0.3rem 0.5rem; border-radius: 2px; letter-spacing: 0.05em;
}
.logo-text {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.04em; line-height: 1;
  display: flex; flex-direction: column;
}
.logo-text em { font-size: 0.8rem; font-weight: 300; color: var(--gold); letter-spacing: 0.1em; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; margin-left: auto; flex-shrink: 0; }
.nav-link {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 0.6rem; border-radius: 2px;
  color: var(--muted); transition: all 0.2s; position: relative; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold); transition: all 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { left: 0.75rem; right: 0.75rem; }
.nav-auth {
  display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; margin-left: 0.6rem;
}
.nav-login {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: 0.45rem 0.9rem; border-radius: 2px;
  transition: all 0.25s; white-space: nowrap;
}
.nav-login:hover { color: var(--white); border-color: rgba(240,236,228,0.3); background: rgba(240,236,228,0.05); }
.nav-register {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.45rem 0.9rem; border-radius: 2px;
  transition: all 0.25s; white-space: nowrap;
}
.nav-register:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--deep); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; flex-direction: column; gap: 1rem;
  z-index: 999;
}
.mobile-menu a {
  font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }
.mobile-auth {
  display: flex; gap: 0.8rem; padding-top: 0.5rem;
  border-top: 1px solid var(--border); margin-top: 0.5rem;
}
.mobile-login,
.mobile-register {
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
  flex: 1; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7rem 1rem; border-radius: 2px; transition: all 0.2s;
}
.mobile-login {
  color: var(--muted); border: 1px solid var(--border);
}
.mobile-login:hover { color: var(--white); border-color: rgba(240,236,228,0.3); }
.mobile-register {
  color: var(--black); background: var(--gold); border: 1px solid var(--gold);
}
.mobile-register:hover { background: var(--gold-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; padding-top: 72px; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.28;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); background-position: center 28%; }
  to   { transform: scale(1.10); background-position: center 34%; }
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8,12,16,0.55) 0%,
      rgba(8,12,16,0.20) 40%,
      rgba(8,12,16,0.70) 80%,
      rgba(8,12,16,0.98) 100%
    ),
    linear-gradient(90deg,
      rgba(8,12,16,0.70) 0%,
      transparent 50%,
      rgba(8,12,16,0.40) 100%
    );
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }



.hero-grid-lines {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(201,168,76,0.04) 100%),
    linear-gradient(90deg, transparent 30%, rgba(0,212,255,0.02) 70%, transparent 100%);
}

.floating-particles { position: absolute; inset: 0; }

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 900px;
  margin: 0 auto;
  padding: 6rem 4rem 10rem;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1.8rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  flex-shrink: 0;
}
.dot.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,255,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,212,255,0); }
}

.hero-title {
  display: flex; flex-direction: column; gap: 0.1rem;
  margin-bottom: 1.8rem;
}
.hero-title .line-reveal {
  display: block;
  opacity: 0; transform: translateY(30px);
  animation: revealUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .delay-1 { animation-delay: 0.2s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.15rem; max-width: 680px; margin-bottom: 2.5rem;
  opacity: 0; animation: revealUp 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem;
  opacity: 0; animation: revealUp 0.8s 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-stats {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  opacity: 0; animation: revealUp 0.8s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.stat { display: flex; flex-direction: column; }
.stat-row { display: flex; align-items: baseline; gap: 0.1rem; line-height: 1; }
.stat-num {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: var(--gold-light); line-height: 1; display: inline;
}
.stat-sym { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--gold); display: inline; line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* TICKER */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(8,12,16,0.85);
  border-top: 1px solid var(--border);
  z-index: 5; overflow: hidden;
}
.hero-ticker .tradingview-widget-container {
  width: 100%;
}
.hero-ticker .tradingview-widget-container__widget {
  height: 46px;
}

/* ============================================================
   DEAL BANNER
   ============================================================ */
.deal-banner {
  position: relative; z-index: 2;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.deal-banner-bg { position: absolute; inset: 0; pointer-events: none; }
.deal-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.deal-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.deal-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  bottom: -100px; right: 10%;
}
.deal-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49.9%, rgba(201,168,76,0.04) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(201,168,76,0.03) 50%, transparent 50.1%);
  background-size: 120px 120px;
}

.deal-content {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  min-height: 560px;
}

/* ── Handshake visual ── */
.deal-visual {
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
}

.handshake-scene {
  position: relative; width: 340px; height: 260px;
  display: flex; align-items: center; justify-content: center;
}

/* Figures */
.hs-figure {
  position: absolute; bottom: 30px;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}
.hs-left  { left: 20px; }
.hs-right { right: 20px; }

.hs-head {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(145deg, #c8a882, #96704e);
  margin-bottom: 2px; position: relative; z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.hs-right .hs-head { background: linear-gradient(145deg, #a87d5a, #7a5535); }

.hs-body {
  width: 72px; height: 110px;
  background: linear-gradient(180deg, #1c2c3e 0%, #0f1b28 100%);
  border-radius: 8px 8px 0 0;
  border-top: 2px solid rgba(201,168,76,0.4);
  position: relative; overflow: hidden;
}
.hs-body::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 100%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.04) 50%,
    transparent 65%
  );
}
.hs-lapel {
  position: absolute; top: 0;
  width: 20px; height: 35px;
  background: linear-gradient(180deg, #e8e0d4, #c8c0b0);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 80%);
}
.hs-lapel.left  { left: 8px; }
.hs-lapel.right { right: 8px; transform: scaleX(-1); }

.hs-tie {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 11px; height: 52px;
  background: linear-gradient(180deg, var(--gold) 0%, #7a5c10 100%);
  clip-path: polygon(25% 0%, 75% 0%, 90% 65%, 50% 100%, 10% 65%);
}
.hs-tie.alt {
  background: linear-gradient(180deg, #2060c0 0%, #0d2a6e 100%);
}

/* Arms reaching toward center */
.hs-arm {
  position: absolute; bottom: 45px;
  display: flex; align-items: center;
}
.hs-arm-right {
  right: -55px;
  flex-direction: row;
}
.hs-arm-left {
  left: -55px;
  flex-direction: row-reverse;
}

.hs-forearm {
  width: 48px; height: 16px;
  background: linear-gradient(90deg, #1c2c3e, #0f1b28);
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.2);
}
.hs-right .hs-forearm { background: linear-gradient(90deg, #0f1b28, #1c2c3e); }

.hs-hand {
  width: 22px; height: 22px; border-radius: 4px;
  background: linear-gradient(135deg, #c8a882, #96704e);
  position: relative; display: flex; gap: 2px;
  align-items: flex-start; padding: 2px;
  box-shadow: 0 0 14px rgba(201,168,76,0.5), 0 0 30px rgba(201,168,76,0.2);
}
.hs-right .hs-hand { background: linear-gradient(135deg, #a87d5a, #7a5535); }

.hs-finger {
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, #d4b090, #a07848);
  flex-shrink: 0;
}
.f1 { height: 12px; }
.f2 { height: 15px; }
.f3 { height: 11px; }

/* Glow at the handshake point */
.handshake-glow {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -30%);
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.55) 0%, rgba(201,168,76,0.15) 40%, transparent 70%);
  animation: hsGlow 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hsGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -30%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -30%) scale(1.25); }
}

/* Sparks radiating from handshake */
.handshake-spark {
  position: absolute; left: 50%; top: 46%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-light);
  animation: sparkFly 2s ease-out infinite;
}
.sp1 { animation-delay: 0s;    --sx: 28px;  --sy: -32px; }
.sp2 { animation-delay: 0.5s;  --sx: -30px; --sy: -24px; }
.sp3 { animation-delay: 1s;    --sx: 20px;  --sy: 28px; }
.sp4 { animation-delay: 1.5s;  --sx: -22px; --sy: 24px; }
@keyframes sparkFly {
  0%   { transform: translate(0,0) scale(1);   opacity: 1; }
  100% { transform: translate(var(--sx), var(--sy)) scale(0); opacity: 0; }
}

.deal-caption {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  white-space: nowrap;
  padding: 0.5rem 1rem; background: rgba(12,17,24,0.8);
  border: 1px solid var(--border); border-radius: var(--radius);
}

/* ── Deal text ── */
.deal-text {
  padding: 4rem;
}
.deal-text h2 { margin-bottom: 1.2rem; }
.deal-text > p { margin-bottom: 2rem; }

.deal-stats-row { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.deal-stat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: rgba(201,168,76,0.03);
  transition: border-color 0.25s;
}
.deal-stat:hover { border-color: var(--gold-dim); }
.deal-stat > i { color: var(--gold); font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.deal-stat div { display: flex; flex-direction: column; gap: 0.15rem; }
.deal-stat strong { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.deal-stat span   { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.partners {
  position: relative; z-index: 2;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border);
  background: var(--black); overflow: hidden;
}
.partners-label {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  text-align: center; font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 2rem; padding: 0 2rem;
}
.pl-line {
  flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.marquee-outer {
  position: relative; overflow: hidden;
}
.marquee-fade-left,
.marquee-fade-right {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee-fade-left  { left:  0; background: linear-gradient(90deg, var(--black), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }

.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-row {
  display: flex; align-items: center; gap: 0; flex-shrink: 0;
}

.plogo-card {
  display: flex; align-items: center; justify-content: center;
  padding: 0.7rem 2rem; border-right: 1px solid var(--border);
  transition: background 0.25s;
  flex-shrink: 0;
}
.plogo-card:hover { background: rgba(201,168,76,0.05); }
.plogo-card svg { height: 38px; width: auto; display: block; }

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 700px; align-items: stretch;
}
.mission-left {
  background: var(--surface);
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  min-height: 600px;
}
.mission-img-block { position: absolute; inset: 0; }
.mission-photo-wrap {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 0; overflow: hidden;
  box-shadow: none;
}
.mission-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; filter: brightness(0.7) saturate(0.75);
}
.mission-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,16,0.15) 0%, rgba(8,12,16,0.55) 100%),
              linear-gradient(90deg, transparent 60%, rgba(8,12,16,0.4) 100%);
}
.mission-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold); color: var(--black);
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; border-radius: var(--radius);
  box-shadow: 0 4px 30px rgba(201,168,76,0.5),
              0 0 0 1px rgba(201,168,76,0.3);
  white-space: nowrap; z-index: 2;
  width: max-content;
}

/* CSS building art */
.building-art {
  width: 340px; height: 320px; position: relative;
  display: flex; align-items: flex-end; gap: 6px;
}
.b-col {
  border-radius: 2px 2px 0 0; position: relative;
  background: linear-gradient(to bottom, var(--surface2), #0a0f16);
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 0 20px rgba(201,168,76,0.05);
  flex-shrink: 0;
}
.b-col::before {
  content: ''; position: absolute; inset: 8px;
  background: repeating-linear-gradient(
    to bottom, transparent 0, transparent 10px,
    rgba(201,168,76,0.06) 10px, rgba(201,168,76,0.06) 11px
  ),
  repeating-linear-gradient(
    to right, transparent 0, transparent 14px,
    rgba(201,168,76,0.04) 14px, rgba(201,168,76,0.04) 15px
  );
}
.b1 { width: 44px; height: 200px; }
.b2 { width: 52px; height: 280px; }
.b3 { width: 60px; height: 310px; border-top: 3px solid var(--gold); }
.b4 { width: 48px; height: 240px; }
.b5 { width: 42px; height: 180px; }
.b3::after { content: ''; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); width: 4px; height: 14px; background: var(--gold); border-radius: 2px; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
.b-ground {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.meeting-window {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.3);
  width: 120px; height: 60px; border-radius: 2px;
  display: flex; align-items: flex-end; justify-content: center; gap: 10px; padding: 0 10px 6px;
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.mw-person { width: 14px; height: 24px; border-radius: 7px 7px 2px 2px; background: var(--gold-dim); position: relative; }
.mw-person::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--gold-dim); }
.mw-table { width: 60px; height: 6px; background: var(--gold-dim); border-radius: 2px; position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); }

.mission-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.2rem; border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
}

.mission-right {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--black);
}
.mission-right h2 { margin-bottom: 1.5rem; }
.mission-right p { margin-bottom: 1rem; }
.mission-pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: rgba(201,168,76,0.03);
  transition: border-color 0.25s;
}
.pillar:hover { border-color: var(--gold-dim); }
.pillar > i { color: var(--gold); font-size: 1.3rem; margin-top: 0.1rem; flex-shrink: 0; }
.pillar div { display: flex; flex-direction: column; gap: 0.2rem; }
.pillar strong { color: var(--white); font-family: var(--font-sans); font-size: 1rem; font-weight: 600; }
.pillar span { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   DEBT PHILOSOPHY SECTION
   ============================================================ */
.debt-philosophy {
  position: relative; z-index: 2;
  padding: 8rem 0; background: var(--black);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.debt-bg { position: absolute; inset: 0; pointer-events: none; }
.debt-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
}
.debt-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.debt-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
  bottom: -150px; left: -100px;
}
.debt-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Name Origin Block ── */
.name-origin-block {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: center;
  margin-bottom: 6rem; padding-bottom: 6rem;
  border-bottom: 1px solid var(--border);
}
.nob-left {
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
}
.nob-house-icon {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: 3.5rem; color: var(--gold);
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}
.nob-plus {
  font-size: 1.4rem; color: var(--muted);
}
.nob-house-icon .fa-chart-line { color: var(--cyan); filter: drop-shadow(0 0 14px rgba(0,212,255,0.4)); }

.nob-equation {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem 2rem;
  width: 100%;
}
.eq-part {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); text-align: center;
  padding: 0.5rem 1rem; background: var(--surface2);
  border: 1px solid var(--border); border-radius: var(--radius); width: 100%;
}
.eq-part.gold-text { color: var(--gold); border-color: var(--gold-dim); background: rgba(201,168,76,0.06); }
.eq-op {
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--gold-dim);
}
.eq-result {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; font-weight: 600;
  color: var(--gold-light); text-align: center; margin-top: 0.3rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--gold-dim); border-radius: var(--radius); width: 100%;
}

.nob-right h2 { margin-bottom: 1.3rem; }
.nob-right p { margin-bottom: 1rem; }
.nob-right strong { color: var(--gold); font-weight: 700; }

/* ── Debt Manifesto ── */
.dm-header { text-align: center; max-width: 780px; margin: 0 auto 4rem; }
.dm-header h2 { margin: 0.8rem 0 1rem; }

.dm-label {
  display: flex; align-items: center; gap: 1rem; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic;
  color: var(--muted); margin-bottom: 2.5rem;
}
.dm-label i { color: var(--gold-dim); font-size: 1.4rem; flex-shrink: 0; }

.billionaire-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 5rem;
}
.bill-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.bill-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}
.bill-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.bill-card.bc-gold {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, rgba(201,168,76,0.08), var(--surface));
}
.bill-card.bc-gold::before { background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold)); }

.bill-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(201,168,76,0.1); border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.15rem;
}
.bc-gold .bill-icon { background: rgba(201,168,76,0.2); }
.bill-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--white); }
.bill-debt { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

.bill-debt-bar {
  width: 100%; height: 3px; background: rgba(201,168,76,0.12);
  border-radius: 2px; overflow: hidden;
}
.bdb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 2px;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: left;
}
@keyframes barGrow { from { width: 0 !important; } }

.bill-card p { font-size: 0.88rem; line-height: 1.6; color: var(--muted); flex: 1; }

/* ── Timeline ── */
.debt-track-record {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 3rem 3.5rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.debt-track-record::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold));
}
.dtr-header {
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 2.5rem;
}
.dtr-header i { color: var(--gold); font-size: 1.3rem; }
.dtr-header h3 { font-size: 1.5rem; }

.dtr-timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.dtr-timeline::before {
  content: ''; position: absolute; left: 54px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold-dim), rgba(201,168,76,0.1));
}

.dtr-item {
  display: grid; grid-template-columns: 54px 16px 1fr;
  gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.dtr-item:last-child { border-bottom: none; }
.dtr-now .dtr-content strong { color: var(--gold-light); }

.dtr-year {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--gold); text-align: right;
  padding-top: 0.1rem;
}
.dtr-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--surface2); border: 2px solid var(--gold-dim);
  margin-top: 0.15rem; flex-shrink: 0; position: relative; z-index: 1;
}
.gold-dot {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.6);
  animation: pulse 2s infinite;
}
.dtr-content { display: flex; flex-direction: column; gap: 0.35rem; }
.dtr-content strong { color: var(--white); font-size: 0.98rem; font-weight: 600; font-family: var(--font-sans); line-height: 1.3; }
.dtr-content span { color: var(--muted); font-size: 0.86rem; line-height: 1.6; }

/* ── Debt Stats Row ── */
.debt-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem;
}
.debt-stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.6rem; transition: all 0.3s;
}
.debt-stat-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.debt-stat-card.dsc-gold { border-color: var(--gold-dim); background: rgba(201,168,76,0.05); }
.debt-stat-card > i { color: var(--gold); font-size: 1.4rem; }
.dsc-num {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.dsc-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }

/* ============================================================
   LEADERSHIP — FULL EXPANDED
   ============================================================ */
.leadership {
  position: relative; z-index: 2;
  padding: 8rem 0 6rem; background: var(--deep);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ── Tier labels ── */
.tier-label {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 4rem 0 2.5rem;
}
.tier-line { flex: 1; height: 1px; background: var(--border); }
.tier-title {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem; white-space: nowrap;
}

/* ── FOUNDER HERO ── */
.leader-founder-block {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 4rem; align-items: center;
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 12px; padding: 3.5rem;
  margin-bottom: 1rem; position: relative; overflow: hidden;
}
.leader-founder-block::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.leader-founder-block::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.founder-portrait-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 600px;
}
.founder-portrait-ring {
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  animation: ringPulse 4s ease-in-out infinite;
}
.founder-portrait-ring.r2 {
  width: 280px; height: 280px;
  border-color: rgba(201,168,76,0.1);
  animation-delay: 1s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.03); }
}
.founder-portrait-inner {
  width: 200px; height: 240px;
  background: linear-gradient(180deg, #0e1e30 0%, #080f1a 100%);
  border-radius: 100px 100px 0 0;
  border: 1px solid var(--gold-dim);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: 0 0 40px rgba(201,168,76,0.15), 0 20px 60px rgba(0,0,0,0.5);
}
.founder-portrait-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,15,26,0.4) 100%);
}
.founder-badge {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; box-shadow: 0 4px 16px rgba(201,168,76,0.5);
}

/* large suit figure */
.suit-figure.lg { position: relative; display: flex; flex-direction: column; align-items: center; }
.sf-head.lg-head {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #c8a070, #a07848);
  margin-bottom: 3px; z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.sf-body.lg-body {
  width: 110px; height: 160px;
  background: linear-gradient(180deg, #1a2c40 0%, #0c1620 100%);
  border-radius: 10px 10px 0 0;
  border-top: 2px solid var(--gold-dim);
  position: relative; overflow: hidden;
}
.sf-lapel {
  position: absolute; top: 0;
  width: 30px; height: 50px; background: linear-gradient(180deg,#ece8e0,#c8c0b0);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 75%);
}
.sf-lapel.l  { left: 12px; }
.sf-lapel.r-lap { right: 12px; transform: scaleX(-1); }
.sf-pocket-sq {
  position: absolute; top: 18px; right: 14px;
  width: 14px; height: 12px;
  background: var(--gold); clip-path: polygon(0 40%, 50% 0, 100% 40%, 100% 100%, 0 100%);
  opacity: 0.8;
}
.sf-tie.gold-tie {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 72px;
  background: linear-gradient(180deg, var(--gold-light) 0%, #7a5c10 100%);
  clip-path: polygon(25% 0%, 75% 0%, 90% 65%, 50% 100%, 10% 65%);
}

.founder-name {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem; font-weight: 700;
}
.gold-role {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.founder-origin {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--cyan); margin-bottom: 1.4rem;
}
.founder-bio { margin-bottom: 1rem; font-size: 1rem; }

.founder-credentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin: 1.5rem 0;
}
.cred-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans); font-size: 0.85rem; color: var(--muted);
  padding: 0.6rem 0.9rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: rgba(201,168,76,0.03);
  transition: border-color 0.2s;
}
.cred-item:hover { border-color: var(--gold-dim); color: var(--white); }
.cred-item i { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; }

.founder-quote-block {
  background: rgba(201,168,76,0.06); border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0;
}
.founder-quote-block i { color: var(--gold-dim); font-size: 1.2rem; margin-bottom: 0.5rem; display: block; }
.founder-quote-block p { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; color: var(--white); margin: 0; line-height: 1.65; }
.lg-socials { margin-top: 0.5rem; }

/* ── C-SUITE GRID ── */
.csuite-grid { grid-template-columns: repeat(4, 1fr); }

/* ── DIRECTORS GRID ── */
.directors-grid { grid-template-columns: repeat(4, 1fr); }

.leader-card.compact { }
.leader-portrait.compact-port { aspect-ratio: 1 / 1; height: auto; }
.portrait-art.sm { }
.suit-figure.sm-fig { }
.sf-head.sm-head {
  width: 28px; height: 28px; border-radius: 50%; margin-bottom: 2px; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.sf-body.sm-body {
  width: 58px; height: 82px;
  background: linear-gradient(180deg, #1a2c3e 0%, #0c1620 100%);
  border-radius: 6px 6px 0 0;
  border-top: 1.5px solid rgba(201,168,76,0.3);
}
.sf-tie.sm-tie {
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 38px;
  background: linear-gradient(180deg, var(--gold) 0%, #8B6914 100%);
  clip-path: polygon(25% 0%, 75% 0%, 90% 65%, 50% 100%, 10% 65%);
}
.sf-tie.sm-tie.alt { background: linear-gradient(180deg, #3070d0 0%, #0d2a6e 100%); }

.leader-info.compact-info { padding: 1.2rem; }
.leader-info.compact-info h3 { font-size: 1.05rem; }
.leader-info.compact-info p { font-size: 0.82rem; line-height: 1.5; }

.leader-credentials-sm {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.6rem 0 0.2rem;
}
.leader-credentials-sm span {
  display: flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  color: var(--muted); background: var(--surface2);
  padding: 0.2rem 0.55rem; border-radius: 2px; border: 1px solid var(--border);
}
.leader-credentials-sm i { color: var(--gold); font-size: 0.65rem; }

/* ============================================================
   FUNDED MODEL EXPLAINER
   ============================================================ */
.funded-model {
  margin-top: 5rem;
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 12px; overflow: hidden;
  position: relative;
}
.funded-model::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold));
}
.funded-model-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.funded-left {
  padding: 3.5rem; border-right: 1px solid var(--border);
}
.funded-left h2 { margin-bottom: 1.2rem; font-size: clamp(1.6rem,2.5vw,2.4rem); }
.funded-left > p { margin-bottom: 1rem; }
.funded-left strong { color: var(--gold); font-weight: 700; }

.funded-steps { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0; }
.funded-step {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: rgba(201,168,76,0.03);
  transition: all 0.25s;
}
.funded-step:hover { border-color: var(--gold-dim); transform: translateX(4px); }
.fs-num {
  font-family: var(--font-mono); font-size: 1.6rem; font-weight: 700;
  color: var(--gold-dim); line-height: 1; flex-shrink: 0; min-width: 36px;
}
.fs-text { display: flex; flex-direction: column; gap: 0.2rem; }
.fs-text strong { color: var(--white); font-size: 1rem; }
.fs-text span   { color: var(--muted); font-size: 0.88rem; }

.funded-right { padding: 3.5rem; display: flex; flex-direction: column; gap: 2rem; }

.portfolio-tiers {
  background: var(--black); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.pt-header {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
  background: rgba(201,168,76,0.06);
}
.pt-tier {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.pt-tier:last-of-type { border-bottom: none; }
.pt-tier:hover { background: rgba(201,168,76,0.04); }
.pt-tier-name { font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem; color: var(--white); }
.pt-tier-desc { font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; }
.pt-tier-right { text-align: right; }
.pt-tier-amount { font-family: var(--font-mono); font-size: 0.88rem; font-weight: 700; color: var(--gold-light); }
.pt-tier-split  { font-family: var(--font-mono); font-size: 0.68rem; color: var(--up); margin-top: 0.1rem; }

.t-elite { background: rgba(201,168,76,0.04); }
.t-elite .pt-tier-name { color: var(--gold-light); }

.pt-footer {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.5rem; background: rgba(0,212,255,0.04);
  border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  color: rgba(240,236,228,0.35);
}
.pt-footer i { color: var(--cyan); flex-shrink: 0; }

.funded-live-stat {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--black); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
}
.fls-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.fls-num {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.fls-label {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.fls-divider { width: 1px; height: 40px; background: var(--border); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  margin-top: 5rem;
}
.reviews-header {
  text-align: center; margin-bottom: 3rem;
}
.reviews-header h2 { margin: 0.8rem 0 1rem; }
.reviews-header > p { max-width: 600px; margin: 0 auto 1.5rem; }

.reviews-aggregate {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid var(--gold-dim);
  padding: 0.8rem 1.8rem; border-radius: 50px;
}
.ra-score {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.ra-stars { display: flex; gap: 0.2rem; color: var(--gold); font-size: 0.9rem; }
.ra-count {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--muted);
}

.reviews-masonry {
  columns: 4;
  column-gap: 1.2rem;
  align-items: start;
}
.review-col { display: contents; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: all 0.3s;
  break-inside: avoid;
  margin-bottom: 1.2rem;
}
.review-card:hover {
  border-color: var(--gold-dim); transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.review-card.rc-gold {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, var(--surface), rgba(201,168,76,0.06));
}
.review-card.rc-gold::before {
  content: ''; display: block; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 0.3rem; border-radius: 1px;
}

.rc-top {
  display: flex; align-items: flex-start; gap: 0.7rem; flex-wrap: wrap;
}
.rc-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9); font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.rc-meta { flex: 1; min-width: 0; }
.rc-name { font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem; color: var(--white); }
.rc-location {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  color: var(--muted); display: flex; align-items: center; gap: 0.3rem; margin-top: 0.15rem;
}
.rc-location i { color: var(--gold); font-size: 0.6rem; }

.rc-portfolio {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em; padding: 0.25rem 0.6rem; border-radius: 3px;
  white-space: nowrap; flex-shrink: 0;
}
.rc-p-big   { background: rgba(0,230,118,0.12);  color: var(--up);         border: 1px solid rgba(0,230,118,0.2); }
.rc-p-mid   { background: rgba(0,212,255,0.1);   color: var(--cyan);       border: 1px solid rgba(0,212,255,0.2); }
.rc-p-mega  { background: rgba(160,112,255,0.1); color: #b080ff;           border: 1px solid rgba(160,112,255,0.2); }
.rc-p-elite { background: rgba(201,168,76,0.15); color: var(--gold-light); border: 1px solid var(--gold-dim); }

.rc-stars { display: flex; gap: 0.2rem; color: var(--gold); font-size: 0.72rem; }

.rc-transform {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  padding: 0.6rem 0.9rem; background: var(--black);
  border-radius: var(--radius); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em;
}
.rct-before { color: var(--muted); display: flex; align-items: center; gap: 0.3rem; }
.rct-before i { color: var(--down); font-size: 0.6rem; }
.rct-arrow  { color: var(--gold); font-size: 0.6rem; }
.rct-after  { color: var(--up); font-weight: 700; display: flex; align-items: center; gap: 0.3rem; }
.rct-after i { font-size: 0.6rem; }

.review-card p {
  font-size: 0.88rem; line-height: 1.65; color: var(--muted); font-style: italic;
}
.rc-verified {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  color: rgba(0,230,118,0.7); margin-top: 0.2rem;
}
.rc-verified i { color: var(--up); font-size: 0.7rem; }

.reviews-cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding: 2rem 2.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); gap: 1.5rem; flex-wrap: wrap;
}
.reviews-cta-text {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--muted);
}
.reviews-cta-text i { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   PHOTO ELEMENTS
   ============================================================ */

/* ── Deal banner photo ── */
.deal-photo-wrap {
  position: relative; width: 100%; height: 100%; min-height: 560px;
  overflow: hidden;
}
.deal-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; filter: brightness(0.6) saturate(0.8);
  transition: transform 0.6s ease;
}
.deal-photo-wrap:hover .deal-photo { transform: scale(1.03); }
.deal-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,16,0.3) 0%, rgba(8,12,16,0.1) 40%, rgba(8,12,16,0.7) 100%);
}
.deal-photo-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem; border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}


/* ── About photo ── */
.about-photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 320px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; filter: brightness(0.65) saturate(0.7);
}
.about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,16,0.2) 0%, rgba(8,12,16,0.5) 100%),
              linear-gradient(90deg, rgba(8,12,16,0.3) 0%, transparent 100%);
}

/* ── Founder photo ── */
.founder-portrait-inner {
  width: 320px; height: 570px;
  border-radius: 8px;
  border: 1px solid var(--gold-dim);
  overflow: hidden; position: relative;
  box-shadow: 0 0 40px rgba(201,168,76,0.15), 0 20px 60px rgba(0,0,0,0.5);
}
.founder-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  filter: brightness(0.9) saturate(0.8);
}

/* ── Leader portrait photo ── */
.lp-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: brightness(0.9) saturate(0.8);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.leader-card:hover .lp-photo {
  transform: scale(1.03);
  filter: brightness(1) saturate(0.9);
}
.leaders-grid {
  display: grid; gap: 1.5rem;
}
.leader-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.leader-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.leader-card.featured { border-color: var(--gold-dim); }
.leader-portrait {
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.leader-portrait.compact-port {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
}
.leader-glow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, rgba(201,168,76,0.08), transparent);
}
.portrait-art {
  width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.suit-figure { position: relative; display: flex; flex-direction: column; align-items: center; }
.sf-head {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #c4a882, #9e8060);
  margin-bottom: 4px; position: relative; z-index: 1;
}
.sf-body {
  width: 70px; height: 100px;
  background: linear-gradient(180deg, #1a2535 0%, #111820 100%);
  border-radius: 8px 8px 0 0;
  border-top: 2px solid rgba(201,168,76,0.3);
  position: relative;
}
.sf-tie {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, #8B6914 100%);
  clip-path: polygon(30% 0%, 70% 0%, 90% 60%, 50% 100%, 10% 60%);
}
.sf-tie.alt { background: linear-gradient(180deg, #3070d0 0%, #0d2a6e 100%); }
.leader-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.leader-role { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.leader-info h3 { font-size: 1.2rem; font-weight: 600; }
.leader-info p { font-size: 0.88rem; line-height: 1.55; flex: 1; }
.leader-socials { display: flex; gap: 0.8rem; margin-top: auto; padding-top: 0.5rem; }
.leader-socials a { color: var(--muted); font-size: 1.1rem; transition: color 0.2s; }
.leader-socials a:hover { color: var(--gold); }

/* ============================================================
   NEWS
   ============================================================ */
.news {
  position: relative; z-index: 2;
  padding: 8rem 0; background: var(--black);
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
}
.news-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.news-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.news-card.featured-news { grid-column: span 2; flex-direction: row; }
.news-img {
  flex-shrink: 0; width: 380px;
  background: linear-gradient(135deg, #0c1520, #0f2030);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center; padding: 2rem;
}
.news-chart-art { width: 100%; }
.news-chart-art svg { width: 100%; height: 120px; }
.news-body { padding: 2rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 0.8rem; }
.news-cat {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2px;
  font-weight: 700;
}
.news-cat.markets { background: rgba(201,168,76,0.15); color: var(--gold); }
.news-cat.company { background: rgba(0,212,255,0.12); color: var(--cyan); }
.news-cat.crypto { background: rgba(130,80,255,0.12); color: #a070ff; }
.news-cat.insight { background: rgba(0,230,118,0.1); color: var(--up); }
.news-date { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
.news-body h3 { font-size: 1.2rem; font-weight: 500; line-height: 1.3; }
.news-body p { font-size: 0.9rem; line-height: 1.6; }
.read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-top: auto;
  transition: gap 0.2s;
}
.read-more:hover { gap: 0.7rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative; z-index: 2;
  padding: 8rem 0; background: var(--deep);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.about-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.value {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.8rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-sans);
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
  transition: all 0.25s;
}
.value i { color: var(--gold); flex-shrink: 0; }
.value:hover { border-color: var(--gold-dim); color: var(--white); }

/* CSS Canary Wharf art */
.about-visual { display: flex; flex-direction: column; gap: 2rem; }
.canary-wharf-art {
  position: relative; height: 320px;
  background: linear-gradient(180deg, #04080e 0%, #0a1220 60%, #0d1828 100%);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  overflow: hidden;
}
.cw-sky { position: absolute; top: 0; left: 0; right: 0; height: 50%; }
.cw-star {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: var(--white); animation: twinkle 3s infinite;
}
.s1 { top: 20%; left: 15%; animation-delay: 0s; }
.s2 { top: 30%; left: 55%; animation-delay: 0.8s; }
.s3 { top: 10%; left: 75%; animation-delay: 1.6s; }
.s4 { top: 40%; left: 35%; animation-delay: 0.4s; }
.s5 { top: 15%; left: 90%; animation-delay: 1.2s; }
@keyframes twinkle { 0%,100% { opacity: 0.8; } 50% { opacity: 0.2; } }

.cw-buildings {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; align-items: flex-end; justify-content: center; gap: 4px; padding: 0 20px;
}
.cw-b {
  background: linear-gradient(to bottom, #101d2a, #080c10);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px 2px 0 0;
  flex-shrink: 0; position: relative; display: flex;
  flex-wrap: wrap; align-content: flex-start; gap: 2px; padding: 6px 4px;
}
.cw-b1 { width: 55px; height: 200px; }
.cw-b2 { width: 70px; height: 260px; border-top: 2px solid var(--gold); }
.cw-b3 { width: 50px; height: 160px; }
.cw-b4 { width: 40px; height: 220px; }
.cw-b5 { width: 60px; height: 180px; }
.cw-b2::after { content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 3px; height: 12px; background: var(--gold); animation: blink 2s infinite; }
.cw-w { width: 14px; height: 10px; border-radius: 1px; background: rgba(30,40,55,0.8); }
.cw-w.lit { background: rgba(201,168,76,0.45); box-shadow: 0 0 4px rgba(201,168,76,0.3); animation: windowFlicker 4s infinite; }
@keyframes windowFlicker { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

.cw-ground {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(to top, #080c10, transparent);
}
.cw-reflection {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(to top, rgba(201,168,76,0.06), transparent);
}

.about-quote {
  background: var(--surface); border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.about-quote i { color: var(--gold-dim); font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }
.about-quote p { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: var(--white); line-height: 1.6; margin: 0; }
.about-quote cite { display: block; margin-top: 0.8rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold); }

/* ============================================================
   CAREER
   ============================================================ */
.career {
  position: relative; z-index: 2;
  padding: 8rem 0; background: var(--black);
  border-top: 1px solid var(--border);
}
.career-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-bottom: 3rem;
}
.career-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.3s;
}
.career-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.career-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(201,168,76,0.1); border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
}
.career-card h3 { font-size: 1.15rem; }
.career-card p { font-size: 0.88rem; flex: 1; }
.career-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.career-tags span {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--muted); background: var(--surface2);
  padding: 0.2rem 0.6rem; border-radius: 2px; border: 1px solid var(--border);
}
.career-cta-block {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 3rem; gap: 2rem;
}
.career-cta-text h3 { margin-bottom: 0.4rem; }
.career-cta-text p { margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative; z-index: 2;
  padding: 8rem 0; background: var(--deep);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: rgba(201,168,76,0.1); border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-item strong { display: block; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.1rem; }
.contact-item span { font-family: var(--font-sans); font-size: 0.92rem; color: var(--muted); }
.contact-socials { display: flex; gap: 1rem; }
.contact-socials a {
  width: 40px; height: 40px; border-radius: var(--radius);
  border: 1px solid var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.25s;
}
.contact-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* form */
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white); font-family: var(--font-sans);
  font-size: 0.95rem; padding: 0.75rem 1rem;
  transition: border-color 0.2s; outline: none; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,236,228,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dim); background: var(--surface); }
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: var(--surface2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 2;
  background: #050810; border-top: 1px solid var(--border);
}
.footer-top {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  padding: 4rem 2rem 3rem;
}
.footer-brand .logo-mark { display: inline-block; margin-bottom: 1rem; font-size: 1.2rem; padding: 0.4rem 0.7rem; }
.footer-brand p { font-size: 0.9rem; margin-top: 0.5rem; max-width: 380px; }
.fca-note {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em;
  color: rgba(240,236,228,0.3);
}
.fca-note i { color: var(--gold); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fl-col { display: flex; flex-direction: column; gap: 0.6rem; }
.fl-col strong { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.fl-col a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
.fl-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em;
  color: rgba(240,236,228,0.28); flex-wrap: wrap; gap: 0.8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .deal-content { grid-template-columns: 1fr; }
  .deal-visual { border-right: none; border-bottom: 1px solid var(--border); min-height: 340px; }
  .deal-text { padding: 3rem 2rem; }
  .mission { grid-template-columns: 1fr; }
  .mission-left { border-right: none; border-bottom: 1px solid var(--border); }
  .mission-right { padding: 3rem 2rem; }
  .name-origin-block { grid-template-columns: 1fr; gap: 3rem; }
  .billionaire-grid { grid-template-columns: 1fr 1fr; }
  .debt-stats-row { grid-template-columns: 1fr 1fr; }
  .funded-model-inner { grid-template-columns: 1fr; }
  .funded-left { border-right: none; border-bottom: 1px solid var(--border); }
  .reviews-masonry { columns: 2; }
  .csuite-grid    { grid-template-columns: 1fr 1fr; }
  .directors-grid { grid-template-columns: 1fr 1fr; }
  .leaders-grid   { grid-template-columns: 1fr 1fr; }
  .leader-founder-block { grid-template-columns: 1fr; text-align: center; }
  .founder-portrait-wrap { height: auto; }
  .founder-portrait-inner { width: 260px; height: 260px; }
  .founder-credentials { grid-template-columns: 1fr; }
  .success-cards { grid-template-columns: 1fr 1fr; }
  .career-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* ── GLOBAL ── */
  *, *::before, *::after { box-sizing: border-box; }
  body { overflow-x: hidden; }
  .container { padding: 0 0.9rem; width: 100%; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.1rem; }

  /* ── NAV ── */
  .nav-links, .nav-auth { display: none; }
  .hamburger { display: flex; }

  /* ── HERO ── */
  .hero-content { padding: 5rem 1rem 8rem; max-width: 100%; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .stat-num { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  /* ── DEAL BANNER ── */
  .deal-content { grid-template-columns: 1fr; }
  .deal-visual { border-right: none; border-bottom: 1px solid var(--border); min-height: 220px; padding: 2rem 1rem; }
  .deal-text { padding: 2rem 1rem; }
  .deal-stats-row { gap: 0.8rem; }
  .deal-stat { padding: 0.8rem; }

  /* ── MISSION ── */
  .mission { grid-template-columns: 1fr; }
  .mission-left { border-right: none; border-bottom: 1px solid var(--border); min-height: 320px; }
  .mission-right { padding: 2.5rem 1rem; }
  .building-art { width: 260px; transform: scale(0.85); transform-origin: bottom center; }

  /* ── LEADERSHIP ── */
  .leaders-grid,
  .csuite-grid,
  .directors-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .leader-founder-block { grid-template-columns: 1fr; text-align: center; padding: 1.8rem 1rem; }
  .founder-portrait-wrap { height: auto; }
  .founder-portrait-inner { width: min(85vw, 320px); height: min(85vw, 320px); }
  .founder-credentials { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
  .founder-name { font-size: 1.6rem; }
  .founder-bio { font-size: 0.88rem; }
  .cred-item { font-size: 0.75rem; padding: 0.5rem 0.7rem; }
  .leader-portrait,
  .leader-portrait.compact-port { aspect-ratio: 1 / 1; height: auto; }
  .leader-info { padding: 0.8rem; gap: 0.4rem; }
  .leader-info.compact-info { padding: 0.7rem; }
  .leader-info h3,
  .leader-info.compact-info h3 { font-size: 0.88rem; line-height: 1.2; }
  .leader-info p,
  .leader-info.compact-info p { font-size: 0.74rem; line-height: 1.4; }
  .leader-credentials-sm { display: none; }
  .leader-socials { gap: 0.5rem; }
  .tier-label { margin: 2rem 0 1rem; }
  .tier-title { font-size: 0.6rem; letter-spacing: 0.12em; }
  .leadership { padding: 3.5rem 0; }

  /* ── NEWS ── */
  .news { padding: 3.5rem 0; }
  .news-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .news-card.featured-news { grid-column: span 2; flex-direction: column; }
  .news-img { width: 100%; height: 130px; }
  .news-body { padding: 1rem; gap: 0.5rem; }
  .news-body h3 { font-size: 0.9rem; line-height: 1.3; }
  .news-body p { font-size: 0.78rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  /* ── REVIEWS (CSS columns) ── */
  .reviews-section { padding: 3.5rem 0; }
  .reviews-masonry { columns: 2; column-gap: 0.6rem; }
  .review-card { padding: 0.9rem; gap: 0.6rem; margin-bottom: 0.6rem; break-inside: avoid; }
  .review-card p { font-size: 0.75rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
  .rc-top { gap: 0.5rem; }
  .rc-avatar { width: 32px; height: 32px; font-size: 0.85rem; }
  .rc-name { font-size: 0.82rem; }
  .rc-location { font-size: 0.56rem; }
  .rc-portfolio { font-size: 0.7rem; padding: 0.18rem 0.4rem; }
  .rc-stars { font-size: 0.6rem; }
  .rc-transform { display: none; }
  .rc-verified { font-size: 0.56rem; }
  .reviews-aggregate { flex-direction: column; gap: 0.4rem; padding: 0.8rem 1.2rem; }
  .ra-score { font-size: 1.3rem; }
  .reviews-cta { padding: 1.2rem; gap: 1rem; }
  .reviews-cta-text { font-size: 0.7rem; }

  /* ── FUNDED MODEL ── */
  .funded-model-inner { grid-template-columns: 1fr; }
  .funded-left { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1rem; }
  .funded-right { padding: 2rem 1rem; }
  .funded-steps { gap: 0.8rem; }
  .funded-step { padding: 0.9rem; gap: 0.8rem; }
  .fs-num { font-size: 1.2rem; min-width: 28px; }
  .fs-text strong { font-size: 0.88rem; }
  .fs-text span { font-size: 0.78rem; }
  .funded-live-stat { flex-direction: row; padding: 1rem; }
  .fls-item { flex: 1; }
  .fls-num { font-size: 1.1rem; }
  .fls-divider { width: 1px; height: 32px; }
  .pt-tier { padding: 0.8rem 1rem; }
  .pt-tier-amount { font-size: 0.78rem; }

  /* ── DEBT SECTION ── */
  .debt-philosophy { padding: 3.5rem 0; }
  .name-origin-block { grid-template-columns: 1fr; gap: 2rem; }
  .nob-house-icon { font-size: 2.5rem; }
  .nob-equation { padding: 1.2rem; }
  .eq-part { font-size: 0.68rem; padding: 0.4rem 0.6rem; }
  .billionaire-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .bill-card { padding: 1rem; gap: 0.6rem; }
  .bill-name { font-size: 1rem; }
  .bill-debt { font-size: 0.62rem; }
  .bill-card p { font-size: 0.75rem; line-height: 1.5; }
  .debt-stats-row { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .debt-stat-card { padding: 1.2rem 1rem; }
  .dsc-num { font-size: 1.6rem; }
  .dsc-label { font-size: 0.58rem; }
  .debt-track-record { padding: 1.5rem 1rem; }
  .dtr-header h3 { font-size: 1.2rem; }
  .dtr-timeline::before { left: 36px; }
  .dtr-item { grid-template-columns: 36px 12px 1fr; gap: 0.6rem; padding: 1rem 0; }
  .dtr-year { font-size: 0.6rem; }
  .dtr-content strong { font-size: 0.85rem; }
  .dtr-content span { font-size: 0.78rem; }

  /* ── CAREER ── */
  .career { padding: 3.5rem 0; }
  .career-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .career-card { padding: 1rem; }
  .career-card h3 { font-size: 1rem; }
  .career-card p { font-size: 0.78rem; }
  .career-cta-block { flex-direction: column; align-items: flex-start; padding: 1.2rem; gap: 1rem; }

  /* ── ABOUT ── */
  .about { padding: 3.5rem 0; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .value { font-size: 0.8rem; padding: 0.6rem 0.8rem; }
  .canary-wharf-art { height: 180px; }
  .about-quote { padding: 1.2rem 1.4rem; }
  .about-quote p { font-size: 1rem; }

  /* ── CONTACT ── */
  .contact { padding: 3.5rem 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem 1rem; }

  /* ── PARTNERS ── */
  .partners { padding: 1.5rem 0; }
  .partners-label { font-size: 0.56rem; flex-direction: column; gap: 0.4rem; padding: 0 1rem; }
  .pl-line { display: none; }
  .plogo-card { padding: 0.5rem 1.2rem; }
  .plogo-card svg { height: 28px; }

  /* ── SUCCESS STRIP ── */
  .success-strip { padding: 2rem 0.8rem; }
  .success-cards { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .success-card { padding: 1rem; }
  .sc-name { font-size: 0.85rem; }

  /* ── FOOTER ── */
  .footer-top { padding: 2rem 1rem 1.5rem; grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 1.2rem 1rem; font-size: 0.58rem; }
  .footer-brand p { font-size: 0.82rem; }

  /* ── SECTION HEADERS ── */
  .section-header { margin-bottom: 2rem; padding: 0 0.5rem; }
  .section-header p { font-size: 0.85rem; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.9rem; }
  .reviews-masonry { columns: 1; }
  .hero-stats { justify-content: flex-start; }
  .stat-divider { display: none; }
}