/* ValueHire B2B — page-specific styles atop vc-tokens.css */

.vhb-root {
  background: var(--vc-bg);
  color: var(--vc-text);
  font-family: var(--vc-font-sans);
  min-height: 100vh;
}

/* ── GNB ────────────────────────────────────────────── */
.vhb-gnb {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 40px;
  border-bottom: 1px solid var(--vc-border);
  background: var(--vc-bg);
  position: sticky; top: 0; z-index: 50;
}
.vhb-gnb-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--vc-pulse);
  display: grid; place-items: center;
  color: #0b0b0d;
  font-family: var(--vc-font-display);
  font-weight: 800;
  font-size: 18px;
}
.vhb-gnb-name {
  font-family: var(--vc-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--vc-text-bright);
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.vhb-gnb-beta {
  font-family: var(--vc-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-pulse);
  background: var(--vc-pulse-soft);
  border: 1px solid var(--vc-pulse);
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1;
}
.vhb-gnb-glance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border: 1px solid var(--vc-border);
  border-radius: 999px;
  background: var(--vc-surface-1);
  color: var(--vc-text-2);
  text-decoration: none;
  font-family: var(--vc-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 180ms var(--vc-ease);
  margin-right: 8px;
}
.vhb-gnb-glance b {
  color: var(--vc-text-bright);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.vhb-gnb-glance-play {
  color: var(--vc-pulse);
  font-size: 10px;
}
.vhb-gnb-glance-arrow {
  color: var(--vc-text-faint);
  transition: transform 180ms var(--vc-ease);
}
.vhb-gnb-glance:hover {
  border-color: var(--vc-border-pulse);
  background: var(--vc-pulse-soft);
  color: var(--vc-text);
}
.vhb-gnb-glance:hover .vhb-gnb-glance-arrow {
  transform: translateX(3px);
  color: var(--vc-pulse);
}

.vhb-gnb-tabs { display: flex; gap: 6px; }
.vhb-gnb-tab {
  font-family: var(--vc-font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--vc-text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 160ms var(--vc-ease);
}
.vhb-gnb-tab:hover { color: var(--vc-text); background: var(--vc-surface-1); }
.vhb-gnb-tab.is-active {
  color: var(--vc-pulse);
  border-color: var(--vc-pulse);
  background: var(--vc-pulse-soft);
}
.vhb-gnb-email {
  font-family: var(--vc-font-mono);
  font-size: 12px;
  color: var(--vc-text-muted);
  margin-left: 18px;
}
.vhb-gnb-logout {
  font-family: var(--vc-font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--vc-text-2);
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--vc-surface-2);
  border: 1px solid var(--vc-border);
  cursor: pointer;
  margin-left: 8px;
}

.vhb-page { max-width: 1320px; margin: 0 auto; padding: 28px 40px 80px; }

/* ── Step header (shared) ───────────────────────────── */
.vhb-step-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 14px;
  background: var(--vc-surface-1);
  border: 1px solid var(--vc-border);
  margin-bottom: 28px;
}
.vhb-step-back {
  font-family: var(--vc-font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--vc-text-2);
  padding: 7px 12px;
  border-radius: 6px;
  background: var(--vc-surface-2);
  border: 1px solid var(--vc-border);
  cursor: pointer;
}
.vhb-step-pill {
  font-family: var(--vc-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--vc-pulse);
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--vc-pulse-soft);
  border: 1px solid var(--vc-pulse);
  text-transform: uppercase;
}
.vhb-step-title {
  font-family: var(--vc-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--vc-text-bright);
}
.vhb-step-sub {
  font-size: 13px;
  color: var(--vc-text-muted);
}

