/* ══════════════════════════════════════════
   SDG AUREUM — Light Theme
   Inspired by Trepto Fintech UI/UX
   Fonts: Bricolage Grotesque · Plus Jakarta Sans · DM Mono
   Palette: Warm White × Deep Charcoal × Gold
══════════════════════════════════════════ */

:root {
  /* Light theme palette */
  --bg:           #F8F6F1;
  --bg-2:         #FFFFFF;
  --bg-card:      #FFFFFF;
  --bg-card-alt:  #F2EFE9;
  --bg-section:   #FDFBF7;

  --gold:         #C9A84C;
  --gold-dark:    #A8872E;
  --gold-light:   #E8C96E;
  --gold-bg:      rgba(201, 168, 76, 0.08);
  --gold-border:  rgba(201, 168, 76, 0.25);

  --charcoal:     #1A1A1A;
  --charcoal-2:   #2D2D2D;
  --mid:          #6B6560;
  --muted:        #9E9890;
  --subtle:       #C8C3BA;

  --positive:     #1A7A4A;
  --positive-bg:  rgba(26, 122, 74, 0.08);
  --negative:     #C0392B;
  --negative-bg:  rgba(192, 57, 43, 0.08);

  --border:       rgba(0, 0, 0, 0.08);
  --border-dark:  rgba(0, 0, 0, 0.14);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-2xl:   36px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3.5rem;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(248, 246, 241, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 0.85rem 3.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.logo-mark { position: relative; width: 42px; height: 42px; flex-shrink: 0; }
.logo-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  position: relative;
  z-index: 1;
}
.logo-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  animation: ringPulse 2.8s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.logo-text-wrap { display: flex; flex-direction: column; gap: 0.05rem; }
.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.logo-text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--charcoal); }

.nav-cta { margin-left: 0.25rem; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); border-radius: 2px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  background: var(--charcoal);
  color: #FFFFFF;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--charcoal-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-primary.large { padding: 0.9rem 2rem; font-size: 0.88rem; }
.btn-primary.full { width: 100%; justify-content: center; padding: 0.9rem; border-radius: var(--radius-md); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.62rem 1.3rem;
  background: transparent;
  color: var(--mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid var(--border-dark);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--charcoal); color: var(--charcoal); background: rgba(0,0,0,0.04); }

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-text-link:hover { color: var(--charcoal); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 9rem 3.5rem 5rem;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.shape-1 {
  width: 500px; height: 500px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  filter: blur(40px);
}
.shape-2 {
  width: 350px; height: 350px;
  bottom: 10%; left: -80px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  filter: blur(50px);
}
.shape-3 {
  width: 800px; height: 200px;
  top: 40%; left: 20%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 60%);
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  flex-shrink: 0;
}

.hero-eyebrow { margin-bottom: 1.5rem; }
.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: liveBlink 1.5s ease-in-out infinite;
}
.live-dot.sm { width: 5px; height: 5px; }
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 500;
}
.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  width: 380px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,0.08);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.card-header-left { display: flex; align-items: center; gap: 0.75rem; }
.card-label { font-size: 0.75rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.04em; }
.card-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--positive);
  background: var(--positive-bg);
  border-radius: 100px;
  padding: 0.2rem 0.5rem;
}
.card-period { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); }

.performance-chart {
  background: var(--bg-card-alt);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin-bottom: 1rem;
  height: 110px;
  overflow: hidden;
}
.chart-svg { width: 100%; height: 100%; display: block; }
.chart-pulse { animation: pulseDot 1.6s ease-in-out infinite; transform-origin: 320px 4px; }
@keyframes pulseDot { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.4); } }

.perf-stats {
  display: flex;
  align-items: center;
  background: var(--bg-card-alt);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  gap: 0;
}
.perf-stat { flex: 1; text-align: center; }
.perf-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.ps-label { display: block; font-size: 0.65rem; color: var(--muted); font-weight: 500; margin-bottom: 0.2rem; }
.ps-val { display: block; font-family: 'DM Mono', monospace; font-size: 0.9rem; font-weight: 500; }
.ps-val.positive { color: var(--positive); }
.ps-val.neutral { color: var(--charcoal); }

.trade-feed { display: flex; flex-direction: column; gap: 0.5rem; }
.feed-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background 0.3s;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
}
.feed-row.feed-active { background: var(--gold-bg); }
.feed-pair { flex: 1; font-weight: 500; color: var(--charcoal); }
.feed-side {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}
.feed-side.buy { background: var(--positive-bg); color: var(--positive); }
.feed-side.sell { background: var(--negative-bg); color: var(--negative); }
.feed-price { flex: 1.2; text-align: right; color: var(--mid); font-size: 0.72rem; }
.feed-pnl { font-weight: 500; font-size: 0.75rem; min-width: 50px; text-align: right; }
.feed-pnl.pos { color: var(--positive); }
.feed-pnl.neg { color: var(--negative); }

