/* ============================================================
   QUANTUM AI TRADING SYSTEMS — Design System v4
   Dark Luxury Institutional — 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --black:     #080808;
  --dark:      #0F0F0F;
  --dark2:     #111111;
  --card:      #161616;
  --gold:      #C9A84C;
  --gold-dim:  #8A6E2F;
  --gold-pale: #E8D99A;
  --white:     #F0EBE0;
  --dim-text:  #9A9080;
  --accent:    #4CAF9A;

  --border:    #242424;
  --sep:       #1E1E1E;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-ui:      'Syne', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  --font-body:    Calibri, 'Segoe UI', system-ui, sans-serif;

  --max-w: 1200px;
  --pad-section: 96px;
  --pad-section-m: 64px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Custom Cursor ──────────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 32px; height: 32px;
  border: 1px solid var(--gold); border-radius: 50%; pointer-events: none;
  z-index: 9998; transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Label ──────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header { margin-bottom: 56px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 12px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dim-text);
  line-height: 1.8;
  max-width: 520px;
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sep);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo { height: 36px; width: auto; }

.nav-wordmark {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: nowrap;
}

.nav-menu li a {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-text);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-menu li a:hover { color: var(--gold); }
.nav-menu li a:hover::after,
.nav-menu li a.active::after { width: 100%; }
.nav-menu li a.active { color: var(--gold); }

.btn-nav {
  font-family: var(--font-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 7px 16px !important;
  transition: background 0.25s !important;
}
.btn-nav:hover { background: rgba(201, 168, 76, 0.08) !important; }
.btn-nav:hover::after { width: 0 !important; }

.btn-nav-panel {
  color: var(--dim-text) !important;
  border-color: var(--border) !important;
}
.btn-nav-panel:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.06) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
}
.hamburger span {
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

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

/* Decorative circles top-right */
.hero-circles {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
}
.hero-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(138, 110, 47, 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-circles span:nth-child(1) { width: 200px; height: 200px; }
.hero-circles span:nth-child(2) { width: 320px; height: 320px; }
.hero-circles span:nth-child(3) { width: 440px; height: 440px; }
.hero-circles span:nth-child(4) { width: 520px; height: 520px; border-color: rgba(138,110,47,0.07); }

.hero .container { position: relative; z-index: 1; }

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.1s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 400;
  line-height: 0.93;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.25s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-title .line { display: block; }

.hero-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dim-text);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.55s;
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 14px 28px;
  border: 1px solid var(--gold);
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover {
  background: var(--gold-pale);
  color: var(--black);
}

.btn-outline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 13px 27px;
  border: 1px solid var(--gold);
  transition: background 0.25s;
}
.btn-outline:hover { background: rgba(201, 168, 76, 0.08); }

/* Hero Side Panel */
.hero-side {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.35s;
}

.hero-panel {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
}

.hero-panel-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
}

/* SVG Chart */
.chart-container {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--sep);
  padding-bottom: 20px;
}

.trading-chart { width: 100%; }

.chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s ease forwards 1s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.chart-dot {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 2.8s;
}

/* Hero Stats in Panel */
.hero-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  margin-bottom: 24px;
}

.panel-stat {
  background: var(--card);
  padding: 16px;
}

.panel-stat-number {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.panel-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim-text);
}

/* Partner badges in panel */
.hero-partners {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--sep);
  padding: 10px 14px;
}

.partner-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.partner-tag-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim-text);
}

.partner-tag-text strong {
  color: var(--gold-pale);
  font-weight: 500;
}

/* ============================================================
   METRICS STRIP
   ============================================================ */
.metrics-strip {
  background: var(--dark);
  border-top: 1px solid var(--sep);
  border-bottom: 1px solid var(--sep);
  padding: 40px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.metric-item {
  padding: 0 48px;
  text-align: center;
  position: relative;
}
.metric-item + .metric-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim-text);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--dark2);
  padding: var(--pad-section) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.feature-card {
  background: var(--black);
  padding: 36px 28px;
  border: none;
  transition: border-color 0.3s;
  position: relative;
  outline: 1px solid transparent;
}
.feature-card:hover {
  outline-color: rgba(201, 168, 76, 0.28);
  z-index: 1;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(138, 110, 47, 0.3);
  padding: 5px 10px;
}

/* Full-width feature card */
.feature-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.feature-card.wide .feature-body { grid-column: 1; }
.feature-card.wide .feature-indicators { grid-column: 2; }

.indicators-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.indicator-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 5px 10px;
}

/* ============================================================
   TECHNICAL ANALYSIS
   ============================================================ */
