/* Extracted from index.html on 2026-04-17 — shared across landing pages */
:root {
    --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    --bg: #060a0f;
    --surface: #0d1520;
    --surface2: #121e2d;
    --border: #1e3352;
    --green: #00d672;
    --red: #ff3366;
    --blue: #00aaff;
    --amber: #fbbf24;
    --orange: #ff8c00;
    --purple: #a855f7;
    --text: #c8d8e8;
    --text-dim: #6a8499;
    --text-bright: #eef4fa;
    --d-blue: #60a5fa;
    --r-red: #f87171;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    background: var(--bg); color: var(--text);
    font-family: var(--font-sans);
    min-height: 100vh; overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 56px; /* topnav height — topnav.js enforces this with !important */
  }
  a { color: var(--green); text-decoration: none; }
  a:hover { text-decoration: underline; }

/* ── NAV ── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  height: 52px; padding: 0 28px;
  background: rgba(6,10,15,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.topnav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 800; letter-spacing: 3.5px; color: var(--green);
  font-family: var(--font-mono); text-decoration: none; flex-shrink: 0;
}
.topnav-logo .beta-tag {
  font-size: 7px; font-weight: 900; letter-spacing: 1px;
  background: rgba(0,214,114,0.1); color: var(--green);
  border: 1px solid rgba(0,214,114,0.25); border-radius: 2px;
  padding: 2px 5px;
}
.topnav-center { display: flex; align-items: center; gap: 4px; }
.topnav-center a {
  color: var(--text-dim); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 12px; border-radius: 3px;
  transition: all 0.15s; text-decoration: none; white-space: nowrap;
}
.topnav-center a:hover { color: var(--text-bright); background: rgba(255,255,255,0.04); text-decoration: none; }
.topnav-center a.topnav-pulse {
  color: #22c55e; background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.32); position: relative;
}
.topnav-center a.topnav-pulse::after {
  content: ''; position: absolute; top: 4px; right: 5px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: tnPulse 2.4s infinite;
}
.topnav-center a.topnav-pulse:hover {
  background: #22c55e; color: #06121a;
  border-color: #22c55e;
}
.topnav-center a.topnav-pulse:hover::after { background: #06121a; box-shadow: none; }
@keyframes tnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.topnav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-sections-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,214,114,0.06); border: 1px solid rgba(0,214,114,0.2);
  color: var(--green); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 7px 14px; border-radius: 3px; cursor: pointer;
  transition: all 0.18s cubic-bezier(0.4,0,0.2,1); font-family: var(--font-mono);
}
.nav-sections-btn:hover { background: rgba(0,214,114,0.1); border-color: rgba(0,214,114,0.45); }
.nav-sections-btn.active { background: rgba(0,214,114,0.1); border-color: rgba(0,214,114,0.45); }
.nsb-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5px; width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.nsb-grid span { display: block; border-radius: 1px; background: var(--green); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.nav-sections-btn.active .nsb-grid { transform: rotate(45deg); }
.btn-login {
  background: var(--green); color: #060a0f !important; padding: 7px 18px;
  border-radius: 3px; font-weight: 900; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; transition: all 0.2s; font-family: var(--font-mono);
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
}
.btn-login:hover { background: #00ff99; color: #060a0f !important; text-decoration: none; }
.live-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
  animation: blink 2s infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text-dim); margin: 4px 0; transition: all 0.3s; }

/* Sections Overlay */
.sections-overlay {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 199;
  background: rgba(4,8,14,0.98); backdrop-filter: blur(32px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transform: translateY(-4px); opacity: 0; pointer-events: none;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), opacity 0.18s;
}
.sections-overlay.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sections-overlay-inner { max-width: 960px; margin: 0 auto; padding: 28px 40px 32px; }
.sections-overlay-label {
  font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
  color: var(--text-dim); margin-bottom: 20px; font-family: var(--font-mono);
  display: flex; align-items: center; gap: 10px;
}
.sections-overlay-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.sections-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(30,51,82,0.3); border: 1px solid rgba(30,51,82,0.4); border-radius: 4px; overflow: hidden;
}
.sections-grid a {
  display: flex; flex-direction: column; gap: 0;
  padding: 18px 20px; background: rgba(6,10,15,0.6);
  color: var(--text-dim); text-decoration: none;
  transition: all 0.14s; position: relative; overflow: hidden;
}
.sections-grid a::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--green); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.18s cubic-bezier(0.4,0,0.2,1);
}
.sections-grid a:hover { background: rgba(0,214,114,0.04); color: var(--text-bright); text-decoration: none; }
.sections-grid a:hover::before { transform: scaleY(1); }
.sg-label { font-size: 12px; font-weight: 700; color: var(--text-bright); margin-bottom: 4px; transition: color 0.14s; }
.sg-desc { font-size: 10px; color: var(--text-dim); line-height: 1.4; }
.sg-stat { font-size: 9px; color: var(--green); font-family: var(--font-mono); font-weight: 700; margin-top: 8px; opacity: 0.8; }
.sections-divider { height: 1px; background: var(--border); margin: 20px 0; }
.sections-footer-links { display: flex; gap: 0; background: rgba(30,51,82,0.2); border: 1px solid rgba(30,51,82,0.3); border-radius: 3px; overflow: hidden; }
.sections-footer-links a {
  font-size: 10px; color: var(--text-dim); font-weight: 700; text-decoration: none;
  padding: 9px 18px; transition: all 0.12s; border-right: 1px solid rgba(30,51,82,0.3);
  letter-spacing: 0.5px; font-family: var(--font-mono);
  text-transform: uppercase;
}
.sections-footer-links a:last-child { border-right: none; }
.sections-footer-links a:hover { color: var(--text-bright); background: rgba(0,214,114,0.05); text-decoration: none; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 112px 24px 80px;
    position: relative;
    background-image: url('images/hero-trading-floor.png');
    background-size: cover; background-position: center center;
    background-repeat: no-repeat;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      rgba(6,10,15,0.82) 0%,
      rgba(6,10,15,0.68) 35%,
      rgba(6,10,15,0.62) 55%,
      rgba(6,10,15,0.90) 100%);
    pointer-events: none;
  }
  /* Subtle vignette for text readability */
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(6,10,15,0.6) 100%);
    pointer-events: none;
  }

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

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,214,114,0.06); border: 1px solid rgba(0,214,114,0.2);
    border-radius: 3px; padding: 6px 14px; font-size: 11px; color: var(--green);
    margin-bottom: 32px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  }
  .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
  .hero h1 {
    font-size: clamp(32px, 5vw, 56px); font-weight: 800;
    line-height: 1.15; letter-spacing: -0.5px; max-width: 780px; margin-bottom: 20px;
    color: var(--text-bright);
  }
  .hero h1 .highlight {
    color: var(--green);
  }
  .hero p {
    font-size: clamp(14px, 1.5vw, 16px); color: var(--text); max-width: 680px;
    line-height: 1.75; margin-bottom: 36px; font-weight: 400;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 0 12px rgba(6,10,15,0.5);
  }
  .hero p strong { color: var(--text-bright); font-weight: 700; }
  .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
  .btn-primary {
    background: var(--green); color: #060a0f;
    padding: 13px 28px; border-radius: 4px; font-size: 13px; font-weight: 800;
    border: none; cursor: pointer; transition: opacity 0.2s, transform 0.15s;
    text-decoration: none; display: inline-block; letter-spacing: 0.5px;
    text-transform: uppercase; font-family: inherit;
  }
  .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; }
  .btn-secondary {
    background: transparent; color: var(--text); padding: 13px 28px;
    border-radius: 4px; font-size: 13px; font-weight: 700;
    border: 1px solid var(--border); cursor: pointer; transition: border-color 0.2s;
    text-decoration: none; display: inline-block; letter-spacing: 0.5px;
    text-transform: uppercase; font-family: inherit;
  }
  .btn-secondary:hover { border-color: var(--green); text-decoration: none; }

  /* ── Floating Particles ── */
  .particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
  .particle {
    position: absolute; font-size: 10px; color: rgba(0,214,114,0.12);
    font-weight: 600; animation: floatUp linear infinite;
  }
  @keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20vh) rotate(15deg); opacity: 0; }
  }

  /* ── STATS STRIP ── */
  .stats-strip {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }
  .stat-block {
    background: var(--surface); padding: 28px 16px; text-align: center;
    position: relative;
  }
  .stat-block .num {
    font-size: 28px; font-weight: 800; color: var(--green);
    font-variant-numeric: tabular-nums;
  }
  .stat-block .cursor {
    display: inline-block; width: 2px; height: 24px; background: var(--green);
    vertical-align: middle; margin-left: 3px;
    animation: cursorBlink 1s step-end infinite;
  }
  @keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
  .stat-block .lbl {
    color: var(--text-dim); font-size: 10px; text-transform: uppercase;
    letter-spacing: 1px; margin-top: 6px; font-weight: 600;
  }

  /* ── SECTIONS ── */
  section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 52px; }
  .section-header .tag {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--green); margin-bottom: 14px;
    display: inline-block;
    padding: 4px 12px; border-radius: 3px;
    background: rgba(0,214,114,0.06);
    border: 1px solid rgba(0,214,114,0.2);
    box-shadow: 0 0 12px rgba(0,214,114,0.1);
  }
  .section-header h2 {
    font-size: 32px; font-weight: 800; margin-bottom: 12px; color: var(--text-bright);
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .section-header p {
    color: rgba(200,216,232,0.7); font-size: 14px;
    max-width: 580px; margin: 0 auto; line-height: 1.7;
  }

  /* ── MINI LEADERBOARD ── */
  .leaderboard-wrap {
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; position: relative;
  }
  .leaderboard-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 20px; border-bottom: 1px solid var(--border);
    background: var(--surface2);
  }
  .leaderboard-header h3 {
    font-size: 13px; font-weight: 700; color: var(--text-bright);
    letter-spacing: 0.5px;
  }
  .leaderboard-header a {
    font-size: 11px; color: var(--green); font-weight: 700;
    letter-spacing: 0.3px;
  }
  .lb-table { width: 100%; border-collapse: collapse; font-size: 12px; }
  .lb-table thead th {
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 8px 12px; text-align: left; color: var(--text-dim);
    font-size: 9px; text-transform: uppercase; letter-spacing: 0.8px;
    font-weight: 700; white-space: nowrap;
  }
  .lb-table thead th:first-child { width: 40px; text-align: center; }
  .lb-table tbody td {
    padding: 10px 12px; border-bottom: 1px solid rgba(30,51,82,0.4);
    vertical-align: middle;
  }
  .lb-table tbody tr:last-child td { border-bottom: none; }
  .lb-table tbody tr { transition: background 0.1s; }
  .lb-table tbody tr:hover { background: var(--surface2); }
  .rank-cell { text-align: center; font-weight: 700; font-size: 13px; color: var(--text-dim); }
  .rank-1 { color: #fbbf24 !important; }
  .rank-2 { color: #94a3b8 !important; }
  .rank-3 { color: #cd7f32 !important; }
  .trader-cell { display: flex; align-items: center; gap: 8px; }
  .lb-avatar {
    width: 28px; height: 28px; border-radius: 50%; object-fit: cover;
    border: 1px solid var(--border);
  }
  .trader-name { font-weight: 700; color: var(--text-bright); font-size: 12px; }
  .trader-meta { font-size: 10px; color: var(--text-dim); margin-top: 1px; }
  .party-pill {
    display: inline-block; padding: 1px 4px; border-radius: 2px;
    font-size: 9px; font-weight: 800; margin-left: 3px;
  }
  .pill-D { background: rgba(96,165,250,0.15); color: var(--d-blue); }
  .pill-R { background: rgba(248,113,113,0.15); color: var(--r-red); }
  .num-cell { font-weight: 700; color: var(--text-bright); text-align: right; font-variant-numeric: tabular-nums; }
  .pnl-pos { color: var(--green); }
  .pnl-neg { color: var(--red); }
  .greed-bar-wrap {
    display: flex; align-items: center; gap: 6px;
  }
  .greed-bar {
    width: 60px; height: 5px; background: var(--surface2); border-radius: 3px; overflow: hidden;
  }
  .greed-bar-fill { height: 100%; border-radius: 3px; }
  .greed-val { font-size: 11px; font-weight: 700; min-width: 28px; text-align: right; }
  .lb-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: linear-gradient(transparent, var(--surface));
    pointer-events: none;
  }

  /* ── SIGNAL CARDS ── */
  .signal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
  .sig-card {
    background: linear-gradient(135deg, rgba(13,21,32,0.95) 0%, rgba(18,30,45,0.92) 100%);
    border: 1px solid rgba(30,51,82,0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
      0 4px 16px rgba(0,0,0,0.25),
      inset 0 1px 0 rgba(255,255,255,0.02);
  }
  .sig-card:hover {
    border-color: rgba(0,214,114,0.4);
    box-shadow:
      0 8px 24px rgba(0,0,0,0.35),
      0 0 20px rgba(0,214,114,0.08),
      inset 0 1px 0 rgba(255,255,255,0.04);
    transform: translateY(-2px);
  }
  .sig-card.bullish { border-left: 3px solid var(--green); }
  .sig-card.bearish { border-left: 3px solid var(--red); }
  .sig-card-top {
    padding: 14px 16px 10px; display: flex; align-items: flex-start; justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }
  .sig-ticker { font-size: 20px; font-weight: 800; color: var(--text-bright); letter-spacing: 1px; }
  .sig-company { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
  .sig-sector { font-size: 9px; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
  .sig-action-box { text-align: center; flex-shrink: 0; }
  .sig-action {
    font-size: 10px; font-weight: 800; letter-spacing: 1px;
    padding: 6px 10px; border-radius: 4px; white-space: nowrap;
  }
  .sig-action.buy { background: rgba(0,214,114,0.15); color: var(--green); border: 1px solid rgba(0,214,114,0.35); }
  .sig-action.sell { background: rgba(255,51,102,0.15); color: var(--red); border: 1px solid rgba(255,51,102,0.35); }
  .sig-body { padding: 10px 16px; display: flex; flex-direction: column; gap: 6px; }
  .sig-row { display: flex; align-items: center; gap: 8px; font-size: 11px; }
  .sig-row-label { color: var(--text-dim); }
  .sig-row-val { margin-left: auto; font-weight: 700; color: var(--text-bright); }
  .sig-photo {
    width: 22px; height: 22px; border-radius: 50%; object-fit: cover;
    border: 1px solid var(--border); vertical-align: middle;
  }
  .sig-flags { padding: 8px 16px; display: flex; gap: 5px; flex-wrap: wrap; border-top: 1px solid var(--border); }
  .tier-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 28px; height: 20px; border-radius: 4px; font-weight: 800;
    font-size: 11px; letter-spacing: -0.5px; padding: 0 5px;
  }
  .tier-Ap { background: rgba(0,170,255,0.15); color: var(--blue); border: 1px solid rgba(0,170,255,0.3); }
  .tier-A { background: rgba(168,85,247,0.12); color: #c084fc; border: 1px solid rgba(168,85,247,0.25); }
  .tier-B { background: rgba(251,191,36,0.12); color: var(--amber); border: 1px solid rgba(251,191,36,0.25); }
  .sig-badge {
    display: inline-block; padding: 2px 6px; border-radius: 8px;
    font-size: 9px; font-weight: 700; white-space: nowrap; letter-spacing: 0.3px;
  }
  .sig-fresh { background: rgba(0,255,136,0.08); color: var(--green); border: 1px solid rgba(0,255,136,0.15); }
  .sig-herd { background: rgba(0,170,255,0.12); color: var(--blue); border: 1px solid rgba(0,170,255,0.25); }
  .sig-quality { background: rgba(0,255,136,0.1); color: var(--green); border: 1px solid rgba(0,255,136,0.2); }
  .sig-bill { background: rgba(168,85,247,0.15); color: #c084fc; border: 1px solid rgba(168,85,247,0.3); }
  .sig-new { background: rgba(0,170,255,0.1); color: var(--blue); border: 1px solid rgba(0,170,255,0.2); }
  .sig-sector-b { background: rgba(0,170,255,0.1); color: var(--blue); border: 1px solid rgba(0,170,255,0.2); }
  .sig-recent { background: rgba(251,191,36,0.1); color: var(--amber); border: 1px solid rgba(251,191,36,0.25); }

  /* ── TRADINGVIEW ── */
  .tv-wrap {
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; margin-top: 16px;
  }
  .tv-header {
    padding: 10px 16px; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
  }
  .tv-header span { font-size: 11px; color: var(--text-dim); }
  .tv-header .tv-live { color: var(--green); font-weight: 700; display: flex; align-items: center; gap: 5px; }

  /* ── HOW IT WORKS ── */
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .step-card {
    background: linear-gradient(135deg, rgba(13,21,32,0.95) 0%, rgba(18,30,45,0.92) 100%);
    border: 1px solid rgba(30,51,82,0.5);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
      0 4px 16px rgba(0,0,0,0.25),
      inset 0 1px 0 rgba(255,255,255,0.02);
  }
  .step-card:hover {
    border-color: rgba(0,214,114,0.4);
    box-shadow:
      0 8px 24px rgba(0,0,0,0.35),
      0 0 20px rgba(0,214,114,0.06),
      inset 0 1px 0 rgba(255,255,255,0.04);
    transform: translateY(-2px);
  }
  .step-card::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  }
  .step-card:nth-child(1)::before { background: var(--green); }
  .step-card:nth-child(2)::before { background: var(--orange); }
  .step-card:nth-child(3)::before { background: var(--red); }
  /* Scan-line overlay */
  .step-card::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,214,114,0.015) 2px, rgba(0,214,114,0.015) 4px);
  }
  .step-num {
    font-size: 28px; font-weight: 800; color: var(--green); opacity: 0.3;
    position: absolute; top: 16px; right: 20px;
  }
  .step-label {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--green); margin-bottom: 10px;
  }
  .step-card h3 { font-size: 16px; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
  .step-card p { font-size: 12px; color: var(--text-dim); line-height: 1.7; position: relative; z-index: 1; }

  /* ── TRIPLE SIGNAL ── */
  .triple-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .triple-visual {
    background: linear-gradient(135deg, rgba(13,21,32,0.95) 0%, rgba(18,30,45,0.92) 100%);
    border: 1px solid rgba(30,51,82,0.5);
    border-radius: 8px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 8px 24px rgba(0,0,0,0.3),
      inset 0 1px 0 rgba(255,255,255,0.02);
  }
  .triple-visual::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.4;
  }
  /* Scan-line animation */
  .triple-visual::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,214,114,0.015) 2px, rgba(0,214,114,0.015) 4px);
    animation: scanMove 8s linear infinite;
  }
  @keyframes scanMove { 0% { background-position: 0 0; } 100% { background-position: 0 100px; } }
  .signal-stack { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
  .signal-row {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    border-radius: 6px; background: var(--surface2); border: 1px solid var(--border);
    font-size: 12px;
  }
  .signal-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .signal-dot.committee { background: var(--orange); }
  .signal-dot.trade { background: var(--green); }
  .signal-dot.contrib { background: var(--blue); }
  .signal-label { color: var(--text-dim); flex: 1; }
  .signal-val { font-weight: 800; }
  .signal-result {
    margin-top: 12px; padding: 14px; border-radius: 6px;
    background: rgba(255,51,102,0.06); border: 1px solid rgba(255,51,102,0.2);
    text-align: center; position: relative;
    box-shadow: 0 0 30px rgba(255,51,102,0.08);
    animation: resultPulse 3s ease-in-out infinite;
  }
  @keyframes resultPulse { 0%,100% { box-shadow: 0 0 20px rgba(255,51,102,0.05); } 50% { box-shadow: 0 0 40px rgba(255,51,102,0.15); } }
  .signal-result .big { font-size: 20px; font-weight: 800; color: var(--red); letter-spacing: 2px; }
  .signal-result .sub { font-size: 10px; color: var(--text-dim); margin-top: 4px; }
  .triple-text h2 { font-size: 24px; font-weight: 800; margin-bottom: 14px; color: var(--text-bright); line-height: 1.3; }
  .triple-text p { color: var(--text-dim); font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
  .triple-text .tag {
    display: inline-block; background: rgba(255,51,102,0.08); color: var(--red);
    padding: 4px 10px; border-radius: 3px; font-size: 11px; font-weight: 700;
    border: 1px solid rgba(255,51,102,0.2);
  }

  /* ── FEATURES SECTION WITH IMAGE ── */
  .features-section-wrap {
    position: relative; overflow: hidden;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: #030608;
  }
  .features-section-wrap::before {
    content: ''; position: absolute; inset: 0;
    background: url('images/four-monitors.png') center center / cover no-repeat;
    opacity: 0.45; pointer-events: none; filter: brightness(0.8) contrast(1.15) saturate(1.1);
  }
  .features-section-wrap::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(0,214,114,0.04) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 60%, rgba(0,170,255,0.03) 0%, transparent 50%),
      linear-gradient(to bottom, rgba(3,6,8,0.75) 0%, rgba(3,6,8,0.35) 25%, rgba(3,6,8,0.35) 75%, rgba(3,6,8,0.75) 100%);
    pointer-events: none;
  }
  .features-section-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  }

  /* ── FEATURES GRID ── */
  .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .feat-card {
    background: linear-gradient(135deg, rgba(13,21,32,0.92) 0%, rgba(18,30,45,0.88) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30,51,82,0.6);
    border-left: 2px solid var(--green);
    border-radius: 8px;
    padding: 26px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow:
      0 4px 16px rgba(0,0,0,0.3),
      inset 0 1px 0 rgba(255,255,255,0.03);
  }
  .feat-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 8px;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,214,114,0.01) 2px,
      rgba(0,214,114,0.01) 4px
    );
    pointer-events: none;
  }
  .feat-card:hover {
    border-color: rgba(0,214,114,0.4);
    border-left-color: var(--green);
    box-shadow:
      0 8px 24px rgba(0,0,0,0.4),
      0 0 20px rgba(0,214,114,0.08),
      inset 0 1px 0 rgba(255,255,255,0.05);
    transform: translateY(-2px);
  }
  .feat-card .live-indicator {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 9px; font-weight: 800; color: var(--green);
    text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px;
    padding: 3px 8px 3px 6px; border-radius: 3px;
    background: rgba(0,214,114,0.06);
    border: 1px solid rgba(0,214,114,0.15);
  }
  .feat-card .live-indicator .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--green);
    animation: blink 2s infinite;
    box-shadow: 0 0 6px var(--green);
  }
  .feat-card h4 {
    font-size: 16px; font-weight: 800; color: var(--text-bright);
    margin-bottom: 8px; letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }
  .feat-card p {
    font-size: 12px; color: rgba(200,216,232,0.75); line-height: 1.7;
    margin-bottom: 16px;
  }
  .feat-stat {
    font-size: 24px; font-weight: 800; color: var(--green);
    text-shadow: 0 0 12px rgba(0,214,114,0.3);
    margin-bottom: 4px;
  }
  .feat-stat-label {
    font-size: 9px; color: var(--text-dim); text-transform: uppercase;
    letter-spacing: 1px; opacity: 0.7;
  }

  /* ── DEVELOPER / API SECTION ── */
  .dev-section {
    background: #030608; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: 80px 24px;
    position: relative; overflow: hidden;
  }
  .dev-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('images/api-terminal-bg.png') center/cover no-repeat;
    opacity: 0.35; filter: brightness(0.7) contrast(1.15);
    z-index: 0;
  }
  .dev-section::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(3,6,8,0.4) 0%, rgba(3,6,8,0.85) 70%, rgba(3,6,8,0.95) 100%);
    z-index: 0;
  }
  .dev-section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .dev-text .section-label {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; color: var(--green); margin-bottom: 14px;
  }
  .dev-text h2 {
    font-size: 26px; font-weight: 800; line-height: 1.2;
    margin-bottom: 14px; color: var(--text-bright);
  }
  .dev-text h2 em { font-style: normal; color: var(--green); }
  .dev-text p { color: var(--text-dim); font-size: 13px; line-height: 1.7; margin-bottom: 28px; }
  .dev-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
  .btn-terminal {
    background: rgba(0,214,114,0.08); color: var(--green); padding: 10px 20px;
    border-radius: 4px; font-size: 12px; font-weight: 800;
    border: 1px solid rgba(0,214,114,0.25); text-decoration: none;
    display: inline-block; transition: background 0.2s; letter-spacing: 0.5px;
    text-transform: uppercase; font-family: inherit;
  }
  .btn-terminal:hover { background: rgba(0,214,114,0.15); border-color: var(--green); text-decoration: none; }
  .btn-ghost {
    background: transparent; color: var(--text); padding: 10px 20px;
    border-radius: 4px; font-size: 12px; font-weight: 700;
    border: 1px solid var(--border); text-decoration: none;
    display: inline-block; transition: border-color 0.2s; letter-spacing: 0.5px;
    text-transform: uppercase; font-family: inherit;
  }
  .btn-ghost:hover { border-color: var(--text-dim); text-decoration: none; }
  .partner-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
  .partner-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-right: 4px; }
  .partner-chip {
    background: var(--surface2); border: 1px solid var(--border); border-radius: 3px;
    padding: 4px 10px; font-size: 10px; font-weight: 700; color: var(--text-dim);
  }
  .signal-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border); border-radius: 6px; overflow: hidden; margin-top: 24px;
  }
  .sig-stat { background: var(--surface2); padding: 16px 12px; text-align: center; }
  .sig-stat .snum { font-size: 18px; font-weight: 800; color: var(--green); }
  .sig-stat .slbl { font-size: 9px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
  .code-terminal {
    background: #030608;
    border: 1px solid rgba(30,51,82,0.6);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
      0 20px 60px rgba(0,0,0,0.6),
      0 0 20px rgba(0,214,114,0.05),
      inset 0 1px 0 rgba(255,255,255,0.03);
    position: relative;
  }
  .code-terminal::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.4;
  }
  .code-terminal-bar {
    display: flex; align-items: center; gap: 8px;
    background: var(--surface); padding: 10px 14px; border-bottom: 1px solid var(--border);
  }
  .code-terminal-bar .dot-row { display: flex; gap: 6px; }
  .code-terminal-bar .tdot { width: 10px; height: 10px; border-radius: 50%; }
  .tdot.r { background: #ff5f57; }
  .tdot.y { background: #febc2e; }
  .tdot.g { background: #28c840; }
  .code-terminal-bar .filename { font-size: 11px; color: var(--text-dim); margin-left: 10px; }
  .code-body { padding: 20px; font-size: 12px; line-height: 1.7; overflow-x: auto; }
  .code-body pre { white-space: pre; }
  .c-comment { color: #4b5563; }
  .c-kw { color: #c084fc; }
  .c-fn { color: var(--blue); }
  .c-str { color: var(--green); }
  .c-num { color: var(--amber); }
  .c-var { color: var(--text); }
  .c-green { color: var(--green); }

  /* ── DATA AUTHORITY ── */
  .authority-section {
    position: relative; overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: 80px 24px;
    background: #040710;
  }
  .authority-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('images/capitol-data-overlay.png') center center / cover no-repeat;
    opacity: 0.42; pointer-events: none;
    filter: brightness(0.75) contrast(1.2) saturate(0.9);
  }
  .authority-section::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 25%, rgba(0,170,255,0.05) 0%, transparent 50%),
      radial-gradient(ellipse at center, rgba(4,7,16,0.5) 15%, rgba(4,7,16,0.7) 50%, rgba(4,7,16,0.85) 85%);
    pointer-events: none;
  }
  .authority-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .authority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .auth-card {
    background: linear-gradient(135deg, rgba(13,21,32,0.94) 0%, rgba(18,30,45,0.90) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30,51,82,0.5);
    border-radius: 8px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow:
      0 4px 16px rgba(0,0,0,0.35),
      inset 0 1px 0 rgba(255,255,255,0.02);
  }
  .auth-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.3;
  }
  .auth-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 8px;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,170,255,0.008) 2px,
      rgba(0,170,255,0.008) 4px
    );
    pointer-events: none;
  }
  .auth-card:hover {
    border-color: rgba(0,214,114,0.35);
    box-shadow:
      0 8px 24px rgba(0,0,0,0.45),
      0 0 20px rgba(0,214,114,0.06),
      inset 0 1px 0 rgba(255,255,255,0.04);
    transform: translateY(-2px);
  }
  .auth-card:hover::before { opacity: 0.5; }
  .auth-card .auth-label {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 16px;
    display: inline-block;
    padding: 4px 10px; border-radius: 3px;
    border: 1px solid;
  }
  .auth-card .auth-label.green {
    color: var(--green);
    background: rgba(0,214,114,0.06);
    border-color: rgba(0,214,114,0.2);
    box-shadow: 0 0 8px rgba(0,214,114,0.08);
  }
  .auth-card .auth-label.blue {
    color: var(--blue);
    background: rgba(0,170,255,0.06);
    border-color: rgba(0,170,255,0.2);
    box-shadow: 0 0 8px rgba(0,170,255,0.08);
  }
  .auth-card .auth-label.purple {
    color: var(--purple);
    background: rgba(168,85,247,0.06);
    border-color: rgba(168,85,247,0.2);
    box-shadow: 0 0 8px rgba(168,85,247,0.08);
  }
  .auth-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; padding: 6px 0;
    border-bottom: 1px solid rgba(30,51,82,0.25);
  }
  .auth-row:last-of-type { border-bottom: none; }
  .auth-row span:first-child { color: rgba(200,216,232,0.7); }
  .auth-row .tag-reg {
    color: var(--green); font-size: 9px; font-weight: 800;
    letter-spacing: 0.8px;
    padding: 2px 6px; border-radius: 2px;
    background: rgba(0,214,114,0.08);
    border: 1px solid rgba(0,214,114,0.2);
  }
  .auth-card p {
    color: rgba(200,216,232,0.75); font-size: 12px; line-height: 1.75;
  }

  /* ── FOOTER ── */
  /* ── FOOTER ── */
  .site-footer {
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg) 0%, rgba(4,7,16,1) 100%);
  }
  .site-footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 64px 40px 0;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 48px;
  }
  .footer-brand .logo {
    font-size: 15px; font-weight: 900; margin-bottom: 14px; color: var(--green);
    letter-spacing: 3px; font-family: var(--font-mono);
  }
  .footer-brand p {
    color: var(--text-dim); font-size: 12px; line-height: 1.7; max-width: 280px;
  }
  .footer-col h4 {
    font-size: 9px; font-weight: 900; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--text-dim); margin-bottom: 18px;
    font-family: var(--font-mono); opacity: 0.6;
  }
  .footer-col a {
    display: block; color: var(--text-dim); font-size: 12px; margin-bottom: 10px;
    transition: color 0.2s; line-height: 1.5;
  }
  .footer-col a:hover { color: var(--green); text-decoration: none; }
  .footer-divider {
    border: none; border-top: 1px solid rgba(30,51,82,0.4);
    margin: 0;
  }
  .footer-bottom {
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { color: var(--text-dim); font-size: 10px; line-height: 1.6; opacity: 0.7; }
  .footer-bottom a { color: var(--text-dim); transition: color 0.2s; }
  .footer-bottom a:hover { color: var(--green); text-decoration: none; }
  .footer-bottom strong { color: var(--text); font-weight: 700; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .signal-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .topnav { padding: 0 16px; }
    .hamburger { display: block; }
    .stats-strip { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .triple-section { grid-template-columns: 1fr; }
    .signal-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .dev-grid { grid-template-columns: 1fr; }
    .authority-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lb-table .col-vol, .lb-table .col-wr { display: none; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 13px; }
    .section-header h2 { font-size: 24px; }
    .feat-card, .auth-card { padding: 20px; }
  }
  /* ── HERO H2 ── */
  .hero h2.hero-subtitle {
    font-size: clamp(16px, 2.1vw, 19px); font-weight: 500;
    color: var(--text-bright); max-width: 680px; line-height: 1.7;
    margin-bottom: 28px; letter-spacing: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.75), 0 0 14px rgba(6,10,15,0.55);
  }
  .hero h2.hero-subtitle strong { color: var(--green); font-weight: 700; }

  /* ── EDUCATIONAL SECTION (with bg image) ── */
  .edu-section-wrap {
    position: relative; overflow: hidden;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: #030608;
  }
  .edu-section-wrap::before {
    content: ''; position: absolute; inset: 0;
    background: url('images/why-track-congress.webp') center center / cover no-repeat;
    opacity: 0.35; pointer-events: none; filter: brightness(0.7) contrast(1.1);
  }
  .edu-section-wrap::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 30%, rgba(0,214,114,0.04) 0%, transparent 50%),
      linear-gradient(to bottom, rgba(3,6,8,0.8) 0%, rgba(3,6,8,0.4) 30%, rgba(3,6,8,0.4) 70%, rgba(3,6,8,0.8) 100%);
    pointer-events: none;
  }
  .edu-section-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  }
  .edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .edu-card {
    background: linear-gradient(135deg, rgba(13,21,32,0.92) 0%, rgba(18,30,45,0.88) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30,51,82,0.6);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03);
  }
  .edu-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.3;
  }
  .edu-card:hover {
    border-color: rgba(0,214,114,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(0,214,114,0.08);
    transform: translateY(-2px);
  }
  .edu-card h3 {
    font-size: 16px; font-weight: 800; color: var(--text-bright);
    margin-bottom: 12px; line-height: 1.3;
  }
  .edu-card p { font-size: 12px; color: rgba(200,216,232,0.75); line-height: 1.75; margin-bottom: 8px; }
  .edu-card p:last-child { margin-bottom: 0; }
  .edu-card .edu-link {
    display: inline-block; margin-top: 8px; font-size: 11px;
    font-weight: 700; color: var(--green); letter-spacing: 0.5px;
  }

  /* ── PIPELINE IMAGE ── */
  .pipeline-img-wrap {
    margin-top: 40px; border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(30,51,82,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    max-width: 720px; margin-left: auto; margin-right: auto;
  }
  .pipeline-img-wrap img {
    width: 100%; height: auto; display: block;
    filter: brightness(0.95) contrast(1.05);
  }

  /* ── FAQ HEADER IMAGE ── */
  .faq-hero-img {
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(30,51,82,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    flex-shrink: 0;
    position: sticky; top: 80px;
    aspect-ratio: 3/4;
    max-height: 90vh;
  }
  .faq-hero-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(0.9) contrast(1.05);
  }

  /* ── OUR EDGE / MISSION ── */
  .edge-wrap {
    position: relative; overflow: hidden;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }
  .edge-wrap::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 70% 50% at 20% 0%, rgba(0,214,114,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0,170,255,0.05) 0%, transparent 70%);
  }
  .edge-wrap::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(0,214,114,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,214,114,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 80%);
  }
  .edge-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; padding: 100px 28px;
  }

  /* Hero block */
  .edge-hero {
    text-align: center; margin-bottom: 72px;
  }
  .edge-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
    color: var(--green); margin-bottom: 22px;
    font-family: var(--font-mono);
  }
  .edge-eyebrow::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--green); box-shadow: 0 0 12px var(--green);
    animation: blink 2s ease-in-out infinite;
  }
  .edge-hero h2 {
    font-size: clamp(34px, 4.5vw, 54px); font-weight: 900; line-height: 1.06;
    letter-spacing: -1.5px; color: var(--text-bright); margin-bottom: 18px;
  }
  .edge-hero h2 .hl {
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .edge-hero-sub {
    font-size: 16px; color: var(--text-dim); line-height: 1.8;
    max-width: 640px; margin: 0 auto;
  }
  .edge-hero-sub strong { color: var(--text); }

  /* Vision pillars — 3 big statement blocks */
  .edge-pillars {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: var(--border); border-radius: 14px; overflow: hidden;
    margin-bottom: 64px;
  }
  .edge-pillar {
    background: var(--surface); padding: 40px 32px; position: relative;
    transition: background 0.3s;
  }
  .edge-pillar:hover { background: var(--surface2); }
  .edge-pillar::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: transparent; transition: background 0.3s;
  }
  .edge-pillar:nth-child(1):hover::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }
  .edge-pillar:nth-child(2):hover::before { background: linear-gradient(90deg, transparent, var(--blue), transparent); }
  .edge-pillar:nth-child(3):hover::before { background: linear-gradient(90deg, transparent, var(--purple), transparent); }
  .ep-num {
    font-family: var(--font-mono); font-size: 48px; font-weight: 900;
    line-height: 1; margin-bottom: 8px; opacity: 0.15; color: var(--text-bright);
  }
  .ep-kpi {
    font-family: var(--font-mono); font-size: 32px; font-weight: 900;
    line-height: 1; margin-bottom: 6px;
  }
  .ep-kpi.green { color: var(--green); }
  .ep-kpi.blue { color: var(--blue); }
  .ep-kpi.purple { color: var(--purple); }
  .ep-label {
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text-dim); margin-bottom: 14px;
  }
  .ep-title {
    font-size: 19px; font-weight: 800; color: var(--text-bright);
    line-height: 1.25; margin-bottom: 12px;
  }
  .ep-body {
    font-size: 13px; color: var(--text-dim); line-height: 1.75;
  }

  /* Comparison table */
  .edge-compare-block { margin-bottom: 64px; }
  .edge-compare-label {
    text-align: center; margin-bottom: 24px;
    font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
    color: var(--text-dim); font-family: var(--font-mono);
    display: flex; align-items: center; gap: 16px; justify-content: center;
  }
  .edge-compare-label::before, .edge-compare-label::after {
    content: ''; width: 60px; height: 1px; background: var(--border);
  }
  .edge-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border); border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 4px 40px rgba(0,0,0,0.3);
  }
  .edge-table {
    width: 100%; border-collapse: collapse; font-size: 13px;
  }
  .edge-table thead { background: var(--surface2); }
  .edge-table th {
    padding: 16px 18px; text-align: center; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim);
    border-bottom: 2px solid var(--border);
  }
  .edge-table th:first-child { text-align: left; }
  .edge-table th.edge-us {
    color: var(--green); background: rgba(0,214,114,0.06);
    border-bottom: 2px solid var(--green);
    position: relative;
  }
  .edge-table td {
    padding: 14px 18px; border-bottom: 1px solid rgba(30,51,82,0.35);
    text-align: center; vertical-align: middle; color: var(--text-dim);
    font-size: 13px;
  }
  .edge-table tr:last-child td { border-bottom: none; }
  .edge-table tr:hover td { background: rgba(255,255,255,0.02); }
  .edge-table td.edge-feat {
    text-align: left; font-weight: 700; color: var(--text); font-size: 13px;
    padding-left: 22px;
  }
  .edge-table td.edge-us {
    color: var(--green); font-weight: 700; background: rgba(0,214,114,0.03);
  }
  .edge-table td.edge-them { color: var(--text-dim); font-size: 14px; }
  .edge-table .check-yes { color: var(--green); }
  .edge-table .check-no { color: rgba(255,51,102,0.5); }
  .edge-note {
    display: block; font-size: 10px; color: rgba(0,214,114,0.6); font-weight: 500;
    margin-top: 3px; font-family: var(--font-mono);
  }

  /* Engine cards — the 3 ML blocks */
  .edge-engines-label {
    text-align: center; margin-bottom: 28px;
    font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
    color: var(--text-dim); font-family: var(--font-mono);
    display: flex; align-items: center; gap: 16px; justify-content: center;
  }
  .edge-engines-label::before, .edge-engines-label::after {
    content: ''; width: 60px; height: 1px; background: var(--border);
  }
  .edge-engines {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: var(--border); border-radius: 14px; overflow: hidden;
  }
  .edge-engine {
    background: var(--surface); padding: 36px 28px; position: relative;
    transition: background 0.3s;
  }
  .edge-engine:hover { background: var(--surface2); }
  .edge-engine::after {
    content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 1px;
    background: transparent; transition: background 0.4s;
  }
  .edge-engine:nth-child(1):hover::after { background: linear-gradient(90deg, transparent, var(--green), transparent); }
  .edge-engine:nth-child(2):hover::after { background: linear-gradient(90deg, transparent, var(--blue), transparent); }
  .edge-engine:nth-child(3):hover::after { background: linear-gradient(90deg, transparent, var(--purple), transparent); }
  .ee-icon {
    width: 52px; height: 52px; border-radius: 14px; display: flex;
    align-items: center; justify-content: center; margin-bottom: 22px;
    border: 1px solid; position: relative;
  }
  .ee-icon::after {
    content: ''; position: absolute; inset: -4px; border-radius: 18px;
    border: 1px solid transparent; transition: border-color 0.3s;
  }
  .edge-engine:nth-child(1) .ee-icon { background: rgba(0,214,114,0.06); border-color: rgba(0,214,114,0.2); }
  .edge-engine:nth-child(1):hover .ee-icon::after { border-color: rgba(0,214,114,0.15); }
  .edge-engine:nth-child(2) .ee-icon { background: rgba(0,170,255,0.06); border-color: rgba(0,170,255,0.2); }
  .edge-engine:nth-child(2):hover .ee-icon::after { border-color: rgba(0,170,255,0.15); }
  .edge-engine:nth-child(3) .ee-icon { background: rgba(168,85,247,0.06); border-color: rgba(168,85,247,0.2); }
  .edge-engine:nth-child(3):hover .ee-icon::after { border-color: rgba(168,85,247,0.15); }
  .ee-tag {
    display: inline-block; font-size: 9px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; padding: 3px 10px; border-radius: 3px; margin-bottom: 14px;
    font-family: var(--font-mono);
  }
  .edge-engine:nth-child(1) .ee-tag { background: rgba(0,214,114,0.08); color: var(--green); border: 1px solid rgba(0,214,114,0.2); }
  .edge-engine:nth-child(2) .ee-tag { background: rgba(0,170,255,0.08); color: var(--blue); border: 1px solid rgba(0,170,255,0.2); }
  .edge-engine:nth-child(3) .ee-tag { background: rgba(168,85,247,0.08); color: var(--purple); border: 1px solid rgba(168,85,247,0.2); }
  .ee-title {
    font-size: 18px; font-weight: 800; color: var(--text-bright);
    line-height: 1.25; margin-bottom: 12px;
  }
  .ee-body {
    font-size: 13px; color: var(--text-dim); line-height: 1.75;
  }
  .ee-stat {
    margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
    display: flex; align-items: baseline; gap: 8px;
  }
  .ee-stat-num {
    font-family: var(--font-mono); font-size: 22px; font-weight: 900;
  }
  .edge-engine:nth-child(1) .ee-stat-num { color: var(--green); }
  .edge-engine:nth-child(2) .ee-stat-num { color: var(--blue); }
  .edge-engine:nth-child(3) .ee-stat-num { color: var(--purple); }
  .ee-stat-label {
    font-size: 11px; color: var(--text-dim); text-transform: uppercase;
    letter-spacing: 0.5px; font-weight: 600;
  }

  /* ── COPY-TRADE SHOWCASE ── */
  .ct-block { margin-bottom: 72px; }
  .ct-label {
    text-align: center; margin-bottom: 12px;
    font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
    color: var(--text-dim); font-family: var(--font-mono);
    display: flex; align-items: center; gap: 16px; justify-content: center;
  }
  .ct-label::before, .ct-label::after {
    content: ''; width: 60px; height: 1px; background: var(--border);
  }
  .ct-headline {
    text-align: center; font-size: clamp(24px, 3vw, 36px); font-weight: 900;
    color: var(--text-bright); letter-spacing: -1px; margin-bottom: 6px; line-height: 1.15;
  }
  .ct-headline .money { color: var(--green); }
  .ct-sub {
    text-align: center; font-size: 14px; color: var(--text-dim); margin-bottom: 40px;
    line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto;
  }

  /* Politician cards */
  .ct-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: var(--border); border-radius: 14px; overflow: hidden;
    margin-bottom: 24px;
  }
  .ct-card {
    background: var(--surface); padding: 0; position: relative; overflow: hidden;
    transition: background 0.3s;
  }
  .ct-card:hover { background: var(--surface2); }
  .ct-card-top {
    padding: 28px 24px 20px; position: relative;
  }
  .ct-card-rank {
    position: absolute; top: 16px; right: 18px;
    font-family: var(--font-mono); font-size: 9px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim);
    opacity: 0.5;
  }
  .ct-avatar {
    width: 56px; height: 56px; border-radius: 50%; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900; color: var(--text-bright);
    position: relative; overflow: hidden;
  }
  .ct-avatar.dem { background: rgba(96,165,250,0.12); border: 2px solid rgba(96,165,250,0.3); }
  .ct-avatar.rep { background: rgba(248,113,113,0.12); border: 2px solid rgba(248,113,113,0.3); }
  .ct-avatar img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    border-radius: 50%;
  }
  .ct-name {
    font-size: 17px; font-weight: 800; color: var(--text-bright); margin-bottom: 2px;
  }
  .ct-meta {
    font-size: 11px; color: var(--text-dim); display: flex; align-items: center; gap: 8px;
    margin-bottom: 16px;
  }
  .ct-party {
    font-family: var(--font-mono); font-size: 9px; font-weight: 800;
    padding: 2px 6px; border-radius: 3px; letter-spacing: 0.5px;
  }
  .ct-party.D { background: rgba(96,165,250,0.12); color: var(--d-blue); border: 1px solid rgba(96,165,250,0.25); }
  .ct-party.R { background: rgba(248,113,113,0.12); color: var(--r-red); border: 1px solid rgba(248,113,113,0.25); }

  /* Stats row inside card */
  .ct-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border);
  }
  .ct-stat {
    background: var(--surface); padding: 14px 16px;
    text-align: center;
  }
  .ct-card:hover .ct-stat { background: var(--surface2); }
  .ct-stat-val {
    font-family: var(--font-mono); font-size: 18px; font-weight: 900; line-height: 1;
    margin-bottom: 3px;
  }
  .ct-stat-val.green { color: var(--green); }
  .ct-stat-val.amber { color: var(--amber); }
  .ct-stat-val.blue { color: var(--blue); }
  .ct-stat-lbl {
    font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-dim);
  }

  /* The big "return" row spanning full width */
  .ct-return-row {
    padding: 16px 24px; display: flex; align-items: center; justify-content: space-between;
    gap: 12px; border-top: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(0,214,114,0.03), transparent);
  }
  .ct-return-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-dim);
  }
  .ct-return-val {
    font-family: var(--font-mono); font-size: 24px; font-weight: 900;
    color: var(--green); line-height: 1;
  }
  .ct-return-detail {
    font-size: 10px; color: var(--text-dim); font-family: var(--font-mono);
    text-align: right;
  }

  /* Top stocks list */
  .ct-stocks {
    display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px;
  }
  .ct-stock-chip {
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    padding: 3px 8px; border-radius: 3px; letter-spacing: 0.5px;
    background: rgba(0,214,114,0.06); color: var(--green);
    border: 1px solid rgba(0,214,114,0.15);
  }

  /* Salary vs trading bar */
  .ct-salary-bar {
    padding: 14px 24px; background: rgba(255,51,102,0.04);
    border-top: 1px solid rgba(255,51,102,0.12);
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  }
  .ct-salary-tag {
    font-family: var(--font-mono); font-size: 9px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--r-red);
    background: rgba(255,51,102,0.08); border: 1px solid rgba(255,51,102,0.2);
    padding: 3px 8px; border-radius: 3px; white-space: nowrap;
  }
  .ct-salary-text { font-size: 11px; color: var(--text-dim); line-height: 1.4; }
  .ct-salary-text strong { color: var(--text); }

  /* S&P 500 comparison row */
  .ct-sp500 {
    padding: 12px 24px; display: flex; align-items: center; gap: 10px;
    border-top: 1px solid var(--border); background: rgba(255,255,255,0.01);
  }
  .ct-sp500-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-dim); white-space: nowrap;
  }
  .ct-sp500-bar-wrap {
    flex: 1; height: 6px; background: var(--surface2);
    border-radius: 3px; overflow: hidden; position: relative;
  }
  .ct-sp500-bar {
    height: 100%; border-radius: 3px; position: absolute; left: 0; top: 0;
  }
  .ct-sp500-bar.sp { background: rgba(200,216,232,0.2); }
  .ct-sp500-bar.pol { background: var(--green); }
  .ct-sp500-val {
    font-family: var(--font-mono); font-size: 12px; font-weight: 800;
    white-space: nowrap;
  }
  .ct-sp500-val.dim { color: var(--text-dim); }
  .ct-sp500-val.green { color: var(--green); }
  .ct-beat {
    font-family: var(--font-mono); font-size: 10px; font-weight: 800;
    color: var(--green); background: rgba(0,214,114,0.08);
    border: 1px solid rgba(0,214,114,0.2); border-radius: 3px;
    padding: 2px 6px; white-space: nowrap;
  }

  /* Amplifier callout */
  .ct-amplifier {
    background: linear-gradient(135deg, rgba(0,214,114,0.04), rgba(0,170,255,0.03));
    border: 1px solid rgba(0,214,114,0.2); border-radius: 14px;
    padding: 36px 32px; display: grid; grid-template-columns: auto 1fr; gap: 28px;
    align-items: center;
  }
  .ct-amp-visual {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .ct-amp-arrow {
    font-size: 32px; color: var(--green); line-height: 1;
    animation: pulseUp 2s ease-in-out infinite;
  }
  @keyframes pulseUp {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-6px); opacity: 0.7; }
  }
  .ct-amp-multiplier {
    font-family: var(--font-mono); font-size: 42px; font-weight: 900;
    color: var(--green); line-height: 1;
  }
  .ct-amp-mul-label {
    font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-dim); font-family: var(--font-mono);
  }
  .ct-amp-content h3 {
    font-size: 22px; font-weight: 900; color: var(--text-bright);
    margin-bottom: 10px; line-height: 1.2;
  }
  .ct-amp-content h3 .hl {
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .ct-amp-content p {
    font-size: 14px; color: var(--text-dim); line-height: 1.75; margin-bottom: 18px;
  }
  .ct-amp-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .ct-amp-feat {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px; color: var(--text); line-height: 1.5;
  }
  .ct-amp-feat-icon {
    color: var(--green); font-size: 14px; flex-shrink: 0; margin-top: 1px;
  }

  .ct-disclaimer {
    text-align: center; font-size: 10px; color: var(--text-dim); margin-top: 20px;
    opacity: 0.7; font-style: italic;
  }

  @media (max-width: 900px) {
    .ct-grid { grid-template-columns: 1fr; }
    .ct-amplifier { grid-template-columns: 1fr; text-align: center; }
    .ct-amp-features { grid-template-columns: 1fr; }
    .edge-pillars { grid-template-columns: 1fr; }
    .edge-engines { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    .edge-inner { padding: 60px 16px; }
    .edge-hero h2 { font-size: 28px; letter-spacing: -0.5px; }
    .edge-table { font-size: 11px; }
    .edge-table th, .edge-table td { padding: 10px 10px; }
    .ep-kpi { font-size: 26px; }
    .edge-pillar { padding: 28px 20px; }
    .edge-engine { padding: 28px 20px; }
  }

  /* ── FAQ ACCORDION ── */
  .faq-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
  .faq-layout {
    display: flex; justify-content: center; max-width: 720px; margin: 0 auto;
  }
  .faq-list-landing { display: flex; flex-direction: column; gap: 0; }
  .faq-item-landing {
    border-bottom: 1px solid var(--border);
  }
  .faq-item-landing:first-child {
    border-top: 1px solid var(--border);
  }
  .faq-q-landing {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; cursor: pointer; font-size: 14px; font-weight: 700;
    color: var(--text-bright); transition: color 0.2s; user-select: none;
  }
  .faq-q-landing:hover { color: var(--green); }
  .faq-q-landing::after {
    content: '+'; font-size: 20px; font-weight: 400; color: var(--text-dim);
    transition: transform 0.3s;
  }
  .faq-item-landing.open .faq-q-landing::after {
    content: '\2212'; transform: rotate(0deg);
  }
  .faq-a-landing {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 13px; color: var(--text-dim); line-height: 1.7;
  }
  .faq-item-landing.open .faq-a-landing {
    max-height: 300px; padding-bottom: 18px;
  }

  @media (max-width: 768px) {
    .edu-grid { grid-template-columns: 1fr; }
    .faq-layout { max-width: 100%; }
  }
  @media (max-width: 480px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .site-footer-inner { padding: 48px 20px 0; }
    .hero-cta { flex-direction: column; align-items: center; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

/* ── PROOF / EVIDENCE LOG ── */
.proof-section { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.proof-masthead { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(0,214,114,0.12); }
.proof-headline-big { font-size: clamp(80px,10vw,120px); font-weight: 900; color: var(--text-bright); line-height: 0.88; letter-spacing: -5px; font-family: var(--font-mono); }
.proof-headline-big .phb-green { color: var(--green); display: block; }
.proof-hl-label { font-size: 12px; font-weight: 700; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; margin-top: 14px; font-family: var(--font-mono); }
.proof-headline-sub { margin-top: 12px; font-size: 14px; color: var(--text-dim); line-height: 1.7; max-width: 420px; }
.proof-headline-sub strong { color: var(--text-bright); font-weight: 700; }
.proof-aside { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(0,214,114,0.15); border-radius: 2px; overflow: hidden; background: rgba(0,214,114,0.02); }
.proof-aside-stat { padding: 20px 24px; border-bottom: 1px solid rgba(0,214,114,0.1); }
.proof-aside-stat:last-of-type { border-bottom: none; }
.proof-aside-stat .pas-n { font-size: 28px; font-weight: 900; font-family: var(--font-mono); letter-spacing: -1px; }
.proof-aside-stat .pas-l { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 700; margin-top: 3px; }
.proof-aside-note { padding: 16px 24px; font-size: 11px; color: var(--text-dim); line-height: 1.7; background: rgba(0,214,114,0.04); border-top: 1px solid rgba(0,214,114,0.12); }
.proof-aside-note strong { color: var(--green); }

.proof-evidence-cols { display: grid; grid-template-columns: 72px 110px 1.4fr 1fr 76px; gap: 20px; padding: 10px 0 12px; font-size: 8px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; border-bottom: 1px solid rgba(30,51,82,0.5); font-family: var(--font-mono); opacity: 0.7; }
.proof-row { display: grid; grid-template-columns: 72px 110px 1.4fr 1fr 76px; gap: 20px; align-items: start; padding: 22px 0; border-bottom: 1px solid rgba(30,51,82,0.3); }
.proof-row:last-child { border-bottom: none; }
.proof-r-ticker { font-size: 18px; font-weight: 900; color: var(--text-bright); font-family: var(--font-mono); }
.proof-r-ticker .prt-co { font-size: 9px; color: var(--text-dim); font-family: var(--font-sans); font-weight: 500; margin-top: 3px; letter-spacing: 0; }
.proof-r-ticker-sym { font-size: 20px; font-weight: 900; font-family: var(--font-mono); color: var(--text-bright); letter-spacing: -0.5px; line-height: 1; }
.proof-r-return { font-size: 28px; font-weight: 900; color: var(--green); font-family: var(--font-mono); letter-spacing: -1.5px; line-height: 1; }
.proof-r-return-sub { font-size: 9px; color: var(--text-dim); font-family: var(--font-mono); font-weight: 600; margin-top: 5px; letter-spacing: 0.5px; }
.proof-intel-callout { background: rgba(0,214,114,0.025); border: 1px solid rgba(0,214,114,0.1); border-radius: 2px; padding: 10px 12px; }
.proof-intel-narrative { font-size: 10px; color: var(--text); line-height: 1.65; font-weight: 500; margin-bottom: 8px; }
.proof-intel-narrative strong { color: var(--green); }
.proof-intel-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.proof-gap-viz { display: flex; flex-direction: column; gap: 8px; }
.proof-gap-dates { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); line-height: 1.7; }
.proof-gap-bar-outer { height: 2px; background: rgba(30,51,82,0.5); border-radius: 1px; }
.proof-gap-bar-inner { height: 100%; background: linear-gradient(90deg, var(--green), var(--amber)); border-radius: 1px; }
.proof-gap-edge { color: var(--green); font-weight: 900; font-family: var(--font-mono); font-size: 13px; letter-spacing: -0.3px; }
.formula-example-wrap { background: rgba(13,21,32,0.6); border-radius: 3px; padding: 20px 22px; margin-top: 24px; border-top: 1px solid rgba(30,51,82,0.4); border-bottom: none; border-left: none; border-right: none; }
.formula-example-title { font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: var(--text-dim); margin-bottom: 16px; font-family: var(--font-mono); opacity: 0.7; }
.formula-ex-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.formula-ex-ticker { font-size: 20px; font-weight: 900; font-family: var(--font-mono); color: var(--text-bright); letter-spacing: -0.5px; }
.formula-ex-tier { font-size: 10px; font-weight: 900; font-family: var(--font-mono); color: var(--blue); padding: 3px 8px; border: 1px solid rgba(0,170,255,0.18); border-radius: 2px; background: rgba(0,170,255,0.06); }
.formula-ex-row { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: baseline; font-size: 10px; padding: 5px 0; border-bottom: 1px solid rgba(30,51,82,0.2); }
.formula-ex-row:last-of-type { border-bottom: none; }
.formula-ex-wt { font-family: var(--font-mono); font-weight: 700; color: var(--text-dim); font-size: 9px; text-align: right; }
.formula-ex-desc { color: var(--text-dim); line-height: 1.5; }
.formula-ex-desc strong { color: var(--text); font-weight: 700; }
.formula-ex-pts { font-family: var(--font-mono); font-weight: 900; color: var(--green); text-align: right; font-size: 11px; letter-spacing: -0.3px; }
.formula-ex-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(30,51,82,0.4); }
.formula-ex-total-label { font-size: 8px; color: var(--text-dim); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.5px; }
.formula-ex-total-val { font-size: 18px; font-weight: 900; font-family: var(--font-mono); color: var(--text-bright); }
.formula-ex-mult { font-size: 10px; color: var(--amber); font-weight: 900; font-family: var(--font-mono); letter-spacing: -0.3px; }
.intel-feed-section { padding: 80px 0; }
.intel-feed-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.intel-feed-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.intel-card { background: linear-gradient(145deg, rgba(13,21,32,0.94) 0%, rgba(17,28,43,0.9) 100%); border: 1px solid rgba(30,51,82,0.6); border-radius: 8px; padding: 20px; position: relative; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; box-shadow: 0 4px 16px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.02); }
.intel-card:hover { border-color: rgba(0,214,114,0.3); box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 20px rgba(0,214,114,0.06); transform: translateY(-2px); }
.intel-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.intel-card.t-S::before { background: var(--green); }
.intel-card.t-Ap::before { background: var(--blue); }
.intel-card.t-A::before { background: #c084fc; }
.intel-card.t-B::before { background: var(--amber); }
.intel-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.intel-card-ticker { font-size: 24px; font-weight: 900; font-family: var(--font-mono); color: var(--text-bright); line-height: 1; }
.intel-card-co { font-size: 10px; color: var(--text-dim); margin-top: 4px; }
.intel-tier-badge { font-size: 11px; font-weight: 900; font-family: var(--font-mono); padding: 4px 9px; border-radius: 2px; }
.intel-tier-badge.t-S { background: rgba(0,214,114,0.1); color: var(--green); border: 1px solid rgba(0,214,114,0.2); }
.intel-tier-badge.t-Ap { background: rgba(0,170,255,0.1); color: var(--blue); border: 1px solid rgba(0,170,255,0.2); }
.intel-tier-badge.t-A { background: rgba(168,85,247,0.1); color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }
.intel-card-who { font-size: 10px; color: var(--text-dim); margin-top: 6px; text-align: right; }
.intel-card-who strong { color: var(--text-bright); }
.intel-reasoning-box { background: rgba(13,21,32,0.6); border-radius: 2px; padding: 11px 13px; margin: 10px 0; }
.intel-reasoning-lbl { font-size: 7.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); margin-bottom: 5px; font-family: var(--font-mono); }
.intel-reasoning-txt { font-size: 11px; color: var(--text); line-height: 1.65; }
.intel-reasoning-txt strong { color: var(--text-bright); }
.intel-layers-row { display: flex; flex-wrap: wrap; gap: 4px; margin: 10px 0; }
.ilc { font-size: 7.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; padding: 2px 6px; border-radius: 2px; font-family: var(--font-mono); }
.ilc-g { background: rgba(0,214,114,0.08); color: var(--green); border: 1px solid rgba(0,214,114,0.18); }
.ilc-b { background: rgba(0,170,255,0.08); color: var(--blue); border: 1px solid rgba(0,170,255,0.18); }
.ilc-p { background: rgba(168,85,247,0.08); color: #c084fc; border: 1px solid rgba(168,85,247,0.18); }
.ilc-y { background: rgba(251,191,36,0.08); color: var(--amber); border: 1px solid rgba(251,191,36,0.18); }
.ilc-o { background: rgba(255,140,0,0.08); color: var(--orange); border: 1px solid rgba(255,140,0,0.18); }
.intel-card-footer { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 12px; border-top: 1px solid rgba(30,51,82,0.5); margin-top: 10px; }
.intel-window-label { font-size: 7.5px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 700; font-family: var(--font-mono); display: block; margin-bottom: 3px; }
.intel-window-val { font-size: 15px; font-weight: 900; font-family: var(--font-mono); color: var(--amber); text-shadow: 0 0 8px rgba(251,191,36,0.2); }
.intel-score-big { font-size: 24px; font-weight: 900; font-family: var(--font-mono); color: var(--text-bright); text-align: right; line-height: 1; }
.intel-score-lbl { font-size: 7.5px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 700; font-family: var(--font-mono); display: block; margin-bottom: 3px; }
.intel-feed-note { margin-top: 24px; padding: 14px 18px; background: rgba(30,51,82,0.2); border-radius: 2px; border-left: 2px solid rgba(0,214,114,0.3); font-size: 11px; color: var(--text-dim); line-height: 1.7; }
.intel-feed-note strong { color: var(--text-bright); }
@media (max-width: 900px) { .intel-feed-grid { grid-template-columns: 1fr; } }
/* ── INTELLIGENCE SYSTEM ── */
.is-section { padding: 88px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.is-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; gap: 20px; }
.is-section-top { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; margin-bottom: 16px; }

/* KPI strip — top of section */
.is-kpi-strip { display: flex; align-items: stretch; border: 1px solid rgba(30,51,82,0.6); border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, rgba(13,21,32,0.94) 0%, rgba(17,28,43,0.9) 100%); box-shadow: 0 4px 16px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.02); }
.is-kpi { padding: 14px 22px; text-align: right; border-right: 1px solid rgba(30,51,82,0.45); min-width: 80px; }
.is-kpi:last-child { border-right: none; }
.is-kpi-n { font-size: 26px; font-weight: 900; font-family: var(--font-mono); color: var(--text-bright); letter-spacing: -1.2px; line-height: 1; text-shadow: 0 0 14px rgba(0,214,114,0.2); }
.is-kpi-l { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 700; margin-top: 6px; font-family: var(--font-mono); white-space: nowrap; }

/* Panel shell — elevated card style matching edu-cards */
.is-panel { background: linear-gradient(160deg, rgba(13,21,32,0.96) 0%, rgba(15,25,40,0.92) 100%); border: 1px solid rgba(30,51,82,0.65); border-radius: 10px; overflow: hidden; position: relative; box-shadow: 0 4px 28px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.025); transition: box-shadow 0.3s ease; }
.is-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 5%, var(--panel-line, rgba(30,51,82,0.8)) 25%, var(--panel-line, rgba(30,51,82,0.8)) 75%, transparent 95%); opacity: 0.65; z-index: 1; }

