/* ============================================================
   BluPin Capital — Custom Styles
   Tech Stack: HTML5 · CSS3 · Tailwind CSS
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0a1628;
  --deep-blue:  #0d2137;
  --blue-mid:   #112d4e;
  --black:      #050d18;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim:   #9e7c34;
  --off-white:  #f0ede6;
  --muted:      #8a9bb0;
  --border:     rgba(201, 168, 76, 0.15);
}

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

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

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }

p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ---------- Gold Accent Text ---------- */
.text-gold     { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.12);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 2.125rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5, 13, 24, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.25rem 0;
}

/* ---------- Cards ---------- */
.card {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

/* ---------- Section Layout ---------- */
.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 3rem 0;
}

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

/* ---------- Ticker ---------- */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--deep-blue);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}

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

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

.ticker-item {
  white-space: nowrap;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.ticker-item span.up   { color: #4caf82; }
.ticker-item span.down { color: #e05252; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 60% 50%, rgba(13, 33, 55, 0.9) 0%, var(--black) 70%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(13, 45, 78, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Fade-in Animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-up.delay-1 { animation-delay: 0.15s; }
.fade-up.delay-2 { animation-delay: 0.3s; }
.fade-up.delay-3 { animation-delay: 0.5s; }
.fade-up.delay-4 { animation-delay: 0.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Mobile Nav Toggle ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 103;
  }

  .nav-menu.open { display: flex; }

  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }
}

/* ============================================================
   ENHANCED ANIMATIONS & DESIGN
   ============================================================ */

/* ---------- Cursor Glow ---------- */
.cursor-glow {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.055) 0%, transparent 70%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: left 0.12s ease, top 0.12s ease;
}

/* ---------- Particles Canvas ---------- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
  transition: opacity 0.6s ease;
}

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.22s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.52s; }
[data-delay="5"] { transition-delay: 0.68s; }
[data-delay="6"] { transition-delay: 0.85s; }

/* ---------- Shimmer / Gradient Text ---------- */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--gold-dim) 0%,
    var(--gold-light) 40%,
    var(--gold-dim) 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---------- Enhanced Card Glow ---------- */
.card {
  box-shadow: 0 0 0 rgba(201, 168, 76, 0);
  transition: border-color 0.3s ease,
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease;
}
.card:hover {
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08),
              0 16px 48px rgba(0, 0, 0, 0.4);
}

/* ---------- Stats Section ---------- */
.stats-section {
  background: var(--deep-blue);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.counter {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  display: block;
  line-height: 1;
  color: var(--gold);
}

/* ---------- Progress Bars ---------- */
.progress-bar-wrap {
  margin-top: 1.25rem;
  height: 2px;
  background: rgba(201, 168, 76, 0.1);
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  width: 0%;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  overflow: hidden;
  padding: 1.2rem 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(138, 155, 176, 0.32);
  white-space: nowrap;
}
.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-dim);
  opacity: 0.35;
  flex-shrink: 0;
}

