/* ===========================================
   THE HIJACKING OF BITCOIN - Evidence Wall
   A Narrative Commons Investigation
   =========================================== */

:root {
  /* Dark Investigative Palette */
  --noir-deepest: #0a0a0f;
  --noir-deep: #111118;
  --noir-base: #1a1a24;
  --noir-surface: #22222e;
  --noir-elevated: #2a2a38;
  --noir-border: #333345;

  /* Evidence Colors */
  --red-string: #c0392b;
  --red-glow: rgba(192, 57, 43, 0.4);
  --red-faint: rgba(192, 57, 43, 0.08);
  --gold-money: #d4a017;
  --gold-glow: rgba(212, 160, 23, 0.3);
  --gold-faint: rgba(212, 160, 23, 0.06);
  --green-verified: #10b981;
  --blue-link: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.3);
  --amber-warn: #f59e0b;
  --purple-epstein: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.3);

  /* Text */
  --text-bright: #e8e6e3;
  --text-primary: #c4c2bc;
  --text-secondary: #8a8880;
  --text-muted: #5a5850;

  /* Narrative Commons Heritage */
  --color-leather: #8a6a20;
  --color-paper: #fef8f7;

  /* Typography */
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --sp-2xl: 5rem;
  --sp-3xl: 8rem;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-normal: 300ms ease;
  --t-slow: 600ms ease;
  --t-dramatic: 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===========================================
   RESET & BASE
   =========================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-serif);
  background: var(--noir-deepest);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--red-string);
  color: white;
}

a {
  color: var(--gold-money);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--text-bright);
}

/* ===========================================
   NAVIGATION
   =========================================== */

.bh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--noir-border);
  padding: var(--sp-sm) 0;
  transition: transform var(--t-normal), background var(--t-normal);
}

.bh-nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  border-bottom-color: var(--red-string);
}

.bh-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bh-nav-brand {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bh-nav-brand:hover {
  color: var(--gold-money);
}

.bh-nav-links {
  display: flex;
  gap: var(--sp-lg);
}

.bh-nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid transparent;
  transition: all var(--t-fast);
}

.bh-nav-link:hover, .bh-nav-link.active {
  color: var(--text-bright);
  border-bottom-color: var(--red-string);
}

/* ===========================================
   HERO — THE EVIDENCE WALL HEADER
   =========================================== */

.bh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--sp-3xl) var(--sp-lg);
  overflow: hidden;
}

/* Animated grid background */
.bh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(192, 57, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 57, 43, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* Red string decoration */
.bh-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-string), transparent);
  opacity: 0.3;
  transform: rotate(-2deg);
}

.bh-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-string);
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 1;
}

.bh-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 1;
}

.bh-hero-title em {
  font-style: italic;
  color: var(--gold-money);
}

.bh-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
  position: relative;
  z-index: 1;
}

.bh-hero-meta {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.bh-hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.bh-hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-string);
}

/* Scroll indicator */
.bh-scroll-indicator {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.bh-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--text-muted);
  border-bottom: 1px solid var(--text-muted);
  transform: rotate(45deg);
}

/* ===========================================
   SECTION LAYOUT
   =========================================== */

.bh-section {
  position: relative;
  padding: var(--sp-3xl) var(--sp-lg);
  border-bottom: 1px solid var(--noir-border);
}

.bh-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.bh-section-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.bh-section-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--red-string);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.bh-section-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--red-string), transparent);
  opacity: 0.3;
}

.bh-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--sp-lg);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bh-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.bh-section p {
  margin-bottom: var(--sp-md);
  color: var(--text-primary);
}

/* ===========================================
   THESIS BANNER
   =========================================== */

.bh-thesis {
  background: var(--noir-surface);
  border-left: 3px solid var(--red-string);
  border-right: 1px solid var(--noir-border);
  border-top: 1px solid var(--noir-border);
  border-bottom: 1px solid var(--noir-border);
  padding: var(--sp-lg) var(--sp-xl);
  margin: var(--sp-xl) 0;
  position: relative;
}