/* ── Pills / chips / tags ───────────────────────────── */
.vhb-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--vc-surface-2);
  border: 1px solid var(--vc-border);
  font-size: 12px;
  color: var(--vc-text-2);
  font-weight: 500;
}
.vhb-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--vc-surface-2);
  border: 1px solid var(--vc-border);
  font-family: var(--vc-font-mono);
  font-size: 11px;
  color: var(--vc-text-muted);
  font-weight: 500;
}
.vhb-tag-soft {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--vc-pulse-soft);
  color: var(--vc-pulse);
  font-family: var(--vc-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── Step 1: customer cards ─────────────────────────── */
.vhb-cust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.vhb-cust-card {
  position: relative;
  border-radius: 12px;
  background: var(--vc-surface-1);
  border: 1px solid var(--vc-border);
  padding: 22px 22px 18px 26px;
  cursor: pointer;
  transition: all 180ms var(--vc-ease);
  overflow: hidden;
}
.vhb-cust-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent, var(--vc-pulse));
}
.vhb-cust-card:hover {
  background: var(--vc-surface-2);
  transform: translateY(-2px);
  box-shadow: var(--vc-shadow-card);
}
.vhb-cust-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.vhb-cust-name {
  font-family: var(--vc-font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--vc-text-bright);
  letter-spacing: -0.01em;
}
.vhb-cust-slug {
  font-family: var(--vc-font-mono);
  font-size: 11px;
  color: var(--vc-text-faint);
}
.vhb-cust-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.vhb-cust-tagline {
  font-size: 14px;
  color: var(--vc-text);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 10px;
}
.vhb-cust-body {
  font-size: 13px;
  color: var(--vc-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.vhb-cust-foot {
  display: flex; align-items: center; gap: 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--vc-border);
  font-size: 12px;
  color: var(--vc-text-muted);
}
.vhb-cust-foot b { color: var(--vc-pulse); font-weight: 700; margin-left: 4px; font-family: var(--vc-font-mono); font-size: 14px; }

/* ── Step 2: JD list ────────────────────────────────── */
.vhb-meta-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 4px 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--vc-border);
}
.vhb-meta-row .vhb-meta-text {
  font-size: 13px; color: var(--vc-text-muted); margin-left: 10px;
}
.vhb-jd-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.vhb-jd-card {
  background: var(--vc-surface-1);
  border: 1px solid var(--vc-border);
  border-radius: 12px;
  padding: 22px 24px;
  cursor: pointer;
  transition: all 160ms var(--vc-ease);
}
.vhb-jd-card:hover { background: var(--vc-surface-2); border-color: var(--vc-border-2); }
.vhb-jd-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.vhb-jd-title { font-family: var(--vc-font-display); font-weight: 700; font-size: 17px; color: var(--vc-text-bright); }
.vhb-jd-cnt { font-size: 12px; color: var(--vc-text-muted); }
.vhb-jd-cnt b { color: var(--vc-pulse); font-family: var(--vc-font-mono); font-size: 13px; margin-left: 4px; font-weight: 700; }
.vhb-jd-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.vhb-jd-desc { font-size: 13px; color: var(--vc-text-2); line-height: 1.55; margin-bottom: 14px; }
.vhb-jd-stack { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── Step 3: Candidates ─────────────────────────────── */
.vhb-cand-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 4px 0 6px;
}
.vhb-cand-legend {
  display: flex; gap: 18px; margin: 14px 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--vc-border);
  font-size: 12px;
  color: var(--vc-text-muted);
}
.vhb-cand-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.vhb-cand-card {
  background: var(--vc-surface-1);
  border: 1px solid var(--vc-border);
  border-radius: 12px;
  padding: 20px 22px 22px;
  cursor: pointer;
  transition: all 160ms var(--vc-ease);
}
.vhb-cand-card:hover { background: var(--vc-surface-2); }
.vhb-cand-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.vhb-trend-up { color: var(--vc-pulse); font-size: 12px; }
.vhb-trend-down { color: var(--vc-danger); font-size: 12px; }
.vhb-trend-flat { color: var(--vc-text-faint); font-size: 12px; }
.vhb-cand-name { font-family: var(--vc-font-display); font-weight: 700; font-size: 16px; color: var(--vc-text-bright); }
.vhb-cand-score { margin-left: auto; font-family: var(--vc-font-mono); font-weight: 700; font-size: 22px; color: var(--vc-pulse); }
.vhb-cand-score-d { color: var(--vc-text-faint); font-size: 12px; font-weight: 500; }
.vhb-cand-role { font-size: 14px; color: var(--vc-text); font-weight: 600; margin-bottom: 4px; }
.vhb-cand-co { font-size: 12px; color: var(--vc-text-muted); margin-bottom: 12px; }
.vhb-cand-co b { color: var(--vc-text-2); font-weight: 600; }
.vhb-cand-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px dashed var(--vc-border); }
.vhb-cand-bullets { list-style: none; padding: 0; margin: 0; font-size: 13px; color: var(--vc-text-2); }
.vhb-cand-bullets li { padding: 3px 0; padding-left: 14px; position: relative; }
.vhb-cand-bullets li::before { content: '•'; position: absolute; left: 0; color: var(--vc-text-faint); }