/* ---------- Chart Section ---------- */
.chart-section {
  padding: 6rem 0;
  background: var(--black);
}
.chart-wrap {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.chart-svg { width: 100%; height: auto; overflow: visible; }

.chart-line-main {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 3s cubic-bezier(0.16, 1, 0.3, 1);
}
.chart-line-secondary {
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
  stroke-dasharray: 5 5;
  opacity: 0.35;
  stroke-dashoffset: 2000;
  /* override dasharray for animation */
  --dash: 2000;
  stroke-dasharray: 2000;
  transition: stroke-dashoffset 3.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}
.chart-line-main.drawn,
.chart-line-secondary.drawn { stroke-dashoffset: 0; }

.chart-area {
  fill: url(#goldGradient);
  opacity: 0;
  transition: opacity 1.2s ease 2.2s;
}
.chart-area.shown { opacity: 1; }

.chart-dot {
  fill: var(--gold);
  opacity: 0;
  transition: opacity 0.5s ease 3.2s;
}
.chart-dot.shown { opacity: 1; }

/* ---------- Button Ripple ---------- */
.btn-primary,
.btn-outline {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.65s linear;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- Float animation ---------- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.float-anim { animation: floatY 5s ease-in-out infinite; }

/* ---------- Glow line ---------- */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

/* ---------- Logo ---------- */
.nav-logo {
  height: 42px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(2.2) saturate(1.1);
  transition: filter 0.3s ease, opacity 0.3s ease;
  display: block;
}
.nav-logo:hover {
  filter: brightness(2.8) saturate(1.3);
  opacity: 0.9;
}

.hero-logo {
  height: 110px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(2.4) saturate(1.1);
  opacity: 0.85;
  display: block;
}

/* Hero grid vertical centering */
.hero-grid {
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 3rem;
}

/* Prominent right-column logo */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.07) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
}

.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  animation: rotateBorder 18s linear infinite;
  pointer-events: none;
}

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

.hero-logo-prominent {
  height: 340px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(3) saturate(1.1) contrast(0.95);
  display: block;
  position: relative;
  z-index: 1;
  transition: filter 0.4s ease;
}

.hero-logo-prominent:hover {
  filter: brightness(3.5) saturate(1.3) contrast(0.95);
}

/* Slightly smaller logo in sub-page heroes (shorter sections) */
.about-page-hero .hero-logo-prominent,
.strat-hero .hero-logo-prominent,
.insights-hero .hero-logo-prominent,
.contact-hero .hero-logo-prominent,
.onboarding-hero .hero-logo-prominent {
  height: 260px;
}

.footer-logo {
  height: 56px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.8) saturate(0.9) opacity(0.55);
  display: block;
  transition: filter 0.3s ease;
}
.footer-logo:hover {
  filter: brightness(2.4) saturate(1.1) opacity(0.8);
}

/* ---------- Responsive additions ---------- */
@media (max-width: 640px) {
  .stat-item + .stat-item::before { display: none; }
  .counter { font-size: 2.5rem; }
  .chart-wrap { padding: 1.25rem; }
  .nav-logo  { height: 34px; }
  .hero-logo { height: 80px; }
}

/* ---------- ChartSenses Platform Section ---------- */
.platform-card {
  background: #060f1c;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.05);
}

.platform-header {
  background: #040c17;
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.platform-dots { display: flex; gap: 5px; }

.platform-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf82;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 130, 0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(76, 175, 130, 0); }
}

.signal-badge {
  padding: 0.28rem 0.8rem;
  font-size: 0.68rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-badge.buy {
  background: rgba(76, 175, 130, 0.12);
  color: #4caf82;
  border: 1px solid rgba(76, 175, 130, 0.28);
}

.analysis-strength {
  height: 4px;
  background: rgba(201, 168, 76, 0.1);
  overflow: hidden;
  border-radius: 2px;
}

.analysis-strength-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  width: 0%;
  border-radius: 2px;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.analysis-strength-fill.active { width: 87%; }

.platform-tag {
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  color: rgba(138, 155, 176, 0.5);
  border: 1px solid rgba(138, 155, 176, 0.15);
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

/* Feature row */
.feature-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-row:hover .feature-icon {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(201, 168, 76, 0.05);
}

/* ============================================================
   ABOUT PAGE — Specific Components
   ============================================================ */

/* ---------- About Page Hero ---------- */
.about-page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: 10rem;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(13, 33, 55, 0.85) 0%, transparent 65%),
    var(--black);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 60%, rgba(13, 45, 78, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(201, 168, 76, 0.03) 0%, transparent 45%);
  pointer-events: none;
}

/* ---------- Mission / Vision cards ---------- */
.about-mv-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.about-mv-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 168, 76, 0.06);
}

.about-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-mv-card:hover::before { opacity: 1; }

.about-mv-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ---------- Pillar Cards ---------- */
.about-pillar-card {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-pillar-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.about-pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

/* ---------- Timeline ---------- */
.about-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
}