.bh-thesis::before {
  content: 'THESIS';
  position: absolute;
  top: -0.6em;
  left: var(--sp-lg);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--red-string);
  background: var(--noir-surface);
  padding: 0 var(--sp-xs);
}

.bh-thesis p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-bright);
  margin: 0;
  line-height: 1.7;
}

/* ===========================================
   PLAYER DOSSIERS
   =========================================== */

.bh-dossier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-lg);
  margin: var(--sp-xl) 0;
}

.bh-dossier {
  background: var(--noir-surface);
  border: 1px solid var(--noir-border);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--t-normal);
  position: relative;
}

.bh-dossier:hover {
  border-color: var(--red-string);
  box-shadow: 0 0 30px var(--red-faint);
  transform: translateY(-2px);
}

.bh-dossier-header {
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--noir-border);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.bh-dossier-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--noir-deepest);
  flex-shrink: 0;
}

.bh-dossier-avatar.epstein { background: var(--purple-epstein); }
.bh-dossier-avatar.pierce { background: var(--amber-warn); }
.bh-dossier-avatar.lutnik { background: var(--red-string); }
.bh-dossier-avatar.bohines { background: var(--blue-link); }
.bh-dossier-avatar.summers { background: var(--green-verified); }
.bh-dossier-avatar.blockstream { background: var(--gold-money); }

.bh-dossier-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
}

.bh-dossier-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.bh-dossier-body {
  padding: var(--sp-md) var(--sp-lg);
}

.bh-dossier-body p {
  font-size: 0.95rem;
  margin-bottom: var(--sp-sm);
  color: var(--text-secondary);
}

.bh-dossier-connections {
  padding: var(--sp-sm) var(--sp-lg) var(--sp-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
}

.bh-connection-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: var(--red-faint);
  color: var(--red-string);
  border: 1px solid rgba(192, 57, 43, 0.2);
}

/* ===========================================
   TIMELINE
   =========================================== */

.bh-timeline {
  position: relative;
  margin: var(--sp-xl) 0;
  padding-left: 40px;
}

.bh-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--red-string) 5%,
    var(--red-string) 95%,
    transparent
  );
}

.bh-timeline-event {
  position: relative;
  margin-bottom: var(--sp-xl);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--noir-surface);
  border: 1px solid var(--noir-border);
  border-radius: 2px;
  transition: all var(--t-normal);
}

.bh-timeline-event:hover {
  border-color: var(--gold-money);
  box-shadow: 0 0 20px var(--gold-faint);
}

/* Timeline dot */
.bh-timeline-event::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-string);
  border: 2px solid var(--noir-deepest);
  z-index: 1;
}

/* Red string connector */
.bh-timeline-event::after {
  content: '';
  position: absolute;
  left: -21px;
  top: calc(1.5rem + 5px);
  width: 21px;
  height: 1px;
  background: var(--red-string);
  opacity: 0.4;
}

.bh-timeline-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-money);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-xs);
}

.bh-timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--sp-xs);
}

.bh-timeline-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bh-timeline-event.critical::before {
  background: var(--gold-money);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ===========================================
   EVIDENCE CARDS
   =========================================== */

.bh-evidence {
  background: var(--noir-surface);
  border: 1px solid var(--noir-border);
  border-left: 3px solid var(--gold-money);
  padding: var(--sp-lg);
  margin: var(--sp-lg) 0;
  position: relative;
}

.bh-evidence::before {
  content: 'EVIDENCE';
  position: absolute;
  top: -0.6em;
  left: var(--sp-md);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-money);
  background: var(--noir-surface);
  padding: 0 var(--sp-xs);
}

.bh-evidence-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-bright);
  margin-bottom: var(--sp-sm);
  line-height: 1.7;
}

.bh-evidence-source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
}