/* Panel header — editorial style */
.is-panel-hd { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 26px 32px; background: rgba(13,21,32,0.25); border-bottom: 1px solid rgba(30,51,82,0.45); }
.is-panel-hd-l { display: flex; align-items: flex-start; gap: 18px; }
.is-panel-index { font-size: 10px; font-weight: 900; font-family: var(--font-mono); color: var(--text-dim); letter-spacing: 3px; text-transform: uppercase; margin-top: 8px; flex-shrink: 0; opacity: 0.45; }
.is-panel-meta { display: flex; flex-direction: column; gap: 5px; }
.is-panel-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--text-dim); font-family: var(--font-mono); opacity: 0.6; }
.is-panel-title { font-size: 28px; font-weight: 900; color: var(--text-bright); letter-spacing: -1.2px; line-height: 1.1; }
.is-panel-hd-r { font-size: 12px; color: var(--text-dim); text-align: right; max-width: 320px; line-height: 1.7; opacity: 0.85; }

/* Panel header stats (right side) */
.is-panel-hd-stats { display: flex; gap: 0; border: 1px solid rgba(30,51,82,0.45); border-radius: 6px; overflow: hidden; background: rgba(13,21,32,0.4); }
.is-panel-stat { padding: 12px 22px; text-align: right; border-right: 1px solid rgba(30,51,82,0.4); }
.is-panel-stat:last-child { border-right: none; }
.is-panel-stat-n { font-size: 28px; font-weight: 900; font-family: var(--font-mono); line-height: 1; letter-spacing: -1.2px; text-shadow: 0 0 14px rgba(0,214,114,0.2); }
.is-panel-stat-l { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 700; margin-top: 5px; font-family: var(--font-mono); white-space: nowrap; }

