/**
 * Black Label Bots — Cinematic UI layer
 * Luxury fintech: pure black, metallic gold, hex glow, horizon flare, perspective floor.
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Black Label palette: black + gold + one accent */
  --fx-bg: #000000;
  --fx-bg-2: #050505;
  --fx-bg-3: #0a0a0a;
  --fx-gold-bright: #f9e27d;
  --fx-gold-mid: #d4af37;
  --fx-gold-deep: #b8860b;
  --fx-gold-metallic: linear-gradient(180deg, #f9e27d 0%, #d4af37 38%, #b8860b 72%, #f9e27d 100%);
  --fx-glass: rgba(10, 10, 10, 0.72);
  --fx-glass-border: rgba(201, 169, 97, 0.12);
  --fx-line: rgba(201, 169, 97, 0.1);
  --fx-line-2: rgba(201, 169, 97, 0.18);
  --fx-text: #e8e6e1;
  --fx-text-dim: #8a8680;
  --fx-text-mute: #5a5650;
  --fx-gold: #c9a961;
  --fx-gold-dim: #8a7340;
  --fx-gold-glow: rgba(201, 169, 97, 0.28);
  --fx-gold-soft: rgba(201, 169, 97, 0.08);
  /* Third colors — champagne + burgundy (sales palette) */
  --fx-champagne: #e8e6e1;
  --fx-champagne-dim: #d4c5a0;
  --fx-burgundy: #8b3a4a;
  --fx-burgundy-deep: #6b2d3e;
  --fx-burgundy-glow: rgba(139, 58, 74, 0.22);
  --fx-accent: var(--fx-burgundy);
  --fx-accent-dim: var(--fx-burgundy-deep);
  --fx-accent-glow: var(--fx-burgundy-glow);
  --fx-sovereign: var(--fx-gold);
  --fx-sovereign-dim: var(--fx-gold-dim);
  --fx-sovereign-glow: var(--fx-gold-glow);
  --fx-ace: var(--fx-gold);
  --fx-ace-glow: var(--fx-gold-glow);
  --fx-green: #d4af37;
  --fx-red: #8b3a4a;
  --fx-font-display: 'Cormorant Garamond', Georgia, serif;
  --fx-font-body: 'Instrument Sans', system-ui, sans-serif;
  --fx-font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --fx-radius: 2px;
  --fx-radius-lg: 4px;
}

/* ── Global atmosphere ───────────────────────────────── */
.blb-future,
body.blb-future {
  background: var(--fx-bg);
  color: var(--fx-text);
  font-family: var(--fx-font-body);
}

.blb-future::before,
body.blb-future::before {
  content: none;
}

.blb-future::after,
body.blb-future::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 50% 18%, rgba(201, 169, 97, 0.14), transparent 65%);
  opacity: 1;
}

.fx-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fx-grid::before { content: none; }

.fx-orb {
  display: none;
}

.fx-orb--legacy {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: fx-float 12s ease-in-out infinite;
}

.fx-orb--sovereign {
  width: 480px; height: 480px;
  top: -120px; right: -80px;
  background: var(--fx-gold);
  opacity: 0.1;
}

.fx-orb--ace {
  width: 320px; height: 320px;
  bottom: 12%; left: -80px;
  background: var(--fx-accent);
  opacity: 0.06;
  animation-delay: -4s;
}

@keyframes fx-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.blb-future > *:not(.fx-grid):not(.fx-orb):not(.fx-holo-atmosphere):not(.mega-menu):not(nav),
body.blb-future > *:not(.fx-grid):not(.fx-orb):not(.fx-holo-atmosphere):not(.mega-menu):not(nav) {
  position: relative;
  z-index: 1;
}

/* Mega menu must stay fixed — relative positioning was pushing hero ~100vh down */
.blb-future .mega-menu {
  position: fixed !important;
  inset: 0;
  z-index: 300;
}

.fx-scene-content {
  z-index: 3;
}

/* ── HUD glass panel mixin via class ─────────────────── */
.fx-panel {
  background: var(--fx-glass) !important;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--fx-glass-border) !important;
  border-radius: var(--fx-radius-lg);
  position: relative;
  overflow: hidden;
}