.bh-evidence-source .source-type {
  padding: 0.15rem 0.4rem;
  background: var(--gold-faint);
  color: var(--gold-money);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 2px;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===========================================
   NETWORK GRAPH (SVG Canvas)
   =========================================== */

.bh-network-container {
  background: var(--noir-surface);
  border: 1px solid var(--noir-border);
  border-radius: 2px;
  margin: var(--sp-xl) 0;
  padding: var(--sp-md);
  overflow: hidden;
  position: relative;
}

.bh-network-container h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--sp-sm) 0;
}

.bh-network-svg {
  width: 100%;
  height: 500px;
  display: block;
}

.bh-network-svg .node-circle {
  cursor: pointer;
  transition: all var(--t-fast);
}

.bh-network-svg .node-circle:hover {
  filter: brightness(1.3);
}

.bh-network-svg .node-label {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--text-secondary);
  text-anchor: middle;
  pointer-events: none;
}

.bh-network-svg .edge {
  stroke-opacity: 0.3;
  transition: stroke-opacity var(--t-fast);
}

.bh-network-svg .edge:hover {
  stroke-opacity: 0.8;
}

.bh-network-svg .edge-money { stroke: var(--gold-money); }
.bh-network-svg .edge-person { stroke: var(--red-string); }
.bh-network-svg .edge-org { stroke: var(--blue-link); }

/* Network legend */
.bh-network-legend {
  display: flex;
  gap: var(--sp-lg);
  margin-top: var(--sp-sm);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.bh-legend-item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.bh-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ===========================================
   MONEY FLOW DIAGRAM
   =========================================== */

.bh-flow-container {
  background: var(--noir-surface);
  border: 1px solid var(--noir-border);
  border-radius: 2px;
  margin: var(--sp-xl) 0;
  padding: var(--sp-lg);
  overflow-x: auto;
}

.bh-flow-svg {
  width: 100%;
  min-height: 350px;
  display: block;
}

.bh-flow-svg .flow-node {
  cursor: pointer;
}

.bh-flow-svg .flow-label {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: var(--text-bright);
  text-anchor: middle;
  pointer-events: none;
}

.bh-flow-svg .flow-amount {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--gold-money);
  text-anchor: middle;
}

.bh-flow-svg .flow-path {
  fill: none;
  stroke-width: 2;
  opacity: 0.6;
  transition: opacity var(--t-fast);
}

.bh-flow-svg .flow-path:hover {
  opacity: 1;
}

/* ===========================================
   STAT BLOCKS
   =========================================== */

.bh-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
  margin: var(--sp-xl) 0;
}

.bh-stat {
  background: var(--noir-surface);
  border: 1px solid var(--noir-border);
  padding: var(--sp-lg);
  text-align: center;
  transition: all var(--t-normal);
}

.bh-stat:hover {
  border-color: var(--gold-money);
}

.bh-stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-money);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.bh-stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bh-stat-value.red { color: var(--red-string); }
.bh-stat-value.purple { color: var(--purple-epstein); }

/* ===========================================
   PULL QUOTE
   =========================================== */

.bh-pullquote {
  position: relative;
  padding: var(--sp-2xl) var(--sp-lg);
  margin: var(--sp-2xl) 0;
  text-align: center;
  border-top: 1px solid var(--noir-border);
  border-bottom: 1px solid var(--noir-border);
}

.bh-pullquote::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--red-string);
  opacity: 0.2;
  line-height: 1;
  font-family: var(--font-serif);
}

.bh-pullquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-bright);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.bh-pullquote cite {
  display: block;
  margin-top: var(--sp-md);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ===========================================
   COMPARISON TABLE
   =========================================== */

.bh-comparison {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-xl) 0;
  font-size: 0.9rem;
}

.bh-comparison th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-sm) var(--sp-md);
  text-align: left;
  border-bottom: 2px solid var(--noir-border);
  background: var(--noir-surface);
}

.bh-comparison td {
  padding: var(--sp-sm) var(--sp-md);
  border-bottom: 1px solid var(--noir-border);
  color: var(--text-secondary);
  vertical-align: top;
}

.bh-comparison tr:hover td {
  background: var(--noir-surface);
  color: var(--text-bright);
}