/* Panel body */
.is-panel-body { padding: 32px; }
.is-panel-body-flush { padding: 0; }

/* Formula layer rows — refined */
.formula-layer-row { display: grid; grid-template-columns: 52px 1fr 180px; align-items: center; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(30,51,82,0.3); }
.formula-layer-row:last-child { border-bottom: none; }
.formula-layer-pct { font-size: 22px; font-weight: 900; font-family: var(--font-mono); text-align: right; }
.formula-layer-bar-wrap { height: 3px; background: rgba(30,51,82,0.4); border-radius: 1px; overflow: hidden; }
.formula-layer-bar-fill { height: 100%; border-radius: 1px; width: 0; transition: width 1.4s cubic-bezier(0.16,1,0.3,1); }
.formula-layer-row.animated .formula-layer-bar-fill { width: var(--bar-pct); }
.formula-convergence { padding: 18px 20px; background: rgba(13,21,32,0.6); border: 1px solid rgba(30,51,82,0.5); border-radius: 3px; }
.formula-conv-val { font-weight: 900; color: var(--amber); font-family: var(--font-mono); font-size: 16px; }

/* Proof rows — return is the hero */
.proof-r-return { font-size: 32px; font-weight: 900; color: var(--green); font-family: var(--font-mono); letter-spacing: -1.5px; line-height: 1; }
.proof-intel-callout { background: rgba(13,21,32,0.5); border-radius: 3px; padding: 12px 14px; border: none; border-left: 2px solid rgba(0,214,114,0.2); }
.proof-intel-narrative { font-size: 10px; line-height: 1.7; color: var(--text); margin-bottom: 9px; }
.proof-intel-narrative strong { color: var(--text-bright); font-weight: 700; }