.fx-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.fx-panel--sovereign:hover {
  border-color: rgba(201, 169, 97, 0.35) !important;
  box-shadow: 0 0 40px var(--fx-gold-soft), inset 0 0 60px var(--fx-gold-soft);
}

.fx-panel--ace:hover {
  border-color: rgba(201, 169, 97, 0.28) !important;
  box-shadow: 0 0 40px var(--fx-accent-glow);
}

/* Corner brackets */
.fx-hud::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 12px; height: 12px;
  border-top: 1px solid var(--fx-sovereign);
  border-left: 1px solid var(--fx-sovereign);
  opacity: 0.5;
}

/* ── Override design system tokens ───────────────────── */
.blb-future {
  --blb-bg: var(--fx-bg);
  --blb-bg-2: var(--fx-bg-2);
  --blb-bg-3: var(--fx-bg-3);
  --blb-line: var(--fx-glass-border);
  --blb-line-2: rgba(255,255,255,0.1);
  --blb-text: var(--fx-text);
  --blb-text-dim: var(--fx-text-dim);
  --blb-text-mute: var(--fx-text-mute);
  --blb-gold: var(--fx-gold);
  --blb-gold-dim: #b8942e;
  --blb-green: var(--fx-green);
  --blb-red: var(--fx-red);
  --blb-ace: var(--fx-ace);
  --blb-ace-dim: #00a8cc;
  --blb-ace-glow: var(--fx-ace-glow);
  --blb-sovereign: var(--fx-sovereign);
  --blb-sovereign-dim: var(--fx-sovereign-dim);
  --blb-sovereign-glow: var(--fx-sovereign-glow);
  --blb-font-display: var(--fx-font-display);
  --blb-font-body: var(--fx-font-body);
  --blb-font-mono: var(--fx-font-mono);
}

/* Nav */
.blb-future .blb-nav {
  background: rgba(2, 2, 8, 0.75);
  border-bottom: 1px solid var(--fx-glass-border);
}

