/* ===== ROOT VARIABLES ===== */
:root {
  --bg-dark: #050a18;
  --bg-card: #0a1628;
  --bg-card-hover: #0d1e38;
  --accent-blue: #1a6ef7;
  --accent-blue-light: #4a8fff;
  --accent-cyan: #00c2ff;
  --text-primary: #ffffff;
  --text-secondary: #8a9bc0;
  --text-muted: #5a6a8a;
  --border-color: #1a2a4a;
  --border-glow: rgba(26, 110, 247, 0.3);
  --gradient-blue: linear-gradient(135deg, #1a6ef7, #00c2ff);
  --gradient-dark: linear-gradient(180deg, #050a18 0%, #0a1628 100%);
  /* consistent vertical rhythm between sections */
  --section-pad-y: 80px;
}

/* ===== GLOBAL ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: #040710;
  color: var(--text-primary);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 15px;
  overflow-x: hidden;
}

a { text-decoration: none; transition: all 0.3s ease; }

img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-blue); border-radius: 3px; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--gradient-blue);
  border: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-custom:hover {
  opacity: 0.85;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 110, 247, 0.4);
}

.btn-outline-custom {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-custom:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue-light);
  transform: translateY(-2px);
}

/* ===== NAVBAR BOX ===== */
.navbar-wrapper-box {
  margin: 10px 10px 6px;
  border-radius: 12px;
  border: 1px solid rgba(99,130,200,0.18);
  background: linear-gradient(180deg, #112a55 0%, #0c1d3e 100%);
  position: sticky;
  top: 10px;
  z-index: 200;
}

/* ===== HERO WRAPPER BOX ===== */
.hero-wrapper-box {
  margin: 0 10px 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: #080c18;
  position: relative;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: transparent;
  border-bottom: none;
  padding: 0;
  position: relative;
  width: 100%;
}

.navbar-custom .container {
  padding-top: 13px;
  padding-bottom: 13px;
}

.nav-logo-icon {
  flex-shrink: 0;
  margin-right: 8px;
  vertical-align: middle;
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary) !important;
  letter-spacing: -0.3px;
}

/* ===== NAV LINKS ===== */
.nav-link-custom {
  color: rgba(255,255,255,0.6) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px !important;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: rgba(255,255,255,0.95) !important;
  background: rgba(255,255,255,0.06);
}

.nav-chevron {
  font-size: 10px;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

/* ===== DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #0e1525;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 6px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  top: calc(100% + 6px);
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-item {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  border-radius: 7px;
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* ===== NAV BUTTONS ===== */
.btn-nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: none;
  border: none;
  padding: 7px 10px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.btn-nav-signin:hover { color: #fff; }

.btn-nav-access {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #151d30;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-nav-access:hover {
  background: #1e2a44;
  border-color: rgba(99,102,241,0.5);
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: calc(100vh - 120px);
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(99,102,241,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 15% 70%, rgba(99,102,241,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 80%, rgba(99,102,241,0.05) 0%, transparent 60%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 8%  18%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 55%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 37% 12%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 52% 72%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 67% 33%, rgba(255,255,255,0.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 81% 50%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 93% 8%,  rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 12% 88%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 58% 42%, rgba(255,255,255,0.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 75% 78%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 44% 92%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 3%  45%, rgba(255,255,255,0.4)  0%, transparent 100%);
}

/* ===== HERO CENTER CONTENT ===== */
.hero-center-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* Pill badge */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.28);
  color: rgba(180,185,255,0.9);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(99,102,241,0.8);
  animation: heroPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(99,102,241,0.8); }
  50%       { opacity: 0.5; box-shadow: 0 0 4px rgba(99,102,241,0.3); }
}

/* Display heading — Instrument Serif */
.hero-display-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Subtitle */
.hero-display-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-access {
  display: inline-block;
  background: #151e32;
  border: 1px solid rgba(255,255,255,0.13);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 9px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-hero-access:hover {
  background: #1e2b45;
  border-color: rgba(99,102,241,0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Avatar stack */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
}

.avatar-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #080c18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.avatar-item:first-child { margin-left: 0; }

.hero-trust-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.hero-trust-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ===== HERO IMAGE PLACEHOLDER CARD ===== */
.hero-dashboard-card {
  position: relative;
  background: #0c1220;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(99,102,241,0.08);
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 1521 / 1323;
}

/* Top bar */
.hdc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.hdc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hdc-dot.red    { background: #ff5f57; }
.hdc-dot.yellow { background: #febc2e; }
.hdc-dot.green  { background: #28c840; }

.hdc-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

/* Card body */
.hdc-body {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  min-height: 320px;
}

.hdc-col {
  padding: 20px;
}

.hdc-col + .hdc-col {
  border-left: 1px solid rgba(255,255,255,0.05);
}

.hdc-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

/* Watchlist rows */
.hdc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.hdc-sym-block {}

.hdc-sym {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.hdc-sym-name {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 1px;
}

.hdc-price {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.hdc-chg { font-size: 11px; font-weight: 600; margin-top: 1px; }
.hdc-chg.up   { color: #22c55e; }
.hdc-chg.down { color: #ef4444; }

/* Timeframe buttons */
.hdc-timeframe {
  background: none;
  border: 1px solid transparent;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hdc-timeframe:hover { color: #fff; border-color: rgba(255,255,255,0.15); }
.hdc-timeframe.active {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.4);
  color: #a5b4fc;
}

/* Signal rows */
.hdc-signal-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hdc-action {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hdc-conf-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.hdc-conf-val {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  width: 30px;
  text-align: right;
}

/* Regime */
.hdc-regime {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hdc-regime-label {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  white-space: nowrap;
}

.hdc-regime-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.hdc-regime-score {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* ===== BROKERS HERO ===== */
.brokers-hero {
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 90px;
  display: block;
}

/* ===== WHY GENERIC STRATEGIES FAIL ===== */
.strategies-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.strategies-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.strategies-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.strategies-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* Combined split card */
.strategy-combined {
  position: relative;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
}

.strategy-combined-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, transparent 62%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.strategy-half {
  position: relative;
  z-index: 1;
  padding: 36px 36px 40px;
}

.strategy-half-right {
  border-left: 1px solid rgba(255,255,255,0.07);
}

.strategy-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 56px;
}

.strategy-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5b8fd6;
  margin-bottom: 16px;
}

.strategy-label i { font-size: 11px; color: #3b82f6; }

.strategy-card-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.strategy-card-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-bottom: 26px;
}

.strategy-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 9px 22px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.strategy-readmore:hover {
  border-color: rgba(99,102,241,0.5);
  color: #fff;
}

/* Quote bar */
.strategy-quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 34px 36px;
  overflow: hidden;
}

.strategy-quote-glow {
  position: absolute;
  top: -40px;
  left: -50px;
  width: 360px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, transparent 62%);
  filter: blur(55px);
  pointer-events: none;
}

.strategy-quote-text {
  position: relative;
  z-index: 1;
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

.strategy-quote-arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.25s ease;
}

.strategy-quote-arrow:hover {
  background: #fff;
  color: #0a0e1a;
}

/* ===== THREE FUNDS ===== */
.funds-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.fund-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 32px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fund-row:last-child { margin-bottom: 0; }

.fund-row:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-2px);
}

.fund-row.featured {
  border-color: rgba(59,130,246,0.4);
}

.fund-row-glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 360px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.55) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.fund-row > *:not(.fund-row-glow) { position: relative; z-index: 1; }

.fund-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  flex-shrink: 0;
}

.fund-info { flex: 1; }

.fund-name {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 7px;
}

.fund-text {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.fund-badge {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 9px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.fund-badge-white {
  background: #ffffff;
  color: #0a0e1a;
  border-color: #fff;
}

/* ===== DISCRETIONARY INSTITUTIONAL FUND ===== */
.instfund-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.instfund-card {
  position: relative;
  background: linear-gradient(120deg, #0f1830 0%, #0a1020 55%, #070b16 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.instfund-glow {
  position: absolute;
  top: -80px;
  left: -70px;
  width: 460px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.45) 0%, transparent 62%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.instfund-text {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.instfund-text .showcase-badge { align-self: flex-start; }

.instfund-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 18px;
}

.instfund-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.instfund-note {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* Photo */
.instfund-photo-col {
  position: relative;
  min-height: 360px;
}

.instfund-photo {
  position: absolute;
  inset: 0;
}

.instfund-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, #0b1124 0%, rgba(11,17,36,0.4) 22%, transparent 45%);
}

/* ===== TWO PATHWAYS (BENTO) ===== */
.pathways-section {
  padding: var(--section-pad-y) 0;
  background:
    radial-gradient(ellipse 50% 60% at 5% 8%, rgba(37,99,235,0.14) 0%, transparent 55%),
    #060912;
}

.pathways-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
}

.pathways-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin: 0;
}

/* Bento card */
.bento-card {
  position: relative;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bento-card.featured { border-color: rgba(59,130,246,0.4); }

.bento-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.6) 0%, transparent 62%);
  filter: blur(50px);
  pointer-events: none;
}

.bento-card > *:not(.bento-glow) { position: relative; z-index: 1; }

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 38px;
}

.bento-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.bento-text {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin: 0;
}

.bento-text strong { color: rgba(255,255,255,0.85); font-weight: 700; }

/* Portfolio widget */
.portfolio-widget {
  margin-top: 24px;
  background: rgba(6,10,20,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px;
}

.pw-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pw-head-left { display: flex; gap: 12px; }

.pw-mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b9bf5;
  font-size: 15px;
  flex-shrink: 0;
}

.pw-label { font-size: 11px; color: rgba(255,255,255,0.4); }
.pw-value { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.2; }
.pw-change { font-size: 11px; color: #22c55e; }
.pw-change span { color: rgba(255,255,255,0.35); }

.pw-arrow {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.pw-arrow:hover { background: #fff; color: #0a0e1a; }

.pw-chart { display: flex; gap: 10px; }

.pw-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  padding: 2px 0 18px;
}

.pw-chart-area { flex: 1; position: relative; }

.pw-point-label {
  position: absolute;
  top: 12px;
  right: 6%;
  background: #1c2942;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.pw-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

.pw-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pw-foot-label { font-size: 10px; color: rgba(255,255,255,0.35); }
.pw-foot-val { font-size: 14px; font-weight: 700; color: #fff; }
.pw-foot-gain { font-size: 14px; font-weight: 700; color: #22c55e; }

/* Live news widget */
.news-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }

.news-item {
  display: flex;
  gap: 12px;
  background: rgba(6,10,20,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.news-item:last-child { margin-bottom: 0; }

.news-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.news-body { flex: 1; min-width: 0; }

.news-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }

.news-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  padding: 2px 7px;
  border-radius: 4px;
}

.news-time { font-size: 10px; color: rgba(255,255,255,0.3); }

.news-headline { font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 3px; line-height: 1.3; }
.news-desc { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.45; }

.news-metrics { flex-shrink: 0; text-align: right; min-width: 92px; }
.nm-line { font-size: 9.5px; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.nm-pos { font-size: 10px; font-weight: 700; color: #22c55e; margin-bottom: 4px; }
.nm-neg { font-size: 10px; font-weight: 700; color: #ef4444; margin-bottom: 4px; }
.nm-sentiment { font-size: 9px; font-weight: 600; }
.nm-sentiment.pos { color: #22c55e; }
.nm-sentiment.neg { color: #ef4444; }

/* ===== IMPOSSIBLE TO REPLICATE ===== */
.impossible-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.impossible-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 540px;
}

.imp-col-left { display: flex; align-items: center; }

.imp-col-right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

/* Center text */
.imp-center { text-align: center; }

.imp-headline {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 6px 0 16px;
}

.imp-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 0;
}

/* Cards */
.imp-card {
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.3s ease;
}

.imp-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-3px);
}

.imp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.imp-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(147,197,253,0.9);
}

.imp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 6px rgba(59,130,246,0.8);
}

.imp-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.32);
}

.imp-card-title {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
}

.imp-card-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin: 0;
}

/* ===== INVESTOR SUPPORT ===== */
.support-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.support-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
}

.support-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin: 0;
}

.support-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.support-row:last-child { margin-bottom: 0; }

.support-row:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-2px);
}

.support-row.featured { border-color: rgba(59,130,246,0.4); }

.support-row-glow {
  position: absolute;
  top: -70px;
  right: -30px;
  width: 360px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.support-row > *:not(.support-row-glow) { position: relative; z-index: 1; }

.support-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e1a;
  font-size: 19px;
  flex-shrink: 0;
}

.support-name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  width: 250px;
  flex-shrink: 0;
}

.support-desc {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
}

.support-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  transition: all 0.25s ease;
}

.support-arrow:hover { background: #fff; color: #0a0e1a; }

.support-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a0e1a;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.support-btn:hover { background: #e8ecf5; color: #0a0e1a; transform: translateY(-2px); }

/* ===== WHO THIS IS FOR (AUDIENCE) ===== */
.audience-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.aud-card {
  position: relative;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 34px 30px 36px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.aud-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-3px);
}

.aud-card.featured {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(180deg, #122546 0%, #0c1322 60%);
}

.aud-glow {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.6) 0%, transparent 62%);
  filter: blur(55px);
  pointer-events: none;
}

.aud-card > *:not(.aud-glow) { position: relative; z-index: 1; }

.aud-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  margin-bottom: auto;
}