.about-timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.about-timeline-item:last-child { margin-bottom: 0; }

.about-timeline-dot {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: var(--deep-blue);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.about-timeline-item:hover .about-timeline-dot {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.about-timeline-dot--active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

.about-timeline-dot--active::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.about-timeline-content {
  padding-top: 0.1rem;
  padding-bottom: 0.5rem;
}

/* ---------- Approach / Quote ---------- */
.about-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  line-height: 0.6;
  color: rgba(201, 168, 76, 0.12);
  margin-bottom: 1.5rem;
  user-select: none;
}

.about-principle-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.about-principle-row:hover {
  border-color: var(--border);
  background: rgba(13, 33, 55, 0.4);
}

.about-principle-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.3);
  line-height: 1.3;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

/* ---------- Team Cards ---------- */
.about-team-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.about-team-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: border-color 0.3s ease;
}

.about-team-card:hover .about-team-avatar {
  border-color: rgba(201, 168, 76, 0.45);
}

/* ---------- CTA Strip ---------- */
.about-cta-strip {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.about-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold-light), var(--gold-dim), transparent);
}

@media (max-width: 640px) {
  .about-page-hero { min-height: 45vh; padding-top: 8rem; padding-bottom: 3.5rem; }
  .about-timeline::before { left: 9px; }
  .about-timeline-dot { width: 19px; height: 19px; }
  .about-cta-strip { padding: 2rem; }
  .about-quote-mark { font-size: 5rem; }
}

/* ============================================================
   STRATEGY PAGE — Specific Components
   ============================================================ */

/* ---------- Strategy Hero ---------- */
.strat-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: 10rem;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(13, 33, 55, 0.9) 0%, transparent 65%),
    var(--black);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.strat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 30%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(13, 45, 78, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Strategy Overview Rows ---------- */
.strat-overview-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--navy);
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: default;
}

.strat-overview-row:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(13, 33, 55, 0.8);
}

.strat-overview-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.25);
  flex-shrink: 0;
  width: 2rem;
}

.strat-overview-arrow {
  margin-left: auto;
  color: rgba(201, 168, 76, 0.3);
  font-size: 1rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.strat-overview-row:hover .strat-overview-arrow {
  color: var(--gold);
  transform: translateY(3px);
}

/* ---------- Process Flow Steps ---------- */
.strat-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  min-width: 120px;
}

.strat-step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.strat-step:hover .strat-step-circle {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.strat-step-connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  flex-shrink: 0;
  margin-top: -1.5rem;
}

@media (max-width: 768px) {
  .strat-step-connector { display: none; }
  .strat-step { min-width: 80px; }
}

/* ---------- Section Labels (01 / 02 …) ---------- */
.strat-section-label {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.strat-section-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 168, 76, 0.08);
  flex-shrink: 0;
  user-select: none;
}

/* ---------- Detail Cards (Fundamental section) ---------- */
.strat-detail-card {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.strat-detail-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 30px rgba(201, 168, 76, 0.05);
}

.strat-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.strat-detail-card:hover::before { opacity: 1; }

.strat-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: border-color 0.3s ease;
}

.strat-detail-card:hover .strat-detail-icon {
  border-color: rgba(201, 168, 76, 0.55);
}

.strat-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  space-y: 0.5rem;
}

.strat-check-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  position: relative;
}

.strat-check-list li:last-child { border-bottom: none; }

.strat-check-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(201, 168, 76, 0.4);
  font-size: 0.7rem;
}

/* ---------- Macro/Micro section ---------- */
.strat-two-col-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.strat-col-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  padding: 0.3rem 0.75rem;
  flex-shrink: 0;
}

.strat-col-badge--alt {
  background: linear-gradient(135deg, var(--blue-mid), var(--deep-blue));
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.strat-factor-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.strat-factor-row:last-child { border-bottom: none; }

.strat-factor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
  margin-top: 6px;
  flex-shrink: 0;
}