/* ── Kanban ─────────────────────────────────────────── */
.vhb-kb-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.vhb-kb-h1 { font-family: var(--vc-font-display); font-weight: 800; font-size: 26px; color: var(--vc-text-bright); }
.vhb-kb-live { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--vc-pulse); padding: 4px 10px; background: var(--vc-pulse-soft); border-radius: 500px; font-weight: 600; }
.vhb-kb-live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--vc-pulse); animation: vhb-pulse 1.8s var(--vc-ease) infinite; }
@keyframes vhb-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.vhb-kb-select {
  background: var(--vc-surface-2);
  border: 1px solid var(--vc-border);
  color: var(--vc-text);
  font-family: var(--vc-font-sans);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  min-width: 320px;
}
.vhb-kb-role { font-size: 12px; color: var(--vc-text-muted); margin-left: 12px; }
.vhb-kb-role-btn { font-size: 12px; padding: 6px 12px; border-radius: 6px; background: var(--vc-surface-2); border: 1px solid var(--vc-border); color: var(--vc-text-2); font-weight: 600; cursor: pointer; font-family: var(--vc-font-sans); }
.vhb-kb-role-btn.is-on { background: var(--vc-pulse); color: #0b0b0d; border-color: var(--vc-pulse); }
.vhb-kb-team-btn { font-size: 12px; padding: 6px 12px; border-radius: 6px; background: #5b6cff; color: white; border: none; font-weight: 600; cursor: pointer; font-family: var(--vc-font-sans); margin-left: auto; }

.vhb-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  background: var(--vc-surface-1);
  border: 1px solid var(--vc-border);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 24px;
}
.vhb-stat { display: flex; flex-direction: column; gap: 6px; }
.vhb-stat-n { font-family: var(--vc-font-display); font-weight: 800; font-size: 34px; line-height: 1; color: var(--vc-text-bright); }
.vhb-stat-u { font-size: 14px; color: var(--vc-text-muted); margin-left: 4px; font-weight: 500; }
.vhb-stat-l { font-size: 12px; color: var(--vc-text-muted); }

.vhb-board {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px;
}
.vhb-col { flex: 0 0 280px; min-width: 280px; }
.vhb-col-head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 4px 12px;
  border-top: 3px solid var(--col, var(--vc-pulse));
}
.vhb-col-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--col); }
.vhb-col-name { font-size: 13px; font-weight: 600; color: var(--vc-text); }
.vhb-col-cnt { font-family: var(--vc-font-mono); font-size: 12px; color: var(--vc-text-muted); }
.vhb-col-add { margin-left: auto; width: 22px; height: 22px; border-radius: 6px; background: var(--vc-surface-2); border: 1px solid var(--vc-border); color: var(--vc-text-muted); cursor: pointer; display: grid; place-items: center; font-size: 14px; }
.vhb-col-list { display: flex; flex-direction: column; gap: 10px; }