.blb-future .blb-brand {
  font-family: var(--fx-font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.blb-future .blb-nav-links a {
  font-family: var(--fx-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.blb-future .blb-nav-links a.blb-nav-sovereign {
  text-shadow: 0 0 20px var(--fx-sovereign-glow);
}

/* Hero — tall only for legacy non-HUD heroes */
.blb-future .blb-hero:not(.fx-scene--hud) {
  border-bottom: 1px solid var(--fx-glass-border);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.blb-future .blb-hero--sovereign::before {
  background: radial-gradient(ellipse 60% 45% at 50% 15%, rgba(201, 169, 97, 0.16), transparent 65%);
}

.blb-future .fx-scene.blb-hero::before,
.blb-future .fx-scene.hero::before {
  content: none;
}

.blb-future .blb-hero--ace::before {
  background: radial-gradient(ellipse 60% 45% at 70% 10%, var(--fx-ace-glow), transparent 55%);
}

.blb-future .blb-eyebrow {
  font-family: var(--fx-font-mono);
  font-size: 10px;
  border-radius: var(--fx-radius);
  background: var(--fx-gold-soft);
  box-shadow: 0 0 24px var(--fx-gold-soft);
}

.blb-future .blb-hero h1 {
  font-family: var(--fx-font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  max-width: none;
  text-transform: uppercase;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1;
}

.blb-future .blb-hero h1 em {
  display: block;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.42em;
  letter-spacing: 0.22em;
  margin-top: 0.35em;
  background: var(--fx-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.35));
}

.blb-future .blb-hero--ace h1 em {
  background: linear-gradient(135deg, var(--fx-ace), #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
}

.blb-future .blb-price-amount {
  font-family: var(--fx-font-display);
  font-weight: 800;
  color: var(--fx-gold);
  text-shadow: 0 0 40px var(--fx-gold-glow);
}

/* Buttons */
.blb-future .blb-btn {
  font-family: var(--fx-font-mono);
  border-radius: var(--fx-radius);
  position: relative;
  overflow: hidden;
}

.blb-future .blb-btn--sovereign {
  box-shadow: 0 0 24px var(--fx-gold-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.blb-future .blb-btn--sovereign:hover {
  box-shadow: 0 0 36px var(--fx-gold-glow);
}

.blb-future .blb-btn--ace {
  box-shadow: 0 0 20px var(--fx-gold-glow);
}

/* Cards & panels */
.blb-future .blb-pillar,
.blb-future .blb-sovereignty-card,
.blb-future .blb-module-card,
.blb-future .blb-pricing-tier,
.blb-future .blb-license-card,
.blb-future .blb-stat,
.blb-future .blb-compare-band,
.blb-future .intelligence-card {
  background: var(--fx-glass) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--fx-glass-border) !important;
  border-radius: var(--fx-radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.blb-future .blb-pillar:hover,
.blb-future .blb-sovereignty-card:hover,
.blb-future .blb-module-card:hover,
.blb-future .intelligence-card:hover {
  transform: translateY(-6px);
}

.blb-future .blb-pricing-tier--featured {
  border-color: rgba(201, 169, 97, 0.45) !important;
  box-shadow: 0 0 48px var(--fx-gold-glow), inset 0 0 60px var(--fx-gold-soft);
}

.blb-future .blb-section-label,
.blb-future .blb-pillar-num,
.blb-future .blb-stat-label {
  font-family: var(--fx-font-mono);
}

.blb-future .blb-section h2,
.blb-future .blb-pillar h3,
.blb-future .blb-sovereignty-card h3 {
  font-family: var(--fx-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blb-future .blb-section h2 em {
  font-style: normal;
  color: var(--fx-gold);
}

.blb-future .blb-stats {
  background: transparent;
  border: 1px solid var(--fx-glass-border);
  border-radius: var(--fx-radius-lg);
  overflow: hidden;
  gap: 0;
}

.blb-future .blb-stat {
  border-right: 1px solid var(--fx-glass-border);
}

.blb-future .blb-stat:last-child { border-right: none; }

.blb-future .blb-stat-value {
  font-family: var(--fx-font-display);
  font-weight: 800;
}

.blb-future .blb-module-badge {
  font-family: var(--fx-font-mono);
  background: var(--fx-gold-soft);
  border-radius: var(--fx-radius);
  color: var(--fx-gold);
}

.blb-future .intelligence-card--featured {
  background: linear-gradient(145deg, var(--fx-glass), var(--fx-gold-soft)) !important;
  border-color: rgba(201, 169, 97, 0.4) !important;
}

.blb-future .intelligence-card--sovereign::before {
  background: linear-gradient(90deg, transparent, var(--fx-gold), transparent);
  height: 2px;
  box-shadow: 0 0 16px var(--fx-gold-glow);
}

.blb-future .intelligence-card--ace::before {
  background: linear-gradient(90deg, transparent, var(--fx-accent), transparent);
  box-shadow: 0 0 12px var(--fx-accent-glow);
}

.blb-future .blb-module-hub {
  background: linear-gradient(180deg, var(--fx-bg) 0%, var(--fx-bg-2) 100%);
}

.blb-future .blb-footer {
  border-top: 1px solid var(--fx-glass-border);
  background: rgba(2, 2, 8, 0.8);
}

.blb-future code {
  font-family: var(--fx-font-mono);
  font-size: 0.9em;
  color: var(--fx-sovereign);
  background: var(--fx-gold-soft);
  padding: 2px 6px;
  border-radius: 2px;
}

/* ── Index.html overrides (inline class names) ───────── */
.blb-future {
  --bg: var(--fx-bg);
  --bg-2: var(--fx-bg-2);
  --bg-3: var(--fx-bg-3);
  --line: var(--fx-glass-border);
  --line-2: rgba(255,255,255,0.1);
  --text: var(--fx-text);
  --text-dim: var(--fx-text-dim);
  --text-mute: var(--fx-text-mute);
  --gold: var(--fx-gold);
  --gold-dim: #b8942e;
  --sovereign: var(--fx-sovereign);
  --sovereign-dim: var(--fx-sovereign-dim);
  --sovereign-glow: var(--fx-sovereign-glow);
  --ace: var(--fx-ace);
  --ace-dim: #00a8cc;
  --green: var(--fx-green);
  --red: var(--fx-red);
}

.blb-future nav,
.blb-future .blb-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 400;
  background: rgba(2, 2, 8, 0.88) !important;
  border-bottom: 1px solid var(--fx-glass-border) !important;
}

body.blb-future.blb-page {
  padding-top: 58px;
}

.blb-future .brand {
  font-family: var(--fx-font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}

.blb-future .hero:not(.fx-scene--hud) {
  min-height: 75vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--fx-glass-border) !important;
}

.blb-future .hero--sovereign::before {
  background:
    radial-gradient(ellipse 70% 55% at 25% 0%, var(--fx-sovereign-glow), transparent 60%),
    radial-gradient(ellipse 45% 35% at 95% 70%, var(--fx-ace-glow), transparent 50%) !important;
}

.blb-future h1 {
  font-family: var(--fx-font-display) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: -0.03em !important;
  max-width: none !important;
  font-size: clamp(38px, 7vw, 82px) !important;
  line-height: 0.95 !important;
}

.blb-future h1 em {
  font-style: normal !important;
  display: block;
  font-weight: 500 !important;
  text-transform: none;
  font-size: 0.55em !important;
  margin-top: 0.12em;
  background: linear-gradient(135deg, var(--fx-sovereign), var(--fx-ace));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blb-future h2 {
  font-family: var(--fx-font-display) !important;
  font-weight: 700 !important;
}

.blb-future h2 em {
  font-style: normal !important;
  color: var(--fx-sovereign) !important;
}

.blb-future .eyebrow,
.blb-future .section-label {
  font-family: var(--fx-font-mono) !important;
  font-size: 10px !important;
  background: var(--fx-gold-soft);
  box-shadow: 0 0 20px var(--fx-gold-soft);
}

.blb-future .eyebrow--sovereign {
  border-color: rgba(201, 169, 97, 0.35) !important;
  color: var(--fx-sovereign) !important;
}

.blb-future .hero-price-amount {
  font-family: var(--fx-font-display) !important;
  font-weight: 800 !important;
  text-shadow: 0 0 50px var(--fx-sovereign-glow);
}

.blb-future .btn {
  font-family: var(--fx-font-mono) !important;
  border-radius: var(--fx-radius) !important;
}

.blb-future .btn--sovereign {
  box-shadow: 0 0 30px var(--fx-sovereign-glow) !important;
}

.blb-future .sovereignty-card,
.blb-future .product-card,
.blb-future .pillar,
.blb-future .stat,
.blb-future .signal-card,
.blb-future .rm-card,
.blb-future .offer-card {
  background: var(--fx-glass) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--fx-glass-border) !important;
  border-radius: var(--fx-radius-lg) !important;
}

.blb-future .sovereignty-card:hover,
.blb-future .product-card:hover {
  border-color: rgba(201, 169, 97, 0.3) !important;
  box-shadow: 0 0 40px var(--fx-gold-soft);
  transform: translateY(-6px);
}

.blb-future .product-card::before {
  box-shadow: 0 0 16px var(--fx-gold-glow);
}

.blb-future .module-badge {
  font-family: var(--fx-font-mono);
  background: var(--fx-gold-soft);
  border-radius: var(--fx-radius);
}

.blb-future .stats-strip,
.blb-future .product-showcase,
.blb-future .sovereignty-section,
.blb-future .intelligence-showcase {
  border-color: var(--fx-glass-border) !important;
}

.blb-future .stats-grid {
  border: 1px solid var(--fx-glass-border) !important;
  border-radius: var(--fx-radius-lg);
  overflow: hidden;
  background: transparent !important;
}

.blb-future .stat {
  border-right: 1px solid var(--fx-glass-border);
}

.blb-future .stat-value {
  font-family: var(--fx-font-display) !important;
  font-weight: 800 !important;
}

.blb-future .mega-menu {
  background: rgba(2, 2, 8, 0.97) !important;
}

.blb-future .mega-title {
  font-family: var(--fx-font-display) !important;
  font-weight: 700;
  letter-spacing: 0.3em;
  background: linear-gradient(90deg, var(--fx-sovereign), var(--fx-ace));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blb-future .mega-link-name {
  font-family: var(--fx-font-display) !important;
  font-weight: 600;
}

.blb-future .mega-col-title {
  font-family: var(--fx-font-mono);
  color: var(--fx-text-mute);
}

.blb-future .intelligence-card {
  border-radius: var(--fx-radius-lg) !important;
}

.blb-future .intelligence-card--featured {
  background: linear-gradient(145deg, var(--fx-glass), var(--fx-gold-soft)) !important;
  border-color: rgba(201, 169, 97, 0.35) !important;
  box-shadow: 0 0 80px var(--fx-gold-soft);
}

.blb-future .intelligence-card-price {
  font-family: var(--fx-font-display) !important;
  font-weight: 800 !important;
  color: var(--fx-gold) !important;
  text-shadow: 0 0 32px var(--fx-gold-glow);
}

.blb-future .product-card-stat-value,
.blb-future .intelligence-card-meta strong {
  font-family: var(--fx-font-mono) !important;
}

/* Status pulse dot for live proof */
.fx-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fx-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fx-accent);
  margin-bottom: 20px;
}

.fx-live-dot::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fx-accent);
  box-shadow: 0 0 10px var(--fx-accent-glow);
  animation: fx-pulse 2s ease infinite;
}

@keyframes fx-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ── HUD terminal block ──────────────────────────────── */
.fx-terminal {
  margin-top: 48px;
  padding: 24px 28px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: var(--fx-radius-lg);
  font-family: var(--fx-font-mono);
  font-size: 12px;
  line-height: 1.8;
  max-width: 520px;
  box-shadow: 0 0 60px var(--fx-gold-soft), inset 0 0 40px var(--fx-gold-soft);
  position: relative;
}

.fx-terminal::before {
  content: 'SOV://DAEMON';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--fx-gold);
  background: var(--fx-bg);
  padding: 0 8px;
}

.fx-terminal .fx-t-dim { color: var(--fx-text-mute); }
.fx-terminal .fx-t-sov { color: var(--fx-accent); }
.fx-terminal .fx-t-ace { color: var(--fx-gold); }
.fx-terminal .fx-t-gold { color: var(--fx-gold); }

.fx-terminal-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--fx-gold);
  margin-left: 4px;
  vertical-align: middle;
  animation: fx-blink 1s step-end infinite;
}

@keyframes fx-blink {
  50% { opacity: 0; }
}

/* Hero split layout */
.blb-future .blb-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .blb-future .blb-hero-split { grid-template-columns: 1fr; }
  .blb-future .fx-terminal { max-width: none; }
}

.fx-ring {
  width: 280px; height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.22);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fx-spin 30s linear infinite;
}

.fx-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(90, 158, 120, 0.22);
}

.fx-ring::after {
  content: 'SOV';
  font-family: var(--fx-font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--fx-gold);
  text-shadow: 0 0 32px var(--fx-gold-glow);
  animation: fx-spin 30s linear infinite reverse;
}

@keyframes fx-spin {
  to { transform: rotate(360deg); }
}

.fx-ring-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

@media (max-width: 900px) { .fx-ring-wrap { display: none; } }

/* Section divider */
.fx-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fx-gold), var(--fx-accent), transparent);
  opacity: 0.35;
  margin: 0;
  border: none;
}