/* Intel cards — tier badge is the hero */
.intel-card { border-radius: 10px; border: 1px solid rgba(30,51,82,0.6); padding: 0; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; box-shadow: 0 4px 16px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.02); background: linear-gradient(145deg, rgba(13,21,32,0.94) 0%, rgba(17,28,43,0.9) 100%); }
.intel-card:hover { border-color: rgba(0,214,114,0.3); box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 20px rgba(0,214,114,0.06); transform: translateY(-2px); }
.intel-card::before { display: none; }
.intel-card-top { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: start; padding: 18px 18px 0; margin-bottom: 0; }
.intel-tier-badge { font-size: 10px; font-weight: 900; font-family: var(--font-mono); padding: 4px 8px; border-radius: 2px; white-space: nowrap; }
.intel-tier-badge.t-S { background: rgba(0,214,114,0.08); color: var(--green); border: 1px solid rgba(0,214,114,0.18); }
.intel-tier-badge.t-Ap { background: rgba(0,170,255,0.08); color: var(--blue); border: 1px solid rgba(0,170,255,0.18); }
.intel-tier-badge.t-A { background: rgba(168,85,247,0.08); color: #c084fc; border: 1px solid rgba(168,85,247,0.18); }
.intel-layers-row { display: flex; flex-wrap: wrap; gap: 4px; padding: 12px 18px 0; }
.intel-reasoning-box { margin: 10px 0 0; padding: 14px 20px; background: rgba(13,21,32,0.5); border-top: 1px solid rgba(30,51,82,0.4); border-bottom: 1px solid rgba(30,51,82,0.4); border-left: 2px solid rgba(0,214,114,0.2); }
.intel-reasoning-lbl { font-size: 7.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); margin-bottom: 6px; font-family: var(--font-mono); opacity: 0.8; }
.intel-reasoning-txt { font-size: 12px; color: var(--text); line-height: 1.7; }
.intel-card-footer { display: flex; justify-content: space-between; align-items: flex-end; padding: 14px 18px; }
.intel-score-big { font-size: 30px; font-weight: 900; font-family: var(--font-mono); color: var(--text-bright); line-height: 1; letter-spacing: -1px; text-shadow: 0 0 14px rgba(0,214,114,0.2); }
.intel-score-lbl { font-size: 7.5px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 700; font-family: var(--font-mono); display: block; margin-bottom: 4px; }