.bh-comparison .highlight {
  color: var(--gold-money);
  font-weight: 500;
}

/* ===========================================
   SCROLL REVEAL ANIMATIONS
   =========================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-dramatic), transform var(--t-dramatic);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--t-dramatic), transform var(--t-dramatic);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--t-dramatic), transform var(--t-dramatic);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 400ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 500ms; }

/* ===========================================
   ACT DIVIDERS
   =========================================== */

.bh-act-divider {
  padding: var(--sp-3xl) var(--sp-lg);
  text-align: center;
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--noir-deepest),
    var(--noir-base) 40%,
    var(--noir-base) 60%,
    var(--noir-deepest)
  );
}

.bh-act-divider::before,
.bh-act-divider::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-string), transparent);
  opacity: 0.3;
}

.bh-act-divider::before { top: 30%; }
.bh-act-divider::after { bottom: 30%; }

.bh-act-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-string);
  margin-bottom: var(--sp-sm);
}

.bh-act-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}

/* ===========================================
   ENDGAME SECTION (Dark dramatic)
   =========================================== */

.bh-endgame {
  background: linear-gradient(to bottom, var(--noir-deepest), #0d0008);
  border-top: 1px solid var(--red-string);
}

.bh-endgame h2 {
  color: var(--red-string);
}

/* ===========================================
   SOURCE ATTRIBUTION
   =========================================== */

.bh-source-banner {
  background: var(--noir-surface);
  border: 1px solid var(--noir-border);
  border-radius: 2px;
  padding: var(--sp-lg);
  margin: var(--sp-xl) 0;
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
}

.bh-source-icon {
  width: 48px;
  height: 48px;
  background: var(--noir-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bh-source-details h4 {
  font-size: 1rem;
  color: var(--text-bright);
  margin-bottom: var(--sp-xs);
}

.bh-source-details p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.bh-source-details a {
  color: var(--gold-money);
}

/* ===========================================
   FOOTER
   =========================================== */

.bh-footer {
  background: var(--noir-deepest);
  padding: var(--sp-2xl) var(--sp-lg);
  border-top: 1px solid var(--noir-border);
}

.bh-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-xl);
}

.bh-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}

.bh-footer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.bh-footer ul {
  list-style: none;
}

.bh-footer li {
  margin-bottom: var(--sp-xs);
}

.bh-footer a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.bh-footer a:hover {
  color: var(--gold-money);
}

/* ===========================================
   RED STRING CONNECTIONS (decorative)
   =========================================== */

.bh-red-string-horizontal {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-string), transparent);
  opacity: 0.2;
  margin: var(--sp-xl) 0;
}

.bh-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-string);
  box-shadow: 0 0 8px var(--red-glow);
  font-size: 0;
  vertical-align: middle;
  margin: 0 var(--sp-xs);
}

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

@media (max-width: 768px) {
  html { font-size: 16px; }

  .bh-hero-title { font-size: 2.2rem; }

  .bh-nav-links { display: none; }

  .bh-section { padding: var(--sp-2xl) var(--sp-md); }

  .bh-dossier-grid { grid-template-columns: 1fr; }

  .bh-stats-grid { grid-template-columns: 1fr 1fr; }

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

  .bh-timeline { padding-left: 30px; }

  .bh-comparison { font-size: 0.8rem; }
  .bh-comparison th, .bh-comparison td { padding: var(--sp-xs) var(--sp-sm); }

  .bh-source-banner { flex-direction: column; }

  .bh-pullquote p { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .bh-stats-grid { grid-template-columns: 1fr; }
  .bh-hero-meta { flex-direction: column; align-items: center; }
  .bh-act-title { font-size: 1.8rem; }
}

/* ===========================================
   PRINT
   =========================================== */

@media print {
  body { background: white; color: #1a1a1a; }
  .bh-nav, .bh-scroll-indicator, .bh-network-container { display: none; }
  .bh-section { border-bottom: 1px solid #ccc; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
