/* Bluebench design tokens & global styles */

:root {
  /* Palette: #25274D navy · #464866 slate · #AAABB8 silver · #2E9CCA cyan · #29648A teal */
  --bh-bg: #f5f6fa;
  --bh-bg-2: #eceef5;
  --bh-bg-3: #dee0eb;
  --bh-card: #ffffff;
  --bh-ink: #25274D;
  --bh-ink-2: #464866;
  --bh-ink-3: #6b6e85;
  --bh-line: #e3e5ee;
  --bh-line-2: #cfd2de;

  /* Cyan accent */
  --bh-accent: #2E9CCA;
  --bh-accent-2: #29648A;
  /* Accent for SMALL TEXT: must clear WCAG AA 4.5:1 on the page background.
     Light: the darker blue (5.3:1 on white). Dark theme remaps it (see below) —
     the bright cyan passes there. #2E9CCA on white is only 3.1:1: fine for large
     text, icons, borders and fills, never for small copy. */
  --bh-accent-text: var(--bh-accent-2);
  --bh-accent-soft: #d8edf7;
  --bh-accent-softer: #ecf6fb;

  /* Pastel category tints derived from palette */
  --bh-pastel-1: #d8edf7; /* cyan */
  --bh-pastel-2: #d6e7e0; /* mint */
  --bh-pastel-3: #f4e3d3; /* peach */
  --bh-pastel-4: #ecd8e3; /* rose */
  --bh-pastel-5: #ede9d2; /* citron */
  --bh-pastel-6: #d4dcec; /* slate-blue */
  --bh-pastel-7: #ddd5e8; /* violet */

  --bh-warn: #c97a3b;
  --bh-good: #2E9CCA;
  --bh-bad:  #b53b3b;

  --bh-display: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  --bh-body: 'Montserrat', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --bh-mono: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --bh-r-sm: 10px;
  --bh-r-md: 14px;
  --bh-r-lg: 20px;
  --bh-r-xl: 28px;

  --bh-shadow-sm: 0 1px 2px rgba(20, 24, 50, 0.04);
  --bh-shadow-md: 0 8px 24px -12px rgba(20, 24, 50, 0.12);
  --bh-shadow-lg: 0 24px 48px -24px rgba(20, 24, 50, 0.18);

  --bh-max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--bh-body);
  color: var(--bh-ink);
  background: var(--bh-bg);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.bh-bare { padding: 0; background: none; border: none; color: inherit; cursor: pointer; text-align: left; font: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }

kbd {
  font-family: var(--bh-mono);
  font-size: 11px;
  background: var(--bh-bg-3);
  border: 1px solid var(--bh-line);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--bh-ink-2);
}

/* ============ Nav ============ */
.bh-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 246, 250, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--bh-line);
}
.bh-nav-inner {
  max-width: var(--bh-max); margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 18px 40px;
}
.bh-nav-links { display: flex; gap: 4px; flex: 1; }
.bh-nav-link {
  padding: 8px 12px; border-radius: 999px;
  font-size: 14px; color: var(--bh-ink-2);
  transition: color .15s, background .15s;
}
.bh-nav-link:hover { color: var(--bh-ink); background: var(--bh-bg-2); }
.bh-nav-link.is-active { color: var(--bh-ink); background: var(--bh-bg-3); }
.bh-nav-right { display: flex; align-items: center; gap: 10px; }

.bh-search-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  background: var(--bh-bg-2); color: var(--bh-ink-2);
  font-size: 13px; border: 1px solid var(--bh-line);
}
.bh-search-btn:hover { background: var(--bh-bg-3); }

.bh-lang-toggle {
  display: inline-flex; background: var(--bh-bg-2);
  border: 1px solid var(--bh-line); border-radius: 999px;
  padding: 2px;
}
.bh-lang-toggle button {
  font-family: var(--bh-mono); font-size: 11px;
  padding: 5px 10px; border-radius: 999px;
  color: var(--bh-ink-3);
}
.bh-lang-toggle button.is-on { background: var(--bh-ink); color: var(--bh-bg); }

.bh-cta-sm {
  background: var(--bh-ink); color: var(--bh-bg);
  padding: 9px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: transform .15s;
}
.bh-cta-sm:hover { transform: translateY(-1px); }

.bh-search-overlay {
  position: fixed; inset: 0; background: rgba(20,24,50,0.2);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex; justify-content: center; padding-top: 12vh;
}
.bh-search-modal {
  width: min(640px, 90vw);
  background: var(--bh-card); border-radius: var(--bh-r-lg);
  box-shadow: var(--bh-shadow-lg);
  padding: 16px;
}
.bh-search-modal input {
  width: 100%; border: none; outline: none;
  font-size: 18px; font-family: var(--bh-body);
  padding: 10px 8px; background: transparent; color: var(--bh-ink);
}
.bh-search-hint { font-size: 12px; color: var(--bh-ink-3); padding: 8px; border-top: 1px solid var(--bh-line); margin-top: 8px; }

/* ============ Layout ============ */
.bh-page { min-height: 100vh; display: flex; flex-direction: column; }
.bh-main { flex: 1; }
.bh-container { max-width: var(--bh-max); margin: 0 auto; padding: 0 40px; }

.bh-section { padding: 120px 0; }
.bh-section--tight { padding: 80px 0; }
.bh-section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 48px; }
.bh-section-head h2 { font-family: var(--bh-display); font-size: 38px; line-height: 1.1; font-weight: 600; }
.bh-section-sub { color: var(--bh-ink-2); margin-top: 6px; max-width: 56ch; }
.bh-eyebrow {
  display: inline-block; font-family: var(--bh-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bh-ink-3); margin-bottom: 8px;
}
.bh-eyebrow::before { content: ""; }

/* ============ Hero ============ */
.bh-hero {
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(1000px 500px at 80% -10%, var(--bh-pastel-1), transparent 60%),
    radial-gradient(700px 400px at 10% 100%, var(--bh-pastel-3), transparent 70%),
    var(--bh-bg);
}
.bh-hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.bh-hero h1 {
  font-family: var(--bh-display); font-weight: 600;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 1.02; letter-spacing: -0.025em;
}
.bh-hero h1 em { font-style: italic; color: var(--bh-accent); }
.bh-hero-lede { font-size: 19px; color: var(--bh-ink-2); margin-top: 20px; max-width: 56ch; line-height: 1.55; }
.bh-hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.bh-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px; font-size: 15px; font-weight: 500;
  transition: transform .15s, box-shadow .2s;
}
.bh-btn--primary { background: var(--bh-ink); color: var(--bh-bg); box-shadow: var(--bh-shadow-sm); }
.bh-btn--primary:hover { transform: translateY(-2px); box-shadow: var(--bh-shadow-md); }
.bh-btn--ghost { background: var(--bh-card); color: var(--bh-ink); border: 1px solid var(--bh-line); }
.bh-btn--ghost:hover { background: var(--bh-bg-2); }

.bh-hero-stats { margin-top: 44px; display: flex; gap: 36px; }
.bh-hero-explainer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--bh-line);
  font-size: 14px;
  line-height: 1.65;
  color: var(--bh-ink-2);
  max-width: 56ch;
}
.bh-stat .num { font-family: var(--bh-display); font-size: 32px; font-weight: 600; color: var(--bh-ink); line-height: 1; }
.bh-stat .lbl { font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }

/* Hero advisor card */
.bh-hero-card {
  background: var(--bh-card); border-radius: var(--bh-r-xl);
  border: 1px solid var(--bh-line); padding: 24px;
  box-shadow: var(--bh-shadow-md);
  position: relative;
}
.bh-hero-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--bh-r-xl);
  background: linear-gradient(135deg, var(--bh-pastel-1), var(--bh-pastel-3));
  z-index: -1; filter: blur(20px); opacity: 0.6;
}
.bh-hero-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.bh-hero-card-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bh-good); animation: bh-pulse 2s infinite; }
@keyframes bh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.bh-hero-card h3 { font-family: var(--bh-display); font-size: 20px; font-weight: 600; }
.bh-hero-card .subtitle { color: var(--bh-ink-3); font-size: 13px; }

.bh-msg { padding: 12px 14px; border-radius: var(--bh-r-md); margin-bottom: 10px; font-size: 14px; line-height: 1.5; }
.bh-msg--user { background: var(--bh-bg-3); color: var(--bh-ink); margin-left: 24px; }
.bh-msg--bot { background: var(--bh-accent-soft); color: var(--bh-ink); margin-right: 24px; }
.bh-input-row {
  display: flex; gap: 8px; padding: 8px;
  background: var(--bh-bg-2); border-radius: var(--bh-r-md);
  border: 1px solid var(--bh-line); margin-top: 4px;
}
.bh-input-row input {
  flex: 1; border: none; background: transparent; outline: none;
  font: inherit; padding: 6px 8px; color: var(--bh-ink);
}
.bh-input-row button {
  background: var(--bh-ink); color: var(--bh-bg); border-radius: var(--bh-r-sm);
  padding: 6px 14px; font-size: 13px;
}

/* ============ Tool card ============ */
.bh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bh-grid--4 { grid-template-columns: repeat(4, 1fr); }