/* Sovereignty roman numerals glow */
.blb-future .blb-detail-block,
.blb-future .blb-persona {
  background: var(--fx-glass) !important;
  backdrop-filter: blur(16px);
  border: 1px solid var(--fx-glass-border) !important;
  border-radius: var(--fx-radius-lg);
}

.blb-future .blb-sovereignty-icon,
.blb-future .sovereignty-icon {
  font-family: var(--fx-font-display) !important;
  font-style: normal !important;
  font-weight: 800;
  font-size: 14px !important;
  letter-spacing: 0.1em;
  color: var(--fx-sovereign) !important;
  text-shadow: 0 0 20px var(--fx-sovereign-glow);
}

/* ══════════════════════════════════════════════════════
   PREMIUM LAYER — cinematic polish
   ══════════════════════════════════════════════════════ */

/* Nav upgrade */
.blb-future nav.fx-nav,
.blb-future .blb-nav {
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.blb-future nav.fx-nav-scrolled,
.blb-future .blb-nav.fx-nav-scrolled {
  background: rgba(5, 5, 5, 0.94) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 1px rgba(201, 169, 97, 0.2);
}

.fx-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fx-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-family: var(--fx-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0a;
  background: var(--fx-gold);
  border: 1px solid var(--fx-gold);
  border-radius: var(--fx-radius);
  box-shadow: 0 0 20px var(--fx-gold-glow);
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
}

.fx-nav-cta:hover {
  box-shadow: 0 0 32px var(--fx-gold-glow);
  transform: translateY(-1px);
  background: transparent;
  color: var(--fx-gold);
}

.fx-ham {
  display: none;
  background: none;
  border: 1px solid var(--fx-glass-border);
  border-radius: var(--fx-radius);
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.fx-ham .bar {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--fx-text);
  transition: transform 0.3s, opacity 0.3s;
}

.fx-ham.active .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.fx-ham.active .bar:nth-child(2) { opacity: 0; }
.fx-ham.active .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.fx-mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 99;
  background: rgba(2, 2, 8, 0.98);
  backdrop-filter: blur(20px);
  padding: 32px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--fx-glass-border);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.fx-mobile-nav.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fx-mobile-nav a {
  font-family: var(--fx-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--fx-text);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--fx-glass-border);
}