.strat-factor-dot--alt {
  background: var(--blue-mid);
  border: 1px solid rgba(138, 155, 176, 0.4);
}

/* ---------- Long-term Positioning section ---------- */
.strat-conviction-block {
  background: var(--navy);
  border: 1px solid var(--border);
  overflow: hidden;
}

.strat-pos-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.strat-pos-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(4px);
}

/* ---------- Risk management cards ---------- */
.strat-risk-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.strat-risk-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.strat-risk-card--highlight {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.2);
}

.strat-risk-card--highlight:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 76, 0.07);
}

.strat-risk-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(138, 155, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 1.25rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.strat-risk-card:hover .strat-risk-icon {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

.strat-risk-icon--gold {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

/* ---------- Closing quote grid ---------- */
.strat-closing-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  align-items: start;
  max-width: 900px;
}

@media (max-width: 640px) {
  .strat-hero { min-height: 45vh; padding-top: 8rem; padding-bottom: 3.5rem; }
  .strat-step { min-width: 70px; padding: 1rem 0.5rem; }
  .strat-section-num { font-size: 2.5rem; }
  .strat-closing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INSIGHTS PAGE — Specific Components
   ============================================================ */

/* ---------- Insights Hero ---------- */
.insights-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: 10rem;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(13, 33, 55, 0.85) 0%, transparent 65%),
    var(--black);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.insights-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 25%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 5% 75%, rgba(13, 45, 78, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Filter Bar ---------- */
.insights-filter-bar {
  background: var(--deep-blue);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 57px;
  z-index: 50;
}

.insights-filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.insights-filter-btn:hover {
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.25);
}

.insights-filter-btn.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-color: transparent;
}

/* ---------- Category Badges ---------- */
.insights-category-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.2rem 0.65rem;
  background: rgba(201, 168, 76, 0.05);
}

.insights-category-badge--value {
  color: #7ec8e3;
  border-color: rgba(126, 200, 227, 0.3);
  background: rgba(126, 200, 227, 0.04);
}

.insights-category-badge--trend {
  color: #4caf82;
  border-color: rgba(76, 175, 130, 0.3);
  background: rgba(76, 175, 130, 0.04);
}

.insights-category-badge--risk {
  color: #e8905a;
  border-color: rgba(232, 144, 90, 0.3);
  background: rgba(232, 144, 90, 0.04);
}

/* ---------- Featured Article ---------- */
.insights-featured {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease;
}

.insights-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light), var(--gold-dim), transparent);
}

.insights-featured:hover { border-color: rgba(201, 168, 76, 0.35); }

.insights-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.insights-featured-visual {
  background: rgba(5, 13, 24, 0.6);
  border: 1px solid rgba(138, 155, 176, 0.1);
  padding: 1.25rem;
}

.insights-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Article Cards ---------- */
.insights-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.insights-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.insights-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.insights-read-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
}

.insights-card:hover .insights-read-link { color: var(--gold); }

/* ---------- Research Notes ---------- */
.insights-note {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
  transition: background 0.2s ease;
}

.insights-note:first-child { border-top: 1px solid rgba(201, 168, 76, 0.07); }

.insights-note-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(201, 168, 76, 0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-top: 0.2rem;
  text-align: right;
}

/* ---------- Sidebar ---------- */
.insights-sidebar-block {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.insights-theme-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.insights-theme-row:last-child { border-bottom: none; }

.insights-theme-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  margin-top: 6px;
  flex-shrink: 0;
}

.insights-conviction-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
  margin-top: 4px;
}

.insights-conviction-dot--high { background: #4caf82; box-shadow: 0 0 6px rgba(76, 175, 130, 0.5); }
.insights-conviction-dot--med  { background: var(--gold); }
.insights-conviction-dot--low  { background: rgba(138, 155, 176, 0.4); border: 1px solid rgba(138, 155, 176, 0.3); }

.insights-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.insights-cat-row:last-child { border-bottom: none; }

/* ---------- Performance Philosophy Cards ---------- */
.insights-perf-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.insights-perf-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.insights-perf-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.25rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.insights-perf-card:hover .insights-perf-icon {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.05);
}