.bh-tool-card {
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .15s, box-shadow .2s, border-color .15s;
  cursor: pointer;
}
.bh-tool-card:hover { transform: translateY(-2px); box-shadow: var(--bh-shadow-md); border-color: var(--bh-line-2); }
.bh-tool-card-head { display: flex; align-items: flex-start; gap: 12px; }
.bh-tool-card-id { flex: 1; min-width: 0; }
.bh-tool-card-id h3 { font-size: 17px; font-weight: 600; }
.bh-tool-card-id p { font-size: 13px; color: var(--bh-ink-2); line-height: 1.45; margin-top: 4px; }
.bh-thumb {
  width: 48px; height: 48px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.bh-thumb-mark {
  font-family: var(--bh-display); font-size: 24px; font-weight: 700;
  color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.bh-thumb-id {
  font-family: var(--bh-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--bh-ink); text-transform: uppercase;
}
.bh-thumb-rule {
  position: absolute; left: 6px; right: 6px; bottom: 8px;
  height: 2px; background: var(--bh-accent);
}
.bh-native-badge {
  font-family: var(--bh-mono); font-size: 10px; padding: 2px 7px;
  background: var(--bh-ink); color: var(--bh-bg); border-radius: 4px;
  letter-spacing: 0.04em; align-self: flex-start;
}
.bh-tool-card-meta { display: flex; gap: 24px; padding-top: 4px; border-top: 1px dashed var(--bh-line); padding-top: 12px; }
.bh-meta-row { display: flex; flex-direction: column; gap: 2px; }
.bh-meta-lbl { font-family: var(--bh-mono); font-size: 10px; color: var(--bh-ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.bh-meta-val { font-size: 13px; font-weight: 500; }
.bh-tool-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bh-tool-card-arrow { font-size: 18px; color: var(--bh-ink-3); transition: transform .15s; }
.bh-tool-card:hover .bh-tool-card-arrow { transform: translateX(3px); color: var(--bh-ink); }

/* ============ Safety ============ */
.bh-safety { display: flex; align-items: center; gap: 8px; flex: 1; }
.bh-safety-num { font-family: var(--bh-mono); font-size: 13px; font-weight: 500; min-width: 20px; }
.bh-safety-track { flex: 1; height: 4px; background: var(--bh-bg-3); border-radius: 999px; overflow: hidden; }
.bh-safety-fill { height: 100%; background: currentColor; border-radius: 999px; transition: width .4s; }
.bh-safety--good { color: var(--bh-good); }
.bh-safety--ok   { color: var(--bh-accent-2); }
.bh-safety--warn { color: var(--bh-warn); }
.bh-safety--bad  { color: var(--bh-bad); }

.bh-radial { position: relative; color: var(--bh-accent); }
.bh-radial--good { color: var(--bh-good); }
.bh-radial--ok   { color: var(--bh-accent-2); }
.bh-radial--warn { color: var(--bh-warn); }
.bh-radial--bad  { color: var(--bh-bad); }
.bh-radial-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.bh-radial-num { font-family: var(--bh-display); font-size: 36px; font-weight: 600; color: var(--bh-ink); line-height: 1; }
.bh-radial-lbl { font-family: var(--bh-mono); font-size: 10px; color: var(--bh-ink-3); margin-top: 2px; }

/* ============ Chips ============ */
.bh-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  background: var(--bh-card); border: 1px solid var(--bh-line);
  font-size: 13px; color: var(--bh-ink-2);
  transition: all .15s;
}
.bh-chip:hover { border-color: var(--bh-line-2); color: var(--bh-ink); }
.bh-chip.is-on { background: var(--bh-ink); color: var(--bh-bg); border-color: var(--bh-ink); }
.bh-chip-dot { width: 8px; height: 8px; border-radius: 50%; }
.bh-chip-dot[data-cat="outreach"]   { background: var(--bh-pastel-1); }
.bh-chip-dot[data-cat="content"]    { background: var(--bh-pastel-3); }
.bh-chip-dot[data-cat="analytics"]  { background: var(--bh-pastel-2); }
.bh-chip-dot[data-cat="recruiting"] { background: var(--bh-pastel-4); }
.bh-chip-dot[data-cat="sales"]      { background: var(--bh-pastel-6); }
.bh-chip-dot[data-cat="automation"] { background: var(--bh-pastel-7); }
.bh-chip-dot[data-cat="data"]       { background: var(--bh-pastel-5); }
.bh-chip.is-on .bh-chip-dot { filter: brightness(1.4); }

/* ============ Footer ============ */
.bh-footer { background: var(--bh-bg-2); border-top: 1px solid var(--bh-line); padding: 120px 0 0; margin-top: 60px; }
.bh-footer-inner {
  max-width: var(--bh-max); margin: 0 auto; padding: 0 40px 80px;
  display: grid; grid-template-columns: 1.1fr 2.6fr; gap: 72px;
}
.bh-footer-brand p { color: var(--bh-ink-2); margin-top: 24px; max-width: 36ch; font-size: 14px; line-height: 1.6; }
.bh-footer-meta { font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3); display: flex; gap: 8px; }
.bh-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.bh-footer-col h4 { font-family: var(--bh-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bh-ink-3); margin-bottom: 22px; font-weight: 500; }
.bh-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
/* Column links: quiet by default (no underline), accent + tiny shift on hover */
.bh-footer-col a, .bh-footer-col button {
  font-size: 14px; color: var(--bh-ink-2); text-decoration: none;
  display: inline-block; line-height: 1.4;
  transition: color .12s ease, transform .12s ease;
}
.bh-footer-col a:hover, .bh-footer-col button:hover { color: var(--bh-accent-text); transform: translateX(2px); }
.bh-footer-col a:focus-visible { outline: 2px solid var(--bh-accent-2); outline-offset: 3px; border-radius: 4px; }

.bh-footer-socials { display: flex; gap: 10px; margin-top: 32px; }
.bh-social {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bh-card); border: 1px solid var(--bh-line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bh-ink-2); transition: all .15s;
}
.bh-social:hover { color: var(--bh-bg); background: var(--bh-ink); border-color: var(--bh-ink); transform: translateY(-2px); }

.bh-footer-bottom {
  max-width: var(--bh-max); margin: 0 auto; padding: 32px 40px;
  border-top: 1px solid var(--bh-line);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.bh-footer-legal { display: flex; gap: 28px; flex-wrap: wrap; }
.bh-footer-legal a, .bh-footer-legal button {
  font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3);
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  transition: color .12s ease;
}
.bh-footer-legal a:hover, .bh-footer-legal button:hover { color: var(--bh-ink); }

/* ============ Newsletter ============ */
.bh-newsletter {
  background: var(--bh-ink); color: var(--bh-bg);
  border-radius: var(--bh-r-xl); padding: 80px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.bh-newsletter::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, var(--bh-accent), transparent 70%);
  opacity: 0.5;
}
.bh-newsletter h2 { font-family: var(--bh-display); font-size: 40px; font-weight: 700; line-height: 1.05; color: var(--bh-bg); }
.bh-newsletter p { color: #AAABB8; margin-top: 12px; max-width: 44ch; }
.bh-newsletter-form { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.bh-newsletter input {
  background: #464866; color: var(--bh-bg);
  border: 1px solid #5d5f7d; border-radius: 999px;
  padding: 14px 18px; font: inherit; outline: none;
}
.bh-newsletter input::placeholder { color: #AAABB8; }
.bh-newsletter button {
  background: var(--bh-bg); color: var(--bh-ink);
  border-radius: 999px; padding: 14px 18px; font-weight: 500;
}
.bh-newsletter-meta { font-family: var(--bh-mono); font-size: 11px; color: #AAABB8; margin-top: 4px; letter-spacing: 0.05em; }

/* ============ Filters / DB ============ */
.bh-filter-bar {
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg); padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  position: sticky; top: 76px; z-index: 5;
  box-shadow: var(--bh-shadow-sm);
}
.bh-filter-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.bh-filter-input {
  flex: 1; min-width: 240px;
  border: 1px solid var(--bh-line); border-radius: 999px;
  padding: 10px 16px; font: inherit; outline: none;
  background: var(--bh-bg-2);
}
.bh-filter-input:focus { background: var(--bh-card); border-color: var(--bh-line-2); }
.bh-result-count { font-family: var(--bh-mono); font-size: 12px; color: var(--bh-ink-3); }

/* ============ Detail page ============ */
.bh-detail { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding-top: 40px; }
.bh-detail-head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.bh-detail-head .bh-thumb { width: 80px; height: 80px; border-radius: 18px; }
.bh-detail-head .bh-thumb .bh-thumb-mark { font-size: 40px; }
.bh-detail-head h1 { font-family: var(--bh-display); font-size: 52px; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.bh-detail-head .tagline { color: var(--bh-ink-2); font-size: 18px; margin-top: 8px; max-width: 56ch; }

.bh-prose { color: var(--bh-ink-2); line-height: 1.65; }
.bh-prose h3 { font-family: var(--bh-display); font-size: 26px; font-weight: 600; color: var(--bh-ink); margin: 32px 0 12px; }

.bh-pro-con { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.bh-pro-con-card {
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-md); padding: 18px;
}
.bh-pro-con-card h4 {
  font-family: var(--bh-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bh-ink-3); margin-bottom: 12px; font-weight: 500;
}
.bh-pro-con-card.pro h4 { color: var(--bh-good); }
.bh-pro-con-card.con h4 { color: var(--bh-bad); }
.bh-pro-con-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bh-pro-con-card li { display: flex; gap: 10px; font-size: 14px; color: var(--bh-ink); }
.bh-pro-con-card li::before { content: "+"; font-family: var(--bh-mono); color: var(--bh-good); flex-shrink: 0; }
.bh-pro-con-card.con li::before { content: "−"; color: var(--bh-bad); }

.bh-side-card {
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg); padding: 22px;
  position: sticky; top: 90px;
}
.bh-side-card .price { font-family: var(--bh-display); font-size: 40px; font-weight: 600; line-height: 1; }
.bh-side-card .price-model { font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3); margin-top: 4px; }
.bh-side-card .divider { height: 1px; background: var(--bh-line); margin: 20px 0; }

.bh-safety-grid { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.bh-safety-row { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.bh-safety-row .lbl { width: 110px; color: var(--bh-ink-2); font-size: 12px; }

/* ============ News list ============ */
.bh-news-list { display: flex; flex-direction: column; }
.bh-news-item {
  display: grid; grid-template-columns: 100px 100px 1fr 80px;
  gap: 24px; padding: 28px 0;
  border-top: 1px solid var(--bh-line);
  align-items: start;
}
.bh-news-item:first-child { border-top: none; }
.bh-news-date { font-family: var(--bh-mono); font-size: 12px; color: var(--bh-ink-3); }
.bh-news-cat { font-family: var(--bh-mono); font-size: 11px; padding: 3px 8px; border-radius: 4px; background: var(--bh-bg-3); align-self: start; text-transform: uppercase; letter-spacing: 0.05em; }
.bh-news-cat[data-cat="algorithm"] { background: var(--bh-pastel-1); }
.bh-news-cat[data-cat="feature"]   { background: var(--bh-pastel-2); }
.bh-news-cat[data-cat="policy"]    { background: var(--bh-pastel-3); }
.bh-news-cat[data-cat="tool"]      { background: var(--bh-pastel-7); }
.bh-news-title { font-size: 17px; color: var(--bh-ink); line-height: 1.35; font-weight: 500; }
.bh-news-summary { font-size: 13px; color: var(--bh-ink-2); margin-top: 6px; line-height: 1.5; }
.bh-news-impact { font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3); text-transform: uppercase; }
.bh-news-impact[data-impact="high"] { color: var(--bh-bad); }
.bh-news-impact[data-impact="medium"] { color: var(--bh-warn); }

/* ============ Advisor ============ */
.bh-advisor-page {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  height: calc(100vh - 180px); min-height: 600px; padding: 32px 40px 64px;
  max-width: var(--bh-max); margin: 0 auto;
}
.bh-advisor-panel {
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg); display: flex; flex-direction: column;
  overflow: hidden;
}
.bh-advisor-panel-head {
  padding: 20px 24px; border-bottom: 1px solid var(--bh-line);
  display: flex; align-items: center; justify-content: space-between;
}
.bh-advisor-panel-head h3 { font-family: var(--bh-display); font-size: 20px; font-weight: 600; }
.bh-chat-scroll { flex: 1; padding: 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.bh-chat-input-wrap { padding: 16px 20px; border-top: 1px solid var(--bh-line); }
/* Short screens / stacked layout: never trap the chat in a fixed viewport
   height — panels cap themselves and the page scrolls. */
@media (max-width: 1100px), (max-height: 780px) {
  .bh-advisor-page { height: auto; min-height: 0; }
  .bh-advisor-panel { height: min(72vh, 560px); }
}
.bh-recs-scroll { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.bh-rec-card {
  background: var(--bh-bg-2); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-md); padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  animation: bh-slide-in .4s ease-out;
}
@keyframes bh-slide-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.bh-rec-card-head { display: flex; align-items: center; gap: 12px; }
.bh-rec-card-head h4 { font-size: 16px; font-weight: 600; flex: 1; }
.bh-rec-card-rank { font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3); }
.bh-rec-card-why { font-size: 13px; color: var(--bh-ink-2); line-height: 1.5; }
.bh-rec-card-foot { display: flex; align-items: center; gap: 12px; padding-top: 8px; border-top: 1px dashed var(--bh-line); }

.bh-suggest-row { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 24px 16px; }
.bh-suggest {
  font-size: 12px; padding: 6px 10px; border-radius: 999px;
  background: var(--bh-bg-2); border: 1px solid var(--bh-line); color: var(--bh-ink-2);
  cursor: pointer; transition: all .15s;
}
.bh-suggest:hover { background: var(--bh-bg-3); color: var(--bh-ink); }

.bh-thinking { display: flex; gap: 4px; padding: 14px; }
.bh-thinking span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bh-ink-3); animation: bh-bounce 1.2s infinite;
}
.bh-thinking span:nth-child(2) { animation-delay: .15s; }
.bh-thinking span:nth-child(3) { animation-delay: .3s; }
@keyframes bh-bounce { 0%, 80%, 100% { transform: translateY(0); opacity: .4; } 40% { transform: translateY(-4px); opacity: 1; } }