.fx-mobile-nav a.fx-nav-sovereign { color: var(--fx-sovereign); }

@media (max-width: 768px) {
  .blb-nav-links, .fx-nav-desktop { display: none !important; }
  .fx-ham { display: flex; }
}

/* Marquee proof strip */
.fx-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--fx-glass-border);
  border-bottom: 1px solid var(--fx-glass-border);
  background: var(--fx-gold-soft);
  padding: 14px 0;
}

.fx-marquee {
  display: flex;
  width: max-content;
  animation: fx-marquee 40s linear infinite;
}

.fx-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.fx-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fx-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fx-text-mute);
  white-space: nowrap;
}

.fx-marquee-item strong {
  color: var(--fx-gold);
  font-weight: 600;
}

.fx-marquee-item span.fx-m-ace { color: var(--fx-champagne-dim); }
.fx-marquee-item span.fx-m-gold { color: var(--fx-gold-dim); }

@keyframes fx-marquee {
  to { transform: translateX(-50%); }
}

/* Stack visualization */
.fx-stack-viz {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 32px 0;
}

.fx-stack-layer {
  position: relative;
  padding: 20px 24px;
  margin-bottom: 12px;
  background: var(--fx-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--fx-glass-border);
  border-radius: var(--fx-radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.fx-stack-layer:hover {
  border-color: rgba(201, 169, 97, 0.35);
  box-shadow: 0 0 32px var(--fx-gold-glow);
}

.fx-stack-layer--brain {
  border-color: rgba(201, 169, 97, 0.22);
  margin-left: 24px;
  margin-right: 24px;
}

.fx-stack-layer--brain:hover {
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: 0 0 28px var(--fx-gold-glow);
}

.fx-stack-layer--modules {
  margin-left: 48px;
  margin-right: 48px;
  opacity: 0.85;
}

.fx-stack-tag {
  font-family: var(--fx-font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fx-stack-layer--core .fx-stack-tag { color: var(--fx-accent); }
.fx-stack-layer--brain .fx-stack-tag { color: var(--fx-gold); }
.fx-stack-layer--modules .fx-stack-tag { color: var(--fx-gold-dim); }

.fx-stack-title {
  font-family: var(--fx-font-display);
  font-size: 22px;
  font-weight: 700;
}

.fx-stack-desc {
  font-size: 12px;
  color: var(--fx-text-dim);
  margin-top: 4px;
  line-height: 1.5;
}

.fx-stack-connector {
  width: 1px;
  height: 12px;
  background: linear-gradient(var(--fx-accent), var(--fx-gold));
  margin: 0 auto;
  opacity: 0.45;
}

/* Hero cinematic */
.blb-future .hero.fx-hero-cinematic,
.blb-future .blb-hero.fx-hero-cinematic {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

.blb-future .hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 960px) {
  .blb-future .hero-split { grid-template-columns: 1fr; }
  .fx-stack-viz { max-width: none; }
}

/* Scroll reveal */
.fx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-reveal.fx-revealed {
  opacity: 1;
  transform: translateY(0);
}

.fx-reveal-delay-1 { transition-delay: 0.1s; }
.fx-reveal-delay-2 { transition-delay: 0.2s; }
.fx-reveal-delay-3 { transition-delay: 0.3s; }

/* CTA band */
.fx-cta-band {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--fx-glass-border);
  border-bottom: 1px solid var(--fx-glass-border);
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, var(--fx-gold-glow), transparent 60%),
    var(--fx-bg-2);
}

.fx-cta-band h2 {
  font-family: var(--fx-font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: none !important;
}

.fx-cta-band h2 em {
  font-style: normal;
  color: var(--fx-gold);
}

.fx-cta-band p {
  font-size: 17px;
  color: var(--fx-text-dim);
  max-width: 52ch;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.fx-cta-band .cta-row,
.fx-cta-band .blb-cta-row {
  justify-content: center;
}

/* Section bands */
.fx-band-glow {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--fx-gold-soft), transparent 55%),
    var(--fx-bg);
}

.fx-band-deep {
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, var(--fx-accent-glow), transparent 50%),
    var(--fx-bg-2);
}

/* Card corner accent */
.blb-future .sovereignty-card,
.blb-future .product-card,
.blb-future .blb-sovereignty-card,
.blb-future .blb-module-card {
  position: relative;
}

.blb-future .sovereignty-card::after,
.blb-future .product-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 48px; height: 48px;
  background: linear-gradient(225deg, var(--fx-gold-soft) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 0 var(--fx-radius-lg) 0 0;
}

/* Intelligence card glow pulse on featured */
.blb-future .intelligence-card--featured {
  animation: fx-card-glow 4s ease-in-out infinite;
}

@keyframes fx-card-glow {
  0%, 100% { box-shadow: 0 0 80px var(--fx-gold-soft); }
  50% { box-shadow: 0 0 120px rgba(201, 169, 97, 0.2); }
}

/* Price hero badge */
.fx-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 24px;
  background: var(--fx-gold-soft);
  border: 1px solid rgba(201, 169, 97, 0.28);
  border-radius: var(--fx-radius-lg);
  margin-bottom: 32px;
}