.aud-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 40px 0 12px;
}

.aud-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
  max-width: 280px;
}

/* ===== THE PACKAGE ===== */
.package-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.package-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
}

.package-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin: 0;
}

.pkg-card {
  position: relative;
  height: 100%;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 26px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pkg-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-3px);
}

.pkg-card.featured {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(160deg, #122546 0%, #0c1322 60%);
}

.pkg-glow {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 300px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.6) 0%, transparent 62%);
  filter: blur(52px);
  pointer-events: none;
}

.pkg-card > *:not(.pkg-glow) { position: relative; z-index: 1; }

.pkg-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 54px;
}

.pkg-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.pkg-text {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin: 0;
}

.pkg-text strong { color: #93c5fd; font-weight: 600; }

/* ===== THE EDGE ===== */
.edge-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.edge-bar {
  position: relative;
  display: flex;
  gap: 24px;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 36px 40px;
  overflow: hidden;
}

.edge-bar-glow {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 320px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.55) 0%, transparent 62%);
  filter: blur(55px);
  pointer-events: none;
}

.edge-item {
  position: relative;
  z-index: 1;
  flex: 1;
}

.edge-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.edge-label {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}

/* ===== THE PROCESS (STAIRCASE) ===== */
.process-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 0;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}

/* explicit placement → staircase */
.p1 { grid-column: 1; grid-row: 1; }
.g1 { grid-column: 2; grid-row: 1; }
.g2 { grid-column: 1; grid-row: 2; }
.p2 { grid-column: 2; grid-row: 2; }
.p3 { grid-column: 1; grid-row: 3; }
.g3 { grid-column: 2; grid-row: 3; }
.g4 { grid-column: 1; grid-row: 4; }
.p4 { grid-column: 2; grid-row: 4; }