/* ============ Compare ============ */
.bh-compare-table {
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg); overflow: hidden;
}
.bh-compare-row {
  display: grid; grid-template-columns: 200px 1fr 1fr;
  border-top: 1px solid var(--bh-line); padding: 16px 20px;
  align-items: center; gap: 20px;
}
.bh-compare-row:first-child { border-top: none; background: var(--bh-bg-2); }
.bh-compare-row .lbl { font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.bh-compare-cell { font-size: 14px; color: var(--bh-ink); }
.bh-compare-cell.win { color: var(--bh-good); font-weight: 500; }

/* ============ AI Lab ============ */
.bh-prompt-card {
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all .15s;
  cursor: pointer;
}
.bh-prompt-card:hover { border-color: var(--bh-ink); transform: translateY(-2px); box-shadow: var(--bh-shadow-md); }
.bh-prompt-type {
  font-family: var(--bh-mono); font-size: 10px; padding: 4px 9px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.08em; align-self: flex-start; font-weight: 600;
}
.bh-prompt-type[data-type="prompt"] { background: var(--bh-pastel-1); }
.bh-prompt-type[data-type="skill"]  { background: var(--bh-pastel-3); }
.bh-prompt-type[data-type="agent"]  { background: var(--bh-pastel-2); }
.bh-prompt-card h3 { font-family: var(--bh-display); font-size: 22px; font-weight: 600; line-height: 1.2; }
.bh-prompt-snippet {
  font-family: var(--bh-mono); font-size: 12px; color: var(--bh-ink-2);
  background: var(--bh-bg-2); border-radius: var(--bh-r-sm); padding: 12px;
  line-height: 1.55;
}

/* ============ Safety methodology ============ */
.bh-method-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 24px; }
.bh-method-card {
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg); padding: 22px;
}
.bh-method-card .num { font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3); }
.bh-method-card h3 { font-family: var(--bh-display); font-size: 22px; font-weight: 600; margin: 8px 0; }
.bh-method-card p { font-size: 13px; color: var(--bh-ink-2); line-height: 1.5; }
.bh-method-card .weight { font-family: var(--bh-mono); font-size: 11px; color: var(--bh-accent-text); margin-top: 12px; display: block; }