/* Portfolio table refinements */
.portfolio-table thead th { font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: var(--text-dim); font-family: var(--font-mono); padding: 12px 16px; border-bottom: 1px solid rgba(30,51,82,0.4); background: rgba(8,14,22,0.3); }
.portfolio-table tbody td { padding: 14px 16px; border-bottom: 1px solid rgba(30,51,82,0.25); vertical-align: middle; }
.portfolio-table tbody tr:last-child td { border-bottom: none; }
.portfolio-table tbody tr { transition: background 0.15s; }
.portfolio-table tbody tr:hover { background: rgba(30,51,82,0.1); }
.port-ticker { font-size: 17px; font-weight: 900; font-family: var(--font-mono); color: var(--text-bright); letter-spacing: -0.3px; }
.port-pos { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.port-entry { font-size: 11px; font-family: var(--font-mono); color: var(--text-dim); white-space: nowrap; }
.port-pnl-pos { font-size: 14px; font-weight: 800; font-family: var(--font-mono); color: var(--green); white-space: nowrap; }
.port-pnl-neg { font-size: 14px; font-weight: 800; font-family: var(--font-mono); color: var(--red); white-space: nowrap; }
.port-bar { height: 6px; background: rgba(30,51,82,0.4); border-radius: 3px; flex: 1; overflow: hidden; }
.port-bar-fill { height: 100%; border-radius: 3px; }
.port-bar-wrap { display: flex; align-items: center; gap: 10px; }
.portfolio-footer { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-top: 1px solid rgba(30,51,82,0.3); font-size: 10px; color: var(--text-dim); background: linear-gradient(135deg,rgba(8,14,22,0.3) 0%,rgba(13,21,32,0.2) 100%); }
.portfolio-footer a { color: var(--green); font-weight: 700; font-size: 11px; }

@media (max-width: 900px) {
  .is-section-top { grid-template-columns: 1fr; }
  .is-kpi-strip { align-self: flex-start; }
  .is-panel-hd { grid-template-columns: 1fr; gap: 16px; }
  .is-panel-hd-stats { align-self: flex-start; }
}
.proof-r-events { display: flex; flex-direction: column; gap: 5px; }
.prs-event { display: flex; align-items: baseline; gap: 8px; font-size: 10px; color: var(--text-dim); line-height: 1.4; }
.prs-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.prs-dot.signal { background: var(--green); box-shadow: 0 0 6px rgba(0,214,114,0.8); }
.prs-dot.confirm { background: var(--blue); }
.prs-dot.filed { background: var(--amber); }
.prs-dot.result { background: var(--orange); }
.prs-event-txt strong { color: var(--text-bright); font-weight: 700; }
.proof-r-tags { display: flex; flex-direction: column; gap: 4px; }
.proof-r-date { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); line-height: 1.7; text-align: right; }
.proof-r-date .prd-edge { color: var(--green); font-weight: 700; display: block; }