/* cards pull up slightly to overlap into the previous row */
.p2, .p3, .p4 { margin-top: -34px; }

.proc-card {
  position: relative;
  background: #0c1322;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 28px;
  min-height: 150px;
  overflow: hidden;
  z-index: 2;
  transition: all 0.3s ease;
}

.proc-card:hover { transform: translateY(-3px); }

.proc-card.featured {
  border-color: rgba(59,130,246,0.45);
  background: linear-gradient(155deg, #15294e 0%, #0c1322 60%);
}

.proc-glow {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 280px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.6) 0%, transparent 62%);
  filter: blur(50px);
  pointer-events: none;
}

.proc-card > *:not(.proc-glow) { position: relative; z-index: 1; }

/* ghost connector cells — just hold the connector line, no box */
.proc-ghost {
  position: relative;
  border: none;
  background: transparent;
}

.proc-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.proc-num {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.proc-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.proc-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  margin: 0;
}

/* ===== PARTNER APPLICATION ===== */
.apply-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.apply-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 18px 0 16px;
}

.apply-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 0;
}

.apply-card {
  position: relative;
  background: rgba(13,19,33,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 34px 34px;
  overflow: hidden;
}

.apply-glow {
  position: absolute;
  bottom: -90px;
  right: -40px;
  width: 380px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, transparent 62%);
  filter: blur(60px);
  pointer-events: none;
}

.apply-card > *:not(.apply-glow) { position: relative; z-index: 1; }

.apply-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.apply-card-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.apply-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 7px;
}