/* Float chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-md);
  animation: chipFloat 3s ease-in-out infinite;
}
.float-chip strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--charcoal); }
.float-chip span { display: block; font-size: 0.68rem; color: var(--muted); margin-top: 0.05rem; }
.chip-automated { bottom: -24px; left: -50px; animation-delay: 0s; }
.chip-strategies { top: -20px; right: -40px; animation-delay: 1.5s; }
.chip-icon { font-size: 1.3rem; }
.chip-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── METRICS STRIP ── */
.metrics-strip {
  background: var(--charcoal);
  padding: 2.2rem 3.5rem;
}
.metrics-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.metric-item { text-align: center; }
.metric-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  display: inline;
  letter-spacing: -0.03em;
}
.metric-unit { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.metric-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }
.metric-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── SECTION SHARED ── */
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-body {
  font-size: 0.98rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 540px;
  margin: 1rem auto 0;
}
.section-header-centered { text-align: center; margin-bottom: 3.5rem; }

/* ── ABOUT ── */
.about-section {
  padding: 7rem 0;
  background: var(--bg-section);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-left { }
.about-left .section-title { margin-bottom: 1.4rem; }
.about-left .btn-primary { margin-top: 2rem; }

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.feature-card.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 42px; height: 42px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.65; }

/* ── STRATEGIES ── */
.strategies-section { padding: 7rem 0; background: var(--bg); }

.strategies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.strategy-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(24px);
  position: relative;
  overflow: hidden;
}
.strategy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.strategy-card:hover::before { opacity: 1; }
.strategy-card.primary-card { background: var(--charcoal); }
.strategy-card.primary-card .strat-number,
.strategy-card.primary-card .strat-title,
.strategy-card.primary-card .strat-features li { color: #ffffff; }
.strategy-card.primary-card .strat-desc { color: rgba(255,255,255,0.6); }
.strategy-card.primary-card .strat-stat .ss-label { color: rgba(255,255,255,0.45); }
.strategy-card.primary-card .strat-stat .ss-num { color: #ffffff; }
.strategy-card.primary-card::before { opacity: 1; }

.strategy-card.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.55s ease, transform 0.55s ease; }
.strategy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.strat-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.strat-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.strat-badge.alt { color: var(--charcoal); background: rgba(0,0,0,0.06); border-color: var(--border-dark); }

.strat-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.strat-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.8rem; }

.strat-stats-row {
  display: flex;
  gap: 0;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.8rem;
}
.strategy-card.primary-card .strat-stats-row { background: rgba(255,255,255,0.06); }
.strat-stat { flex: 1; text-align: center; }
.ss-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.ss-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.strat-features { list-style: none; margin-bottom: 2rem; }
.strat-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--mid);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.strategy-card.primary-card .strat-features li { border-color: rgba(255,255,255,0.08); }
.strat-features li:last-child { border: none; }
.sf-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.strat-brokers { display: flex; gap: 0.5rem; }
.broker-pill {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
}
.broker-pill.alt { background: rgba(0,0,0,0.06); border-color: var(--border-dark); color: var(--charcoal); }

/* ── HOW IT WORKS ── */
.how-section { padding: 7rem 0; background: var(--bg-section); }

.steps-track {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-item {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
}
.step-item.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.step-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-border);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.step-content p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }
.step-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--subtle);
  margin-top: 0.8rem;
  padding: 0 0.5rem;
}

/* ── BROKERS ── */
.brokers-section { padding: 7rem 0; background: var(--bg); }

.brokers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.broker-card {
  border-radius: var(--radius-2xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(24px);
}
.broker-card.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.55s ease, transform 0.55s ease; }
.broker-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.broker-card-inner { padding: 2.2rem; }

.broker-logo-wrap { margin-bottom: 1.5rem; }
.broker-logo-circle {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.exness-color { background: #1B1E2B; color: #FFFFFF; }
.hfm-color { background: #003087; color: #FFFFFF; }

.broker-name-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.8rem; }
.broker-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--charcoal);
}
.broker-reg {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--positive);
  background: var(--positive-bg);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.broker-desc { font-size: 0.87rem; color: var(--mid); line-height: 1.65; margin-bottom: 1.5rem; }

.broker-features-list { margin-bottom: 1.8rem; }
.bf-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.bf-row:last-child { border: none; }
.bf-check { color: var(--positive); font-weight: 700; font-size: 0.8rem; }

.btn-broker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-broker:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); filter: brightness(1.05); }
.exness-btn { background: #1B1E2B; color: #FFFFFF; }
.hfm-btn { background: #003087; color: #FFFFFF; }

.broker-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem 1.4rem;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.7;
}
.broker-notice svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.broker-notice strong { color: var(--charcoal); }

.broker-cta-wrap { text-align: center; margin-top: 2.5rem; }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-section); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.8rem 3.5rem;
  border-bottom: 1px solid var(--border);
  max-width: 1180px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo-wrap { width: 44px; height: 44px; flex-shrink: 0; }