/* ── CLASSIFIED ── */
.classified-section { padding: 96px 40px; max-width: 1200px; margin: 0 auto; }
.classified-card { background: rgba(13,18,25,0.98); border: 1px solid rgba(255,51,102,0.18); border-radius: 2px; overflow: hidden; position: relative; }
.classified-card::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent 5%, var(--red) 20%, var(--red) 80%, transparent 95%); }
.classified-header { display: flex; align-items: center; gap: 12px; background: rgba(255,51,102,0.04); border-bottom: 1px solid rgba(255,51,102,0.12); padding: 10px 32px; font-size: 9px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,51,102,0.7); font-family: var(--font-mono); }
.classified-header-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); animation: blink 1.5s infinite; flex-shrink:0; }
.classified-body { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.classified-left { padding: 48px 40px; border-right: 1px solid rgba(255,51,102,0.08); position: relative; z-index: 1; }
.classified-left h3 { font-size: 22px; font-weight: 800; color: var(--text-bright); line-height: 1.25; margin-bottom: 16px; letter-spacing: -0.3px; }
.classified-left p { font-size: 13px; color: var(--text-dim); line-height: 1.85; margin-bottom: 14px; }
.classified-left .cl-insight { margin-top: 24px; padding: 16px 20px; background: rgba(0,214,114,0.04); border-left: 2px solid var(--green); }
.cl-insight-label { font-size: 9px; color: var(--green); font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-family: var(--font-mono); }
.cl-insight-text { font-size: 12px; color: var(--text-dim); line-height: 1.7; }
.classified-right { padding: 48px 40px; position: relative; z-index: 1; }
.classified-right h4 { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); margin-bottom: 24px; font-family: var(--font-mono); }
.cl-timeline { display: flex; flex-direction: column; }
.cl-event { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(30,51,82,0.35); }
.cl-event:last-child { border-bottom: none; }
.cl-event-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; padding-top: 3px; }
.cl-event-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.cl-event-dot.buy { background: var(--green); box-shadow: 0 0 5px rgba(0,214,114,0.5); }
.cl-event-dot.signal { background: var(--amber); box-shadow: 0 0 5px rgba(251,191,36,0.5); }
.cl-event-dot.classified { background: var(--red); box-shadow: 0 0 7px rgba(255,51,102,0.6); animation: blink 2s infinite; }
.cl-event-dot.result { background: var(--blue); box-shadow: 0 0 5px rgba(0,170,255,0.5); }
.cl-event-line { width: 1px; flex: 1; background: rgba(30,51,82,0.5); min-height: 14px; margin-top: 5px; }
.cl-event-info { flex: 1; }
.cl-event-day { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); margin-bottom: 3px; font-family: var(--font-mono); }
.cl-event-title { font-size: 13px; font-weight: 700; color: var(--text-bright); margin-bottom: 3px; }
.cl-event-desc { font-size: 10px; color: var(--text-dim); line-height: 1.5; }
.cl-event.is-classified .cl-event-title { color: var(--red); }
.cl-event.is-result .cl-event-title { color: var(--green); }

/* ── FORMULA ── */
.formula-section { padding: 96px 40px; max-width: 1200px; margin: 0 auto; }
.formula-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 52px; align-items: start; margin-top: 0; }
.formula-layers { display: flex; flex-direction: column; gap: 0; }
.formula-layer-row { display: grid; grid-template-columns: 52px 1fr 180px; align-items: center; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(30,51,82,0.3); }
.formula-layer-row:last-child { border-bottom: none; }
.formula-layer-pct { font-size: 21px; font-weight: 900; font-family: var(--font-mono); text-align: right; flex-shrink: 0; line-height: 1; }
.formula-layer-name { font-size: 12px; font-weight: 600; color: var(--text-bright); line-height: 1.3; }
.formula-layer-name .fln-sub { font-size: 9.5px; color: var(--text-dim); font-weight: 500; margin-top: 2px; line-height: 1.4; }
.formula-layer-bar-wrap { height: 3px; background: rgba(30,51,82,0.4); border-radius: 1px; overflow: hidden; }
.formula-layer-bar-fill { height: 100%; border-radius: 1px; width: 0; transition: width 1.4s cubic-bezier(0.16,1,0.3,1); }
.formula-layer-row.animated .formula-layer-bar-fill { width: var(--bar-pct); }

.formula-right-side { display: flex; flex-direction: column; gap: 20px; }
.formula-tier-stack { display: flex; flex-direction: column; gap: 2px; }
.formula-tier-label { font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: var(--text-dim); margin-bottom: 12px; font-family: var(--font-mono); opacity: 0.7; }
.formula-tier-row { display: flex; align-items: center; gap: 10px; padding: 9px 14px; font-size: 12px; border-radius: 2px; }
.formula-tier-row .ftr-badge { font-size: 18px; font-weight: 900; min-width: 30px; font-family: var(--font-mono); line-height: 1; }
.formula-tier-row .ftr-name { flex: 1; font-weight: 600; color: var(--text-bright); font-size: 11px; }
.formula-tier-row .ftr-score { font-size: 10px; color: var(--text-dim); font-family: var(--font-mono); font-weight: 700; }
.formula-convergence { padding: 18px 20px; background: rgba(13,21,32,0.6); border: 1px solid rgba(30,51,82,0.5); border-radius: 3px; }
.formula-conv-label { font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 2.5px; color: var(--text-dim); margin-bottom: 14px; font-family: var(--font-mono); opacity: 0.7; }
.formula-conv-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(30,51,82,0.3); font-size: 11px; }
.formula-conv-row:last-of-type { border-bottom: none; }
.formula-conv-val { font-weight: 900; color: var(--amber); font-family: var(--font-mono); font-size: 16px; letter-spacing: -0.5px; }
.formula-conv-note { margin-top: 12px; font-size: 10px; color: var(--text-dim); line-height: 1.65; }

/* ── INTELLIGENCE SYSTEM v2 — Redesigned Components ── */
.is-subsec-label { font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:3px;color:var(--text-dim);font-family:var(--font-mono);opacity:0.6; }

/* Formula v2 — grouped layers with category headers */
.formula-v2-grid { display:grid;grid-template-columns:1.3fr 0.7fr;gap:52px;align-items:start; }
.formula-v2-layers { display:flex;flex-direction:column;gap:14px; }
.fv2-group { background:linear-gradient(135deg,rgba(13,21,32,0.7) 0%,rgba(18,30,45,0.6) 100%);border:1px solid rgba(30,51,82,0.45);border-radius:8px;padding:16px 18px;box-shadow:0 2px 10px rgba(0,0,0,0.18),inset 0 1px 0 rgba(255,255,255,0.02); }
.fv2-group-hd { display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;padding-bottom:10px;border-bottom:1px solid rgba(30,51,82,0.3); }
.fv2-group-name { font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:2px;color:var(--text-dim);font-family:var(--font-mono); }
.fv2-group-pct { font-size:15px;font-weight:900;font-family:var(--font-mono);color:var(--text-bright);text-shadow:0 0 10px rgba(0,214,114,0.15); }
.formula-layer-v2 { padding:10px 0 12px;border-bottom:1px solid rgba(30,51,82,0.2); }
.formula-layer-v2:last-child { border-bottom:none;padding-bottom:0; }
.formula-layer-v2-hd { display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:8px; }
.formula-layer-v2-name { font-size:13px;font-weight:700;color:var(--text-bright); }
.formula-layer-v2-sub { font-size:10px;color:var(--text-dim);margin-top:3px;line-height:1.5; }
.formula-layer-v2-pct { font-size:17px;font-weight:900;font-family:var(--font-mono);letter-spacing:-0.5px;flex-shrink:0;margin-left:12px;text-shadow:0 0 10px currentColor; }
.formula-layer-v2-track { height:5px;background:rgba(30,51,82,0.5);border-radius:2px;overflow:hidden; }
.formula-layer-v2-fill { height:100%;border-radius:2px;width:0;transition:width 1.4s cubic-bezier(0.16,1,0.3,1); }
.formula-layer-v2.animated .formula-layer-v2-fill { width:var(--bar-pct); }

/* Worked example v2 */
.formula-example-v2 { border-top:1px solid rgba(30,51,82,0.4); }
.fex2-header { display:grid;grid-template-columns:auto 1fr auto;gap:32px;align-items:center;padding:20px 28px;background:rgba(13,21,32,0.4);border-bottom:1px solid rgba(30,51,82,0.4); }
.fex2-label { font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:2.5px;color:var(--text-dim);font-family:var(--font-mono);opacity:0.6;white-space:nowrap; }
.fex2-ticker { font-size:24px;font-weight:900;font-family:var(--font-mono);color:var(--text-bright);letter-spacing:-0.5px; }
.fex2-co { font-size:10px;color:var(--text-dim);margin-top:3px; }
.fex2-tier { font-size:9px;font-weight:900;font-family:var(--font-mono);color:var(--blue);text-align:right;letter-spacing:1px; }
.fex2-score { font-size:30px;font-weight:900;font-family:var(--font-mono);color:var(--blue);text-align:right;letter-spacing:-1px;line-height:1;text-shadow:0 0 14px rgba(0,170,255,0.25); }
.fex2-rows { padding:0 28px; }
.fex2-row { display:grid;grid-template-columns:30px 1fr auto;gap:12px;align-items:baseline;font-size:10px;padding:8px 0;border-bottom:1px solid rgba(30,51,82,0.2); }
.fex2-row:last-child { border-bottom:none; }
.fex2-wt { font-family:var(--font-mono);font-weight:900;font-size:10px;text-align:right; }
.fex2-desc { color:var(--text-dim);line-height:1.55;font-size:11px; }
.fex2-desc strong { color:var(--text-bright);font-weight:700; }
.fex2-pts { font-family:var(--font-mono);font-weight:900;color:var(--green);text-align:right;font-size:12px;letter-spacing:-0.3px;text-shadow:0 0 8px rgba(0,214,114,0.2); }
.fex2-total { display:flex;justify-content:space-between;align-items:center;padding:18px 28px;background:rgba(13,21,32,0.4);border-top:1px solid rgba(30,51,82,0.4); }
.fex2-total-lbl { font-size:8px;color:var(--text-dim);font-family:var(--font-mono);text-transform:uppercase;letter-spacing:1.5px;margin-bottom:4px; }
.fex2-total-n { font-size:15px;font-weight:900;font-family:var(--font-mono);color:var(--text); }
.fex2-mult { font-size:12px;color:var(--amber);font-weight:900;font-family:var(--font-mono); }
.fex2-total-final { font-size:24px;font-weight:900;font-family:var(--font-mono);color:var(--blue);text-shadow:0 0 12px rgba(0,170,255,0.2); }

/* Key Insights grid — replaces TradingView chart */
.fex2-insights { border-top:1px solid rgba(30,51,82,0.4);padding:20px 24px; }
.fex2-insights-title { font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:2.5px;color:var(--text-dim);font-family:var(--font-mono);opacity:0.6;margin-bottom:14px; }
.fex2-insights-grid { display:grid;grid-template-columns:1fr 1fr;gap:10px; }
.fex2-insight { padding:14px 16px;background:rgba(8,14,22,0.5);border-radius:4px;border-left:2px solid var(--insight-color,var(--border)); }
.fex2-insight-icon { font-size:14px;margin-bottom:6px; }
.fex2-insight-title { font-size:10px;font-weight:800;color:var(--insight-color,var(--text-bright));letter-spacing:-0.2px;margin-bottom:4px; }
.fex2-insight-text { font-size:10px;color:var(--text-dim);line-height:1.6; }
.fex2-insight-text strong { color:var(--text);font-weight:700; }
@media (max-width: 768px) { .fex2-insights-grid { grid-template-columns:1fr; } }

/* Section divider */
.is-divider { display:flex;align-items:center;gap:20px;padding:32px 0; }
.is-divider-line { flex:1;height:1px;background:linear-gradient(90deg,transparent,rgba(30,51,82,0.5),transparent); }
.is-divider-text { font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:3px;color:var(--text-dim);font-family:var(--font-mono);opacity:0.5; }

/* Backtest hero strip — big numbers lead */
.proof-hero-strip { display:grid;grid-template-columns:1fr 1px 1fr 1px 1fr 1px 1fr;border-bottom:1px solid rgba(30,51,82,0.4); }
.phs-cell { padding:36px 32px;text-align:center; }
.phs-n { font-size:clamp(52px,6vw,72px);font-weight:900;font-family:var(--font-mono);line-height:0.9;letter-spacing:-3px;color:var(--text-bright);text-shadow:0 0 18px rgba(0,214,114,0.15); }
.phs-n-sep { font-size:0.45em;color:var(--text-dim);margin:0 2px;font-weight:500;opacity:0.5; }
.phs-l { font-size:10px;text-transform:uppercase;letter-spacing:2.5px;color:var(--text-dim);font-weight:700;margin-top:14px;font-family:var(--font-mono); }
.phs-divider { background:linear-gradient(to bottom, transparent 15%, rgba(30,51,82,0.5) 50%, transparent 85%); }