.apply-input {
  width: 100%;
  background: rgba(6,10,20,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.apply-input::placeholder { color: rgba(255,255,255,0.3); }

.apply-input:focus {
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.apply-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23889' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.apply-select option { background: #0e1525; color: #fff; }

.apply-textarea { resize: vertical; min-height: 96px; line-height: 1.6; }

.apply-submit {
  width: 100%;
  background: #ffffff;
  color: #0a0e1a;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.25s ease;
}

.apply-submit:hover { background: #e8ecf5; transform: translateY(-2px); }

.brokers-hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Brokers / Prop Firms toggle */
.brokers-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 34px;
}

.brokers-toggle-opt {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 7px 20px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.brokers-toggle-opt:hover { color: rgba(255,255,255,0.85); }

.brokers-toggle-opt.active {
  background: linear-gradient(135deg, #2a3a66, #1b264a);
  border: 1px solid rgba(120,150,255,0.35);
  color: #fff;
}

.brokers-hero-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 20px;
}

.brokers-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 0;
}

/* ===== ALGO HERO + DASHBOARD ===== */
.algo-hero {
  min-height: auto;
  padding-top: 110px;
  padding-bottom: 70px;
  display: block;
}

.algo-hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.algo-dash {
  background: rgba(8,12,22,0.7);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px;
  max-width: 1040px;
  margin: 0 auto;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}

.algo-panel {
  background: rgba(13,19,33,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px 18px;
  height: 100%;
}

.algo-panel-accent {
  background: linear-gradient(155deg, #15294e 0%, #0c1322 70%);
  border-color: rgba(59,130,246,0.35);
}

/* chart panel */
.algo-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.algo-chart-ticker { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; }
.algo-chart-price { font-size: 17px; font-weight: 800; color: #fff; margin-left: 10px; }

.algo-chart-tf { display: flex; gap: 5px; }
.algo-tf {
  background: none; border: 1px solid transparent;
  color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 5px; cursor: pointer;
}
.algo-tf.active { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.4); color: #93c5fd; }

.algo-chart-axis {
  display: flex; justify-content: space-between;
  font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 4px;
}

/* mini stat cards */
.algo-stat { display: flex; flex-direction: column; gap: 3px; }
.algo-stat-label { font-size: 10px; color: rgba(255,255,255,0.4); }
.algo-stat-val { font-size: 15px; font-weight: 700; color: #fff; }
.algo-stat-sub { font-size: 11px; font-weight: 600; }

/* colors */
.algo-up   { color: #22c55e; }
.algo-down { color: #ef4444; }
.algo-warn { color: #f59e0b; }

/* section label */
.algo-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 18px 0 12px;
}

.algo-panel-title { font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 12px; }

.algo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.algo-row:last-child { border-bottom: none; }
.algo-row-k { font-size: 12px; color: rgba(255,255,255,0.45); }
.algo-row-v { font-size: 12px; font-weight: 600; }

.algo-big-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 6px 0 8px;
}

/* ===== TICKER STRIP ===== */
.ticker-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 16px 24px;
  margin: 0 10px 10px;
  border-radius: 12px;
  background:
    radial-gradient(ellipse 50% 200% at 8% 50%, rgba(37,99,235,0.18) 0%, transparent 60%),
    #070b14;
  border: 1px solid rgba(255,255,255,0.06);
}

.ticker-item { display: flex; align-items: center; gap: 8px; }

.ticker-arrow { font-size: 11px; }
.ticker-arrow.up { color: #22c55e; }
.ticker-arrow.down { color: #ef4444; }

.ticker-badge {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

.ticker-sym { font-size: 12.5px; font-weight: 700; color: #fff; }
.ticker-price { font-size: 12.5px; color: rgba(255,255,255,0.55); }
.ticker-chg { font-size: 12px; font-weight: 600; }
.ticker-chg.up { color: #22c55e; }
.ticker-chg.down { color: #ef4444; }

/* ===== ALGO FEATURE CARDS ===== */
.afeat-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.afeat-card {
  position: relative;
  background: linear-gradient(150deg, #0c1322 0%, #090d18 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
}
.afeat-card:last-child { margin-bottom: 0; }

.afeat-glow {
  position: absolute;
  width: 420px; height: 320px;
  border-radius: 50%;
  filter: blur(75px);
  pointer-events: none;
  z-index: 0;
}
.afeat-glow-tr { top: -120px; right: -90px; background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, transparent 68%); }
.afeat-glow-bl { bottom: -120px; left: -90px; background: radial-gradient(circle, rgba(59,130,246,0.35) 0%, transparent 68%); }

.afeat-card .row { position: relative; z-index: 1; }

/* text side */
.afeat-text { padding: 48px 44px; }

.afeat-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 16px 0 14px;
}

.afeat-lead {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 12px;
}

.afeat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin-bottom: 20px;
}
.afeat-desc strong { color: rgba(255,255,255,0.8); }

.afeat-checks { margin-bottom: 26px; }

.afeat-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 12px;
}
.afeat-check strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.afc-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 1px;
}

.afeat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a0e1a;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.afeat-btn:hover { background: #e8ecf5; color: #0a0e1a; transform: translateY(-2px); }

/* visual side */
.afeat-visual { padding: 32px; }

.vpanel {
  background: #070b14;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px 18px;
}

.vpanel-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vpanel-sub { font-size: 10.5px; color: rgba(255,255,255,0.4); line-height: 1.4; margin-bottom: 12px; }

.vpanel-legend {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 10px; color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.vpanel-legend span { display: inline-flex; align-items: center; gap: 5px; }
.lg-line { width: 12px; height: 2px; border-radius: 2px; display: inline-block; }
.lg-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

.vchart-wrap { display: flex; gap: 8px; }
.vyaxis {
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: 8px; color: rgba(255,255,255,0.3); padding: 2px 0 16px;
}
.vchart { flex: 1; position: relative; }
.vpoint-label {
  position: absolute;
  background: #1c2942; border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 5px;
}
.vxaxis { display: flex; justify-content: space-between; font-size: 8.5px; color: rgba(255,255,255,0.3); margin-top: 4px; }

.vpanel-foot { font-size: 8.5px; color: rgba(255,255,255,0.28); margin-top: 12px; line-height: 1.4; }

.vpanel-bar {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 9.5px; color: rgba(255,255,255,0.55); margin-bottom: 8px; gap: 8px; flex-wrap: wrap;
}
.vpanel-bar-r { font-family: 'Consolas', monospace; color: rgba(255,255,255,0.45); }

/* FX matrix */
.fxmatrix { margin: 4px 0 8px; }
.fx-row {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fx-row:last-child { border-bottom: none; }
.fx-cur { font-size: 11px; font-weight: 700; color: #fff; width: 34px; }
.fx-dots { display: flex; gap: 6px; flex: 1; }
.fx-dot { width: 9px; height: 9px; border-radius: 50%; }
.fx-score { font-size: 11px; font-weight: 700; width: 40px; text-align: right; }

/* market structure tags */
.vstruct { position: relative; }
.vtag {
  position: absolute;
  font-size: 9px; font-weight: 600;
  background: rgba(7,11,20,0.8);
  padding: 1px 5px; border-radius: 4px;
  white-space: nowrap;
}

/* ===== PROVEN MARKET INTELLIGENCE ===== */
.pmi-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.pmi-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 16px 0 16px;
}

.pmi-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 0;
}

.pmi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pmi-card {
  position: relative;
  background: rgba(13,19,33,0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px 22px 20px;
  min-height: 100px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pmi-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-3px); }

.pmi-wide { grid-column: span 2; }

.pmi-card.featured {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(120deg, #0c1322 35%, #16315f 100%);
}

.pmi-glow {
  position: absolute;
  top: -40px; right: -30px;
  width: 240px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.6) 0%, transparent 62%);
  filter: blur(45px);
  pointer-events: none;
}
.pmi-card > *:not(.pmi-glow):not(.pmi-arrow) { position: relative; z-index: 1; }

.pmi-arrow {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: color 0.2s ease;
}
.pmi-arrow:hover { color: #fff; }

.pmi-num { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 6px; }
.pmi-label { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ===== INSTITUTIONAL RESEARCH (MACRO) ===== */
.macro-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.macro-heading {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
}

.macro-subhead {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin: 0;
}

.macro-card {
  position: relative;
  height: 100%;
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.macro-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-3px); }

.macro-card.featured {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(150deg, #14264d 0%, #0c1322 60%);
}

.macro-glow {
  position: absolute;
  top: -50px; right: -50px;
  width: 280px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.6) 0%, transparent 62%);
  filter: blur(50px);
  pointer-events: none;
}
.macro-card > *:not(.macro-glow) { position: relative; z-index: 1; }

.macro-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.macro-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 17px;
}

.macro-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
}

.macro-card-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 9px; line-height: 1.3; }
.macro-card-text { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.6; margin: 0; }

/* ===== HOW WE COMPARE (TABLE) ===== */
.compare-section { padding: var(--section-pad-y) 0; background: #060912; }

.compare-wrap {
  background: rgba(13,19,33,0.45);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 8px 8px;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.compare-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.compare-table td {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.cmp-feature { color: rgba(255,255,255,0.85) !important; font-weight: 500; }

.cmp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #7ee0a8;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 5px 12px;
  border-radius: 100px;
}
.cmp-pill i { font-size: 12px; }

.cmp-yes { color: #22c55e; font-size: 14px; }
.cmp-no { color: rgba(255,255,255,0.25); font-size: 14px; }
.cmp-dash { color: rgba(255,255,255,0.25); }
.cmp-txt { color: rgba(255,255,255,0.55); font-size: 12px; }

/* ===== GET STARTED (HEADER) ===== */
.onboard-section { padding: var(--section-pad-y) 0 0; background: #060912; }

.onboard-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem; font-weight: 400; line-height: 1.15;
  letter-spacing: -0.5px; color: #fff; margin: 0;
}
.onboard-sub { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; margin: 0; }

/* ===== CHOOSE YOUR PLAN ===== */
.plan-section { padding: var(--section-pad-y) 0; background: #060912; }

.plan-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.2rem; font-weight: 400; line-height: 1.18;
  letter-spacing: -0.5px; color: #fff; margin: 16px 0 14px;
}
.plan-text { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }

.plan-visual {
  position: relative;
  background: linear-gradient(150deg, #0e1830 0%, #0a0f1c 60%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  overflow: hidden;
}
.plan-glow {
  position: absolute; top: -50px; right: -40px;
  width: 280px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.45) 0%, transparent 62%);
  filter: blur(50px); pointer-events: none;
}
.plan-visual > *:not(.plan-glow) { position: relative; z-index: 1; }

.plan-vhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.plan-tabs { display: flex; gap: 6px; }
.plan-tab {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45);
  padding: 5px 12px; border-radius: 7px;
}
.plan-tab.active { background: rgba(255,255,255,0.08); color: #fff; }
.plan-search {
  font-size: 11px; color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px; border-radius: 7px;
}

.plan-vtitle { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; }

.plan-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.plan-mini {
  background: rgba(6,10,20,0.6); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 10px;
}
.plan-mini-title { font-size: 10.5px; font-weight: 600; color: #fff; margin-top: 8px; }
.plan-mini-sub { font-size: 9px; color: rgba(255,255,255,0.35); }

/* ===== ACCESS TRADINGVIEW ===== */
.tva-section { padding: var(--section-pad-y) 0; background: #060912; }

.tva-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.2rem; font-weight: 400; line-height: 1.18;
  letter-spacing: -0.5px; color: #fff; margin: 16px 0 14px;
}
.tva-text { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }

.tva-card {
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px;
}
.tva-card-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; }

.tva-feat { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.tva-feat:last-child { border-bottom: none; padding-bottom: 0; }
.tva-feat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.tva-feat-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.tva-feat-sub { font-size: 11.5px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ===== COSTS DEFINE PROFIT ===== */
.costs-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.costs-card {
  position: relative;
  background: linear-gradient(120deg, #0f1830 0%, #0a1020 55%, #070b16 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
}

.costs-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 440px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.4) 0%, transparent 65%);
  filter: blur(75px);
  pointer-events: none;
}

.costs-text {
  padding: 56px 48px;
  position: relative;
  z-index: 2;
}

.costs-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.costs-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-costs {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0c1018;
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-costs:hover {
  background: #141b2b;
  border-color: rgba(99,102,241,0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* Right visual */
.costs-visual {
  position: relative;
  min-height: 320px;
  height: 100%;
}

.costs-photo {
  position: absolute;
  inset: 24px 40px 24px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0e1a;
}

.costs-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Floating brand badges */
.costs-badge {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  animation: nodeFloat 5s ease-in-out infinite;
  z-index: 3;
}

.costs-badge-1 { top: 14%; right: 16%; color: #00a4ef; font-size: 22px; }
.costs-badge-2 { top: 34%; right: 6%;  animation-delay: -1.6s; }
.costs-badge-3 { top: 56%; right: 18%; animation-delay: -3.2s; }

.brand-tesla {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #e82127;
  letter-spacing: -1px;
}

.brand-netflix {
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #e50914;
}

/* ===== SUMMARY OF BEST BROKERS ===== */
.brokers-list-section {
  padding: var(--section-pad-y) 0;
  background:
    radial-gradient(ellipse 55% 60% at 8% 5%, rgba(37,99,235,0.16) 0%, transparent 55%),
    #060912;
}

.brokers-list-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
}

.brokers-list-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin: 0;
}

/* Broker card */
.broker-card {
  position: relative;
  background: rgba(13,19,33,0.55);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

.broker-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-3px);
}

.broker-card.featured {
  border-color: rgba(59,130,246,0.4);
}

.broker-card-glow {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, transparent 65%);
  filter: blur(55px);
  pointer-events: none;
}

.broker-card > *:not(.broker-card-glow) { position: relative; z-index: 1; }

/* Head */
.broker-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.broker-logo {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.broker-logo-fxpro {
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.05;
  text-align: center;
}

.broker-logo-tick {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #fff;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.tick-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e8392b;
  display: inline-block;
}

.broker-logo-xm {
  color: #e8392b;
  font-weight: 900;
  font-size: 18px;
  font-style: italic;
}

.broker-head-info { flex: 1; }

.broker-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.broker-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.broker-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 100px;
}

.broker-rating i { color: #f5a623; font-size: 10px; }

.broker-popular {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #1f9bd4, #1577c2);
  border: 1px solid rgba(120,190,240,0.5);
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(21,119,194,0.35);
}

.broker-stars { display: flex; gap: 3px; font-size: 12px; }
.broker-stars .on  { color: #f5a623; }
.broker-stars .off { color: rgba(255,255,255,0.15); }

.broker-divider {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}

/* Features */
.broker-features { margin-bottom: 22px; }

.broker-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  margin-bottom: 13px;
}

.broker-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #0a0e1a;
}

.broker-feature-label { color: rgba(255,255,255,0.5); }
.broker-feature-val { color: rgba(255,255,255,0.85); font-weight: 600; }

.btn-start-trading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-start-white {
  background: #ffffff;
  color: #0a0e1a;
  border-color: #fff;
}

.btn-start-trading:hover {
  border-color: rgba(99,102,241,0.5);
  color: #fff;
  transform: translateX(2px);
}

.btn-start-white:hover {
  background: #e8ecf5;
  color: #0a0e1a;
  border-color: #fff;
}

/* Pagination */
.brokers-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pagination-result {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.page-num, .page-arrow {
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  background: none;
  border: 1px solid transparent;
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-num:hover, .page-arrow:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.page-num.active {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.45);
  color: #93c5fd;
}

.perpage-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
}

.perpage-select option { background: #0e1525; color: #fff; }

/* Legacy aliases kept for other sections */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 120px;
  margin-bottom: 12px;
}

.chart-bar { flex: 1; border-radius: 2px 2px 0 0; }
.chart-bar.up        { background: rgba(34,197,94,0.5); }
.chart-bar.down      { background: rgba(239,68,68,0.5); }
.chart-bar.highlight { background: var(--accent-blue); }
.chart-line-svg { width: 100%; height: 80px; }

/* ===== PARTNERS MARQUEE ===== */
.partners-section {
  padding: 22px 0;
  background: #07090f;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.marquee-track-wrapper {
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

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

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 44px;
  color: rgba(255,255,255,0.35);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  white-space: nowrap;
  transition: color 0.25s ease;
  cursor: default;
  position: relative;
}

/* Divider between logos */
.partner-logo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.08);
}

.partner-logo:hover { color: rgba(255,255,255,0.75); }

.partner-prefix {
  font-size: 18px;
  font-weight: 900;
  color: #7c3aed;
  line-height: 1;
}

.partner-icon {
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.partner-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

/* ===== SHOWCASE / BUILDING SECTION ===== */
.showcase-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
  position: relative;
}

/* Shared badge (used in header + card) */
.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.28);
  color: rgba(180,185,255,0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.showcase-badge-dot {
  width: 7px;
  height: 7px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(99,102,241,0.8);
  animation: heroPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Centered header */
.showcase-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.showcase-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 18px;
}

.showcase-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* Large showcase card */
.showcase-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  min-height: 440px;
  background: #0a0e1a;
  display: flex;
  align-items: flex-end;
}

.showcase-card-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(99,102,241,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(99,102,241,0.06) 0%, transparent 70%),
    linear-gradient(135deg, #0b1020 0%, #090d18 100%);
}

/* subtle starfield inside card */
.showcase-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 60%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 75%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 85%, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.showcase-card-content {
  position: relative;
  z-index: 2;
  padding: 48px;
}

.showcase-card-content .showcase-badge {
  margin-bottom: 20px;
}

.showcase-card-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 14px;
}

.showcase-card-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: var(--section-pad-y) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 140% at 85% 50%, rgba(37,99,235,0.55) 0%, rgba(20,52,120,0.35) 35%, transparent 70%),
    linear-gradient(110deg, #050a18 0%, #081530 45%, #0d2a5e 100%);
}

.stats-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
  margin-bottom: 36px;
}

.stat-item { text-align: center; }

/* 5-across flexible row (affiliate tools stats) */
.stats-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px 16px;
}

.stats-flex .stat-item { flex: 1; min-width: 120px; }
.stats-flex .stat-number { white-space: nowrap; }

.stat-number {
  font-size: 3.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ===== OVERVIEW / FEATURE CARDS ===== */
.overview-section { padding: var(--section-pad-y) 0; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: rgba(26, 110, 247, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(26,110,247,0.1);
}

.feature-card-chart {
  height: 160px;
  background: linear-gradient(135deg, #0a1628, #0d2040);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.mini-chart {
  width: 100%;
  height: 100px;
}

.feature-card-body { padding: 20px; }

.feature-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-green { background: rgba(34,197,94,0.15); color: #22c55e; }
.tag-red { background: rgba(239,68,68,0.15); color: #ef4444; }
.tag-blue { background: rgba(26,110,247,0.15); color: var(--accent-blue-light); }

/* ===== MARKETS / FEATURES SECTION ===== */
.markets-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.market-card {
  position: relative;
  background: linear-gradient(160deg, #0c1322 0%, #090d18 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
}

.market-card:last-child { margin-bottom: 0; }

/* Corner glows */
.market-glow {
  position: absolute;
  width: 420px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.market-glow-tl {
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.35) 0%, transparent 70%);
}

.market-glow-br {
  bottom: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.30) 0%, transparent 70%);
}

.market-card .row { position: relative; z-index: 1; }

/* Card text */
.market-card-text { padding: 56px 48px; }

.market-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 18px;
}

.market-sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 14px;
}

.market-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a0e1a;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-learn-more:hover {
  background: #e8ecf5;
  color: #0a0e1a;
  transform: translateX(3px);
}

/* ===== CHART PANEL (card 1) ===== */
.chart-panel {
  background: #070b14;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin: 28px 48px 28px 0;
  padding: 14px;
  overflow: hidden;
}

.chart-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.cph-ticker {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.cph-pill {
  font-size: 10px;
  color: #93c5fd;
  background: rgba(59,130,246,0.15);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.cph-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-family: 'Consolas', monospace;
}

.chart-panel-axis {
  display: flex;
  justify-content: space-between;
  padding: 6px 4px 0;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}

/* ===== TERMINAL PANEL (card 2) ===== */
.terminal-panel {
  background: #070b14;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin: 28px 0 28px 48px;
  overflow: hidden;
}

.terminal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.terminal-title {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-left: 6px;
}

.terminal-meta {
  font-size: 11px;
  color: #22c55e;
  font-family: 'Consolas', monospace;
}

.terminal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
}

.terminal-chart {
  padding: 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.terminal-code {
  padding: 12px 14px;
  overflow: hidden;
}

.terminal-code pre {
  margin: 0;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  white-space: pre;
}

.c-key { color: #c678dd; }
.c-fn  { color: #61afef; }
.c-num { color: #d19a66; }
.c-cmt { color: #5c6370; }
.c-red { color: #ef5350; }
.c-grn { color: #26a69a; }

/* ===== DONUTS (card 2) ===== */
.donut-row {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}

.donut-item { text-align: center; }

.donut-svg {
  width: 96px;
  height: 96px;
}

.donut-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  max-width: 110px;
}

/* ===== ARTICLES SECTION ===== */
.articles-section {
  padding: var(--section-pad-y) 0;
  background:
    radial-gradient(ellipse 80% 80% at 90% 60%, rgba(37,99,235,0.18) 0%, transparent 60%),
    #060912;
}

/* Centered header */
.articles-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.articles-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.articles-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* Shared image placeholder */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 10px, transparent 10px, transparent 20px),
    linear-gradient(135deg, #0d1424, #0a0f1c);
  color: rgba(255,255,255,0.22);
  font-size: 12px;
}

.img-placeholder i { font-size: 28px; }

/* Horizontal cards (left column) */
.article-card-h {
  display: flex;
  background: rgba(13,19,33,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.article-card-h:last-child { margin-bottom: 0; }

.article-card-h:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-3px);
}

.article-h-img {
  position: relative;
  width: 150px;
  flex-shrink: 0;
  min-height: 175px;
}

.article-h-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Vertical card (right column) */
.article-card-v {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(13,19,33,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.article-card-v:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-3px);
}

.article-v-img {
  position: relative;
  flex: 1;
  min-height: 260px;
}

.article-v-body { padding: 26px 28px; }

/* Mini badge */
.article-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  color: rgba(180,185,255,0.85);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.article-mini-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 6px rgba(99,102,241,0.8);
  flex-shrink: 0;
}

.article-h-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 10px;
}

.article-v-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 10px;
}

.article-h-text {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  margin-bottom: 18px;
}

.article-h-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-tag-finance {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

.article-date-sm {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* View All button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #0a0e1a;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-view-all:hover {
  background: #e8ecf5;
  color: #0a0e1a;
  transform: translateY(-2px);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: var(--section-pad-y) 0;
  position: relative;
  overflow: hidden;
  background: #060912;
}

.pricing-glow {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* Header */
.pricing-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.pricing-heading {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.pricing-subhead {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px;
}

.billing-opt {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.billing-opt.active {
  background: #ffffff;
  color: #0a0e1a;
}

/* Cards */
.price-card {
  background: rgba(13,19,33,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
}

/* Featured (Gold) card — elevated */
.price-card-featured {
  background: linear-gradient(165deg, #11192b 0%, #0c1322 100%);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transform: scale(1.05);
  z-index: 2;
}

.price-card-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.price-promo {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

/* Lighter inner head box on featured */
.price-featured-head {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px 22px 24px;
  margin-bottom: 24px;
}

.price-tier-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.price-tier-upper {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
}

.price-tier-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
}

.price-featured-head .price-tier-desc { margin-bottom: 16px; }

.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.price-amount sup {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
  top: 0.5em;
}

.price-cents {
  font-size: 1.3rem;
  font-weight: 700;
}

.price-featured-head .price-amount { margin-bottom: 0; }

/* Features */
.price-features-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 18px;
}

.price-features {
  margin: 24px 0 28px;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}

.price-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 1px;
}

/* Buttons */
.btn-price-outline {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 13px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-price-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.btn-price-white {
  display: block;
  text-align: center;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #0a0e1a;
  font-size: 13px;
  font-weight: 700;
  padding: 13px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-price-white:hover {
  background: #e8ecf5;
  color: #0a0e1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
}

.contact-heading {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
}

.contact-subhead {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* Booking card (Calendly placeholder) */
.booking-card {
  background: linear-gradient(160deg, #0c1322 0%, #090d18 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 30px;
}

/* LEFT: detail panel */
.booking-detail {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.booking-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 2px solid rgba(255,255,255,0.1);
}

.booking-avatar img { width: 100%; height: 100%; object-fit: cover; }

.booking-host {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.booking-event-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.booking-event-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-bottom: 24px;
}

.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.booking-meta-item i { color: rgba(255,255,255,0.35); font-size: 14px; }

/* CENTER: calendar */
.booking-calendar {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-month {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.cal-month span { color: rgba(255,255,255,0.4); font-weight: 400; }

.cal-nav { display: flex; gap: 8px; }

.cal-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cal-nav-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  padding: 6px 0;
  letter-spacing: 0.5px;
}

.cal-days { margin-top: 4px; }

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cal-day:hover { background: rgba(255,255,255,0.08); color: #fff; }

.cal-day.selected {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37,99,235,0.5);
}

.cal-day.disabled {
  color: rgba(255,255,255,0.18);
  background: transparent;
  cursor: not-allowed;
}

.cal-empty { aspect-ratio: 1; }

/* RIGHT: times + contact */
.booking-times { padding: 32px 28px; }

.booking-times-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

.time-slot {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 11.5px;
  font-weight: 600;
  padding: 9px 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot:hover {
  border-color: rgba(59,130,246,0.4);
  color: #fff;
}

.time-slot.active {
  background: rgba(37,99,235,0.18);
  border-color: #2563eb;
  color: #93c5fd;
}

.booking-getintouch {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

.booking-git-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.booking-git-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-bottom: 14px;
}

.booking-social {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.btn-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  color: #0a0e1a;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-contact-pill:hover {
  background: #e8ecf5;
  color: #0a0e1a;
  transform: translateX(3px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: var(--section-pad-y) 0;
  background: #060912;
  overflow: hidden;
}

.testimonials-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
}

/* Nav arrows */
.testi-nav { gap: 10px; }

.testi-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-nav-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* Carousel viewport — peeks edges */
.testi-viewport {
  overflow: hidden;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cards */
.testi-card {
  flex: 0 0 340px;
  background: rgba(13,19,33,0.6);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.3s ease;
}

.testi-card.featured {
  background:
    radial-gradient(ellipse 120% 120% at 100% 0%, rgba(37,99,235,0.45) 0%, transparent 60%),
    linear-gradient(150deg, #14264d 0%, #0d1322 100%);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 20px 50px rgba(37,99,235,0.2);
}

.testi-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testi-stars { display: flex; gap: 3px; font-size: 13px; }
.testi-stars .on  { color: #f5a623; }
.testi-stars .off { color: rgba(255,255,255,0.15); }

.testi-quote {
  font-family: 'Georgia', serif;
  font-size: 40px;
  line-height: 0.5;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
}

.testi-text {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin-bottom: 24px;
  min-height: 105px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.testi-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.testi-role { font-size: 11.5px; color: rgba(255,255,255,0.4); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: var(--section-pad-y) 0; background: #060912; }

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(26, 110, 247, 0.3); }

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-card);
  user-select: none;
}

.faq-question h6 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 110, 247, 0.1);
  border: 1px solid rgba(26, 110, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-light);
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 16px;
}

.faq-item.open .faq-icon {
  background: var(--accent-blue);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--bg-card);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-pad-y) 0;
  position: relative;
  background: #060912;
}

.cta-card {
  position: relative;
  background: linear-gradient(120deg, #0e1830 0%, #0a1020 55%, #070b16 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
}

.cta-card-glow {
  position: absolute;
  top: -60px;
  left: -80px;
  width: 460px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.35) 0%, transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}

.cta-content { padding: 56px 48px; }

.cta-title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a0e1a;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-cta-white:hover {
  background: #e8ecf5;
  color: #0a0e1a;
  transform: translateY(-2px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

/* Icon network */
.cta-network {
  position: relative;
  height: 280px;
  width: 100%;
}

.cta-net-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-node {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1e3566, #11203f);
  border: 1px solid rgba(99,130,200,0.35);
  color: #93c5fd;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: nodeFloat 5s ease-in-out infinite;
}

.cta-node-sm { width: 34px; height: 34px; font-size: 14px; }
.cta-node-md { width: 44px; height: 44px; font-size: 17px; }
.cta-node-lg {
  width: 54px; height: 54px; font-size: 21px;
  background: linear-gradient(145deg, #2563eb, #1538a0);
  border-color: rgba(120,160,255,0.5);
  color: #fff;
}

.cta-node:nth-child(odd)  { animation-delay: -1.5s; }
.cta-node:nth-child(3n)   { animation-delay: -3s; }

@keyframes nodeFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-7px); }
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse 50% 70% at 12% 30%, rgba(37,99,235,0.12) 0%, transparent 60%),
    #05070e;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 26px;
  overflow: hidden;
}

/* Background market chart */
.footer-chart-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.footer-legal-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-legal-text {
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 12px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.footer-link {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 11px;
  transition: color 0.25s ease;
}

.footer-link:hover { color: rgba(255,255,255,0.9); }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.5);
  color: #93c5fd;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px 26px;
  margin-top: 36px;
}

.footer-nl-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.footer-nl-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin: 0;
  max-width: 260px;
}

.footer-nl-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  justify-content: flex-end;
}

.footer-nl-input {
  flex: 1;
  max-width: 260px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 11px 18px;
  font-size: 12.5px;
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease;
}

.footer-nl-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-nl-input:focus { border-color: rgba(59,130,246,0.5); }

.footer-nl-btn {
  background: #ffffff;
  color: #0a0e1a;
  font-size: 12.5px;
  font-weight: 600;
  border: none;
  padding: 11px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.footer-nl-btn:hover { background: #e8ecf5; transform: translateY(-1px); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 130px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover { color: #fff; }

.footer-divider { color: rgba(255,255,255,0.2); }

/* ===== MINI CHART SVG ANIMATIONS ===== */
.glow-dot {
  filter: drop-shadow(0 0 4px rgba(26,110,247,0.8));
  animation: glowMove 3s ease-in-out infinite;
}

@keyframes glowMove {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== RESPONSIVE ===== */

/* --- Tablet & down --- */
@media (max-width: 991px) {
  :root { --section-pad-y: 64px; }

  .brokers-hero-title { font-size: 2.6rem; }
  .algo-dash { max-width: 100%; }
  .afeat-title { font-size: 1.9rem; }
  .macro-heading { font-size: 2rem; }
  .onboard-title, .plan-title, .tva-title { font-size: 2rem; }
  .costs-title { font-size: 2.1rem; }
  .brokers-list-title { font-size: 2rem; }
  .strategies-title { font-size: 2rem; }
  .instfund-title { font-size: 2.1rem; }
  .pathways-title { font-size: 2rem; }
  .support-title { font-size: 2rem; }
  .package-title { font-size: 2rem; }
  .apply-title { font-size: 2rem; }
  .hero-display-title { font-size: 2.6rem; }
  .section-title { font-size: 1.9rem; }
  .showcase-title { font-size: 2.4rem; }
  .showcase-card-title { font-size: 2.1rem; }
  .showcase-card { min-height: 360px; }
  .articles-title { font-size: 2.2rem; }
  .pricing-heading { font-size: 2.1rem; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
  .pricing-card { margin-bottom: 8px; }
  .contact-heading { font-size: 2.2rem; }
  .contact-subhead { margin-top: 16px; }

  /* markets section stacks */
  .market-card-text,
  .market-card-text-right { padding: 40px 32px 20px; }
  .market-title { font-size: 2.1rem; }
  .chart-panel { margin: 0 32px 32px; }
  .terminal-panel { margin: 0 32px 32px; }
  .donut-row { justify-content: flex-start; }

  /* impossible-to-replicate: single column, headline first */
  .impossible-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
    max-width: 620px;
    margin: 0 auto;
  }
  .imp-center { order: -1; margin-bottom: 8px; }
  .imp-col-right { gap: 20px; }
  .imp-headline { font-size: 2rem; }

  /* process staircase → single column */
  .process-grid { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
  .process-grid .proc-ghost { display: none; }
  .process-grid .proc-card { margin-top: 0; min-height: 0; }
}

/* --- Mobile --- */
@media (max-width: 767px) {
  :root { --section-pad-y: 52px; }

  .container { padding-left: 18px; padding-right: 18px; }

  /* nav + hero boxes: tighter side gutters */
  .navbar-wrapper-box { margin: 8px 8px 5px; }
  .hero-wrapper-box { margin: 0 8px 8px; }
  .hero-section { padding-top: 64px; padding-bottom: 40px; }

  /* hero text */
  .hero-center-content { margin-bottom: 40px; }
  .hero-display-title { font-size: 2rem; }
  .hero-display-sub { font-size: 13.5px; }
  .hero-display-sub br { display: none; }
  .hero-cta-row { flex-direction: column; gap: 14px; }
  .btn-hero-access { width: 100%; text-align: center; }

  /* brokers hero */
  .brokers-hero { padding-top: 90px; padding-bottom: 56px; }
  .brokers-hero-title { font-size: 2rem; }
  .brokers-hero-sub { font-size: 13px; }
  .brokers-hero-sub br { display: none; }

  /* algo hero */
  .algo-hero { padding-top: 80px; padding-bottom: 50px; }
  .algo-hero-content { margin-bottom: 36px; }
  .algo-dash { padding: 12px; }
  .ticker-strip { justify-content: flex-start; gap: 14px 20px; padding: 14px 18px; }

  /* algo feature cards */
  .afeat-text, .afeat-text-right { padding: 34px 24px 20px; }
  .afeat-title { font-size: 1.8rem; }
  .afeat-lead br { display: none; }
  .afeat-visual { padding: 0 24px 28px; }

  /* proven market intelligence */
  .pmi-title { font-size: 1.9rem; }
  .pmi-num { font-size: 1.6rem; }

  /* macro */
  .macro-heading { font-size: 1.8rem; }
  .macro-subhead { margin-top: 14px; }
  .macro-top { margin-bottom: 28px; }

  /* compare / onboard / plan / tva */
  .onboard-title, .plan-title, .tva-title { font-size: 1.8rem; }
  .onboard-sub { margin-top: 14px; }
  .strategies-title { } /* compare uses strategies-header */

  /* costs section */
  .costs-text { padding: 36px 24px 8px; }
  .costs-title { font-size: 1.8rem; }
  .costs-sub br { display: none; }
  .costs-visual { min-height: 280px; }
  .costs-photo { inset: 0 24px 24px; }
  .costs-badge { width: 44px; height: 44px; border-radius: 12px; }
  .costs-badge-1 { top: 10%; right: 12%; font-size: 18px; }
  .costs-badge-2 { top: 32%; right: 4%; }
  .costs-badge-3 { top: 56%; right: 14%; }

  /* brokers list */
  .brokers-list-title { font-size: 1.8rem; }
  .brokers-list-sub { margin-top: 14px; }
  .broker-card { padding: 22px; }
  .broker-name-row { flex-wrap: wrap; }
  .brokers-pagination { justify-content: center; }
  .pagination-result, .pagination-perpage { display: none; }
  .pagination-pages { flex-wrap: wrap; justify-content: center; }

  /* strategies section */
  .strategies-title { font-size: 1.8rem; }
  .strategies-sub br { display: none; }
  .strategy-half { padding: 28px 24px 32px; }
  .strategy-half-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .strategy-icon { margin-bottom: 26px; }
  .strategy-card-title { font-size: 1.5rem; }
  .strategy-quote { flex-direction: column; align-items: flex-start; gap: 18px; padding: 26px 24px; }
  .strategy-quote-text { font-size: 1.35rem; }
  .strategy-quote-text br { display: none; }

  /* funds section */
  .fund-row { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .fund-text { max-width: none; }
  .fund-badge { align-self: flex-start; }

  /* institutional fund */
  .instfund-card { min-height: 0; }
  .instfund-text { padding: 36px 24px; }
  .instfund-title { font-size: 2rem; }
  .instfund-sub br { display: none; }
  .instfund-photo-col { min-height: 260px; order: 2; }
  .instfund-fade { background: linear-gradient(to bottom, #0b1124 0%, transparent 30%); }

  /* pathways bento */
  .pathways-title { font-size: 1.8rem; }
  .pathways-sub { margin-top: 14px; }
  .bento-card { padding: 24px; }
  .bento-icon { margin-bottom: 24px; }
  .news-item { flex-wrap: wrap; }
  .news-metrics { text-align: left; min-width: 0; width: 100%; margin-top: 4px; }

  /* impossible */
  .imp-headline { font-size: 1.8rem; }
  .imp-headline br, .imp-sub br { display: none; }
  .imp-card-title { font-size: 1.25rem; }

  /* process */
  .proc-title { font-size: 1.2rem; }

  /* partner application */
  .apply-title { font-size: 1.8rem; }
  .apply-card { padding: 26px 22px 28px; }

  /* investor support */
  .support-title { font-size: 1.8rem; }
  .support-sub { margin-top: 14px; }
  .support-row { flex-wrap: wrap; gap: 14px 18px; padding: 22px; }
  .support-name { width: auto; flex: 1; min-width: 60%; font-size: 16px; }
  .support-desc { flex: 1 1 100%; order: 3; }
  .support-arrow, .support-btn { margin-left: auto; }

  /* audience cards */
  .aud-card { min-height: 220px; padding: 30px 24px; }
  .aud-title { margin-top: 28px; }

  /* package cards */
  .package-title { font-size: 1.8rem; }
  .package-sub { margin-top: 14px; }
  .pkg-check { margin-bottom: 32px; }

  /* edge bar */
  .edge-bar { flex-wrap: wrap; gap: 28px 20px; padding: 30px 26px; }
  .edge-item { flex: 0 0 42%; }
  .edge-num { font-size: 1.5rem; }

  /* showcase */
  .showcase-title { font-size: 2rem; }
  .showcase-card-title { font-size: 1.7rem; }
  .showcase-card-content { padding: 28px 22px; }
  .showcase-card { min-height: 280px; }

  /* stats */
  .stat-number { font-size: 2.2rem; }
  .stats-eyebrow { margin-bottom: 28px; }
  .stats-flex { gap: 26px 14px; }
  .stats-flex .stat-item { flex: 0 0 30%; min-width: 0; }

  /* markets */
  .market-card-text,
  .market-card-text-right { padding: 30px 20px 14px; }
  .market-title { font-size: 1.65rem; }
  .market-sub br, .market-note br { display: none; }
  .chart-panel { margin: 0 20px 20px; }
  .terminal-panel { margin: 0 20px 20px; }
  .terminal-body { grid-template-columns: 1fr; }
  .terminal-chart { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .donut-row { gap: 20px; }
  .donut-svg { width: 78px; height: 78px; }

  /* articles */
  .articles-title { font-size: 1.8rem; }
  .articles-sub br { display: none; }
  .article-card-h { flex-direction: column; }
  .article-h-img { width: 100%; min-height: 150px; }
  .article-v-img { min-height: 190px; }
  .article-h-title br, .article-h-title { font-size: 16px; }

  /* pricing */
  .pricing-heading { font-size: 1.8rem; }
  .pricing-heading br, .pricing-subhead br { display: none; }

  /* contact / booking */
  .contact-heading { font-size: 1.9rem; }
  .booking-detail, .booking-calendar {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .booking-detail, .booking-calendar, .booking-times { padding: 24px 20px; }

  /* testimonials: allow native swipe since arrows are hidden */
  .testimonials-title { font-size: 1.8rem; }
  .testi-viewport {
    padding: 0 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .testi-viewport::-webkit-scrollbar { display: none; }
  .testi-track { transform: none !important; }
  .testi-card { flex: 0 0 84%; padding: 22px; scroll-snap-align: center; }

  /* cta */
  .cta-content { padding: 36px 24px; }
  .cta-title { font-size: 1.7rem; }
  .cta-title br { display: none; }

  /* footer */
  .footer { padding-top: 54px; }
  .footer-newsletter { flex-direction: column; align-items: stretch; padding: 22px 20px; }
  .footer-nl-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    min-width: 0;
  }
  .footer-nl-input { max-width: none; width: 100%; }
  .footer-nl-btn { width: 100%; text-align: center; }
  .footer-bottom { margin-top: 70px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-chart-bg { height: 180px; opacity: 0.6; }
}

/* --- Small mobile --- */
@media (max-width: 480px) {
  .hero-display-title { font-size: 1.7rem; }
  .brokers-hero-title { font-size: 1.65rem; }
  .showcase-title,
  .articles-title,
  .pricing-heading,
  .contact-heading,
  .testimonials-title,
  .costs-title,
  .brokers-list-title,
  .cta-title { font-size: 1.55rem; }
  .stat-number { font-size: 1.9rem; }
  .stats-flex .stat-item { flex: 0 0 45%; }
  .time-grid { grid-template-columns: 1fr; }
  .footer-social { flex-wrap: wrap; }

  /* broker cards — keep readable on tiny screens */
  .broker-card { padding: 20px; }
  .broker-name { font-size: 16px; }
  .broker-logo { width: 44px; height: 44px; }
  .btn-start-trading { width: 100%; justify-content: center; }
  .brokers-toggle { width: 100%; max-width: 280px; }
  .brokers-toggle-opt { flex: 1; text-align: center; }
}