/* ============ Ticker (editorial Bloomberg-style strip) ============ */
.bh-ticker {
  background: var(--bh-ink); color: var(--bh-bg);
  border-top: 1px solid var(--bh-ink);
  font-family: var(--bh-mono); font-size: 12px;
  overflow: hidden; position: relative;
  padding: 8px 0;
}
.bh-ticker-track {
  display: inline-flex; gap: 0;
  animation: bh-ticker 60s linear infinite;
  white-space: nowrap;
}
.bh-ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px; border-right: 1px solid #464866;
}
.bh-ticker-tag {
  font-weight: 600; letter-spacing: 0.04em;
}
.bh-ticker-val { color: #AAABB8; }
.bh-ticker-delta { font-weight: 600; }
.bh-ticker-delta.up { color: #6cd1a4; }
.bh-ticker-delta.down { color: #ff8a8a; }
.bh-ticker-delta.flat { color: #AAABB8; }
@keyframes bh-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Editorial dateline ============ */
.bh-dateline {
  font-family: var(--bh-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bh-ink-2);
  display: flex; align-items: center; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--bh-ink);
}
.bh-dateline-rule { flex: 1; height: 1px; background: var(--bh-ink); }
.bh-dateline strong { color: var(--bh-ink); font-weight: 700; letter-spacing: 0.18em; }

/* ============ Numbered section heading ============ */
.bh-section-num {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: end;
  padding-bottom: 24px; margin-bottom: 56px;
  border-bottom: 2px solid var(--bh-ink);
}
.bh-section-num .tag {
  font-family: var(--bh-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bh-ink-2);
}
.bh-section-num .tag strong { color: var(--bh-ink); font-weight: 700; }
.bh-section-num h2 {
  font-family: var(--bh-display); font-size: 44px; font-weight: 700;
  line-height: 1.02; letter-spacing: -0.025em; color: var(--bh-ink);
}
.bh-section-num .action {
  font-family: var(--bh-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bh-ink-2);
  border-bottom: 1px solid var(--bh-ink-2); padding-bottom: 2px;
  cursor: pointer; background: none; border-top: none; border-left: none; border-right: none;
}
.bh-section-num .action:hover { color: var(--bh-ink); border-bottom-color: var(--bh-ink); }

/* ============ Manifest block ============ */
.bh-manifest {
  background: #ecf6fb;
  color: var(--bh-ink);
  padding: 120px 0; margin-top: 120px;
  border-top: 1px solid var(--bh-line);
  border-bottom: 1px solid var(--bh-line);
}
.bh-manifest-label { color: var(--bh-ink-3) !important; }
.bh-manifest-body { color: var(--bh-ink) !important; }
.bh-manifest-body em { color: #29648A !important; }
.bh-manifest-rules { border-top: 1px solid rgba(37, 39, 77, 0.1) !important; margin-top: 48px !important; }
.bh-manifest-rule { border-right: 1px solid rgba(37, 39, 77, 0.1) !important; }
.bh-manifest-rule:last-child { border-right: none !important; }
.bh-manifest-rule .num { color: #29648A !important; }
.bh-manifest-rule .text { color: var(--bh-ink-2) !important; }
.bh-manifest-grid {
  display: grid; grid-template-columns: 200px 1fr; gap: 60px;
}
.bh-manifest-label {
  font-family: var(--bh-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #AAABB8;
}
.bh-manifest-body {
  font-family: var(--bh-display); font-size: 32px; font-weight: 600;
  line-height: 1.25; letter-spacing: -0.015em;
  color: var(--bh-bg);
  max-width: 24ch;
}
.bh-manifest-body em { color: var(--bh-accent); font-style: normal; }
.bh-manifest-rules {
  margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid #464866;
}
.bh-manifest-rule {
  padding: 24px 24px 24px 0;
  border-right: 1px solid #464866;
}
.bh-manifest-rule:last-child { border-right: none; padding-right: 0; }
.bh-manifest-rule .num {
  font-family: var(--bh-mono); font-size: 11px; color: var(--bh-accent);
  letter-spacing: 0.12em; margin-bottom: 8px; display: block;
}
.bh-manifest-rule .text { font-size: 14px; color: var(--bh-bg); line-height: 1.55; }

/* ============ Big numerals strip ============ */
.bh-numerals {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--bh-ink);
  border-bottom: 1px solid var(--bh-ink);
  margin: 60px 0 0; padding: 48px 0;
}
.bh-numerals-cell {
  padding: 0 40px;
  border-right: 1px solid var(--bh-line);
}
.bh-numerals-cell:last-child { border-right: none; }
.bh-numerals-cell .big {
  font-family: var(--bh-display); font-size: 72px; font-weight: 700;
  line-height: 1; letter-spacing: -0.03em; color: var(--bh-ink);
}
.bh-numerals-cell .lbl {
  font-family: var(--bh-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bh-ink-2); margin-top: 16px;
  display: block; max-width: 22ch; line-height: 1.4;
}

/* Editorial hero overhaul */
.bh-hero { padding: 0 0 100px; background: var(--bh-bg); }
.bh-hero-grid { padding-top: 64px; padding-bottom: 24px; gap: 80px; }
.bh-hero h1 em { font-style: italic; color: var(--bh-accent); font-weight: 700; }
.bh-hero-card { box-shadow: none; }
.bh-hero-card::before { display: none; }

/* ============ Hero tiles ============ */
.bh-hero-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.bh-hero-tile {
  padding: 32px 28px;
  border-radius: var(--bh-r-lg);
  display: flex; flex-direction: column;
  min-height: 180px;
  position: relative;
  transition: transform .15s;
}
.bh-hero-tile:hover { transform: translateY(-2px); }
.bh-hero-tile-n {
  font-family: var(--bh-display); font-size: 56px; font-weight: 700;
  line-height: 1; letter-spacing: -0.03em; color: var(--bh-ink);
}
.bh-hero-tile-lbl {
  font-family: var(--bh-display); font-size: 20px; font-weight: 700;
  letter-spacing: -0.015em; color: var(--bh-ink);
  margin-top: auto; padding-top: 24px;
}
.bh-hero-tile-desc {
  font-family: var(--bh-mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--bh-ink-2);
  margin-top: 6px;
}

.bh-hero-tile--1 { background: #ecf6fb; }
.bh-hero-tile--2 { background: #f8efe5; }
.bh-hero-tile--3 { background: #eef4f1; }
.bh-hero-tile--4 { background: #f3f1e3; }
/* ============ AI detail drawer ============ */
.bh-drawer-overlay {
  position: fixed; inset: 0; background: rgba(37, 39, 77, 0.4);
  backdrop-filter: blur(4px); z-index: 200;
  display: flex; justify-content: flex-end;
  animation: bh-fade-in .2s ease-out;
}
@keyframes bh-fade-in { from { opacity: 0; } to { opacity: 1; } }
.bh-drawer {
  width: min(640px, 92vw);
  background: var(--bh-card);
  display: flex; flex-direction: column;
  animation: bh-slide-right .3s cubic-bezier(.16,1,.3,1);
  box-shadow: -24px 0 60px rgba(20, 24, 50, 0.18);
  position: relative;
}
@keyframes bh-slide-right {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.bh-drawer-head {
  padding: 32px 40px 24px;
  border-bottom: 1px solid var(--bh-line);
  display: flex; flex-direction: column; gap: 16px;
}
.bh-drawer-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.bh-drawer-meta-id {
  font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-3);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.bh-drawer-close {
  position: absolute; top: 24px; right: 32px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bh-bg-2); border: 1px solid var(--bh-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--bh-ink-2); z-index: 1;
}
.bh-drawer-close:hover { background: var(--bh-bg-3); color: var(--bh-ink); }
.bh-drawer h2 {
  font-family: var(--bh-display); font-size: 32px; font-weight: 600;
  line-height: 1.2; letter-spacing: -0.02em; color: var(--bh-ink);
  padding-right: 40px;
}
.bh-drawer-body {
  flex: 1; overflow-y: auto;
  padding: 32px 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.bh-drawer-section .lbl {
  font-family: var(--bh-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bh-ink-3); margin-bottom: 10px; display: block;
}
.bh-drawer-code {
  font-family: var(--bh-mono); font-size: 13px; line-height: 1.7;
  background: var(--bh-bg-2); border: 1px solid var(--bh-line);
  border-radius: 0 0 var(--bh-r-md) var(--bh-r-md);
  padding: 24px;
  color: var(--bh-ink); white-space: pre-wrap;
  border-top: none;
}
.bh-drawer-code-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; background: var(--bh-bg-3);
  border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-md) var(--bh-r-md) 0 0;
  font-family: var(--bh-mono); font-size: 11px; color: var(--bh-ink-2);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.bh-drawer-pairs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.bh-drawer-pair .k {
  font-family: var(--bh-mono); font-size: 11px;
  color: var(--bh-ink-3); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px; display: block;
}
.bh-drawer-pair .v {
  font-size: 15px; color: var(--bh-ink); font-weight: 500;
}
.bh-drawer-foot {
  padding: 24px 40px; border-top: 1px solid var(--bh-line);
  display: flex; gap: 12px; align-items: center;
}
.bh-drawer-foot .bh-btn { flex: 1; justify-content: center; }

/* ============ Agencies (colorful) ============ */
.bh-agency-hero {
  background: #f3ebe1;
  color: var(--bh-ink);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bh-line);
}
.bh-agency-hero::before {
  content: ""; position: absolute;
  right: -120px; top: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, #c88859, transparent 70%);
  opacity: 0.20;
}
.bh-agency-hero::after {
  content: ""; position: absolute;
  left: -80px; bottom: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, #4a8fb0, transparent 70%);
  opacity: 0.18;
}
.bh-agency-hero-inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: end;
  position: relative; z-index: 1;
}
.bh-agency-hero .bh-eyebrow { color: var(--bh-ink-2) !important; }
.bh-agency-hero h1 { color: var(--bh-ink) !important; }
.bh-agency-hero h1 em { font-style: italic; color: #c88859; }
.bh-agency-hero p { color: var(--bh-ink-2) !important; }
.bh-agency-hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.bh-agency-stat {
  padding: 24px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.5);
}
.bh-agency-stat .big {
  font-family: var(--bh-display); font-size: 40px; font-weight: 700;
  line-height: 1; letter-spacing: -0.02em;
}
.bh-agency-stat .lbl {
  font-family: var(--bh-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 8px;
  opacity: 0.75;
}

/* ============ Page hero — generic colorful banner ============ */
.bh-page-hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bh-line);
}
.bh-page-hero::before {
  content: ""; position: absolute;
  right: -120px; top: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  opacity: 0.22;
}
.bh-page-hero::after {
  content: ""; position: absolute;
  left: -80px; bottom: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  opacity: 0.16;
}
.bh-page-hero-inner { position: relative; z-index: 1; }
.bh-page-hero h1 em { font-style: italic; }

/* Page hero layout with stats */
.bh-page-hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: end;
  position: relative; z-index: 1;
}
.bh-page-hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.bh-page-hero-stat {
  padding: 24px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.5);
}
.bh-page-hero-stat .big {
  font-family: var(--bh-display); font-size: 40px; font-weight: 700;
  line-height: 1; letter-spacing: -0.02em;
}
.bh-page-hero-stat .lbl {
  font-family: var(--bh-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 8px;
  opacity: 0.75;
}

/* Tools page – cyan/blue tint */
.bh-page-hero--tools { background: #e6f1f7; }
.bh-page-hero--tools::before { background: radial-gradient(circle, #4a8fb0, transparent 70%); }
.bh-page-hero--tools::after  { background: radial-gradient(circle, #5a9077, transparent 70%); }
.bh-page-hero--tools h1 em   { color: #29648A; }

/* AI page – violet tint */
.bh-page-hero--ai { background: #ece8f3; }
.bh-page-hero--ai::before { background: radial-gradient(circle, #8576b3, transparent 70%); }
.bh-page-hero--ai::after  { background: radial-gradient(circle, #b06a8e, transparent 70%); }
.bh-page-hero--ai h1 em   { color: #6e57a3; }

/* Courses page – warm citron/peach tint */
.bh-page-hero--courses { background: #f3efe1; }
.bh-page-hero--courses::before { background: radial-gradient(circle, #a09246, transparent 70%); }
.bh-page-hero--courses::after  { background: radial-gradient(circle, #c88859, transparent 70%); }
.bh-page-hero--courses h1 em   { color: #8a7c2a; }

/* News page – mint tint */
.bh-page-hero--news { background: #e9f1ec; }
.bh-page-hero--news::before { background: radial-gradient(circle, #5a9077, transparent 70%); }
.bh-page-hero--news::after  { background: radial-gradient(circle, #4a8fb0, transparent 70%); }
.bh-page-hero--news h1 em   { color: #3b7d62; }

/* Lexicon page – rose tint */
.bh-page-hero--lexicon { background: #f3e8ee; }
.bh-page-hero--lexicon::before { background: radial-gradient(circle, #b06a8e, transparent 70%); }
.bh-page-hero--lexicon::after  { background: radial-gradient(circle, #8576b3, transparent 70%); }
.bh-page-hero--lexicon h1 em   { color: #a5447a; }

.bh-agency-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 40px;
}
.bh-agency-card {
  position: relative; overflow: hidden;
  padding: 32px; border-radius: var(--bh-r-lg);
  border: 1px solid transparent;
  display: flex; flex-direction: column; gap: 18px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  min-height: 320px;
}
.bh-agency-card:hover { transform: translateY(-3px); box-shadow: var(--bh-shadow-md); }
.bh-agency-card-tag {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--bh-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.7); color: var(--bh-ink-2);
  padding: 5px 10px; border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.04);
}
.bh-agency-card-head { display: flex; align-items: center; gap: 14px; }
.bh-agency-card-mark {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bh-display); font-size: 22px; font-weight: 700;
  flex-shrink: 0;
  background: var(--bh-ink); color: var(--bh-bg);
}
.bh-agency-card h3 { font-family: var(--bh-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--bh-ink); }
.bh-agency-card-loc {
  font-family: var(--bh-mono); font-size: 11px;
  color: var(--bh-ink-2); letter-spacing: 0.06em; text-transform: uppercase;
}
.bh-agency-card-focus {
  font-size: 16px; color: var(--bh-ink); line-height: 1.45;
  font-weight: 500;
}
.bh-agency-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.bh-agency-card-tags .bh-tag { background: rgba(255,255,255,0.6); }
.bh-agency-card-foot {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px;
  padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.05);
  align-items: end;
}
.bh-agency-card-foot-lbl {
  display: block;
  font-family: var(--bh-mono); font-size: 10px;
  color: var(--bh-ink-2); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 4px;
}
.bh-agency-card-foot-val {
  display: block;
  font-family: var(--bh-display); font-size: 22px; font-weight: 700;
  color: var(--bh-ink); letter-spacing: -0.015em;
}
.bh-agency-card-arrow {
  font-size: 24px; color: var(--bh-ink); transition: transform .15s;
}
.bh-agency-card:hover .bh-agency-card-arrow { transform: translateX(4px); }

.bh-agency-card--1 { background: #ecf6fb; }
.bh-agency-card--2 { background: #f8efe5; }
.bh-agency-card--3 { background: #eef4f1; }
.bh-agency-card--4 { background: #f4e8ee; }
.bh-agency-card--5 { background: #f3f1e3; }
.bh-agency-card--6 { background: #ebe7f1; }

.bh-agency-card--1 .bh-agency-card-mark { background: #4a8fb0; }
.bh-agency-card--2 .bh-agency-card-mark { background: #c88859; }
.bh-agency-card--3 .bh-agency-card-mark { background: #5a9077; }
.bh-agency-card--4 .bh-agency-card-mark { background: #b06a8e; }
.bh-agency-card--5 .bh-agency-card-mark { background: #a09246; }
.bh-agency-card--6 .bh-agency-card-mark { background: #8576b3; }

/* ============ Screenshot mockup ============ */
.bh-screenshot {
  margin: 20px 0 8px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--bh-line);
  box-shadow: var(--bh-shadow-md);
  background: var(--bh-card);
}
.bh-screenshot-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--bh-bg-2);
  border-bottom: 1px solid var(--bh-line);
}
.bh-screenshot-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.bh-screenshot-url {
  margin-left: 12px;
  font-family: var(--bh-mono); font-size: 12px; color: var(--bh-ink-3);
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: 6px; padding: 4px 14px; flex: 1; text-align: center;
}
.bh-screenshot image-slot { background: var(--bh-bg-3); }

/* ============ Profile checklist ============ */
.bh-checklist-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.bh-checklist-card {
  padding: 28px 24px;
  border-radius: var(--bh-r-lg);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
}
.bh-checklist-card .bh-checklist-num {
  font-family: var(--bh-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--bh-ink-3);
}
.bh-checklist-card h3 {
  font-family: var(--bh-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em; color: var(--bh-ink);
}
.bh-checklist-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.bh-checklist-card li {
  display: flex; gap: 10px; font-size: 13px;
  color: var(--bh-ink-2); line-height: 1.5;
}
.bh-checklist-card li .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex-shrink: 0; margin-top: 7px;
  opacity: 0.5;
}
.bh-checklist-card--1 { background: #ecf6fb; }
.bh-checklist-card--2 { background: #f8efe5; }
.bh-checklist-card--3 { background: #eef4f1; }
.bh-checklist-card--4 { background: #f4e8ee; }
.bh-checklist-card--5 { background: #f3f1e3; }
.bh-checklist-card--6 { background: #ece8f3; }

:root[data-theme="dark"] .bh-checklist-card {
  background: var(--bh-bg-2) !important;
  border: 1px solid var(--bh-line);
}
:root[data-theme="dark"] .bh-checklist-card h3 { color: var(--bh-ink); }
:root[data-theme="dark"] .bh-checklist-card li { color: var(--bh-ink-2); }

/* ============ Mobile menu ============ */
.bh-burger {
  display: none;
  width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center;
  background: var(--bh-bg-2); border: 1px solid var(--bh-line);
  color: var(--bh-ink);
}
.bh-burger svg { width: 18px; height: 18px; }
.bh-mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 21, 43, 0.55); backdrop-filter: blur(6px);
  animation: bh-fade-in .15s ease-out;
}
.bh-mobile-menu-inner {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--bh-card);
  padding: 80px 32px 32px;
  display: flex; flex-direction: column;
  animation: bh-slide-right .25s cubic-bezier(.16,1,.3,1);
}
.bh-mobile-close {
  position: absolute; top: 20px; right: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bh-bg-2); border: 1px solid var(--bh-line);
  font-size: 18px; color: var(--bh-ink);
  display: flex; align-items: center; justify-content: center;
}
.bh-mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.bh-mobile-link {
  padding: 16px 18px; border-radius: 12px;
  font-family: var(--bh-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--bh-ink-2); text-align: left;
  transition: all .15s;
}
.bh-mobile-link:hover { color: var(--bh-ink); background: var(--bh-bg-2); }
.bh-mobile-link.is-active { color: var(--bh-ink); background: var(--bh-bg-3); }

/* ============ Cookie banner ============ */
.bh-cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  z-index: 100;
  display: flex; justify-content: center;
  pointer-events: none;
  animation: bh-fade-in .3s ease-out .8s both;
}
.bh-cookie-inner {
  pointer-events: auto;
  max-width: 720px; width: 100%;
  background: var(--bh-ink); color: var(--bh-bg);
  border-radius: 16px; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.bh-cookie-title { font-size: 14px; font-weight: 600; color: var(--bh-bg); }
.bh-cookie-sub { font-size: 12px; color: #AAABB8; margin-top: 4px; }
.bh-cookie-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.bh-cookie-actions .bh-link { color: #AAABB8; border-bottom-color: rgba(255,255,255,0.2); font-size: 12px; }
.bh-cookie-actions .bh-link:hover { color: var(--bh-bg); }
.bh-cookie-actions .bh-btn--primary { background: var(--bh-bg); color: var(--bh-ink); }

@media (max-width: 1100px) {
  .bh-burger { display: inline-flex; }
  .bh-nav-links { display: none; }
}
@media (max-width: 680px) {
  .bh-theme-toggle, .bh-lang-toggle { display: none; }
  .bh-cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
:root[data-theme="dark"] {
  --bh-bg: #14152b;
  --bh-bg-2: #1c1d36;
  --bh-bg-3: #25274D;
  --bh-card: #1c1d36;
  --bh-ink: #f5f6fa;
  --bh-ink-2: #c4c6d4;
  --bh-ink-3: #8a8da3;
  --bh-line: #2f3155;
  --bh-line-2: #3f4268;

  --bh-accent-text: var(--bh-accent); /* bright cyan clears 4.5:1 on the dark bg */
  --bh-accent-soft: #1f3445;
  --bh-accent-softer: #182a3a;

  --bh-pastel-1: #1e3645;
  --bh-pastel-2: #1d3a30;
  --bh-pastel-3: #3d2818;
  --bh-pastel-4: #3a1f2b;
  --bh-pastel-5: #2e2a14;
  --bh-pastel-6: #1d2940;
  --bh-pastel-7: #281f3a;
}

:root[data-theme="dark"] .bh-nav { background: rgba(20, 21, 43, 0.85); }

/* Page heroes — dark variants */
:root[data-theme="dark"] .bh-page-hero--tools    { background: #15263a; }
:root[data-theme="dark"] .bh-page-hero--ai       { background: #20193a; }
:root[data-theme="dark"] .bh-page-hero--courses  { background: #2a2818; }
:root[data-theme="dark"] .bh-page-hero--news     { background: #15281f; }
:root[data-theme="dark"] .bh-page-hero--lexicon  { background: #2a1a26; }
:root[data-theme="dark"] .bh-agency-hero         { background: #2a2418; }

/* Heroes: ensure inner text is readable */
:root[data-theme="dark"] .bh-page-hero h1,
:root[data-theme="dark"] .bh-agency-hero h1 { color: var(--bh-ink) !important; }
:root[data-theme="dark"] .bh-page-hero p,
:root[data-theme="dark"] .bh-agency-hero p { color: var(--bh-ink-2) !important; }
:root[data-theme="dark"] .bh-page-hero .bh-eyebrow,
:root[data-theme="dark"] .bh-agency-hero .bh-eyebrow { color: var(--bh-ink-3) !important; }

/* Stat tiles (Tools/AI/Courses/News/Agencies hero, hero-tiles) — readable inverse */
:root[data-theme="dark"] .bh-page-hero-stat,
:root[data-theme="dark"] .bh-agency-stat,
:root[data-theme="dark"] .bh-hero-tile {
  background: rgba(255,255,255,0.04) !important;
  color: var(--bh-ink) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
:root[data-theme="dark"] .bh-page-hero-stat .big,
:root[data-theme="dark"] .bh-agency-stat .big,
:root[data-theme="dark"] .bh-hero-tile .bh-hero-tile-n,
:root[data-theme="dark"] .bh-hero-tile .bh-hero-tile-lbl { color: var(--bh-ink) !important; }
:root[data-theme="dark"] .bh-page-hero-stat .lbl,
:root[data-theme="dark"] .bh-agency-stat .lbl,
:root[data-theme="dark"] .bh-hero-tile .bh-hero-tile-desc { color: var(--bh-ink-3) !important; }

/* Audience + howto + testimonial cards */
:root[data-theme="dark"] .bh-aud-card,
:root[data-theme="dark"] .bh-howto-step,
:root[data-theme="dark"] .bh-testimonial {
  background: var(--bh-bg-2) !important;
  border: 1px solid var(--bh-line) !important;
}
:root[data-theme="dark"] .bh-aud-card h3,
:root[data-theme="dark"] .bh-aud-card .bh-aud-foot,
:root[data-theme="dark"] .bh-howto-step h3,
:root[data-theme="dark"] .bh-howto-step .bh-howto-cta,
:root[data-theme="dark"] .bh-testimonial p,
:root[data-theme="dark"] .bh-testimonial footer strong { color: var(--bh-ink) !important; }
:root[data-theme="dark"] .bh-aud-card p,
:root[data-theme="dark"] .bh-howto-step p,
:root[data-theme="dark"] .bh-testimonial footer span { color: var(--bh-ink-2) !important; }
:root[data-theme="dark"] .bh-aud-foot { border-top-color: var(--bh-line) !important; }
:root[data-theme="dark"] .bh-howto-cta { border-bottom-color: var(--bh-ink) !important; }
:root[data-theme="dark"] .bh-howto-step::before { opacity: 0.5 !important; }

/* Agency cards */
:root[data-theme="dark"] .bh-agency-card {
  background: var(--bh-bg-2) !important;
  border: 1px solid var(--bh-line) !important;
}
:root[data-theme="dark"] .bh-agency-card h3,
:root[data-theme="dark"] .bh-agency-card .bh-agency-card-focus,
:root[data-theme="dark"] .bh-agency-card-foot-val,
:root[data-theme="dark"] .bh-agency-card-arrow { color: var(--bh-ink) !important; }
:root[data-theme="dark"] .bh-agency-card-loc,
:root[data-theme="dark"] .bh-agency-card-foot-lbl { color: var(--bh-ink-3) !important; }
:root[data-theme="dark"] .bh-agency-card-tag {
  background: rgba(255,255,255,0.06) !important;
  color: var(--bh-ink-2) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}
:root[data-theme="dark"] .bh-agency-card-tags .bh-tag { background: rgba(255,255,255,0.05) !important; }
:root[data-theme="dark"] .bh-agency-card-foot { border-top-color: var(--bh-line) !important; }

/* Manifest */
:root[data-theme="dark"] .bh-manifest {
  background: var(--bh-bg-2) !important;
  border-top: 1px solid var(--bh-line);
  border-bottom: 1px solid var(--bh-line);
}
:root[data-theme="dark"] .bh-manifest-body { color: var(--bh-ink) !important; }
:root[data-theme="dark"] .bh-manifest-body em { color: var(--bh-accent) !important; }
:root[data-theme="dark"] .bh-manifest-rule { border-right-color: var(--bh-line) !important; }
:root[data-theme="dark"] .bh-manifest-rules { border-top-color: var(--bh-line) !important; }
:root[data-theme="dark"] .bh-manifest-rule .text { color: var(--bh-ink-2) !important; }

/* Advisor chat bubbles */
:root[data-theme="dark"] .bh-msg--bot { background: var(--bh-bg-3); color: var(--bh-ink); }
:root[data-theme="dark"] .bh-msg--user { background: var(--bh-bg-3); color: var(--bh-ink); }

/* Newsletter */
:root[data-theme="dark"] .bh-newsletter { background: #0e0f1e; }
:root[data-theme="dark"] .bh-newsletter input { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }

/* Theme toggle */
.bh-theme-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bh-bg-2);
  border: 1px solid var(--bh-line);
  border-radius: 999px;
  padding: 2px;
}
.bh-theme-toggle button {
  width: 28px; height: 24px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bh-ink-3); transition: all .15s;
}
.bh-theme-toggle button.is-on { background: var(--bh-ink); color: var(--bh-bg); }
.bh-theme-toggle svg { width: 12px; height: 12px; }
/* ============ Legal prose ============ */
.bh-legal-prose { color: var(--bh-ink-2); font-size: 16px; line-height: 1.75; }
.bh-legal-prose h2 {
  font-family: var(--bh-display); font-size: 28px; font-weight: 700;
  color: var(--bh-ink); margin: 48px 0 16px; letter-spacing: -0.015em;
}
.bh-legal-prose h2:first-child { margin-top: 0; }
.bh-legal-prose h3 {
  font-family: var(--bh-display); font-size: 20px; font-weight: 600;
  color: var(--bh-ink); margin: 28px 0 10px;
}
.bh-legal-prose p { margin-bottom: 16px; }
.bh-legal-prose a { color: var(--bh-accent-text); border-bottom: 1px solid var(--bh-accent-soft); text-decoration: none; }
.bh-legal-prose a:hover { border-bottom-color: var(--bh-accent); }
/* ============ Bluebench review block ============ */
.bh-review {
  background: var(--bh-bg-2);
  border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg);
  padding: 24px 28px;
  margin: 12px 0 24px;
}
.bh-review-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid var(--bh-line);
}
.bh-review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bh-accent-soft); color: var(--bh-accent-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bh-display); font-size: 14px; font-weight: 700;
}
.bh-review-verdict {
  margin-top: 18px; padding: 16px 20px;
  background: var(--bh-card);
  border-left: 3px solid var(--bh-accent);
  border-radius: 4px;
}
.bh-review-verdict .lbl {
  font-family: var(--bh-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bh-accent-text); font-weight: 600;
  display: block; margin-bottom: 6px;
}
.bh-review-verdict p {
  font-size: 15px; line-height: 1.55; color: var(--bh-ink); font-weight: 500;
  margin: 0;
}
.bh-testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.bh-testimonial {
  padding: 36px 32px;
  border-radius: var(--bh-r-lg);
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  transition: transform .15s;
}
.bh-testimonial:hover { transform: translateY(-3px); }
.bh-testimonial .bh-quote {
  font-family: var(--bh-display); font-size: 80px; line-height: 0.6;
  letter-spacing: -0.05em;
  opacity: 0.25;
}
.bh-testimonial p {
  font-family: var(--bh-display); font-size: 20px; font-weight: 500;
  line-height: 1.35; letter-spacing: -0.01em;
  color: var(--bh-ink); flex: 1;
}
.bh-testimonial footer {
  padding-top: 18px; border-top: 1px solid rgba(37, 39, 77, 0.1);
  display: flex; flex-direction: column; gap: 4px;
}
.bh-testimonial footer strong { font-size: 14px; font-weight: 600; color: var(--bh-ink); }
.bh-testimonial footer span { font-family: var(--bh-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--bh-ink-2); }

.bh-testimonial--1 { background: #ecf6fb; }
.bh-testimonial--1 .bh-quote { color: #29648A; }
.bh-testimonial--2 { background: #f8efe5; }
.bh-testimonial--2 .bh-quote { color: #b06a3a; }
.bh-testimonial--3 { background: #eef4f1; }
.bh-testimonial--3 .bh-quote { color: #3b7d62; }

/* ============ Investigation feature ============ */
.bh-feature {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  align-items: stretch;
  border-radius: var(--bh-r-xl);
  overflow: hidden;
  background: var(--bh-card);
  border: 1px solid var(--bh-line);
}
.bh-feature-img {
  position: relative;
  min-height: 380px;
}
.bh-feature-img svg { width: 100%; height: 100%; display: block; }
.bh-feature-img-label {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--bh-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 6px 12px; border-radius: 4px;
  backdrop-filter: blur(8px);
}
.bh-feature-body { padding: 48px; display: flex; flex-direction: column; }
.bh-feature-body h3 {
  font-family: var(--bh-display); font-size: 36px; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--bh-ink); margin: 12px 0 20px;
  max-width: 24ch;
}
.bh-feature-body p {
  font-size: 16px; color: var(--bh-ink-2); line-height: 1.6;
  margin-bottom: 24px;
}
.bh-feature-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; padding: 24px 0; margin-top: auto;
  border-top: 1px solid var(--bh-line);
  border-bottom: 1px solid var(--bh-line);
}
.bh-feature-stats > div {
  display: flex; flex-direction: column; gap: 6px;
  padding-right: 24px;
  border-right: 1px solid var(--bh-line);
}
.bh-feature-stats > div:last-child { border-right: none; padding-right: 0; }
.bh-feature-stats .big {
  font-family: var(--bh-display); font-size: 36px; font-weight: 700;
  line-height: 1; letter-spacing: -0.02em; color: var(--bh-ink);
}
.bh-feature-stats .lbl {
  font-family: var(--bh-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bh-ink-3);
}

/* ============ Comparison matrix ============ */
.bh-matrix {
  margin-top: 56px;
  background: var(--bh-card);
  border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg);
  overflow: hidden;
}
.bh-matrix-head {
  padding: 24px 32px;
  border-bottom: 1px solid var(--bh-line);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
}
.bh-matrix-head h3 {
  font-family: var(--bh-display); font-size: 24px; font-weight: 700;
}
.bh-matrix-table {
  width: 100%; border-collapse: collapse;
}
.bh-matrix-table th,
.bh-matrix-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--bh-line);
  vertical-align: middle;
}
.bh-matrix-table tr:last-child td { border-bottom: none; }
.bh-matrix-table th {
  font-family: var(--bh-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--bh-ink-3);
  background: var(--bh-bg-2);
}
.bh-matrix-table td { font-size: 14px; color: var(--bh-ink); }
.bh-matrix-table tr:hover td { background: var(--bh-bg-2); }
.bh-matrix-table .bh-matrix-name {
  font-family: var(--bh-display); font-size: 18px; font-weight: 600;
  cursor: pointer;
}
.bh-matrix-table .bh-matrix-name:hover { color: var(--bh-accent); }
.bh-howto-lede {
  font-family: var(--bh-display); font-size: 24px; font-weight: 500;
  line-height: 1.4; letter-spacing: -0.01em;
  color: var(--bh-ink); max-width: 70ch; margin-bottom: 56px;
}
.bh-howto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bh-howto-step {
  padding: 36px 28px 28px;
  border-radius: var(--bh-r-lg);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform .15s;
}
.bh-howto-step:hover { transform: translateY(-3px); }
.bh-howto-step::before {
  content: ""; position: absolute;
  right: -60px; top: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  opacity: 0.35;
}
.bh-howto-num {
  font-family: var(--bh-mono); font-size: 12px;
  letter-spacing: 0.12em; font-weight: 600;
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bh-ink); color: var(--bh-bg);
  position: relative; z-index: 1;
}
.bh-howto-step h3 {
  font-family: var(--bh-display); font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2; color: var(--bh-ink);
  position: relative; z-index: 1;
}
.bh-howto-step p {
  font-size: 14px; line-height: 1.6; color: var(--bh-ink-2);
  flex: 1; position: relative; z-index: 1;
}
.bh-howto-cta {
  font-family: var(--bh-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bh-ink); font-weight: 600;
  align-self: flex-start;
  border-bottom: 1px solid var(--bh-ink); padding-bottom: 2px;
  position: relative; z-index: 1;
}
.bh-howto-cta:hover { color: currentColor; }

.bh-howto-step:nth-child(1) { background: #ecf6fb; }
.bh-howto-step:nth-child(1)::before { background: radial-gradient(circle, #4a8fb0, transparent 70%); }
.bh-howto-step:nth-child(1) .bh-howto-num { background: #29648A; }

.bh-howto-step:nth-child(2) { background: #e6eff8; }
.bh-howto-step:nth-child(2)::before { background: radial-gradient(circle, #6b8bb5, transparent 70%); }
.bh-howto-step:nth-child(2) .bh-howto-num { background: #3d5d8a; }

.bh-howto-step:nth-child(3) { background: #25274D; color: var(--bh-bg); }
.bh-howto-step:nth-child(3)::before { background: radial-gradient(circle, #2E9CCA, transparent 70%); opacity: 0.55; }
.bh-howto-step:nth-child(3) .bh-howto-num { background: #2E9CCA; color: var(--bh-ink); }
.bh-howto-step:nth-child(3) h3 { color: var(--bh-bg); }
.bh-howto-step:nth-child(3) p { color: #AAABB8; }
.bh-howto-step:nth-child(3) .bh-howto-cta { color: var(--bh-bg); border-bottom-color: var(--bh-bg); }

/* ============ LinkedIn badge ============ */
.bh-linkedin-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: 999px;
  font-family: var(--bh-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--bh-ink-2);
  margin-bottom: 24px;
}
.bh-linkedin-badge svg { color: #0a66c2; flex-shrink: 0; }

/* ============ Audience cards ============ */
.bh-audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bh-aud-card {
  padding: 32px 28px;
  border-radius: var(--bh-r-lg);
  border: 1px solid transparent;
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  min-height: 240px;
  position: relative; overflow: hidden;
}
.bh-aud-card:hover { transform: translateY(-3px); box-shadow: var(--bh-shadow-md); }
.bh-aud-card h3 { font-family: var(--bh-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--bh-ink); }
.bh-aud-card p { font-size: 14px; color: var(--bh-ink-2); line-height: 1.55; flex: 1; }
.bh-aud-letter {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bh-ink); color: var(--bh-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bh-display); font-size: 22px; font-weight: 700;
  align-self: flex-start;
}
.bh-aud-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--bh-ink); color: var(--bh-bg);
  display: flex; align-items: center; justify-content: center;
  align-self: flex-start;
}
.bh-aud-icon svg { width: 22px; height: 22px; }
.bh-aud-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid currentColor;
  font-family: var(--bh-mono); font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--bh-ink); opacity: 0.85;
}
.bh-aud-card:hover .arrow { transform: translateX(4px); }
.bh-aud-foot .arrow { transition: transform .15s; }

.bh-aud-card--1 { background: #ecf6fb; }
.bh-aud-card--2 { background: #eef4f1; }
.bh-aud-card--3 { background: #f8efe5; }
.bh-aud-card--4 { background: #f4e8ee; }
.bh-aud-card--5 { background: #f3f1e3; }
.bh-aud-card--6 { background: #ebe7f1; }

.bh-aud-card--1 .bh-aud-icon { background: #4a8fb0; }
.bh-aud-card--2 .bh-aud-icon { background: #5a9077; }
.bh-aud-card--3 .bh-aud-icon { background: #c88859; }
.bh-aud-card--4 .bh-aud-icon { background: #b06a8e; }
.bh-aud-card--5 .bh-aud-icon { background: #a09246; }
.bh-aud-card--6 .bh-aud-icon { background: #8576b3; }

.bh-aud-card--1 .bh-aud-letter { background: #4a8fb0; }
.bh-aud-card--2 .bh-aud-letter { background: #5a9077; }
.bh-aud-card--3 .bh-aud-letter { background: #c88859; }
.bh-aud-card--4 .bh-aud-letter { background: #b06a8e; }
.bh-aud-card--5 .bh-aud-letter { background: #a09246; }
.bh-aud-card--6 .bh-aud-letter { background: #8576b3; }

/* ============ Lexicon ============ */
.bh-lex-az {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin: 40px 0 20px; padding: 16px 0;
  border-top: 1px solid var(--bh-line);
  border-bottom: 1px solid var(--bh-line);
}
.bh-lex-az-letter {
  width: 36px; height: 36px; border-radius: 8px;
  font-family: var(--bh-mono); font-size: 13px; font-weight: 600;
  background: transparent; color: var(--bh-ink-3);
  transition: all .15s;
}
.bh-lex-az-letter.is-active { color: var(--bh-ink); }
.bh-lex-az-letter.is-active:hover { background: var(--bh-ink); color: var(--bh-bg); }
.bh-lex-az-letter.is-disabled { color: var(--bh-line-2); cursor: not-allowed; }

.bh-lex-group {
  display: grid; grid-template-columns: 80px 1fr; gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--bh-line);
}
.bh-lex-letter {
  font-family: var(--bh-display); font-size: 64px; font-weight: 700;
  color: var(--bh-accent); line-height: 1;
  position: sticky; top: 220px; align-self: start;
}
.bh-lex-entries { display: flex; flex-direction: column; gap: 24px; }
.bh-lex-entry {
  padding: 20px 0;
  border-bottom: 1px dashed var(--bh-line);
}
.bh-lex-entry:last-child { border-bottom: none; }
.bh-lex-entry-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  margin-bottom: 8px;
}
.bh-lex-entry h3 { font-family: var(--bh-display); font-size: 24px; font-weight: 600; color: var(--bh-ink); }
.bh-lex-cat {
  font-family: var(--bh-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bh-ink-3); padding: 4px 10px;
  background: var(--bh-bg-2); border-radius: 4px;
}
.bh-lex-de {
  font-style: italic; color: var(--bh-accent-2); font-size: 14px;
  margin-bottom: 8px;
}
.bh-lex-defi {
  color: var(--bh-ink-2); font-size: 15px; line-height: 1.65;
  max-width: 70ch;
}

.bh-tag {
  font-family: var(--bh-mono); font-size: 11px; padding: 3px 8px;
  background: var(--bh-bg-2); border-radius: 4px; color: var(--bh-ink-2);
}
.bh-divider { height: 1px; background: var(--bh-line); margin: 32px 0; }
.bh-link-row { display: flex; gap: 12px; flex-wrap: wrap; }
.bh-link {
  color: var(--bh-accent-text); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid var(--bh-accent-soft);
}
.bh-link:hover { border-bottom-color: var(--bh-accent); }

@media (max-width: 1100px) {
  .bh-hero-grid, .bh-detail, .bh-advisor-page, .bh-newsletter, .bh-footer-inner,
  .bh-page-hero-grid, .bh-agency-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .bh-grid, .bh-grid--4 { grid-template-columns: 1fr 1fr; }
  .bh-method-grid { grid-template-columns: 1fr 1fr; }
  .bh-nav-links { display: none; }
  .bh-numerals { grid-template-columns: 1fr 1fr; }
  .bh-howto-grid { grid-template-columns: 1fr; gap: 16px; }
  .bh-testimonials { grid-template-columns: 1fr; }
  .bh-feature { grid-template-columns: 1fr; }
  .bh-feature-img { min-height: 240px; }
  .bh-audience-grid { grid-template-columns: 1fr 1fr; }
  .bh-agency-grid { grid-template-columns: 1fr; }
  .bh-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .bh-container { padding: 0 20px; }
  .bh-hero { padding: 0 0 60px; }
  .bh-hero-grid { padding-top: 32px; gap: 32px; }
  .bh-grid, .bh-grid--4, .bh-numerals, .bh-audience-grid,
  .bh-hero-tiles, .bh-page-hero-stats, .bh-method-grid,
  .bh-footer-cols, .bh-agency-hero-stats, .bh-feature-stats,
  .bh-pro-con, .bh-drawer-pairs { grid-template-columns: 1fr; }
  .bh-section { padding: 64px 0; }
  .bh-section-num { grid-template-columns: 1fr; }
  .bh-section-num h2 { font-size: 28px; }
  .bh-page-hero { padding: 56px 0 40px; }
  .bh-page-hero h1, .bh-agency-hero h1 { font-size: 40px !important; }
  .bh-hero h1 { font-size: 44px !important; }
  .bh-feature-body, .bh-newsletter { padding: 32px 24px; }
  .bh-feature-body h3 { font-size: 26px; }
  .bh-numerals-cell { padding: 0 20px; border-right: none; border-bottom: 1px solid var(--bh-line); padding-bottom: 20px; margin-bottom: 20px; }
  .bh-numerals-cell:last-child { border-bottom: none; margin-bottom: 0; }
  .bh-numerals-cell .big { font-size: 48px; }
  .bh-news-item { grid-template-columns: 1fr; gap: 8px; }
  .bh-howto-step { padding: 28px 24px; }
  .bh-drawer { width: 100vw; }
  .bh-compare-row { grid-template-columns: 1fr; gap: 8px; }
  .bh-detail-head h1 { font-size: 36px; }
  .bh-manifest-grid { grid-template-columns: 1fr; gap: 32px; }
  .bh-manifest-rules { grid-template-columns: 1fr; }
  .bh-manifest-rule { border-right: none !important; border-bottom: 1px solid rgba(37, 39, 77, 0.1); padding-bottom: 24px; }
  .bh-manifest-rule:last-child { border-bottom: none; }
  .bh-manifest { padding: 80px 0; margin-top: 80px; }
  .bh-newsletter { gap: 24px; }
}

/* ============================================================
   Production additions (logos · media gallery · multi-compare)
   ============================================================ */

/* --- Tool logos in thumbs --- */
.bh-thumb--logo { background: #ffffff; box-shadow: inset 0 0 0 1px var(--bh-line); }
.bh-thumb-img { width: 100%; height: 100%; object-fit: contain; padding: 18%; box-sizing: border-box; display: block; }
.bh-detail-head .bh-thumb--logo .bh-thumb-img { padding: 16%; }

/* --- Screenshot gallery (thumbnail strip under the main shot) --- */
.bh-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 10px 0 8px; }
.bh-gallery-thumb {
  padding: 0; line-height: 0; cursor: pointer; overflow: hidden;
  border: 1px solid var(--bh-line); border-radius: 10px; background: var(--bh-card);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.bh-gallery-thumb:hover { transform: translateY(-2px); border-color: var(--bh-line-2); }
.bh-gallery-thumb.is-active { border-color: var(--bh-accent); box-shadow: 0 0 0 1px var(--bh-accent); }

/* --- Video strip --- */
.bh-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0 8px; }
.bh-video {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer;
  border: 1px solid var(--bh-line); border-radius: 14px; background: var(--bh-bg-3);
  margin: 0; transition: transform .15s, box-shadow .2s;
}
.bh-video:hover { transform: translateY(-2px); box-shadow: var(--bh-shadow-md); }
.bh-video-play {
  position: absolute; inset: 0; margin: auto; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 39, 77, 0.78); color: #fff;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  box-shadow: var(--bh-shadow-md); transition: background .15s, transform .15s;
}
.bh-video:hover .bh-video-play { background: var(--bh-accent); transform: scale(1.06); }
.bh-video-play svg { margin-left: 2px; }
.bh-video-label {
  position: absolute; left: 12px; bottom: 10px; z-index: 1;
  font-family: var(--bh-mono); font-size: 11px; letter-spacing: 0.04em; color: #fff;
  background: rgba(0, 0, 0, 0.42); padding: 5px 10px; border-radius: 6px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

/* --- Multi-tool comparison table --- */
.bh-cmp-picker { margin-top: 28px; }
.bh-cmp-picker-lbl {
  display: block; margin-bottom: 12px;
  font-family: var(--bh-mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--bh-ink-3);
}
.bh-cmp-picker-lbl em { color: var(--bh-accent); font-style: normal; }
.bh-cmp-wrap {
  margin-top: 20px; overflow-x: auto;
  border: 1px solid var(--bh-line); border-radius: var(--bh-r-lg); background: var(--bh-card);
}
.bh-cmp { width: 100%; border-collapse: collapse; min-width: 680px; }
.bh-cmp th, .bh-cmp td {
  padding: 16px 20px; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--bh-line); border-left: 1px solid var(--bh-line);
}
.bh-cmp thead th { background: var(--bh-bg-2); vertical-align: bottom; }
.bh-cmp tbody tr:last-child th, .bh-cmp tbody tr:last-child td { border-bottom: none; }
.bh-cmp-corner, .bh-cmp-rowlabel {
  border-left: none; position: sticky; left: 0; z-index: 1; background: var(--bh-card);
}
.bh-cmp thead .bh-cmp-corner { background: var(--bh-bg-2); }
.bh-cmp-rowlabel {
  width: 180px; font-family: var(--bh-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--bh-ink-3);
}
.bh-cmp-tool { display: flex; align-items: center; gap: 12px; position: relative; padding-right: 16px; min-width: 180px; }
.bh-cmp-tool-id { display: flex; flex-direction: column; gap: 2px; }
.bh-cmp-tool-name { font-family: var(--bh-display); font-size: 17px; font-weight: 600; color: var(--bh-ink); display: flex; align-items: center; }
.bh-cmp-remove {
  position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bh-bg-3); color: var(--bh-ink-2); font-size: 14px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.bh-cmp-remove:hover { background: var(--bh-bad); color: #fff; }
.bh-cmp td { font-size: 14px; color: var(--bh-ink); }
.bh-cmp td.is-win { background: var(--bh-accent-softer); font-weight: 600; }
.bh-cmp-check { color: var(--bh-good); font-weight: 700; margin-left: 6px; }
.bh-cmp-score { display: flex; align-items: center; gap: 8px; }

@media (max-width: 680px) {
  .bh-video-grid { grid-template-columns: 1fr; }
  .bh-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   Motion & polish (scroll-reveal · animated icons · breathing room)
   Reveal/decoration only apply when motion.js adds html.bh-anim,
   which it does NOT under prefers-reduced-motion → safe by default.
   ============================================================ */

/* --- Scroll reveal --- */
html.bh-anim .bh-reveal { opacity: 0; transform: translateY(20px); will-change: opacity, transform; }
html.bh-anim .bh-reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
}

/* --- Smoother, springier hovers on interactive cards --- */
.bh-tool-card, .bh-aud-card, .bh-agency-card, .bh-prompt-card,
.bh-testimonial, .bh-howto-step, .bh-hero-tile, .bh-checklist-card {
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, border-color .2s ease, background .2s ease;
}
.bh-tool-card:hover, .bh-aud-card:hover, .bh-agency-card:hover, .bh-prompt-card:hover { transform: translateY(-4px); }
.bh-btn { transition: transform .2s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease, background .2s ease; }
.bh-btn:active { transform: translateY(0) scale(.97); }

/* --- More breathing room in the audience grid + bigger icon tiles --- */
.bh-audience-grid { gap: 24px; }
.bh-aud-card { padding: 36px 30px; min-height: 264px; gap: 16px; }
.bh-aud-icon {
  width: 58px; height: 58px; border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), var(--bh-shadow-sm);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}
.bh-aud-icon svg { width: 28px; height: 28px; overflow: visible; }
.bh-aud-card:hover .bh-aud-icon { transform: translateY(-3px) rotate(-4deg) scale(1.06); }

/* --- Animated icon internals (duotone parts react on hover) --- */
.bh-aud-icon .ic-arrow, .bh-aud-icon .ic-bar, .bh-aud-icon .ic-lens,
.bh-aud-icon .ic-spark, .bh-aud-icon .ic-wave, .bh-aud-icon .ic-node, .bh-aud-icon .ic-flame {
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
  transform-box: fill-box; transform-origin: center;
}
.bh-aud-icon .ic-bar { transform-origin: bottom; }
.bh-aud-card:hover .ic-arrow { transform: translate(1px, -2px); }
.bh-aud-card:hover .ic-bar1 { transform: scaleY(1.28); }
.bh-aud-card:hover .ic-bar2 { transform: scaleY(1.16); }
.bh-aud-card:hover .ic-bar3 { transform: scaleY(1.07); }
.bh-aud-card:hover .ic-lens { transform: scale(1.12); }
.bh-aud-card:hover .ic-node { transform: scale(1.14); }
.bh-aud-card:hover .ic-spark { animation: bh-twinkle .7s ease; }
.bh-aud-card:hover .ic-wave1 { animation: bh-wave 1.1s ease infinite; }
.bh-aud-card:hover .ic-wave2 { animation: bh-wave 1.1s ease .15s infinite; }
.bh-aud-card:hover .ic-flame { animation: bh-flicker .45s ease-in-out infinite alternate; transform-origin: bottom; }

@keyframes bh-twinkle { 0% { transform: scale(.6) rotate(-30deg); opacity: .4; } 60% { transform: scale(1.15) rotate(8deg); opacity: 1; } 100% { transform: scale(1) rotate(0); } }
@keyframes bh-wave { 0% { opacity: .25; } 50% { opacity: 1; } 100% { opacity: .25; } }
@keyframes bh-flicker { from { transform: scaleY(.86) translateY(1px); opacity: .8; } to { transform: scaleY(1.12) translateY(-1px); opacity: 1; } }

/* --- Ambient drift on hero gradient blobs (subtle life) --- */
@keyframes bh-float-a { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(14px, -16px); } }
@keyframes bh-float-b { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-16px, 12px); } }
.bh-page-hero::before, .bh-agency-hero::before { animation: bh-float-a 16s ease-in-out infinite; }
.bh-page-hero::after,  .bh-agency-hero::after  { animation: bh-float-b 20s ease-in-out infinite; }

/* --- Respect reduced motion: disable every decorative animation --- */
@media (prefers-reduced-motion: reduce) {
  .bh-page-hero::before, .bh-page-hero::after,
  .bh-agency-hero::before, .bh-agency-hero::after,
  .bh-hero-card-head .dot { animation: none !important; }
  .bh-aud-card:hover .bh-aud-icon { transform: none; }
}

/* ============================================================
   Hero wow: aurora background · kinetic word · logo marquee
   Card wow: cursor spotlight + 3D tilt
   ============================================================ */

/* --- Hero aurora background --- */
.bh-hero { position: relative; overflow: hidden; isolation: isolate; }
.bh-hero::before {
  content: ""; position: absolute; inset: -30%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(36% 36% at 20% 26%, rgba(46, 156, 202, .34), transparent 70%),
    radial-gradient(32% 32% at 84% 18%, rgba(41, 100, 138, .28), transparent 70%),
    radial-gradient(42% 42% at 72% 82%, rgba(200, 136, 89, .24), transparent 72%),
    radial-gradient(34% 34% at 14% 84%, rgba(133, 118, 179, .24), transparent 72%);
  filter: blur(8px);
  animation: bh-aurora 24s ease-in-out infinite alternate;
}
@keyframes bh-aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  50%  { transform: translate3d(2.5%, -3%, 0) scale(1.08) rotate(2deg); }
  100% { transform: translate3d(-2.5%, 2.5%, 0) scale(1.04) rotate(-2deg); }
}
.bh-hero-grid { position: relative; z-index: 1; }
:root[data-theme="dark"] .bh-hero::before { opacity: .8; }

/* --- Kinetic rotating accent word --- */
.bh-rotate { display: inline-block; }
.bh-rotate-word {
  display: inline-block; font-style: italic; font-weight: 700; color: var(--bh-accent);
  animation: bh-word-in .5s cubic-bezier(.16, 1, .3, 1);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .bh-rotate-word {
    background: linear-gradient(90deg, var(--bh-accent), var(--bh-accent-2) 50%, var(--bh-accent));
    background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bh-word-in .5s cubic-bezier(.16, 1, .3, 1), bh-shimmer 5s linear infinite;
  }
}
@keyframes bh-shimmer { to { background-position: 220% center; } }
@keyframes bh-word-in {
  from { opacity: 0; transform: translateY(0.3em) rotate(2deg); filter: blur(5px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* --- Logo marquee --- */
.bh-marquee-wrap { padding: 36px 0 4px; }
.bh-marquee-label {
  display: block; text-align: center; margin-bottom: 18px;
  font-family: var(--bh-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bh-ink-3);
}
.bh-marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.bh-marquee-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: bh-marquee 45s linear infinite; }
.bh-marquee:hover .bh-marquee-track { animation-play-state: paused; }
@keyframes bh-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.bh-marquee-item { display: inline-flex; align-items: center; height: 34px; }
.bh-marquee-item img {
  height: 30px; width: auto; max-width: 132px; object-fit: contain;
  opacity: .62; filter: grayscale(.3); transition: opacity .2s, filter .2s;
}
.bh-marquee-item img:hover { opacity: 1; filter: none; }

/* --- Cursor spotlight on cards --- */
.bh-tool-card, .bh-aud-card, .bh-agency-card, .bh-prompt-card, .bh-hero-tile { position: relative; }
.bh-tool-card::before, .bh-aud-card::before, .bh-agency-card::before,
.bh-prompt-card::before, .bh-hero-tile::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(46, 156, 202, .16), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.bh-tool-card:hover::before, .bh-aud-card:hover::before, .bh-agency-card:hover::before,
.bh-prompt-card:hover::before, .bh-hero-tile:hover::before { opacity: 1; }
/* keep content above the spotlight layer */
.bh-tool-card > *, .bh-aud-card > *, .bh-agency-card > *, .bh-prompt-card > *, .bh-hero-tile > * { position: relative; z-index: 1; }

/* --- 3D tilt toward the cursor --- */
.bh-tool-card, .bh-aud-card, .bh-agency-card, .bh-prompt-card {
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, border-color .2s ease, background .2s ease;
}
.bh-tool-card:hover, .bh-aud-card:hover, .bh-agency-card:hover, .bh-prompt-card:hover {
  transform: perspective(900px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateY(-5px);
}
.bh-hero-tile { transition: transform .25s cubic-bezier(.16, 1, .3, 1); }
.bh-hero-tile:hover { transform: perspective(900px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  .bh-hero::before, .bh-marquee-track, .bh-rotate-word { animation: none !important; }
  .bh-tool-card:hover, .bh-aud-card:hover, .bh-agency-card:hover, .bh-prompt-card:hover { transform: translateY(-4px); }
  .bh-hero-tile:hover { transform: translateY(-3px); }
}

/* --- Fix: italic + background-clip:text clipped the last glyph on the right --- */
.bh-rotate { padding-right: 0.18em; }
.bh-rotate-word { padding: 0 0.16em 0.06em 0.02em; }

/* --- "What you get" cards: benefit-led, no icons. A small label sits where the
       number badge used to, then a concrete headline + body. --- */
.bh-howto-step { padding-top: 32px; }
.bh-howto-kicker {
  display: inline-block; position: relative; z-index: 1;
  font-family: var(--bh-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bh-accent-2);
  padding: 6px 12px; border-radius: 999px;
  background: var(--bh-card); border: 1px solid var(--bh-line);
}
.bh-howto-step:nth-child(3) .bh-howto-kicker {
  color: #cfe7f2; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16);
}

/* --- Audience cards: real tool-logo stack instead of an abstract icon --- */
.bh-aud-logos { display: flex; align-items: center; align-self: flex-start; }
.bh-aud-logo {
  width: 46px; height: 46px; border-radius: 13px; background: #fff;
  border: 1px solid var(--bh-line); box-shadow: var(--bh-shadow-sm);
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: -14px; transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}
.bh-aud-logo:first-child { margin-left: 0; }
.bh-aud-logo:nth-child(1) { z-index: 3; }
.bh-aud-logo:nth-child(2) { z-index: 2; }
.bh-aud-logo:nth-child(3) { z-index: 1; }
.bh-aud-logo img { width: 26px; height: 26px; object-fit: contain; display: block; }
/* fan out slightly on hover */
.bh-aud-card:hover .bh-aud-logo:nth-child(2) { transform: translateX(5px); }
.bh-aud-card:hover .bh-aud-logo:nth-child(3) { transform: translateX(10px); }

/* --- Tool detail: "At a glance" key-facts block at the top --- */
.bh-glance {
  background: var(--bh-accent-softer); border: 1px solid var(--bh-accent-soft);
  border-radius: var(--bh-r-lg); padding: 24px 28px; margin: 24px 0 8px;
}
.bh-glance-title {
  display: block; margin-bottom: 16px;
  font-family: var(--bh-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--bh-accent-2);
}
.bh-glance ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.bh-glance li { display: flex; gap: 10px; }
.bh-glance li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bh-accent); margin-top: 6px; flex-shrink: 0; }
.bh-glance-k { display: block; font-family: var(--bh-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bh-ink-3); }
.bh-glance-v { display: block; font-size: 14px; color: var(--bh-ink); font-weight: 500; line-height: 1.45; margin-top: 3px; }
@media (max-width: 680px) { .bh-glance ul { grid-template-columns: 1fr; } }

/* --- Comparison: section rows + boolean / list cells --- */
.bh-cmp-sec th {
  background: var(--bh-bg-3); text-align: left;
  font-family: var(--bh-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--bh-ink-2);
  padding: 10px 20px;
}
.bh-cmp-yes { color: var(--bh-good); font-weight: 600; white-space: nowrap; }
.bh-cmp-no { color: var(--bh-ink-3); }
.bh-cmp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bh-cmp-tags .bh-tag { white-space: nowrap; }

/* --- Affiliate disclosure under the provider button --- */
.bh-aff-note {
  margin: 8px 2px 0; font-size: 11px; line-height: 1.45; color: var(--bh-ink-3);
}

/* --- A11y utilities --- */
.bh-skip {
  position: fixed; top: -100px; left: 16px; z-index: 300;
  background: var(--bh-ink); color: var(--bh-bg); padding: 10px 18px;
  border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none;
  transition: top .15s ease-out;
}
.bh-skip:focus-visible { top: 12px; outline: 2px solid var(--bh-accent); outline-offset: 2px; }
.bh-vh {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Cards rendered as real <a> links (SEO + keyboard) --- */
.bh-card-link { color: inherit; text-decoration: none; }
.bh-card-link:hover { color: inherit; text-decoration: none; }
.bh-card-link:focus-visible { outline: 2px solid var(--bh-accent-2); outline-offset: 3px; }

/* --- Money pages: ranked rows + FAQ (best-of hubs, alternatives) --- */
.bh-rank-row {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bh-card); border: 1px solid var(--bh-line);
  border-radius: var(--bh-r-lg); padding: 24px;
}
.bh-rank-pos {
  font-family: var(--bh-mono); font-size: 22px; font-weight: 700;
  color: var(--bh-accent-2); line-height: 1.2; min-width: 40px;
}
.bh-rank-main { flex: 1; min-width: 0; }
.bh-faq-item {
  border: 1px solid var(--bh-line); border-radius: 12px;
  padding: 14px 18px; margin-bottom: 10px; background: var(--bh-card);
}
.bh-faq-item summary { font-size: 15px; font-weight: 600; cursor: pointer; }
.bh-faq-item p { font-size: 14px; color: var(--bh-ink-2); line-height: 1.6; margin-top: 10px; }

/* --- Discontinued tools (vendor shut down; entry kept for reference) --- */
.bh-badge--dead { background: #a33a3a; color: #fff; }
.bh-dead-note {
  background: #fdefec; color: #7a2e21; border: 1px solid #f0cdc4;
  border-radius: 10px; padding: 12px 16px; font-size: 14px; line-height: 1.55;
}
:root[data-theme="dark"] .bh-dead-note { background: #3a2420; color: #f0b9ad; border-color: #5c352c; }