/* Proof case cards — 3-column */
.proof-cases-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(30,51,82,0.35); }
.proof-case-card { padding:28px 24px;display:flex;flex-direction:column;position:relative;background:linear-gradient(160deg,rgba(10,15,24,0.98) 0%,rgba(13,20,32,0.96) 100%); }
.proof-case-card::before { content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--pcc-color, var(--border)); }
.pcc-top { margin-bottom:0; }
.pcc-ticker { font-size:18px;font-weight:900;font-family:var(--font-mono);color:var(--text-bright);letter-spacing:-0.3px;display:flex;align-items:baseline;gap:10px; }
.pcc-company { font-size:10px;color:var(--text-dim);font-family:var(--font-sans);font-weight:400; }
.pcc-return { font-size:clamp(40px,5vw,58px);font-weight:900;font-family:var(--font-mono);color:var(--pcc-color,var(--green));letter-spacing:-2.5px;line-height:0.88;margin-top:12px;text-shadow:0 0 18px rgba(0,214,114,0.2); }
.pcc-duration { font-size:10px;color:var(--text-dim);font-family:var(--font-mono);font-weight:600;margin-top:6px;margin-bottom:16px; }
.pcc-events { display:flex;flex-direction:column;gap:6px;flex:1; }
.pcc-event { display:flex;gap:8px;align-items:baseline;font-size:10px;color:var(--text-dim);line-height:1.5; }
.pcc-event strong { color:var(--text-bright);font-weight:700; }
.pcc-intel { margin-top:14px;padding:14px 16px;background:rgba(8,14,22,0.5);border-left:2px solid rgba(0,214,114,0.25);font-size:11px;color:rgba(200,216,232,0.8);line-height:1.7;border-radius:0 4px 4px 0; }
.pcc-intel strong { color:var(--text-bright); }
.pcc-tags { display:flex;flex-wrap:wrap;gap:4px;margin-top:10px; }
.pcc-footer { margin-top:12px;padding:9px 12px;background:rgba(8,14,22,0.4);border:1px solid rgba(30,51,82,0.3);border-radius:4px;display:flex;justify-content:space-between;align-items:center;font-size:9px;font-family:var(--font-mono);color:var(--text-dim); }
.pcc-edge { color:var(--green);font-weight:900;font-size:10px; }
.pcc-chart { height:260px;margin-top:14px;overflow:hidden;flex-shrink:0;border-radius:6px;border:1px solid rgba(30,51,82,0.3); }

/* Proof stacked layout — full-width case studies */
.proof-stacked { display:flex;flex-direction:column;gap:1px;background:rgba(30,51,82,0.35); }
.proof-case-stacked { background:linear-gradient(160deg,rgba(10,15,24,0.98) 0%,rgba(13,20,32,0.96) 100%);position:relative; }
.proof-case-stacked::before { content:'';position:absolute;top:0;left:0;bottom:0;width:3px;background:var(--pcc-color,var(--border)); }
.pcs-header { display:flex;justify-content:space-between;align-items:center;padding:18px 28px 18px 32px;border-bottom:1px solid rgba(30,51,82,0.3);flex-wrap:wrap;gap:12px; }
.pcs-ticker { font-size:20px;font-weight:900;font-family:var(--font-mono);color:var(--text-bright);letter-spacing:-0.5px; }
.pcs-company { font-size:11px;color:var(--text-dim);font-weight:400; }
.pcs-result { font-size:14px;font-weight:900;font-family:var(--font-mono);color:var(--pcc-color,var(--green));letter-spacing:-0.5px; }
.pcs-body { display:grid;grid-template-columns:280px 1fr;gap:0; }
.pcs-timeline { padding:20px 24px 20px 32px;border-right:1px solid rgba(30,51,82,0.3);display:flex;flex-direction:column;gap:6px; }
.pcs-analysis { padding:20px 28px; }
.pcs-analysis-label { font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:2.5px;color:var(--text-dim);font-family:var(--font-mono);margin-bottom:10px;opacity:0.7; }
.pcs-analysis-text { font-size:13px;color:var(--text);line-height:1.85; }
.pcs-analysis-text strong { color:var(--text-bright); }
.pcs-layers-fired { display:flex;flex-wrap:wrap;gap:5px;margin-top:14px; }
.pcc-layer-chip { font-size:9px;font-weight:700;font-family:var(--font-mono);padding:3px 8px;border-radius:2px; }
.pcc-layer-chip.active { background:rgba(0,214,114,0.08);color:var(--green);border:1px solid rgba(0,214,114,0.18); }
.pcc-layer-chip.dim { background:rgba(30,51,82,0.2);color:var(--text-dim);border:1px solid rgba(30,51,82,0.3);opacity:0.5; }
.pcs-result-strip { display:flex;justify-content:space-between;align-items:center;padding:10px 28px 10px 32px;border-top:1px solid rgba(30,51,82,0.3);font-size:11px;font-family:var(--font-mono);color:var(--text-dim); }
@media (max-width: 900px) {
  .pcs-body { grid-template-columns:1fr; }
  .pcs-timeline { border-right:none;border-bottom:1px solid rgba(30,51,82,0.3); }
  .pcs-header { flex-direction:column;align-items:flex-start; }
}

/* Portfolio summary mini-strip */
.port-summary-strip { display:flex;align-items:center;padding:20px 28px;border-bottom:1px solid rgba(30,51,82,0.35);background:linear-gradient(135deg,rgba(8,14,22,0.45) 0%,rgba(13,21,32,0.35) 100%);gap:0; }
.pss-item { padding-right:24px;margin-right:24px;border-right:1px solid rgba(30,51,82,0.35); }
.pss-n { font-size:24px;font-weight:900;font-family:var(--font-mono);color:var(--text-bright);letter-spacing:-1px;line-height:1; }
.pss-l { font-size:9px;text-transform:uppercase;letter-spacing:2px;color:var(--text-dim);font-weight:700;margin-top:6px;font-family:var(--font-mono); }
.pss-cap { font-size:10px;color:var(--text-dim);margin-left:auto;font-style:italic;opacity:0.7; }

/* Portfolio position cards */
.port-cards { display:flex;flex-direction:column;gap:10px; }
.port-card { background:rgba(8,14,22,0.5);border:1px solid rgba(30,51,82,0.35);border-left:3px solid var(--port-color,var(--green));border-radius:0 6px 6px 0;overflow:hidden; }
.port-card-hd { display:flex;justify-content:space-between;align-items:center;padding:12px 16px;flex-wrap:wrap;gap:8px; }
.port-card-thesis { padding:0 16px 14px;font-size:12px;color:var(--text-dim);line-height:1.75;border-left:2px solid rgba(0,214,114,0.15);margin-left:16px;padding-left:14px;margin-right:16px;margin-bottom:14px; }
.port-card-thesis strong { color:var(--text);font-weight:700; }
.port-brief { margin-top:20px;padding:20px 24px;border-top:1px solid rgba(30,51,82,0.3);background:rgba(8,14,22,0.3);border-radius:6px; }
.port-brief-label { font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:2.5px;color:var(--text-dim);font-family:var(--font-mono);margin-bottom:12px;opacity:0.7; }
.port-brief-text { font-size:13px;color:var(--text);line-height:1.85;max-width:800px; }
.port-brief-text strong { color:var(--text-bright); }

/* Signal pipeline — horizontal flow */
.sig-pipeline { display:grid;grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;gap:0;border:1px solid rgba(30,51,82,0.55);border-radius:8px;overflow:hidden;background:linear-gradient(155deg,rgba(13,21,32,0.9) 0%,rgba(15,25,40,0.85) 100%);box-shadow:0 2px 12px rgba(0,0,0,0.2); }
.sp-step { padding:20px 20px; }
.sp-step-alert { background:rgba(0,214,114,0.03); }
.sp-arrow { display:flex;align-items:center;justify-content:center;color:var(--text-dim);font-size:14px;opacity:0.3;padding:0 6px;background:rgba(30,51,82,0.15);border-left:1px solid rgba(30,51,82,0.4);border-right:1px solid rgba(30,51,82,0.4); }
.sp-step-num { font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:2.5px;color:var(--text-dim);margin-bottom:7px;font-family:var(--font-mono);opacity:0.7; }
.sp-step-title { font-size:14px;font-weight:800;color:var(--text-bright);margin-bottom:5px;letter-spacing:-0.2px; }
.sp-step-desc { font-size:11px;color:var(--text-dim);line-height:1.65; }

/* Featured intelligence card — S-Tier hero */
.intel-card-feat { border-radius:10px;border:1px solid rgba(30,51,82,0.65);overflow:hidden;position:relative;background:linear-gradient(155deg,rgba(13,21,32,0.96) 0%,rgba(15,25,40,0.92) 100%);box-shadow:0 4px 24px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.025); }
.intel-card-feat::before { content:'';position:absolute;top:0;left:0;right:0;height:2px; }
.intel-card-feat.t-S::before { background:var(--green); }
.icf-header { display:grid;grid-template-columns:1fr auto;gap:24px;align-items:start;padding:22px 24px;border-bottom:1px solid rgba(30,51,82,0.4);background:rgba(0,214,114,0.015); }
.icf-ticker { font-size:34px;font-weight:900;font-family:var(--font-mono);color:var(--text-bright);letter-spacing:-1px;line-height:1; }
.icf-company { font-size:11px;color:var(--text-dim);margin-top:4px; }
.icf-tier-badge { font-size:12px;font-weight:900;font-family:var(--font-mono);padding:5px 10px;border-radius:2px;display:inline-block; }
.icf-tier-badge.t-S { background:rgba(0,214,114,0.1);color:var(--green);border:1px solid rgba(0,214,114,0.2); }
.icf-score { font-size:42px;font-weight:900;font-family:var(--font-mono);color:var(--text-bright);margin-top:4px;letter-spacing:-1.5px;line-height:1;text-align:right;text-shadow:0 0 20px rgba(0,214,114,0.25); }
.icf-who { font-size:10px;color:var(--text-dim);text-align:right;margin-top:5px; }
.icf-who strong { color:var(--text-bright); }
.icf-body { display:grid;grid-template-columns:1.4fr 0.6fr; }
.icf-body-left { padding:18px 24px;border-right:1px solid rgba(30,51,82,0.4); }
.icf-body-right { padding:18px 24px; }
.icf-reasoning-lbl { font-size:7.5px;text-transform:uppercase;letter-spacing:2px;color:var(--text-dim);font-weight:800;font-family:var(--font-mono);margin-bottom:8px;opacity:0.8; }
.icf-reasoning-txt { font-size:12.5px;color:var(--text);line-height:1.75; }
.icf-reasoning-txt strong { color:var(--text-bright); }
.icf-window-val { font-size:26px;font-weight:900;font-family:var(--font-mono);color:var(--amber);line-height:1; }
.icf-footer { padding:14px 24px;border-top:1px solid rgba(30,51,82,0.4);display:flex;justify-content:space-between;align-items:center; }

@media (max-width: 900px) {
  .formula-v2-grid { grid-template-columns:1fr;gap:32px; }
  .proof-hero-strip { grid-template-columns:1fr 1fr; }
  .phs-divider { display:none; }
  .proof-cases-grid { grid-template-columns:1fr; }
  .proof-case-card { border-right:none;border-bottom:1px solid rgba(30,51,82,0.4); }
  .proof-case-card:last-child { border-bottom:none; }
  .sig-pipeline { grid-template-columns:1fr; }
  .sp-arrow { transform:rotate(90deg);padding:4px 0; }
  .icf-body { grid-template-columns:1fr; }
  .icf-body-left { border-right:none;border-bottom:1px solid rgba(30,51,82,0.4); }
}