.footer-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold-border); }
.footer-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
}
.footer-name em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-sub-text { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-nav { display: flex; gap: 2.5rem; }
.footer-nav a { font-size: 0.8rem; font-weight: 600; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--charcoal); }
.footer-actions { display: flex; align-items: center; gap: 0.75rem; }
.footer-bottom { padding: 2rem 3.5rem; text-align: center; max-width: 1180px; margin: 0 auto; }
.footer-risk { font-size: 0.72rem; color: var(--muted); line-height: 1.7; max-width: 700px; margin: 0 auto 0.75rem; }
.footer-copy { font-size: 0.68rem; color: var(--subtle); letter-spacing: 0.08em; }

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: var(--shadow-lg);
}
.modal-box.wide { max-width: 820px; }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 1rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--charcoal); }

.modal-tabs {
  display: flex;
  margin-bottom: 2rem;
  background: var(--bg-card-alt);
  border-radius: 100px;
  padding: 4px;
}
.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.6rem;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.tab-btn.active { background: var(--bg-card); color: var(--charcoal); box-shadow: var(--shadow-sm); }
.tab-btn:not(.active):hover { color: var(--charcoal); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.modal-logo { text-align: center; margin-bottom: 1.2rem; }
.modal-logo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-border); }
.modal-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.modal-sub { font-size: 0.84rem; color: var(--muted); text-align: center; margin-bottom: 2rem; line-height: 1.6; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--bg-section);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-bg); }
.form-group input::placeholder { color: var(--subtle); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }

.modal-switch { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 1.2rem; }
.modal-switch a { color: var(--gold-dark); font-weight: 600; text-decoration: none; }
.modal-switch a:hover { text-decoration: underline; }

.form-msg { padding: 0.75rem 1rem; border-radius: var(--radius-md); font-size: 0.82rem; margin-bottom: 1.2rem; line-height: 1.5; }
.form-msg.success { background: var(--positive-bg); color: var(--positive); border: 1px solid rgba(26,122,74,0.2); }
.form-msg.error { background: var(--negative-bg); color: var(--negative); border: 1px solid rgba(192,57,43,0.2); }
.form-msg.info { background: var(--gold-bg); color: var(--gold-dark); border: 1px solid var(--gold-border); }
.form-msg.hidden { display: none; }

/* ── DASHBOARD ── */
.dash-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.dash-broker-note { background: var(--gold-bg); border: 1px solid var(--gold-border); border-radius: var(--radius-md); padding: 0.8rem 1rem; font-size: 0.82rem; color: var(--mid); line-height: 1.6; margin-bottom: 1.5rem; }
.dash-broker-note strong { color: var(--gold-dark); }
.dash-bots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.dash-bot-card { background: var(--bg-section); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.dash-bot-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.dash-bot-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--gold-dark); }
.dash-bot-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
.dash-status { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.dash-status.live { color: var(--positive); }
.dash-widget-placeholder { height: 140px; border: 1.5px dashed var(--border-dark); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--muted); font-size: 0.8rem; line-height: 1.7; }
.dash-widget-placeholder small { display: block; font-size: 0.7rem; color: var(--subtle); margin-top: 0.3rem; }
.dash-footer-actions { text-align: right; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ── PENDING ── */
.pending-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { gap: 2rem; padding: 8rem 2.5rem 5rem; }
  .hero-card { width: 340px; }
  .about-split { gap: 3rem; }
}

@media (max-width: 900px) {
  .site-header { padding: 1rem 1.5rem; }
  .header-nav a, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { flex-direction: column; padding: 7rem 1.5rem 5rem; text-align: center; align-items: center; }
  .hero-sub { margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { align-items: center; }
  .hero-card { width: 100%; max-width: 420px; }
  .float-chip { display: none; }

  .section-inner { padding: 0 1.5rem; }
  .metrics-inner { flex-wrap: wrap; gap: 2rem; padding: 0 1.5rem; }
  .metric-divider { display: none; }
  .metric-item { flex: 1 1 40%; }

  .about-section, .strategies-section, .brokers-section, .how-section { padding: 5rem 0; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-feature-grid { grid-template-columns: 1fr 1fr; }
  .strategies-grid, .brokers-grid { grid-template-columns: 1fr; }
  .steps-track { flex-direction: column; }
  .step-arrow { display: none; }

  .footer-inner { flex-direction: column; gap: 2rem; text-align: center; padding: 2.5rem 1.5rem; }
  .footer-bottom { padding: 1.5rem; }
  .footer-nav { justify-content: center; }
  .footer-actions { justify-content: center; }
  .dash-bots-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 1.5rem; border-radius: var(--radius-xl); }
}

@media (max-width: 500px) {
  .about-feature-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .metrics-strip { padding: 2rem 1.5rem; }
}