.vhb-card {
  background: var(--vc-surface-1);
  border: 1px solid var(--vc-border);
  border-radius: 8px;
  padding: 14px 14px 12px;
  cursor: grab;
  transition: all 160ms var(--vc-ease);
}
.vhb-card:hover { background: var(--vc-surface-2); }
.vhb-card-name { font-size: 13px; font-weight: 600; color: var(--vc-text); line-height: 1.35; margin-bottom: 6px; display: flex; justify-content: space-between; gap: 8px; }
.vhb-card-score { font-family: var(--vc-font-mono); font-size: 13px; color: var(--vc-pulse); font-weight: 700; flex-shrink: 0; }
.vhb-card-role { font-size: 12px; color: var(--vc-text-muted); margin-bottom: 4px; line-height: 1.4; }
.vhb-card-pos { font-size: 11px; color: var(--vc-text-faint); margin-bottom: 8px; font-family: var(--vc-font-mono); }
.vhb-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.vhb-tag-tiny {
  font-family: var(--vc-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--vc-surface-3);
  color: var(--vc-text-2);
  font-weight: 600;
  text-transform: uppercase;
}
.vhb-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; border-top: 1px solid var(--vc-border); }
.vhb-card-date { font-size: 11px; color: var(--vc-text-faint); font-family: var(--vc-font-mono); }
.vhb-card-status {
  font-size: 10.5px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  font-family: var(--vc-font-mono);
}
.s-pool { background: var(--vc-pulse-soft); color: var(--vc-pulse); }
.s-doc  { background: rgba(165, 137, 255, 0.14); color: #a589ff; }
.s-test { background: rgba(165, 137, 255, 0.14); color: #a589ff; }
.s-i1   { background: var(--vc-info-soft); color: var(--vc-info); }
.s-i2   { background: var(--vc-info-soft); color: var(--vc-info); }
.s-final { background: var(--vc-warning-soft); color: var(--vc-warning); }

/* ── Pipeline page (summary) ────────────────────────── */
.vhb-pipe-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 30px; }
.vhb-pipe-card { background: var(--vc-surface-1); border: 1px solid var(--vc-border); border-radius: 12px; padding: 22px; }
.vhb-pipe-card h4 { margin: 0 0 8px; font-size: 13px; font-weight: 600; color: var(--vc-text-muted); }
.vhb-pipe-card .n { font-family: var(--vc-font-display); font-weight: 800; font-size: 32px; color: var(--vc-text-bright); line-height: 1; }
.vhb-pipe-card .delta { font-size: 12px; color: var(--vc-pulse); margin-top: 8px; font-family: var(--vc-font-mono); }
.vhb-pipe-card .delta.down { color: var(--vc-danger); }
.vhb-pipe-bar-wrap { height: 8px; background: var(--vc-surface-3); border-radius: 4px; overflow: hidden; margin-top: 14px; }
.vhb-pipe-bar { height: 100%; background: var(--vc-pulse); border-radius: 4px; }

.vhb-pipe-table { background: var(--vc-surface-1); border: 1px solid var(--vc-border); border-radius: 12px; overflow: hidden; }
.vhb-pipe-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.6fr; gap: 16px; padding: 14px 22px; align-items: center; border-bottom: 1px solid var(--vc-border); font-size: 13px; }
.vhb-pipe-row:last-child { border-bottom: none; }
.vhb-pipe-row.head { background: var(--vc-surface-2); font-family: var(--vc-font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--vc-text-muted); font-weight: 600; padding: 12px 22px; }
.vhb-pipe-row .pos { font-weight: 600; color: var(--vc-text); }
.vhb-pipe-row .co { font-size: 12px; color: var(--vc-text-muted); }
.vhb-pipe-row .num { font-family: var(--vc-font-mono); color: var(--vc-text-2); font-weight: 600; }
.vhb-pipe-row .stage { display: inline-flex; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; font-family: var(--vc-font-mono); background: var(--vc-info-soft); color: var(--vc-info); }

/* ── Newsletter ─────────────────────────────────────── */
.vhb-nl-hero {
  background: var(--vc-surface-1);
  border: 1px solid var(--vc-border);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.vhb-nl-eyebrow { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--vc-text-muted); text-transform: uppercase; margin-bottom: 14px; }