/* ---------- Trend Cards ---------- */
.insights-trend-card {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.insights-trend-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.insights-trend-signal {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.insights-trend-signal--bull {
  color: #4caf82;
  border: 1px solid rgba(76, 175, 130, 0.35);
  background: rgba(76, 175, 130, 0.05);
}

.insights-trend-signal--watch {
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.insights-trend-signal--bear {
  color: #e05252;
  border: 1px solid rgba(224, 82, 82, 0.3);
  background: rgba(224, 82, 82, 0.04);
}

@media (max-width: 640px) {
  .insights-hero { min-height: 45vh; padding-top: 8rem; padding-bottom: 3.5rem; }
  .insights-filter-bar { top: 0; position: relative; }
  .insights-note { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .insights-featured { padding: 1.5rem; }
}

/* ============================================================
   CONTACT PAGE — Specific Components
   ============================================================ */

/* ---------- Contact Hero ---------- */
.contact-hero {
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: 10rem;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(13, 33, 55, 0.9) 0%, transparent 60%),
    var(--black);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(13, 45, 78, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Partnership Tier Cards ---------- */
.contact-tier-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.contact-tier-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-tier-card--featured {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--deep-blue);
}

.contact-tier-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-tier-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  padding: 0.2rem 0.65rem;
}

.contact-tier-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-tier-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  space-y: 0.5rem;
}

.contact-tier-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.05);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-tier-list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}

.contact-tier-list li:last-child { border-bottom: none; }

/* ---------- Contact Info Rows ---------- */
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
}

.contact-info-row:last-child { border-bottom: none; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Process Steps ---------- */
.contact-process {
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  padding-left: 1.5rem;
}

.contact-process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-process-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
  line-height: 1.4;
}

/* ---------- Form Wrapper ---------- */
.contact-form-wrap {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

/* ---------- Form Elements ---------- */
.contact-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(138, 155, 176, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-input {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input::placeholder { color: rgba(138, 155, 176, 0.35); }

.contact-input:focus {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.06);
}

.contact-select {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.contact-select:focus { border-color: rgba(201, 168, 76, 0.55); }

.contact-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-submit:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

.contact-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.contact-success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(76, 175, 130, 0.08);
  border: 1px solid rgba(76, 175, 130, 0.25);
  padding: 1rem 1.25rem;
}

/* ---------- FAQ Accordion ---------- */
.contact-faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.contact-faq-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.contact-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.contact-faq-btn:hover { color: var(--gold-light); }

.contact-faq-item.open .contact-faq-btn { color: var(--gold); }

.contact-faq-chevron {
  flex-shrink: 0;
  color: rgba(201, 168, 76, 0.4);
  transition: transform 0.3s ease;
}

.contact-faq-item.open .contact-faq-chevron { transform: rotate(45deg); }

.contact-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 1.25rem;
}

/* ---------- Closing Quote Strip ---------- */
.contact-quote-strip {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-quote-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.contact-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: rgba(201, 168, 76, 0.12);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .contact-hero { min-height: 48vh; padding-top: 8rem; padding-bottom: 3.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .contact-tier-card { padding: 1.5rem; }
}

/* ============================================================
   INVESTOR ONBOARDING WIZARD
   ============================================================ */

/* ---------- Hero ---------- */
.onboarding-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(13, 33, 55, 0.85) 0%, var(--black) 68%);
  position: relative;
  overflow: hidden;
}

.onboarding-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 52%);
  pointer-events: none;
}

/* ---------- Wizard Wrap ---------- */
.onboarding-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- Progress Indicator ---------- */
.onboarding-progress {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.onboarding-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.onboarding-progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  z-index: 0;
  transition: background 0.3s ease;
}