.fx-price-badge .amount {
  font-family: var(--fx-font-display);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  color: var(--fx-gold);
  line-height: 1;
  text-shadow: 0 0 32px var(--fx-gold-glow);
}

.fx-price-badge .note {
  font-family: var(--fx-font-mono);
  font-size: 11px;
  color: var(--fx-text-dim);
  letter-spacing: 0.06em;
}

/* Footer premium */
.blb-future footer,
.blb-future .blb-footer {
  background: linear-gradient(180deg, transparent, rgba(2, 2, 8, 0.95)) !important;
  padding-top: 64px !important;
}

.fx-footer-tagline {
  font-family: var(--fx-font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 20ch;
}

.fx-footer-tagline span { color: var(--fx-gold); }

/* ═══════════════════════════════════════════════════════
   CINEMATIC SCENE — matches brand hero reference
   ═══════════════════════════════════════════════════════ */
.fx-scene {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  padding: 16px 0 40px;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.blb-future .hero.fx-scene--hud,
.blb-future .blb-hero.fx-scene--hud {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 0 24px !important;
  display: block !important;
  align-items: unset !important;
  justify-content: flex-start !important;
}

.fx-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 22%, rgba(201, 169, 97, 0.18), transparent 68%);
  pointer-events: none;
}

.fx-chart-watermark {
  position: absolute;
  inset: 8% 0 28%;
  width: 100%;
  height: auto;
  opacity: 0.14;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 15%, transparent 72%);
}