.vhb-nl-h1 { font-family: var(--vc-font-display); font-weight: 800; font-size: 36px; letter-spacing: -0.015em; color: var(--vc-text-bright); margin: 0 0 14px; }
.vhb-nl-sub { font-size: 14px; color: var(--vc-text-muted); max-width: 540px; line-height: 1.55; }
.vhb-nl-cta {
  font-family: var(--vc-font-sans);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 500px;
  background: var(--vc-pulse);
  color: #0b0b0d;
  border: none;
  cursor: pointer;
}
.vhb-nl-filter { display: flex; align-items: center; gap: 12px; padding: 14px 0; margin-bottom: 10px; border-bottom: 1px solid var(--vc-border); }
.vhb-nl-flabel { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--vc-text-muted); text-transform: uppercase; margin-right: 6px; }
.vhb-nl-fpill {
  font-family: var(--vc-font-sans);
  font-size: 13px; font-weight: 600;
  padding: 7px 14px;
  border-radius: 500px;
  background: var(--vc-surface-2);
  border: 1px solid var(--vc-border);
  color: var(--vc-text-2);
  cursor: pointer;
  display: inline-flex; gap: 6px; align-items: center;
}
.vhb-nl-fpill.is-on { background: var(--vc-pulse); color: #0b0b0d; border-color: var(--vc-pulse); }
.vhb-nl-fpill .cnt { font-family: var(--vc-font-mono); font-size: 11px; opacity: 0.6; }
.vhb-nl-total { margin-left: auto; font-size: 12px; color: var(--vc-text-muted); }

.vhb-nl-thead { display: grid; grid-template-columns: 160px 100px 1fr 140px 60px; gap: 18px; padding: 14px 4px; font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vc-text-faint); border-bottom: 1px solid var(--vc-border); }
.vhb-nl-row {
  display: grid; grid-template-columns: 160px 100px 1fr 140px 60px; gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--vc-border);
  align-items: start;
  cursor: pointer;
  transition: background 160ms var(--vc-ease);
}
.vhb-nl-row:hover { background: var(--vc-surface-1); }
.vhb-nl-vol { font-family: var(--vc-font-mono); font-size: 12px; color: var(--vc-text-muted); }
.vhb-nl-vol b { display: block; color: var(--vc-text-2); font-weight: 500; font-size: 12px; margin-bottom: 4px; }
.vhb-nl-cat {
  display: inline-flex; padding: 4px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  background: var(--vc-pulse-soft); color: var(--vc-pulse);
  font-family: var(--vc-font-mono);
  letter-spacing: 0.04em;
}
.vhb-nl-cat.industry { background: rgba(165, 137, 255, 0.14); color: #a589ff; }
.vhb-nl-title { font-family: var(--vc-font-display); font-weight: 700; font-size: 15px; color: var(--vc-text-bright); margin-bottom: 8px; line-height: 1.35; }
.vhb-nl-desc { font-size: 13px; color: var(--vc-text-muted); line-height: 1.55; margin-bottom: 10px; }
.vhb-nl-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vhb-nl-src { font-size: 13px; color: var(--vc-text-2); }
.vhb-nl-read { color: var(--vc-pulse); font-size: 13px; font-weight: 600; font-family: var(--vc-font-sans); text-align: right; padding-top: 2px; }

/* ── Empty stubs ────────────────────────────────────── */
.vhb-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 480px;
  border: 1px dashed var(--vc-border);
  border-radius: 16px;
  background: var(--vc-surface-1);
  color: var(--vc-text-muted);
  padding: 60px 40px;
  text-align: center;
}
.vhb-empty h2 { font-family: var(--vc-font-display); font-weight: 700; font-size: 22px; color: var(--vc-text-2); margin: 0 0 10px; }
.vhb-empty p { font-size: 14px; color: var(--vc-text-muted); max-width: 480px; line-height: 1.55; }
.vhb-empty .vh-mark { width: 56px; height: 56px; border-radius: 14px; background: var(--vc-surface-2); border: 1px solid var(--vc-border); display: grid; place-items: center; margin-bottom: 22px; color: var(--vc-pulse); font-family: var(--vc-font-display); font-weight: 800; font-size: 22px; }