.onboarding-progress-step.completed:not(:last-child)::after,
.onboarding-progress-step.active:not(:last-child)::after {
  background: rgba(201, 168, 76, 0.38);
}

.onboarding-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(138, 155, 176, 0.4);
  position: relative;
  z-index: 1;
  background: var(--black);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.onboarding-progress-step.active .onboarding-step-num {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.2);
}

.onboarding-progress-step.completed .onboarding-step-num {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.onboarding-step-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(138, 155, 176, 0.3);
  margin-top: 0.45rem;
  text-align: center;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.onboarding-progress-step.active .onboarding-step-label    { color: var(--gold); }
.onboarding-progress-step.completed .onboarding-step-label { color: rgba(201, 168, 76, 0.55); }

/* ---------- Step Panels ---------- */
.onboarding-step {
  animation: stepIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.onboarding-step-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  color: var(--off-white);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.onboarding-step-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ---------- Investor Type Cards ---------- */
.onboarding-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.onboarding-type-card {
  background: var(--deep-blue);
  border: 1px solid rgba(201, 168, 76, 0.14);
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  position: relative;
  user-select: none;
}

.onboarding-type-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-2px);
}

.onboarding-type-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.onboarding-type-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.onboarding-type-card.selected .onboarding-type-check {
  background: var(--gold);
  border-color: var(--gold);
}

.onboarding-type-icon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  display: block;
}

.onboarding-type-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.3rem;
}

.onboarding-type-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Single-Select Buttons (allocation / horizon) ---------- */
.onboarding-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.onboarding-choice-btn {
  background: var(--deep-blue);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.onboarding-choice-btn:hover {
  border-color: rgba(201, 168, 76, 0.38);
  color: var(--off-white);
}

.onboarding-choice-btn.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  color: var(--gold-light);
}

/* ---------- Interest Chips (multi-select) ---------- */
.onboarding-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.onboarding-chip {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.16);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.onboarding-chip:hover {
  border-color: rgba(201, 168, 76, 0.38);
  color: var(--off-white);
}

.onboarding-chip.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  color: var(--gold-light);
}

/* ---------- Navigation Row ---------- */
.onboarding-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1rem;
}

.onboarding-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(138, 155, 176, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.onboarding-back-btn:hover { color: var(--muted); }

/* ---------- Review Cards ---------- */
.onboarding-review-card {
  background: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}

.onboarding-review-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.onboarding-review-row:last-child { border-bottom: none; }

.onboarding-review-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(138, 155, 176, 0.45);
  flex-shrink: 0;
  min-width: 110px;
  padding-top: 0.1rem;
}

.onboarding-review-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--off-white);
  text-align: right;
  line-height: 1.5;
}

/* ---------- Confirmation State ---------- */
.onboarding-confirm {
  text-align: center;
  padding: 3.5rem 0 2rem;
  animation: stepIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.onboarding-confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.onboarding-ref {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.14);
  padding: 0.4rem 1.1rem;
  margin-bottom: 2rem;
}

.onboarding-next-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 440px;
  margin: 2rem auto;
  text-align: left;
}