.fx-scene-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 70vw);
  height: min(280px, 45vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 226, 125, 0.22) 0%, rgba(201, 169, 97, 0.08) 40%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  animation: fx-halo-pulse 5s ease-in-out infinite;
}

@keyframes fx-halo-pulse {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
}

.fx-scene-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.fx-hex-stage {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

.fx-hex-glow {
  width: clamp(64px, 10vw, 96px);
  height: auto;
  filter:
    drop-shadow(0 0 20px rgba(249, 226, 125, 0.9))
    drop-shadow(0 0 48px rgba(201, 169, 97, 0.55))
    drop-shadow(0 0 80px rgba(184, 134, 11, 0.35));
  animation: fx-hex-float 6s ease-in-out infinite;
}

@keyframes fx-hex-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fx-scene-eyebrow {
  font-family: var(--fx-font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fx-gold-dim);
  margin-bottom: 6px;
}

.fx-scene-title,
.blb-future .fx-scene-title {
  font-family: var(--fx-font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
  background: var(--fx-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 32px rgba(212, 175, 55, 0.4));
}

.fx-scene-subtitle {
  font-family: var(--fx-font-mono);
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fx-gold-bright);
  margin-top: 6px;
  text-shadow: 0 0 30px rgba(249, 226, 125, 0.35);
}

.fx-horizon-flare {
  width: 100%;
  height: 1px;
  margin: 14px 0 12px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.2) 15%, #f9e27d 45%, #fff8e0 50%, #f9e27d 55%, rgba(184, 134, 11, 0.2) 85%, transparent 100%);
  box-shadow:
    0 0 24px rgba(249, 226, 125, 0.9),
    0 0 64px rgba(201, 169, 97, 0.45),
    0 0 120px rgba(249, 226, 125, 0.2);
}

