/**
 * Black Label Bots — sales & engagement layer
 * Palette: black + gold + champagne + burgundy (no green)
 */

:root {
  --blb-champagne: #e8e6e1;
  --blb-champagne-dim: #d4c5a0;
  --blb-burgundy: #8b3a4a;
  --blb-burgundy-deep: #6b2d3e;
  --blb-burgundy-glow: rgba(139, 58, 74, 0.22);
  --blb-platinum: #a8a9ad;
  --blb-up: #d4af37;
  --blb-down: #8b3a4a;
}

/* ── Section guide (on-page nav) ─────────────────────── */
.fx-section-guide {
  position: sticky;
  top: 48px;
  z-index: 90;
  border-bottom: 1px solid rgba(201, 169, 97, 0.14);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fx-section-guide-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 32px;
}

.fx-section-guide a {
  font-family: var(--fx-font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blb-champagne-dim);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.fx-section-guide a:hover {
  color: var(--fx-gold, #c9a961);
  border-bottom-color: rgba(201, 169, 97, 0.45);
}

/* ── How it works ────────────────────────────────────── */
.fx-how-it-works {
  padding: 88px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.fx-how-steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fx-how-step {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  background: rgba(0, 0, 0, 0.3);
}

.fx-how-num {
  font-family: var(--fx-font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--fx-gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.85;
}

.fx-how-step h3 {
  font-family: var(--fx-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--blb-champagne);
  margin: 0 0 10px;
}

.fx-how-step p {
  font-size: 14px;
  color: var(--fx-text-dim);
  line-height: 1.65;
  margin: 0 0 12px;
}

.fx-how-link {
  font-family: var(--fx-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fx-gold);
  text-decoration: none;
}

.fx-how-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fx-how-steps { grid-template-columns: 1fr; }
  .fx-section-guide-inner { gap: 6px 16px; padding: 10px 20px; }
}

/* ── Pricing table (home) ──────────────────────────── */
.fx-pricing-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid rgba(201, 169, 97, 0.18);
}

.fx-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.fx-pricing-table th {
  text-align: left;
  padding: 14px 20px;
  font-family: var(--fx-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blb-champagne-dim);
  background: rgba(201, 169, 97, 0.06);
  border-bottom: 1px solid rgba(201, 169, 97, 0.14);
}

.fx-pricing-table td {
  padding: 16px 20px;
  color: var(--fx-text-dim);
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
}

.fx-pricing-table td strong {
  color: var(--blb-champagne);
}

.fx-pricing-table-featured td {
  background: rgba(201, 169, 97, 0.05);
  color: var(--blb-champagne);
}

.fx-pricing-table-featured td:nth-child(2) {
  color: var(--fx-gold-bright, #f9e27d);
  font-family: var(--fx-font-display);
  font-size: 18px;
}

.fx-pricing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ── Trust strip ─────────────────────────────────────── */
.fx-trust-strip {
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  background: rgba(201, 169, 97, 0.03);
}

.fx-trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 32px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.fx-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fx-font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blb-champagne-dim);
}

.fx-trust-item strong {
  color: var(--fx-gold, #c9a961);
  font-weight: 600;
}

.fx-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fx-gold-bright, #f9e27d);
  box-shadow: 0 0 8px rgba(249, 226, 125, 0.7);
  animation: fx-trust-pulse 2.5s ease infinite;
}

@keyframes fx-trust-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ── ROI outcome grid ────────────────────────────────── */
.fx-roi-section {
  padding: 88px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.fx-roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 960px) { .fx-roi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fx-roi-grid { grid-template-columns: 1fr; } }

.fx-roi-card {
  padding: 32px 28px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(201, 169, 97, 0.14);
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.fx-roi-card:hover {
  border-color: rgba(201, 169, 97, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(201, 169, 97, 0.1);
}

.fx-roi-card--highlight {
  border-color: rgba(201, 169, 97, 0.38);
  background: linear-gradient(160deg, rgba(201, 169, 97, 0.08), rgba(0, 0, 0, 0.75));
}

.fx-roi-card--highlight::before {
  content: 'BEST FIT';
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--fx-font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--blb-burgundy);
  border: 1px solid var(--blb-burgundy);
  padding: 4px 8px;
}

.fx-roi-persona {
  font-family: var(--fx-font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blb-burgundy);
  margin-bottom: 12px;
}

.fx-roi-amount {
  font-family: var(--fx-font-display, 'Cormorant Garamond', serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  color: var(--fx-gold-bright, #f9e27d);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}

.fx-roi-period {
  font-size: 12px;
  color: var(--blb-champagne-dim);
  margin-bottom: 16px;
}

.fx-roi-card h3 {
  font-family: var(--fx-font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fx-roi-card p {
  font-size: 14px;
  color: var(--fx-text-dim, #8a8680);
  line-height: 1.65;
}

.fx-roi-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  font-size: 12px;
  color: var(--fx-gold, #c9a961);
}

/* ── Comparison table ────────────────────────────────── */
.fx-compare-section {
  padding: 88px 0;
  background: var(--fx-bg-2, #050505);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.fx-compare-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid rgba(201, 169, 97, 0.14);
}

.fx-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

.fx-compare-table th,
.fx-compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
}

.fx-compare-table th {
  font-family: var(--fx-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blb-champagne-dim);
  background: rgba(0, 0, 0, 0.5);
}

.fx-compare-table th.fx-col-win {
  background: rgba(201, 169, 97, 0.1);
  color: var(--fx-gold-bright);
}

.fx-compare-table td:first-child {
  color: var(--blb-champagne);
  font-weight: 500;
}

.fx-compare-table .fx-yes {
  color: var(--fx-gold-bright);
}

.fx-compare-table .fx-no {
  color: var(--blb-platinum);
}

.fx-compare-table .fx-meh {
  color: var(--blb-champagne-dim);
}

/* ── Included checklist ──────────────────────────────── */
.fx-included-section {
  padding: 88px 0;
}

.fx-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

@media (max-width: 900px) { .fx-included-grid { grid-template-columns: 1fr; } }

.fx-included-col h3 {
  font-family: var(--fx-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fx-gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.fx-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fx-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--fx-text-dim);
  line-height: 1.55;
}

.fx-checklist li::before {
  content: '◆';
  flex-shrink: 0;
  color: var(--fx-gold);
  font-size: 8px;
  margin-top: 6px;
}

.fx-checklist li strong {
  color: var(--blb-champagne);
  font-weight: 500;
}

/* ── Proof wall (animated counters) ──────────────────── */
.fx-proof-wall {
  padding: 72px 0;
  background: rgba(201, 169, 97, 0.04);
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.fx-proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) { .fx-proof-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .fx-proof-grid { grid-template-columns: repeat(2, 1fr); } }

.fx-proof-cell {
  text-align: center;
  padding: 28px 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 169, 97, 0.12);
}

.fx-proof-num {
  font-family: var(--fx-font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--fx-gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.fx-proof-num.fx-counting {
  transition: opacity 0.2s;
}

.fx-proof-label {
  font-family: var(--fx-font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blb-champagne-dim);
}

/* ── Finance vs outright ─────────────────────────────── */
.fx-pricing-compare {
  padding: 88px 0;
  background: var(--fx-bg-2);
}

.fx-pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

@media (max-width: 720px) { .fx-pricing-cards { grid-template-columns: 1fr; } }

.fx-pricing-card {
  padding: 40px 36px;
  border: 1px solid rgba(201, 169, 97, 0.16);
  background: rgba(0, 0, 0, 0.65);
  position: relative;
}

.fx-pricing-card--featured {
  border-color: rgba(201, 169, 97, 0.42);
  box-shadow: 0 0 60px rgba(201, 169, 97, 0.12);
}

.fx-pricing-card--featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fx-font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  background: var(--fx-gold);
  color: #0a0a0a;
  padding: 6px 14px;
}

.fx-pricing-card h3 {
  font-family: var(--fx-font-display);
  font-size: 28px;
  margin-bottom: 8px;
}

.fx-pricing-big {
  font-family: var(--fx-font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--fx-gold-bright);
  line-height: 1;
  margin: 20px 0 8px;
}

.fx-pricing-sub {
  font-size: 13px;
  color: var(--blb-champagne-dim);
  margin-bottom: 24px;
}

.fx-pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.fx-pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
  font-size: 14px;
  color: var(--fx-text-dim);
}

.fx-pricing-card .blb-btn,
.fx-pricing-card .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.fx-pricing-cards--solo {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Sovereign mega card */
.intelligence-cards--sovereign-only {
  grid-template-columns: 1fr !important;
}

.intelligence-card--mega {
  padding: 44px 40px 40px !important;
}

.fx-sovereign-mega-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: end;
}

@media (max-width: 800px) {
  .fx-sovereign-mega-inner { grid-template-columns: 1fr; }
}

.intelligence-card-price--mega {
  font-size: clamp(64px, 12vw, 108px) !important;
  line-height: 0.9 !important;
  margin: 8px 0 4px !important;
}

.fx-ace-proof-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--fx-text-dim);
}

.fx-ace-proof-link a {
  color: var(--fx-gold);
  text-decoration: none;
  letter-spacing: 0.06em;
}

/* Signals spotlight above product grid */
.fx-signals-spotlight {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding: 36px 32px;
  margin-bottom: 32px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(201, 169, 97, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.65);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s;
}

.fx-signals-spotlight:hover {
  border-color: rgba(249, 226, 125, 0.55);
  transform: translateY(-3px);
}

.fx-signals-spotlight-price {
  font-family: var(--fx-font-display);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 600;
  color: var(--fx-gold);
  line-height: 1;
}

.fx-signals-spotlight-price span {
  font-size: 0.35em;
  color: var(--fx-text-dim);
  font-family: var(--fx-font-mono);
  letter-spacing: 0.08em;
}

.fx-product-line {
  border-top: 1px solid rgba(201, 169, 97, 0.12);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 97, 0.08), transparent 60%),
    var(--fx-bg-2, #08081a);
}

.fx-product-line .fx-signals-spotlight {
  margin-top: 40px;
}

.product-cards--four {
  grid-template-columns: repeat(4, 1fr) !important;
  margin-top: 28px !important;
}

.product-cards--secondary {
  grid-template-columns: repeat(2, 1fr) !important;
  margin-top: 24px !important;
  max-width: 720px;
}

@media (max-width: 1100px) {
  .product-cards--four { grid-template-columns: repeat(2, 1fr) !important; }
  .fx-signals-spotlight { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .product-cards--four,
  .product-cards--secondary { grid-template-columns: 1fr !important; }
}

/* ── Trading proof hub ───────────────────────────────── */
.fx-trading-proof {
  padding: 88px 0 48px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 97, 0.06), transparent 70%);
}

.fx-proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 36px 0 44px;
  padding: 20px 24px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  background: rgba(201, 169, 97, 0.04);
}

.fx-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 100px;
}

.fx-proof-stat-val {
  font-family: var(--fx-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--fx-gold-bright, #f9e27d);
  line-height: 1;
}

.fx-proof-stat-lbl {
  font-family: var(--fx-font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blb-champagne-dim);
}

.fx-trading-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fx-proof-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(201, 169, 97, 0.2);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}

.fx-proof-card:hover {
  border-color: rgba(249, 226, 125, 0.5);
  transform: translateY(-4px);
}

.fx-proof-card-tag {
  font-family: var(--fx-font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fx-gold);
}

.fx-proof-card h3 {
  font-family: var(--fx-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--blb-champagne);
  margin: 0;
  line-height: 1.25;
}

.fx-proof-card p {
  font-size: 13px;
  color: var(--fx-text-dim);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.fx-proof-card-cta {
  font-family: var(--fx-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fx-gold);
  margin-top: 8px;
}

.fx-ledger-section {
  padding: 48px 0 88px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.fx-ledger-more {
  margin-top: 28px;
  font-family: var(--fx-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fx-text-dim);
}

.fx-ledger-more a {
  color: var(--fx-gold);
  text-decoration: none;
}

.fx-ledger-more a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .fx-trading-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .fx-trading-proof-grid { grid-template-columns: 1fr; }
  .fx-proof-stats { justify-content: space-between; }
}

/* ── Testimonial / proof quotes ──────────────────────── */
.fx-quotes-section {
  padding: 88px 0;
}

.fx-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

@media (max-width: 900px) { .fx-quotes-grid { grid-template-columns: 1fr; } }

.fx-quote-card {
  padding: 32px 28px;
  border-left: 3px solid var(--fx-gold);
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  border-right: 1px solid rgba(201, 169, 97, 0.1);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.fx-quote-card blockquote {
  font-family: var(--fx-font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--blb-champagne);
  margin-bottom: 20px;
}

.fx-quote-meta {
  font-family: var(--fx-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fx-gold);
}

.fx-quote-stat {
  margin-top: 12px;
  font-size: 13px;
  color: var(--blb-burgundy);
}

/* ── Objection strip ─────────────────────────────────── */
.fx-objections {
  padding: 72px 0;
  background: linear-gradient(180deg, transparent, rgba(139, 58, 74, 0.06));
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.fx-objection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 720px) { .fx-objection-grid { grid-template-columns: 1fr; } }

.fx-objection {
  padding: 24px 28px;
  border: 1px solid rgba(201, 169, 97, 0.12);
  background: rgba(0, 0, 0, 0.45);
}

.fx-objection-q {
  font-family: var(--fx-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--blb-champagne);
  margin-bottom: 10px;
}

.fx-objection-q::before {
  content: '“';
  color: var(--blb-burgundy);
  margin-right: 4px;
}

.fx-objection p {
  font-size: 14px;
  color: var(--fx-text-dim);
  line-height: 1.65;
}

/* ── FAQ ─────────────────────────────────────────────── */
.fx-faq-section {
  padding: 88px 0 100px;
}

.fx-faq-list {
  margin-top: 40px;
  max-width: 820px;
}

.fx-faq-item {
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.fx-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--fx-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--blb-champagne);
  transition: color 0.2s;
}

.fx-faq-q:hover { color: var(--fx-gold); }

.fx-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fx-font-mono);
  font-size: 14px;
  color: var(--fx-gold);
  transition: transform 0.25s;
}

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