.onboarding-next-step-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.onboarding-next-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: rgba(201, 168, 76, 0.42);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ---------- Inline error ---------- */
.onboarding-error {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #e05252;
  margin-top: 0.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .onboarding-hero {
    min-height: 36vh;
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
  .onboarding-type-grid {
    grid-template-columns: 1fr;
  }
  .onboarding-step-label { display: none; }
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */

.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.theme-toggle-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Sun visible in dark mode; moon visible in light mode */
.theme-icon-moon { display: none; }

/* ============================================================
   LIGHT MODE — .light-mode
   ============================================================ */

/* --- CSS variable overrides --- */
.light-mode {
  --navy:       #d6dfe9;
  --deep-blue:  #e3eaf4;
  --blue-mid:   #edf1f8;
  --black:      #f4f6fb;
  --off-white:  #0a1628;
  --muted:      #4e6275;
  --border:     rgba(10, 22, 40, 0.12);
}

/* --- Body --- */
.light-mode body {
  background-color: #f4f6fb !important;
  color: #0a1628 !important;
}

/* --- Tailwind bg utility overrides --- */
.light-mode .bg-black     { background-color: #f4f6fb !important; }
.light-mode .bg-deep-blue { background-color: #e3eaf4 !important; }
.light-mode .bg-navy      { background-color: #d6dfe9 !important; }

/* --- Typography --- */
.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4  { color: #0a1628; }

.light-mode p   { color: #4e6275; }

.light-mode .text-off-white { color: #0a1628 !important; }
.light-mode .text-muted     { color: #4e6275 !important; }

/* --- Ticker --- */
.light-mode .ticker-wrap {
  background: #dce4ee;
  border-bottom-color: rgba(10, 22, 40, 0.1);
}
.light-mode .ticker-item { color: #4e6275; }

/* --- Navbar --- */
.light-mode .navbar.scrolled {
  background: rgba(244, 246, 251, 0.97);
  border-bottom-color: rgba(10, 22, 40, 0.1);
}

.light-mode .nav-link { color: #4e6275; }
.light-mode .nav-link:hover,
.light-mode .nav-link.active { color: var(--gold); }

.light-mode .nav-menu {
  background: #f4f6fb;
}

.light-mode .theme-toggle-btn {
  border-color: rgba(10, 22, 40, 0.18);
  color: #4e6275;
}
.light-mode .theme-toggle-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.light-mode .theme-icon-moon { display: block; }
.light-mode .theme-icon-sun  { display: none; }

/* --- Hero sections --- */
.light-mode .hero {
  background: radial-gradient(ellipse at 60% 50%, rgba(195, 215, 240, 0.55) 0%, #f4f6fb 70%);
}
.light-mode .hero::before {
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(180, 205, 235, 0.35) 0%, transparent 50%);
}

.light-mode .about-page-hero,
.light-mode .insights-hero,
.light-mode .contact-hero,
.light-mode .onboarding-hero,
.light-mode .strat-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(190, 210, 238, 0.5) 0%, #f4f6fb 66%);
}

/* --- Gold divider --- */
.light-mode .gold-divider { opacity: 0.7; }

/* --- Cards --- */
.light-mode .card {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}
.light-mode .card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.08), 0 10px 32px rgba(10, 22, 40, 0.08);
}

/* --- Stats section --- */
.light-mode .stats-section {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}
.light-mode .stat-item + .stat-item::before {
  background: rgba(10, 22, 40, 0.1);
}

/* --- Marquee --- */
.light-mode .marquee-wrap {
  background: #d6dfe9;
  border-color: rgba(10, 22, 40, 0.1);
}
.light-mode .marquee-item { color: rgba(10, 22, 40, 0.3); }

/* --- Chart section --- */
.light-mode .chart-wrap {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}

/* --- Forms --- */
.light-mode .contact-form-wrap {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}
.light-mode .contact-input,
.light-mode .contact-select {
  background: #f4f6fb;
  border-color: rgba(10, 22, 40, 0.18);
  color: #0a1628;
}
.light-mode .contact-input::placeholder { color: rgba(78, 98, 117, 0.45); }
.light-mode .contact-input:focus,
.light-mode .contact-select:focus {
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.07);
}
.light-mode .contact-label { color: rgba(10, 22, 40, 0.55); }

/* --- Contact info rows --- */
.light-mode .contact-info-icon {
  background: #d6dfe9;
  border-color: rgba(10, 22, 40, 0.1);
}

/* --- Contact process steps --- */
.light-mode .contact-process { border-color: rgba(10, 22, 40, 0.08); }

/* --- FAQ --- */
.light-mode .contact-faq-item  { border-color: rgba(10, 22, 40, 0.08); }
.light-mode .contact-faq-btn   { color: #0a1628; }

/* --- Partner tier cards --- */
.light-mode .contact-tier-card {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}
.light-mode .contact-tier-card--featured {
  background: linear-gradient(145deg, #d6dfe9 0%, #e3eaf4 100%);
  border-color: rgba(201, 168, 76, 0.32);
}

/* --- Onboarding wizard --- */
.light-mode .onboarding-type-card {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.12);
}
.light-mode .onboarding-type-card:hover {
  border-color: rgba(201, 168, 76, 0.42);
}
.light-mode .onboarding-type-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}
.light-mode .onboarding-type-name { color: #0a1628; }
.light-mode .onboarding-type-desc { color: #4e6275; }

.light-mode .onboarding-choice-btn {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.14);
  color: #4e6275;
}
.light-mode .onboarding-choice-btn:hover { color: #0a1628; }
.light-mode .onboarding-choice-btn.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold-dim);
}

.light-mode .onboarding-chip {
  border-color: rgba(10, 22, 40, 0.14);
  color: #4e6275;
}
.light-mode .onboarding-chip:hover { color: #0a1628; }
.light-mode .onboarding-chip.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold-dim);
}

.light-mode .onboarding-review-card {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}
.light-mode .onboarding-review-row   { border-color: rgba(10, 22, 40, 0.06); }
.light-mode .onboarding-review-value { color: #0a1628; }
.light-mode .onboarding-step-title   { color: #0a1628; }

.light-mode .onboarding-progress-step.active .onboarding-step-num,
.light-mode .onboarding-step-num { background: #f4f6fb; }

/* --- Footer --- */
.light-mode footer { border-top-color: rgba(10, 22, 40, 0.1) !important; }

/* --- Glow / particles (subtler on light bg) --- */
.light-mode .cursor-glow { opacity: 0.35; }
.light-mode #particles-canvas { opacity: 0.1; }
.light-mode .glow-line { opacity: 0.07; }

/* --- Insights page filter bar --- */
.light-mode .insights-filter-bar { background: #e3eaf4; border-color: rgba(10, 22, 40, 0.08); }
.light-mode .insights-filter-btn {
  background: transparent;
  border-color: rgba(10, 22, 40, 0.14);
  color: #4e6275;
}
.light-mode .insights-filter-btn.active,
.light-mode .insights-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Featured article / article cards --- */
.light-mode .insights-featured,
.light-mode .insights-article-card {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}

/* --- Research notes --- */
.light-mode .insights-note-item { border-color: rgba(10, 22, 40, 0.08); }

/* --- Strategy page specific --- */
.light-mode .strat-overview-item { border-color: rgba(10, 22, 40, 0.08); }
.light-mode .strat-process-step  {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}
.light-mode .strat-checklist-card {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}
.light-mode .strat-macro-col { border-color: rgba(10, 22, 40, 0.1); }
.light-mode .strat-risk-card {
  background: #e3eaf4;
  border-color: rgba(10, 22, 40, 0.1);
}

/* --- About page specific --- */
.light-mode .about-stat-card    { background: #e3eaf4; border-color: rgba(10, 22, 40, 0.1); }
.light-mode .about-pillar-card  { background: #e3eaf4; border-color: rgba(10, 22, 40, 0.1); }
.light-mode .about-team-card    { background: #e3eaf4; border-color: rgba(10, 22, 40, 0.1); }
.light-mode .timeline-line      { background: rgba(10, 22, 40, 0.12); }
.light-mode .timeline-dot       { background: #f4f6fb; border-color: rgba(10, 22, 40, 0.2); }
.light-mode .timeline-dot.active { background: var(--gold); border-color: var(--gold); }

/* --- Closing quote strips --- */
.light-mode .contact-quote-strip { background: #d6dfe9; border-color: rgba(10, 22, 40, 0.08); }
.light-mode .contact-quote-mark  { color: rgba(10, 22, 40, 0.08); }