.fx-scene-lead {
  font-size: 14px;
  color: var(--fx-text-dim);
  line-height: 1.55;
  max-width: none;
  margin: 0 0 16px;
  text-align: left;
}

.fx-scene-cta {
  justify-content: center;
}

.fx-price-badge--scene {
  justify-content: center;
  margin: 0 auto 32px;
}

.fx-perspective-floor {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  height: 28%;
  pointer-events: none;
  background:
    linear-gradient(rgba(201, 169, 97, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.22) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(320px) rotateX(72deg);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 25%, black 55%);
  opacity: 0.55;
}

.fx-scene--compact {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 16px !important;
}

.fx-scene--left .fx-scene-content {
  text-align: left;
  max-width: 1120px;
}

.fx-scene--left .fx-horizon-flare,
.fx-scene--left .fx-price-badge--scene,
.fx-scene--left .fx-scene-cta {
  margin-left: 0;
  margin-right: auto;
}

.fx-scene--left .fx-scene-lead {
  margin-left: 0;
  margin-right: auto;
}

/* Premium cards — less glass HUD, more vault */
.blb-future .blb-pillar,
.blb-future .blb-sovereignty-card,
.blb-future .blb-module-card,
.blb-future .intelligence-card,
.blb-future .blb-pricing-tier {
  background: rgba(0, 0, 0, 0.65) !important;
  border-color: rgba(201, 169, 97, 0.14) !important;
  box-shadow: inset 0 1px 0 rgba(249, 226, 125, 0.06);
}

.blb-future .blb-pillar:hover,
.blb-future .blb-sovereignty-card:hover,
.blb-future .blb-module-card:hover,
.blb-future .intelligence-card:hover {
  border-color: rgba(201, 169, 97, 0.32) !important;
  box-shadow: 0 0 40px rgba(201, 169, 97, 0.12), inset 0 1px 0 rgba(249, 226, 125, 0.1);
}

.blb-future .fx-live-dot {
  color: var(--fx-gold-bright);
}

.blb-future .fx-live-dot::before {
  background: var(--fx-gold-bright);
  box-shadow: 0 0 12px rgba(249, 226, 125, 0.8);
}

.blb-future .blb-nav-links a.blb-nav-sovereign,
.blb-future .fx-nav-sovereign {
  color: var(--fx-gold) !important;
  text-shadow: 0 0 20px var(--fx-gold-glow);
}

.blb-future .blb-section h2 em,
.blb-future .section h2 em {
  background: var(--fx-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* Hide HUD stack blocks — replaced by cinematic hex */
.fx-stack-viz { display: none !important; }

.blb-future .fx-scene .fx-terminal {
  display: none;
}

.blb-future .blb-hero.fx-scene,
.blb-future .hero.fx-scene {
  border-bottom: none;
  min-height: auto;
}

/* Marquee — slower, quieter */
.fx-marquee { animation-duration: 48s; }
.fx-marquee-wrap {
  background: rgba(201, 169, 97, 0.04);
  border-color: rgba(201, 169, 97, 0.1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fx-marquee { animation: none; }
  .fx-ring { animation: none; }
  .fx-reveal { opacity: 1; transform: none; transition: none; }
  .intelligence-card--featured { animation: none; }
  .fx-hex-glow { animation: none; }
  .fx-scene-glow { animation: none; }
}