/* ── INSIDERS ── */
.insiders-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 96px 0; }
.insiders-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.insider-rows { margin-top: 52px; display: flex; flex-direction: column; }
.insider-row { display: grid; grid-template-columns: 48px 48px 1fr 180px 72px 64px; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(30,51,82,0.45); transition: all 0.15s; }
.insider-row:first-child { border-top: 1px solid rgba(30,51,82,0.45); }
.insider-row:hover { padding-left: 20px; padding-right: 20px; margin: 0 -20px; background: rgba(0,214,114,0.025); border-radius: 2px; }
.insider-row-rank { font-size: 22px; font-weight: 900; color: var(--text-dim); font-family: var(--font-mono); opacity: 0.4; text-align: right; }
.insider-row-rank.rank-1 { color: var(--amber); opacity: 1; }
.insider-row-rank.rank-2 { color: #94a3b8; opacity: 1; }
.insider-row-rank.rank-3 { color: #cd7f32; opacity: 1; }
.insider-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; font-family: var(--font-mono); color: var(--bg); }
.insider-avatar-d { background: var(--d-blue); }
.insider-avatar-r { background: var(--r-red); }
.insider-name-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.insider-name-val { font-size: 14px; font-weight: 700; color: var(--text-bright); }
.triple-signal-badge { display: inline-flex; align-items: center; gap: 3px; background: rgba(255,51,102,0.08); color: var(--red); border: 1px solid rgba(255,51,102,0.2); padding: 2px 7px; border-radius: 10px; font-size: 8px; font-weight: 800; letter-spacing: 0.5px; animation: resultPulse 3s ease-in-out infinite; }
.insider-role-val { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.insider-sectors-row { display: flex; gap: 4px; flex-wrap: wrap; }
.insider-sector-tag { font-size: 9px; padding: 2px 8px; border-radius: 2px; background: rgba(0,170,255,0.06); color: rgba(0,170,255,0.8); border: 1px solid rgba(0,170,255,0.15); font-weight: 600; letter-spacing: 0.3px; }
.insider-conf-cell { font-size: 32px; font-weight: 900; color: var(--green); font-family: var(--font-mono); letter-spacing: -1px; text-align: right; line-height: 1; }
.insider-conf-bar { height: 2px; background: rgba(30,51,82,0.5); border-radius: 1px; margin-top: 6px; overflow: hidden; }
.insider-conf-bar-fill { height: 100%; background: var(--green); border-radius: 1px; transition: width 1s cubic-bezier(0.4,0,0.2,1); }
.insider-row-rank.rank-1 .insider-conf-bar-fill { background: var(--amber); }
.insider-tier-cell { text-align: center; }
.insider-cols-header { display: grid; grid-template-columns: 48px 48px 1fr 180px 72px 64px; gap: 20px; padding: 0 0 10px; font-size: 9px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; border-bottom: 1px solid var(--border); }

/* ── LIVE PREDICTIONS ── */
.predictions-section { padding: 96px 40px; max-width: 1200px; margin: 0 auto; }
.pred-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; margin-top: 48px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.pred-card { background: var(--surface); padding: 24px; transition: background 0.15s; position: relative; display: flex; flex-direction: column; gap: 10px; border-left: 2px solid transparent; }
.pred-card:hover { background: var(--surface2); }
.pred-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.pred-ticker-hero { font-size: 22px; font-weight: 900; color: var(--text-bright); font-family: var(--font-mono); letter-spacing: -0.5px; }
.pred-tier { font-size: 9px; font-weight: 900; letter-spacing: 1.5px; padding: 3px 8px; border-radius: 2px; text-transform: uppercase; font-family: var(--font-mono); }
.pred-tier.tier-S { background: rgba(0,214,114,0.1); color: var(--green); border: 1px solid rgba(0,214,114,0.2); }
.pred-tier.tier-A { background: rgba(0,170,255,0.1); color: var(--blue); border: 1px solid rgba(0,170,255,0.2); }
.pred-tier.tier-B { background: rgba(251,191,36,0.1); color: var(--amber); border: 1px solid rgba(251,191,36,0.2); }
.pred-tier.tier-C { background: rgba(255,140,0,0.1); color: var(--orange); border: 1px solid rgba(255,140,0,0.2); }
.pred-card.tier-S { border-left-color: var(--green); }
.pred-card.tier-A { border-left-color: var(--blue); }
.pred-card.tier-B { border-left-color: var(--amber); }
.pred-card.tier-C { border-left-color: var(--orange); }
.pred-countdown { display: flex; align-items: center; gap: 8px; }
.pred-countdown-bar-wrap { flex: 1; height: 3px; background: rgba(30,51,82,0.5); border-radius: 2px; overflow: hidden; }
.pred-countdown-bar { height: 100%; border-radius: 2px; transition: width 0.5s; }
.pred-countdown-text { font-size: 10px; font-weight: 800; font-family: var(--font-mono); white-space: nowrap; }
.pred-urgency { font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 2px; }
.pred-urgency.urgent { background: rgba(255,51,102,0.08); color: var(--red); border: 1px solid rgba(255,51,102,0.18); animation: blink 2s infinite; }
.pred-urgency.soon { background: rgba(251,191,36,0.08); color: var(--amber); border: 1px solid rgba(251,191,36,0.18); }
.pred-urgency.normal { background: rgba(30,51,82,0.4); color: var(--text-dim); border: 1px solid var(--border); }
.pred-tickers { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.pred-ticker-chip { font-size: 13px; font-weight: 900; color: var(--text-bright); font-family: var(--font-mono); padding: 0; background: none; border: none; }
.pred-pol { font-size: 12px; font-weight: 600; color: var(--text-dim); margin-bottom: 3px; }
.pred-committee { font-size: 10px; color: var(--text-dim); opacity: 0.7; }
.pred-loading { text-align: center; padding: 60px; color: var(--text-dim); font-size: 12px; grid-column: 1/-1; background: var(--surface); }
.pred-shimmer { background: var(--surface); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.shimmer-line { height: 12px; border-radius: 2px; background: linear-gradient(90deg, rgba(30,51,82,0.5) 0%, rgba(30,51,82,0.8) 50%, rgba(30,51,82,0.5) 100%); background-size: 200% 100%; animation: shimmerSlide 1.5s infinite; }
@keyframes shimmerSlide { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.shimmer-line.wide { width: 60%; }
.shimmer-line.medium { width: 80%; }
.shimmer-line.narrow { width: 40%; }
.shimmer-line.tall { height: 20px; width: 45%; }

/* ── PORTFOLIO ── */
.portfolio-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 96px 0; }
.portfolio-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.portfolio-summary { display: flex; align-items: baseline; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.portfolio-summary .ps-total { font-size: clamp(40px,5vw,64px); font-weight: 900; color: var(--green); font-family: var(--font-mono); letter-spacing: -2px; line-height: 1; }
.portfolio-summary .ps-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.portfolio-summary .ps-meta { font-size: 11px; color: var(--text-dim); }
.portfolio-live-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,214,114,0.06); border: 1px solid rgba(0,214,114,0.18); border-radius: 2px; padding: 4px 10px; font-size: 9px; font-weight: 800; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--font-mono); margin-left: 16px; }
.portfolio-table-wrap { border: 1px solid var(--border); border-radius: 2px; overflow: hidden; background: var(--bg); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.portfolio-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); }
.portfolio-table thead th { background: var(--surface2); border-bottom: 1px solid var(--border); padding: 8px 16px; text-align: left; color: var(--text-dim); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-family: var(--font-sans); }
.portfolio-table tbody td { padding: 14px 16px; border-bottom: 1px solid rgba(30,51,82,0.35); vertical-align: middle; }
.portfolio-table tbody tr:last-child td { border-bottom: none; }
.portfolio-table tbody tr:hover { background: rgba(0,214,114,0.02); }
.port-ticker { font-size: 16px; font-weight: 900; color: var(--text-bright); letter-spacing: 0; font-family: var(--font-mono); }
.port-pos { color: var(--text-dim); font-size: 10px; font-family: var(--font-sans); }
.port-entry { color: var(--text-dim); font-size: 12px; }
.port-pnl-pos { color: var(--green); font-size: 13px; font-weight: 800; font-family: var(--font-mono); }
.port-pnl-neg { color: var(--red); font-size: 13px; font-weight: 800; font-family: var(--font-mono); }
.port-bar-wrap { display: flex; align-items: center; gap: 8px; }
.port-bar { flex: 1; height: 5px; background: rgba(30,51,82,0.5); border-radius: 2px; overflow: hidden; max-width: 100px; }
.port-bar-fill { height: 100%; border-radius: 2px; }
.portfolio-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-top: 1px solid var(--border); font-size: 10px; color: var(--text-dim); background: var(--surface2); font-family: var(--font-sans); }
.portfolio-footer a { color: var(--green); font-weight: 700; font-size: 11px; font-family: var(--font-sans); }

/* ── PRICING ── */
/* ── PRICING SECTION ── */
.pricing-section { padding: 96px 40px; max-width: 1200px; margin: 0 auto; }
.pricing-tiers { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 20px; margin-top: 52px; align-items: start; }
.pricing-card {
  background: linear-gradient(160deg, rgba(13,21,32,0.96) 0%, rgba(15,25,40,0.92) 100%);
  border: 1px solid rgba(30,51,82,0.55);
  border-radius: 10px; padding: 36px 32px; position: relative;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.02);
  overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(30,51,82,0.6) 50%, transparent 90%);
}
.pricing-card:hover { border-color: rgba(30,51,82,0.8); box-shadow: 0 8px 32px rgba(0,0,0,0.35); transform: translateY(-2px); }

/* Featured card — elevated, green accent, slightly larger */
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(13,24,35,0.98) 0%, rgba(10,30,28,0.95) 100%);
  border-color: rgba(0,214,114,0.25);
  padding: 44px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 30px rgba(0,214,114,0.04), inset 0 1px 0 rgba(0,214,114,0.06);
}
.pricing-card.featured::before {
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--green) 30%, var(--green) 70%, transparent 95%);
  opacity: 0.7;
}
.pricing-card.featured::after {
  content: '250 SEATS ONLY'; position: absolute; top: 14px; right: 16px;
  font-size: 8px; font-weight: 900; letter-spacing: 2px; color: var(--green);
  background: rgba(0,214,114,0.06); border: 1px solid rgba(0,214,114,0.15);
  padding: 4px 10px; border-radius: 2px; font-family: var(--font-mono);
}
.pricing-card.featured:hover { border-color: rgba(0,214,114,0.4); box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 0 40px rgba(0,214,114,0.06); }
.pricing-card.featured .pricing-price { color: var(--green); text-shadow: 0 0 24px rgba(0,214,114,0.2); }

.pricing-name { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; color: var(--text-dim); margin-bottom: 22px; font-family: var(--font-mono); opacity: 0.7; }
.pricing-price { font-size: 56px; font-weight: 900; color: var(--text-bright); font-family: var(--font-mono); letter-spacing: -3px; line-height: 1; margin-bottom: 8px; }
.pricing-price span { font-size: 14px; color: var(--text-dim); font-weight: 500; letter-spacing: 0; margin-left: 2px; }
.pricing-value { font-size: 11px; color: var(--text-dim); font-weight: 600; margin-bottom: 20px; opacity: 0.75; letter-spacing: 0.2px; }
.pricing-desc { font-size: 13px; color: var(--text-dim); line-height: 1.7; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(30,51,82,0.35); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex: 1; }
.pricing-feat { font-size: 12px; color: var(--text-dim); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pricing-feat.locked { opacity: 0.35; }
.pf-check { color: var(--green); font-weight: 900; flex-shrink: 0; font-family: var(--font-mono); font-size: 13px; text-shadow: 0 0 6px rgba(0,214,114,0.3); }
.pf-lock { color: var(--text-dim); font-weight: 900; flex-shrink: 0; }
.pricing-cta { display: block; text-align: center; padding: 14px 24px; border-radius: 4px; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all 0.2s; font-family: var(--font-mono); }
.pricing-cta.primary { background: var(--green); color: var(--bg); font-weight: 900; box-shadow: 0 4px 16px rgba(0,214,114,0.2); }
.pricing-cta.primary:hover { background: #00ff99; color: var(--bg); text-decoration: none; box-shadow: 0 6px 24px rgba(0,214,114,0.3); transform: translateY(-1px); }
.pricing-cta.secondary { background: rgba(30,51,82,0.2); color: var(--text); border: 1px solid rgba(30,51,82,0.5); }
.pricing-cta.secondary:hover { border-color: rgba(30,51,82,0.8); background: rgba(30,51,82,0.3); text-decoration: none; color: var(--text-bright); }
.pricing-badge { display: none; }

/* Discount badge — used on founders card */
.pricing-discount {
  display: inline-block; padding: 3px 10px; border-radius: 3px;
  background: var(--green); color: var(--bg);
  font-family: var(--font-mono); font-size: 9px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-left: 10px; vertical-align: middle;
}
/* Struck-through original price */
.pricing-was {
  font-family: var(--font-mono); font-size: 22px; font-weight: 600;
  color: var(--text-dim); text-decoration: line-through;
  letter-spacing: -1px; margin-right: 8px; opacity: 0.6;
}
/* Urgency callout line */
.pricing-urgency {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 11px; color: var(--amber); line-height: 1.5;
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid rgba(251,191,36,0.1);
}
.pricing-urgency::before {
  content: '\26A0'; flex-shrink: 0; margin-top: 0;
}

/* Competitor comparison strip */
.competitor-strip {
  display: flex; justify-content: center; gap: 2px;
  margin: 40px auto 0; max-width: 740px;
  border-radius: 10px; overflow: hidden;
}
.cs-card {
  flex: 1; min-width: 180px; padding: 20px 18px;
  background: var(--surface); text-align: center;
  transition: background 0.2s;
}
.cs-card:first-child { border-radius: 10px 0 0 10px; }
.cs-card:last-child { border-radius: 0 10px 10px 0; }
.cs-card.cs-featured {
  background: linear-gradient(160deg, rgba(0,214,114,0.08) 0%, rgba(0,214,114,0.03) 100%);
  position: relative;
}
.cs-card.cs-featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--green); opacity: 0.8;
}
.cs-name {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-dim); margin-bottom: 8px;
}
.cs-featured .cs-name { color: var(--green); }
.cs-price {
  font-family: var(--font-mono); font-size: 26px; font-weight: 800;
  color: var(--text-bright); letter-spacing: -1px; line-height: 1;
}
.cs-price span { font-size: 12px; color: var(--text-dim); font-weight: 500; letter-spacing: 0; }
.cs-featured .cs-price { color: var(--green); }
.cs-note {
  font-size: 11px; color: var(--text-dim); margin-top: 6px; line-height: 1.4;
}
.cs-featured .cs-note { color: var(--text); }

/* Institutional card variant */
.pricing-card.institutional .pricing-name { color: var(--amber); opacity: 0.85; }

@media (max-width: 600px) {
  .competitor-strip { flex-direction: column; border-radius: 10px; gap: 1px; }
  .cs-card, .cs-card:first-child, .cs-card:last-child { border-radius: 0; padding: 14px 18px; }
  .cs-card:first-child { border-radius: 10px 10px 0 0; }
  .cs-card:last-child { border-radius: 0 0 10px 10px; }
}

/* Founders callout below pricing cards */
.founders-callout {
  margin-top: 40px;
  background: linear-gradient(160deg, rgba(13,21,32,0.96) 0%, rgba(15,25,40,0.92) 100%);
  border: 1px solid rgba(0,214,114,0.2);
  border-radius: 10px; padding: 40px 44px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,214,114,0.03);
}
.founders-callout::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--green) 30%, var(--green) 70%, transparent 95%);
  opacity: 0.6;
}
.fc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 9px; font-weight: 900;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.fc-badge svg { width: 14px; height: 14px; fill: var(--green); }
.fc-title {
  font-size: 24px; font-weight: 900; letter-spacing: -0.8px;
  color: var(--text-bright); line-height: 1.25; margin-bottom: 14px;
}
.fc-msg {
  font-size: 14px; color: var(--text-dim); line-height: 1.75; margin: 0;
}
.fc-perks {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px; padding: 0;
}
.fc-perks li {
  font-size: 13px; color: var(--text); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.fc-perks li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); margin-top: 6px;
  box-shadow: 0 0 6px rgba(0,214,114,0.3);
}
.fc-actions { display: flex; align-items: center; gap: 20px; }
.btn-founder {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px;
  background: var(--green); color: var(--bg);
  font-family: var(--font-mono); font-size: 11px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,214,114,0.2);
}
.btn-founder:hover { background: #00ff99; text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,214,114,0.3); }
.btn-founder svg { width: 14px; height: 14px; }
.fc-seats {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); font-weight: 700; letter-spacing: 0.5px;
}
.fc-seats span { color: var(--green); text-shadow: 0 0 8px rgba(0,214,114,0.3); }
@media (max-width: 900px) {
  .founders-callout { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .proof-masthead { grid-template-columns: 1fr; gap: 40px; }
  .proof-evidence-cols, .proof-row { grid-template-columns: 60px 80px 1fr; }
  .proof-evidence-cols > :nth-child(n+4), .proof-row > :nth-child(n+4) { display: none; }
  .intel-feed-grid { grid-template-columns: 1fr; }
  .classified-body { grid-template-columns: 1fr; }
  .classified-left { border-right: none; border-bottom: 1px solid rgba(255,51,102,0.08); }
  .formula-grid { grid-template-columns: 1fr; gap: 40px; }
  .insider-cols-header, .insider-row { grid-template-columns: 32px 40px 1fr 64px; }
  .insider-cols-header > :nth-child(n+4):not(:nth-child(4)):not(:nth-child(5)), .insider-row > :nth-child(5):not(.insider-conf-cell) { display: none; }
  .insider-sectors-row { display: none; }
  .pricing-tiers { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { padding: 36px 32px; }
  .proof-inner, .classified-section, .formula-section, .insiders-inner, .predictions-section, .portfolio-inner, .pricing-section { padding-left: 20px; padding-right: 20px; }
  .topnav-center { display: none; }
  .nav-sections-btn span:last-child { display: none; }
  .sections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sections-grid { grid-template-columns: 1fr; }
  .sections-overlay-inner { padding: 24px 20px; }
}
@keyframes scanMove { 0% { background-position: 0 0; } 100% { background-position: 0 100px; } }
@keyframes resultPulse { 0%,100%{opacity:1}50%{opacity:0.6} }