/* ── Candidate card click affordance ───────────────────── */
.vhb-cand-card-click { position: relative; }
.vhb-cand-card-click:hover { border-color: var(--vc-border-2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.vhb-cand-cta { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--vc-border); font-family: var(--vc-font-mono); font-size: 11px; color: var(--vc-text-faint); letter-spacing: 0.04em; transition: color 160ms var(--vc-ease); }
.vhb-cand-card-click:hover .vhb-cand-cta { color: var(--vc-pulse); }

/* ── Candidate Detail Drawer ───────────────────────────── */
.vhb-cd-scrim { position: fixed; inset: 0; background: rgba(8, 8, 10, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 9000; display: flex; justify-content: flex-end; animation: vhb-cd-fade 220ms var(--vc-ease); }
@keyframes vhb-cd-fade { from { opacity: 0; } to { opacity: 1; } }
.vhb-cd-drawer { width: min(1080px, 92vw); height: 100%; background: var(--vc-bg); border-left: 1px solid var(--vc-border); box-shadow: -24px 0 60px rgba(0,0,0,0.5); overflow-y: auto; animation: vhb-cd-slide 280ms var(--vc-ease-out); display: flex; flex-direction: column; }
@keyframes vhb-cd-slide { from { transform: translateX(40px); opacity: 0.4; } to { transform: translateX(0); opacity: 1; } }

.vhb-cd-top { position: sticky; top: 0; z-index: 5; display: flex; align-items: center; gap: 16px; padding: 14px 28px; background: rgba(14, 14, 16, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--vc-border); }
.vhb-cd-close { background: var(--vc-surface-2); border: 1px solid var(--vc-border); color: var(--vc-text-2); padding: 7px 12px 7px 10px; border-radius: 8px; font-size: 12px; font-weight: 600; font-family: var(--vc-font-sans); cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.vhb-cd-close:hover { background: var(--vc-surface-3); color: var(--vc-text-bright); }
.vhb-cd-close span { font-size: 14px; }
.vhb-cd-top-meta { font-family: var(--vc-font-mono); font-size: 10.5px; color: var(--vc-text-faint); letter-spacing: 0.12em; }
.vhb-cd-actions { margin-left: auto; display: flex; gap: 8px; }
.vhb-cd-act { background: var(--vc-surface-2); border: 1px solid var(--vc-border); color: var(--vc-text-2); font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 8px; cursor: pointer; font-family: var(--vc-font-sans); }
.vhb-cd-act:hover { background: var(--vc-surface-3); }
.vhb-cd-act.is-primary { background: var(--vc-pulse); color: #0b0b0d; border-color: var(--vc-pulse); }
.vhb-cd-act.is-primary:hover { background: var(--vc-pulse-deep); }

.vhb-cd-header { padding: 32px 36px 28px; display: grid; grid-template-columns: 88px 1fr 240px; gap: 22px; border-bottom: 1px solid var(--vc-border); }
.vhb-cd-avatar { width: 88px; height: 88px; border-radius: 22px; display: grid; place-items: center; font-family: var(--vc-font-display); font-weight: 800; font-size: 38px; color: #0b0b0d; }
.vhb-cd-id-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.vhb-cd-name { font-family: var(--vc-font-display); font-weight: 800; font-size: 32px; color: var(--vc-text-bright); margin: 0; line-height: 1.1; }
.vhb-cd-role { font-size: 15px; color: var(--vc-text-2); font-weight: 600; margin-bottom: 12px; }
.vhb-cd-role span { color: var(--vc-text-muted); font-weight: 500; }
.vhb-cd-meta-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.vhb-cd-headline { font-size: 14px; color: var(--vc-text-muted); line-height: 1.55; max-width: 560px; margin: 0; }
.vhb-cd-score { background: var(--vc-surface-1); border: 1px solid var(--vc-border); border-radius: 14px; padding: 16px 18px; display: flex; flex-direction: column; align-self: start; }
.vhb-cd-score-label { font-family: var(--vc-font-mono); font-size: 10px; color: var(--vc-text-faint); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.vhb-cd-score-n { font-family: var(--vc-font-display); font-weight: 800; font-size: 44px; color: var(--sc); line-height: 1; }
.vhb-cd-score-n span { font-family: var(--vc-font-mono); font-size: 13px; color: var(--vc-text-faint); font-weight: 500; }
.vhb-cd-score-bar { margin-top: 12px; height: 6px; background: var(--vc-surface-3); border-radius: 6px; overflow: hidden; }
.vhb-cd-score-bar > div { height: 100%; background: var(--sc); border-radius: 6px; }

.vhb-cd-sec-eyebrow { font-family: var(--vc-font-mono); font-size: 10.5px; color: var(--vc-text-faint); letter-spacing: 0.14em; margin-bottom: 12px; text-transform: uppercase; }
.vhb-cd-summary { padding: 24px 36px; border-bottom: 1px solid var(--vc-border); }
.vhb-cd-summary p { font-size: 15px; line-height: 1.65; color: var(--vc-text-2); margin: 0; max-width: 880px; }

.vhb-cd-3col { padding: 28px 36px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; border-bottom: 1px solid var(--vc-border); }
.vhb-cd-card { background: var(--vc-surface-1); border: 1px solid var(--vc-border); border-radius: 14px; padding: 20px 22px; }

.vhb-cd-exp { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.vhb-cd-exp > li { position: relative; padding-left: 18px; }
.vhb-cd-exp > li::before { content: ''; position: absolute; left: 4px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--vc-pulse); box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.15); }
.vhb-cd-exp > li + li::after { content: ''; position: absolute; left: 7.5px; top: -12px; width: 1px; height: 14px; background: var(--vc-border); }
.vhb-cd-exp-head { display: flex; align-items: baseline; gap: 10px; justify-content: space-between; flex-wrap: wrap; }
.vhb-cd-exp-co { font-family: var(--vc-font-display); font-weight: 700; font-size: 15px; color: var(--vc-text-bright); }
.vhb-cd-exp-period { font-family: var(--vc-font-mono); font-size: 11px; color: var(--vc-text-faint); }
.vhb-cd-exp-role { font-size: 13px; color: var(--vc-text-2); font-weight: 600; margin-top: 2px; margin-bottom: 6px; }
.vhb-cd-exp-bul { list-style: none; padding: 0; margin: 0; font-size: 12.5px; color: var(--vc-text-muted); line-height: 1.55; }
.vhb-cd-exp-bul li { padding-left: 12px; position: relative; padding-top: 2px; }
.vhb-cd-exp-bul li::before { content: '–'; position: absolute; left: 0; color: var(--vc-text-faint); }

.vhb-cd-edu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.vhb-cd-edu-school { font-family: var(--vc-font-display); font-weight: 700; font-size: 14px; color: var(--vc-text-bright); }
.vhb-cd-edu-major { font-size: 12.5px; color: var(--vc-text-2); margin-top: 2px; }
.vhb-cd-edu-period { font-family: var(--vc-font-mono); font-size: 10.5px; color: var(--vc-text-faint); margin-top: 3px; }
.vhb-cd-edu-note { font-size: 11.5px; color: var(--vc-text-muted); margin-top: 4px; padding: 4px 8px; background: var(--vc-surface-2); border-radius: 6px; display: inline-block; }
.vhb-cd-lang { display: flex; flex-wrap: wrap; gap: 6px; }

.vhb-cd-comp { display: flex; flex-direction: column; gap: 10px; }
.vhb-cd-comp-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed var(--vc-border); font-size: 12.5px; }
.vhb-cd-comp-row:last-child { border-bottom: none; }
.vhb-cd-comp-row span { color: var(--vc-text-muted); }
.vhb-cd-comp-row b { color: var(--vc-text-bright); font-weight: 700; font-family: var(--vc-font-display); }
.vhb-cd-comp-row b.vhb-pulse { color: var(--vc-pulse); }

.vhb-cd-signals { display: flex; flex-direction: column; gap: 10px; }
.vhb-cd-sig-top { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--vc-text-2); margin-bottom: 4px; font-family: var(--vc-font-mono); }
.vhb-cd-sig-bar { height: 4px; background: var(--vc-surface-3); border-radius: 4px; overflow: hidden; }
.vhb-cd-sig-bar > div { height: 100%; background: linear-gradient(90deg, var(--vc-pulse-deep), var(--vc-pulse)); }

.vhb-cd-match { padding: 28px 36px; border-bottom: 1px solid var(--vc-border); }
.vhb-cd-match-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.vhb-cd-match-col { background: var(--vc-surface-1); border: 1px solid var(--vc-border); border-radius: 12px; padding: 18px 20px; }
.vhb-cd-match-col.is-strength { border-top: 2px solid var(--vc-pulse); }
.vhb-cd-match-col.is-concern { border-top: 2px solid var(--vc-warning); }
.vhb-cd-match-col.is-note { border-top: 2px solid var(--vc-info); background: var(--vc-surface-2); }
.vhb-cd-match-h { font-family: var(--vc-font-mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--vc-text-2); margin-bottom: 12px; font-weight: 700; }
.vhb-cd-match-col ul { list-style: none; padding: 0; margin: 0; font-size: 13px; line-height: 1.55; color: var(--vc-text-2); }
.vhb-cd-match-col ul li { padding: 5px 0 5px 16px; position: relative; }
.vhb-cd-match-col.is-strength ul li::before { content: '+'; position: absolute; left: 0; color: var(--vc-pulse); font-weight: 800; }
.vhb-cd-match-col.is-concern ul li::before { content: '!'; position: absolute; left: 0; color: var(--vc-warning); font-weight: 800; }
.vhb-cd-match-col.is-note p { font-size: 13px; line-height: 1.6; color: var(--vc-text-2); margin: 0; font-style: italic; }

.vhb-cd-proj-sec { padding: 28px 36px; border-bottom: 1px solid var(--vc-border); }
.vhb-cd-proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vhb-cd-proj { background: var(--vc-surface-1); border: 1px solid var(--vc-border); border-radius: 12px; padding: 18px 20px; }
.vhb-cd-proj-impact { font-family: var(--vc-font-display); font-weight: 800; font-size: 22px; color: var(--vc-pulse); line-height: 1.05; margin-bottom: 8px; }
.vhb-cd-proj-title { font-size: 13.5px; font-weight: 700; color: var(--vc-text-bright); margin-bottom: 4px; }
.vhb-cd-proj-detail { font-size: 12px; color: var(--vc-text-muted); line-height: 1.5; }

.vhb-cd-skills { margin: 28px 36px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; padding: 22px 26px; }
.vhb-cd-stack { display: flex; flex-wrap: wrap; gap: 6px; }

.vhb-cd-foot { margin-top: auto; padding: 22px 36px 32px; border-top: 1px solid var(--vc-border); display: flex; align-items: center; gap: 16px; }
.vhb-cd-foot-back { background: var(--vc-surface-2); border: 1px solid var(--vc-border); color: var(--vc-text-2); font-size: 12.5px; font-weight: 600; padding: 9px 14px; border-radius: 8px; cursor: pointer; font-family: var(--vc-font-sans); }
.vhb-cd-foot-back:hover { background: var(--vc-surface-3); }
.vhb-cd-foot-meta { font-family: var(--vc-font-mono); font-size: 10.5px; color: var(--vc-text-faint); letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .vhb-cd-header { grid-template-columns: 1fr; }
  .vhb-cd-3col { grid-template-columns: 1fr; }
  .vhb-cd-match-grid { grid-template-columns: 1fr; }
  .vhb-cd-proj-grid { grid-template-columns: 1fr; }
}

/* ── Responsive (Issue #386 · ADR-0028 follow-up) ──────────────── */
html, body { overflow-x: hidden; }

@media (max-width: 768px) {
  .vhb-gnb { padding: 16px; }
  .vhb-gnb-tabs { overflow-x: auto; flex-wrap: nowrap; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .vhb-gnb-tabs > * { scroll-snap-align: start; flex: 0 0 auto; }
  .vhb-page { padding: 20px; }
  .vhb-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vhb-stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vhb-pipe-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vhb-pipe-row { display: block; padding: 14px; }
  .vhb-pipe-row > * + * { margin-top: 6px; }
  .vhb-nl-thead { display: none; }
  .vhb-nl-row { display: block; padding: 14px; border: 1px solid var(--vc-border); border-radius: 8px; margin-bottom: 12px; gap: 0; }
  .vhb-nl-row > * + * { margin-top: 6px; }
  .vhb-cust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vhb-jd-grid,
  .vhb-cand-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .vhb-page { padding: 16px; }
  .vhb-stats,
  .vhb-stat-row,
  .vhb-pipe-grid,
  .vhb-cust-grid { grid-template-columns: 1fr; }
}