.technical-analysis {
  background: var(--black);
  padding: var(--pad-section) 0;
}

.analysis-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.analysis-intro {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dim-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.analysis-intro strong, .analysis-note strong {
  color: var(--white);
  font-weight: 600;
}

.analysis-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  margin-bottom: 36px;
  padding: 12px 16px;
  border-left: 2px solid var(--gold-dim);
  background: rgba(138, 110, 47, 0.05);
}

.indicators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
}

.indicator-item {
  background: var(--card);
  padding: 20px;
}

.indicator-icon { font-size: 18px; margin-bottom: 8px; }

.indicator-name {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.indicator-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--dim-text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.indicator-bar {
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.indicator-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 1.5s ease;
}
.indicator-fill.animated { width: var(--fill-w, 70%); }
.rsi-fill    { --fill-w: 72%; }
.ema-fill    { --fill-w: 85%; }
.candle-fill { --fill-w: 68%; }
.macd-fill   { --fill-w: 78%; }
.atr-fill    { --fill-w: 61%; }
.bb-fill     { --fill-w: 74%; }

/* Filters System */
.filters-title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.filters-description {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-text);
  margin-bottom: 24px;
}

.filters-list { display: flex; flex-direction: column; gap: 1px; background: var(--sep); }

.filter-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  padding: 16px 20px;
  transition: background 0.25s;
}
.filter-item:hover { background: var(--dark2); }

.filter-icon { font-size: 16px; flex-shrink: 0; }

.filter-number {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 16px;
}

.filter-content { flex: 1; }
.filter-content strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.filter-content p {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--dim-text);
  line-height: 1.5;
}

.filter-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
}

.filters-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--sep);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dim-text);
  line-height: 1.7;
}
.filters-note strong { color: var(--white); }

/* ============================================================
   DIFFERENT (What Makes Us Different)
   ============================================================ */
.different-section {
  background: var(--dark);
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--sep);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.different-card {
  background: var(--card);
  padding: 36px 28px;
  transition: outline-color 0.3s;
  outline: 1px solid transparent;
}
.different-card:hover { outline-color: rgba(201, 168, 76, 0.28); z-index: 1; }

.different-icon { font-size: 24px; margin-bottom: 16px; }

.different-card h3 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.different-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-text);
  line-height: 1.8;
}
.different-card p strong { color: var(--white); font-weight: 600; }

.different-card.highlight-card {
  background: #14110A;
  border: 1px solid rgba(201, 168, 76, 0.35);
  outline: 1px solid rgba(201, 168, 76, 0.35);
}

/* Stats within card */
.performance-metric {
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.metric-number-large {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.metric-label-sm {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim-text);
}
.stats-note {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--black);
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--sep);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.step {
  background: var(--dark2);
  padding: 36px 28px;
  transition: outline-color 0.3s;
  outline: 1px solid transparent;
  counter-increment: step-counter;
}
.step:hover { outline-color: rgba(201, 168, 76, 0.28); z-index: 1; }

.step-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.step p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-text);
  line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--dark);
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--sep);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.pricing-card {
  background: var(--black);
  padding: 48px 36px;
  transition: outline-color 0.3s;
  outline: 1px solid transparent;
  text-align: center;
}
.pricing-card:hover { outline-color: rgba(201, 168, 76, 0.28); z-index: 1; }

.pricing-card.featured {
  background: #14110A;
  border: 1px solid var(--gold);
  position: relative;
  z-index: 1;
}

.pricing-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 10px;
  margin-bottom: 28px;
}

.pricing-card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.pricing-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-number sup {
  font-size: 20px;
  vertical-align: super;
  color: var(--gold-dim);
}

.pricing-card-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.pricing-card-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--dim-text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pricing-card-type {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(76, 175, 154, 0.25);
  display: inline-block;
}

/* Pricing highlight box */
.pricing-highlight {
  margin-top: 48px;
  padding: 28px 36px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--sep);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pricing-highlight-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.pricing-highlight-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-text);
  line-height: 1.8;
}
.pricing-highlight-text strong { color: var(--white); }
.pricing-highlight-tagline {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 6px;
}

/* ============================================================
   BROKER PARTNER — Swissquote
   ============================================================ */
.broker-section {
  background: var(--black);
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--sep);
}

.broker-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.broker-content {}

.broker-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 8px 16px;
  margin-bottom: 28px;
}
.broker-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.broker-badge-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.broker-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.broker-title em { color: var(--gold); font-style: italic; }

.broker-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dim-text);
  line-height: 1.8;
  margin-bottom: 32px;
}
.broker-desc strong { color: var(--white); }