.fx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.fx-faq-item.open .fx-faq-a {
  max-height: 320px;
  padding-bottom: 22px;
}

.fx-faq-a p {
  font-size: 15px;
  color: var(--fx-text-dim);
  line-height: 1.7;
  max-width: 68ch;
}

/* ── Sticky CTA bar ──────────────────────────────────── */
.fx-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
}

.fx-sticky-cta.visible {
  transform: translateY(0);
}

.fx-sticky-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fx-sticky-copy {
  font-size: 14px;
  color: var(--blb-champagne-dim);
}

.fx-sticky-copy strong {
  display: block;
  font-family: var(--fx-font-display);
  font-size: 18px;
  color: var(--fx-gold-bright);
  font-weight: 600;
}

.fx-sticky-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Urgency band ────────────────────────────────────── */
.fx-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 16px;
  border: 1px solid var(--blb-burgundy);
  background: rgba(139, 58, 74, 0.08);
  font-family: var(--fx-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blb-champagne-dim);
}

.fx-urgency em {
  font-style: normal;
  color: var(--blb-burgundy);
}

/* Trading ledger — gold up, burgundy down */
.blb-future .bt-day-body td.pos,
body.blb-future td.pos { color: var(--blb-up) !important; }
.blb-future .bt-day-body td.neg,
body.blb-future td.neg { color: var(--blb-down) !important; }