.broker-features {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--sep);
}
.broker-feature {
  background: var(--card);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.broker-feature-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.broker-feature-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-text);
}
.broker-feature-text strong { color: var(--gold-pale); font-weight: 600; }

.broker-visual {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.broker-card {
  background: var(--card);
  padding: 28px;
}

.broker-card-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}

.broker-card-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.broker-card-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--dim-text);
}

/* ============================================================
   MANUALES
   ============================================================ */
.manuales-landing {
  background: var(--dark2);
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--sep);
}

.manuales-landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.manual-landing-card {
  background: var(--black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: outline-color 0.3s;
  outline: 1px solid transparent;
}
.manual-landing-card:hover { outline-color: rgba(201, 168, 76, 0.28); z-index: 1; }

.manual-landing-icon {
  font-size: 28px;
}

.manual-landing-body h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.manual-landing-body p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-text);
  line-height: 1.8;
}

.manual-landing-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

.btn-manual-landing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--border);
  color: var(--dim-text);
  transition: all 0.25s;
}
.btn-manual-landing:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.btn-manual-landing-view { border-color: rgba(201, 168, 76, 0.3); color: var(--gold-dim); }
.btn-manual-landing-dl  { }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: var(--black);
  padding: 40px 0;
  border-top: 1px solid var(--sep);
}

.disclaimer-content {
  padding: 24px 28px;
  border: 1px solid var(--sep);
  background: var(--card);
}

.disclaimer-content h3 {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}

.disclaimer-content p {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--dim-text);
  line-height: 1.8;
}
.disclaimer-content p strong { color: var(--white); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--dark);
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--sep);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark2);
  border-bottom: 1px solid var(--sep);
}
.faq-item:first-child { border-top: 1px solid var(--sep); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(201, 168, 76, 0.03); }

.faq-question span:first-child {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  flex: 1;
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer p,
.faq-answer ul {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-text);
  line-height: 1.8;
}
.faq-answer p strong { color: var(--white); }
.faq-answer ul { padding-left: 20px; list-style: disc; }
.faq-answer ul li { margin-bottom: 4px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--black);
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--sep);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: outline-color 0.3s, background 0.3s;
  outline: 1px solid transparent;
  color: inherit;
}
.contact-card:hover {
  outline-color: rgba(201, 168, 76, 0.28);
  background: rgba(201, 168, 76, 0.03);
  z-index: 1;
}

.contact-card-icon { font-size: 24px; flex-shrink: 0; }

.contact-card-body { flex: 1; }
.contact-card-body h4 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-card-body p {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--dim-text);
  letter-spacing: 0.1em;
}

.contact-card-arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.contact-card:hover .contact-card-arrow { transform: translateX(4px); }

.contact-card-whatsapp:hover { outline-color: rgba(76, 175, 154, 0.35); }
.contact-card-whatsapp .contact-card-arrow { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--sep);
  padding-top: 64px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--sep);
}

.footer-brand {}

.footer-logo { height: 44px; width: auto; margin-bottom: 14px; }

.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dim-text);
  line-height: 1.7;
  max-width: 220px;
}

.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }

.footer-links ul li a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-text);
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.footer-disclaimer {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim-text);
  opacity: 0.5;
  max-width: 480px;
  text-align: right;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --pad-section: 80px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-side { order: -1; }
  .hero-panel { max-width: 480px; margin: 0 auto; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.wide { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 24px; }
  .different-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .analysis-content { grid-template-columns: 1fr; gap: 48px; }
  .broker-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-section: var(--pad-section-m);
  }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid var(--sep);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .nav-menu.active { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--sep);
    font-size: 11px;
  }
  .btn-nav {
    margin-top: 8px;
    display: block;
    text-align: center;
  }

  .hamburger { display: flex; }

  .hero-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .hero-side { order: -1; }

  .features-grid,
  .different-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { grid-column: auto; max-width: 100%; }

  .steps { grid-template-columns: 1fr 1fr; }

  .metrics-grid { grid-template-columns: 1fr; }
  .metric-item { padding: 24px; }
  .metric-item + .metric-item::before {
    top: 0; left: 10%; width: 80%; height: 1px;
  }

  .contact-cards { grid-template-columns: 1fr; max-width: 100%; }

  .footer-content { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-disclaimer { text-align: left; }

  .broker-inner { grid-template-columns: 1fr; }

  .indicators-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .hero-panel-stats { grid-template-columns: 1fr; }
}

/* ── Platform Info / legacy ─────────────────────────────────── */
.platform-info { display: none; }
.broker-widget-legacy { display: none; }
.works-visual { display: none; }
.pricing-visual { display: none; }
.features-background { display: none; }
