.recruiter-page { gap: 16px; }

.recruiter-hero {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid #d8e2ef;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(238, 244, 255, .96), rgba(255, 255, 255, .86)),
    radial-gradient(circle at 88% 18%, rgba(15, 118, 110, .14), transparent 34%);
  box-shadow: 0 22px 58px rgba(16, 24, 40, .09);
}

.recruiter-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.recruiter-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.recruiter-flow-grid article {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 5px 9px;
  align-items: start;
  padding: 12px;
  border: 1px solid #d8e1ee;
  border-radius: 10px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}

.recruiter-flow-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #175cd3;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  z-index: 2;
}

.recruiter-flow-grid article:nth-child(2)::after {
  content: "↓";
  top: auto;
  right: auto;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}

.recruiter-flow-grid article:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.recruiter-flow-grid article:nth-child(3)::after {
  content: "←";
  right: auto;
  left: -15px;
}

.recruiter-flow-grid article:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.recruiter-flow-grid b {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 999px;
  background: #175cd3;
  font-size: 12px;
}

.recruiter-flow-grid strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.recruiter-flow-grid span {
  color: #667085;
  line-height: 1.35;
  font-size: 12px;
}

.target-builder-grid {
  display: grid;
  grid-template-columns: minmax(360px, .55fr) minmax(760px, 1.45fr);
  gap: 16px;
  align-items: start;
}

.target-form,
.scorecard-panel {
  display: grid;
  gap: 12px;
}

.target-textareas textarea {
  min-height: 128px;
}

.recruiter-fold {
  display: grid;
  border: 1px solid #d8e1ee;
  border-radius: 10px;
  background: #fbfcff;
  overflow: hidden;
}

.recruiter-fold summary {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  color: #101828;
  cursor: pointer;
  list-style: none;
  font-weight: 950;
  background: linear-gradient(90deg, #f8fafc, #eef4ff);
}

.recruiter-fold summary::-webkit-details-marker {
  display: none;
}

.recruiter-fold summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #175cd3;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #fff;
  font-weight: 950;
}

.recruiter-fold[open] summary::after {
  content: "-";
}

.recruiter-fold .fold-body {
  display: grid;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #e7edf6;
  background: #fff;
}

.target-profile-panel summary {
  background: linear-gradient(90deg, #f0fdfa, #fff);
}

.target-profile-body {
  gap: 12px;
}

.dimension-fold summary {
  background: linear-gradient(90deg, #f5f3ff, #fff);
}

.dimension-fold summary::after {
  order: 2;
  margin-left: auto;
}

.fold-summary-actions {
  order: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 0;
}

.fold-summary-actions button {
  min-height: 30px;
  padding: 5px 9px;
  font-size: 12px;
  white-space: nowrap;
}

.mini-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.mini-head span {
  color: #344054;
  font-weight: 950;
}

.hard-filter-list {
  display: grid;
  gap: 8px;
}

.hard-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 8px;
}

.hard-filter-row input {
  min-height: 40px;
  font-weight: 700;
}

.recruiter-target-selects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scorecard-panel {
  padding: 14px;
  border: 1px solid #d8e1ee;
  border-radius: 10px;
  background: #fbfcff;
}

.scorecard-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.scorecard-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.scorecard-head strong {
  display: block;
  font-size: 18px;
}

.scorecard-head span {
  display: none;
}

.tag-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px 12px;
  align-items: start;
}

.tag-section label {
  margin: 0;
  padding-top: 3px;
}

.recruiter-weight-editor {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.weight-card {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 10px;
  border: 1px solid #d8e1ee;
  border-left: 4px solid #175cd3;
  border-radius: 10px;
  background: #fff;
}

.weight-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 32px;
  gap: 6px;
  align-items: center;
}

.weight-card-head input[data-dim-name] {
  min-width: 0;
  padding: 4px 8px;
  font-size: 13px;
}

.ghost-icon {
  min-width: 34px;
  min-height: 32px;
  padding: 0;
  display: grid;
  place-items: center;
}

.ghost-icon svg {
  width: 15px;
  height: 15px;
}

.weight-card input[type="number"] {
  width: 52px;
  min-height: 32px;
  padding: 4px 6px;
}

.weight-card textarea {
  min-height: 58px;
  padding: 8px;
  font-size: 12px;
}

.weight-card-range {
  width: 100%;
  min-height: 24px;
  padding: 0;
}

.dim-total {
  min-width: 112px;
  padding: 8px 10px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-weight: 900;
  text-align: center;
}

.recruiter-action-progress-grid {
  display: grid;
  grid-template-columns: minmax(460px, 1.22fr) minmax(0, 1.78fr);
  gap: 12px;
  align-items: stretch;
}

.recruiter-app .card-head {
  border-bottom-color: #dbe7ff;
  background: linear-gradient(180deg, #eff6ff, #fff);
}

.recruiter-app .card:nth-of-type(3n + 2) .card-head {
  background: linear-gradient(180deg, #ecfdf3, #fff);
}

.recruiter-app .card:nth-of-type(3n) .card-head {
  background: linear-gradient(180deg, #fffbeb, #fff);
}

.target-builder-card {
  border-color: #93c5fd;
  border-left: 6px solid #175cd3;
  background: linear-gradient(180deg, #eff6ff, #fff 68%);
}

.target-builder-card .card-head {
  color: #0f3d91;
  background: linear-gradient(90deg, #dbeafe, #fff);
}

.recruiter-action-card {
  border-color: #99f6e4;
  border-left: 6px solid #0f766e;
  background: linear-gradient(180deg, #f0fdfa, #fff 68%);
}

.recruiter-action-card .card-head {
  color: #134e4a;
  background: linear-gradient(90deg, #ccfbf1, #fff);
}

.progress-card {
  border-color: #fcd34d;
  border-left: 6px solid #b45309;
  background: linear-gradient(180deg, #fffbeb, #fff 68%);
}

.progress-card .card-head {
  color: #78350f;
  background: linear-gradient(90deg, #fef3c7, #fff);
}

.shortlist-card {
  border-color: #c4b5fd;
  border-left: 6px solid #7c3aed;
  background: linear-gradient(180deg, #f5f3ff, #fff 68%);
}

.shortlist-card .card-head {
  color: #4c1d95;
  background: linear-gradient(90deg, #ede9fe, #fff);
}

.report-section {
  border-color: #fecdd3;
  border-left: 6px solid #be123c;
  background: linear-gradient(180deg, #fff1f2, #fff 68%);
}

.report-section .card-head {
  color: #881337;
  background: linear-gradient(90deg, #ffe4e6, #fff);
}

.recruiter-dropzone {
  min-height: 92px;
  padding: 10px;
}

.recruiter-dropzone svg {
  width: 22px;
  height: 22px;
}

.recruiter-dropzone strong {
  margin-top: 3px;
}

.recruiter-action-card .card-body {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) minmax(210px, .9fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.candidate-upload-pane {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto;
  gap: 6px;
}

.recruiter-dropzone .row {
  justify-content: center;
  margin-top: 8px;
}

.recruiter-dropzone .row button {
  min-height: 32px;
  padding: 6px 9px;
  font-size: 12px;
}

.recruiter-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: stretch;
}

.recruiter-action-row .usage-note {
  margin: 0;
  min-height: 36px;
  display: grid;
  align-items: center;
  padding: 7px 9px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #f8fafc;
  color: #526071;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.recruiter-action-row button {
  width: 100%;
  min-height: 34px;
  justify-content: center;
}

.recruiter-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.recruiter-plan {
  min-height: 124px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
  border: 1px solid #d8e1ee;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.recruiter-plan.active,
.recruiter-plan:hover {
  border-color: #175cd3;
  background: #eef4ff;
  box-shadow: 0 14px 30px rgba(23, 92, 211, .13);
}

.recruiter-plan strong {
  font-size: 32px;
  line-height: 1;
}

.recruiter-plan span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-weight: 950;
}

.recruiter-plan span em {
  padding: 4px 7px;
  color: #b45309;
  border-radius: 999px;
  background: #fef3c7;
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
}

.recruiter-plan small,
.recruiter-plan p,
.auto-recruit-card p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.auto-recruit-card .card-body {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 238px;
}

.auto-recruit-card {
  border-color: #fbbf24;
  background: linear-gradient(180deg, #fffbeb, #fff);
}

.auto-recruit-card p {
  color: #344054;
  font-weight: 780;
}

.business-cta {
  min-height: 34px;
  justify-content: center;
  color: #fff;
  border-color: #b45309;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 16px 34px rgba(180, 83, 9, .22);
  font-size: 14px;
}

.progress-track {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #0f766e);
  transition: width .28s ease;
}

.candidate-progress-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.progress-metric {
  display: grid;
  align-content: center;
  min-height: 46px;
  padding: 6px 8px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
}

.progress-metric strong { font-size: 20px; line-height: 1; color: #175cd3; }
.progress-metric span { margin-top: 4px; font-size: 12px; font-weight: 900; }
.progress-metric small { color: #667085; font-size: 11px; }

.log-box,
.api-box {
  min-height: 58px;
  padding: 12px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #f8fafc;
  color: #526071;
  line-height: 1.65;
  white-space: pre-wrap;
}

.log-box {
  max-height: 72px;
  overflow: auto;
  margin-top: 8px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.stat-pills,
.export-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shortlist-card .card-head .export-btns button {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 13px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #526071;
  font-weight: 850;
  font-size: 12px;
}

.stat-pill .val {
  color: #175cd3;
  font-size: 15px;
  font-weight: 950;
}

.shortlist-example-note {
  margin: 0 0 12px;
  padding: 9px 11px;
  border: 1px solid #fedf89;
  border-radius: 8px;
  color: #93370d;
  background: #fffaeb;
  font-size: 13px;
  font-weight: 850;
}

.candidate-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
}

.candidate-reference-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #d8e1ee;
  border-left: 5px solid #7c3aed;
  border-radius: 8px;
  background: linear-gradient(180deg, #f5f3ff, #fff);
}

.candidate-reference-card:nth-child(2) {
  border-left-color: #0f766e;
  background: linear-gradient(180deg, #f0fdfa, #fff);
}

.candidate-reference-card:nth-child(3) {
  border-left-color: #b45309;
  background: linear-gradient(180deg, #fffbeb, #fff);
}

.candidate-reference-card > div {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.candidate-reference-card b,
.report-top-row > b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eef4ff;
  color: #175cd3;
}

.candidate-reference-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidate-reference-card div span {
  color: #175cd3;
  font-size: 20px;
  font-weight: 950;
}

.candidate-reference-card p {
  margin: 0;
  color: #526071;
  font-size: 12px;
}

.candidate-reference-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 17px;
  color: #344054;
  line-height: 1.45;
}

.recruiter-table-wrap {
  max-height: 760px;
  overflow: auto;
  border: 1px solid #e4eaf2;
  border-radius: 10px;
}
.recruiter-table-wrap table { min-width: 1340px; table-layout: fixed; }
.recruiter-table-wrap th:nth-child(1) { width: 200px; }
.recruiter-table-wrap th:nth-child(2) { width: 78px; }
.recruiter-table-wrap th:nth-child(3) { width: 232px; }
.recruiter-table-wrap th:nth-child(4) { width: 246px; }
.recruiter-table-wrap th:nth-child(5) { width: 236px; }
.recruiter-table-wrap th:nth-child(6) { width: 218px; }
.recruiter-table-wrap th:nth-child(7) { width: 96px; }
.recruiter-table-wrap th,
.recruiter-table-wrap td {
  padding: 11px 10px;
  border-bottom: 1px solid #edf1f6;
  vertical-align: top;
  text-align: left;
}
.recruiter-table-wrap th {
  position: sticky;
  top: 0;
  z-index: 4;
  color: #667085;
  background: #f8fafc;
  font-size: 12px;
  box-shadow: 0 1px 0 #edf1f6;
}

.score-ring {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid #d0d5dd;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 950;
}
.score-ring span,
.score-ring small { display: block; line-height: 1; }
.score-ring small { margin-top: -8px; font-size: 9px; color: #667085; }
.score-ring.high { color: #067647; border-color: #12b76a; background: #ecfdf3; }
.score-ring.mid { color: #b54708; border-color: #fdb022; background: #fffaeb; }
.score-ring.low { color: #b42318; border-color: #f97066; background: #fef3f2; }

.dim-mini { display: grid; gap: 5px; }
.dim-mini div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 30px;
  gap: 6px;
  align-items: center;
  color: #526071;
  font-size: 12px;
}
.dim-mini em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidate-cell {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}
.candidate-cell > b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #175cd3;
  border-radius: 999px;
  background: #eef4ff;
}
.candidate-cell strong,
.candidate-cell span,
.candidate-cell small {
  display: block;
}
.candidate-cell span,
.candidate-cell small,
.judgement-cell small,
.action-cell span {
  color: #667085;
}
.judgement-cell,
.action-cell {
  display: grid;
  gap: 6px;
}
.cell-list {
  margin: 0;
  padding-left: 17px;
}
.cell-list li {
  margin: 3px 0;
  color: #344054;
  line-height: 1.55;
}
.question-detail {
  margin-top: 8px;
}
.question-detail summary {
  cursor: pointer;
  color: #175cd3;
  font-weight: 900;
}
.question-detail p {
  margin: 6px 0 0;
  color: #667085;
  line-height: 1.6;
}
.dim-mini span {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}
.dim-mini b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #175cd3;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.compare-card {
  min-height: 210px;
  padding: 14px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
}

.compare-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.compare-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.compare-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}

.compare-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #175cd3, #0f766e);
}

.compare-card p {
  margin: 7px 0;
  color: #667085;
}

.recommend-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  padding: 5px 8px;
  border-radius: 8px;
  font-weight: 950;
  font-size: 12px;
}

.recommend-badge.yes { color: #067647; background: #ecfdf3; border: 1px solid #abefc6; }
.recommend-badge.maybe { color: #175cd3; background: #eef4ff; border: 1px solid #b2ccff; }
.recommend-badge.pending { color: #b54708; background: #fffaeb; border: 1px solid #fedf89; }
.recommend-badge.no { color: #b42318; background: #fef3f2; border: 1px solid #fecdca; }
.source-note {
  display: block;
  margin-top: 6px;
  color: #667085;
  text-align: center;
}

.candidate-import-summary {
  min-height: 24px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.report-doc {
  display: grid;
  width: min(100%, 1122px);
  max-width: 100%;
  gap: 14px;
  margin: 0 auto;
  overflow-x: hidden;
  white-space: normal;
  box-sizing: border-box;
}
.report-doc *,
.report-doc *::before,
.report-doc *::after {
  box-sizing: border-box;
}
.report-doc h2,
.report-doc h3,
.report-doc p {
  margin: 0;
}
.report-doc h2 { font-size: 24px; }
.report-doc h3 { margin-bottom: 8px; font-size: 16px; }
.report-doc section {
  break-inside: avoid;
}
.report-section-block {
  padding: 12px;
  border: 1px solid #d8e1ee;
  border-radius: 10px;
  background: #fff;
}
.report-section-block > p,
.report-section-block li {
  color: #344054;
  line-height: 1.68;
}
.deep-list {
  margin: 0;
  padding-left: 20px;
}
.deep-list li {
  margin: 8px 0;
}
.report-context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.report-context-grid div {
  padding: 10px;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
  background: #f8fafc;
}
.report-context-grid b,
.report-context-grid span {
  display: block;
}
.report-context-grid b { color: #101828; }
.report-context-grid span { margin-top: 5px; color: #526071; line-height: 1.58; }
.report-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.report-kpis span {
  padding: 10px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
}
.report-kpis b {
  display: block;
  color: #175cd3;
  font-size: 22px;
}
.report-distribution,
.report-bars {
  display: grid;
  gap: 8px;
}
.dist-row,
.report-bars div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
}
.dist-row em,
.report-bars em {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}
.dist-row b,
.report-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #175cd3;
}
.dist-row.green b { background: #12b76a; }
.dist-row.blue b { background: #175cd3; }
.dist-row.orange b { background: #f79009; }
.dist-row.red b { background: #f04438; }
.dist-row span,
.report-bars span,
.dist-row strong,
.report-bars strong {
  color: #344054;
  font-size: 12px;
  font-style: normal;
}
.report-top-table {
  display: grid;
  gap: 8px;
}
.report-top-row {
  display: grid;
  grid-template-columns: 26px minmax(190px, .9fr) 58px minmax(0, 1.5fr) 86px;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
  background: #f8fafc;
}
.report-top-row strong small {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-weight: 600;
}
.report-top-row p {
  margin: 0;
  color: #344054;
}
.report-top-row em {
  font-style: normal;
  color: #175cd3;
  font-weight: 900;
  text-align: right;
}
.report-compare-grid article,
.chart-card {
  padding: 12px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #f8fafc;
}
.report-compare-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.report-compare-grid article > div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
}
.report-compare-grid article b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #175cd3;
  background: #eef4ff;
}
.report-compare-grid article span {
  color: #067647;
  font-weight: 950;
  text-align: right;
}
.report-compare-grid article p {
  margin: 8px 0 10px;
  color: #667085;
  line-height: 1.55;
}
.report-compare-grid dl {
  display: grid;
  gap: 5px;
  margin: 0;
}
.report-compare-grid dt {
  color: #101828;
  font-size: 12px;
  font-weight: 950;
}
.report-compare-grid dd {
  margin: 0 0 5px;
  color: #344054;
  line-height: 1.55;
}
.visual-grid {
  display: grid;
  gap: 12px;
}
.multi-radar-card {
  display: grid;
  gap: 12px;
}
.chart-card.multi-radar-card svg {
  height: auto !important;
  max-width: 900px;
}
.multi-radar-grid {
  fill: none;
  stroke: #d8e1ee;
  stroke-width: 1;
}
.multi-radar-axis {
  stroke: #e4eaf2;
  stroke-width: 1;
}
.multi-radar-shape {
  fill: color-mix(in srgb, var(--radar-color) 11%, transparent);
  stroke: var(--radar-color);
  stroke-width: 3;
  stroke-linejoin: round;
  opacity: .88;
}
.multi-radar-card text {
  fill: #344054;
  font-size: 13px;
  font-weight: 950;
  text-anchor: middle;
  dominant-baseline: middle;
}
.multi-radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.multi-radar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}
.multi-radar-legend i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}
.chart-card h4 {
  margin: 0 0 8px;
  color: #344054;
  font-size: 14px;
}
.chart-card p {
  margin: 8px 0 0;
  color: #667085;
  line-height: 1.58;
}
.chart-card svg {
  width: 100%;
  height: auto;
  display: block;
}
.chart-card.wide svg {
  height: 260px;
}
.donut-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.donut-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
  background: #fff;
}
.donut {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, .08);
}
.donut span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #101828;
  background: #fff;
  font-size: 20px;
  font-weight: 950;
}
.donut span small {
  margin-top: -8px;
  color: #667085;
  font-size: 11px;
  font-weight: 900;
}
.donut-card strong {
  display: block;
  margin-bottom: 6px;
  color: #101828;
}
.donut-card p {
  margin: 7px 0 0;
  color: #667085;
  line-height: 1.5;
}
.donut-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.donut-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #526071;
  font-size: 12px;
  font-weight: 850;
}
.donut-legend i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}
.heatmap-grid {
  display: grid;
  grid-template-columns: minmax(116px, 1.1fr) repeat(var(--heat-dims), minmax(56px, 1fr));
  gap: 4px;
  overflow-x: auto;
}
.heatmap-grid strong,
.heatmap-grid b,
.heatmap-grid span {
  min-height: 42px;
  padding: 8px;
  border-radius: 7px;
}
.heatmap-grid strong {
  color: #667085;
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}
.heatmap-grid b {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #101828;
  background: #fff;
  font-size: 12px;
}
.heatmap-grid b small {
  margin-top: 3px;
  color: #175cd3;
  font-size: 12px;
}
.heatmap-grid span {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
}
.heatmap-grid em {
  font-style: normal;
}
.position-map svg {
  height: 320px;
}
.position-map .quad {
  stroke: #fff;
  stroke-width: 2;
}
.position-map .quad.soft { fill: #eef4ff; }
.position-map .quad.strong { fill: #ecfdf3; }
.position-map .quad.watch { fill: #fef3f2; }
.position-map .quad.base { fill: #fffaeb; }
.position-map .quad-label {
  fill: #344054;
  font-size: 13px;
  font-weight: 950;
  text-anchor: start;
}
.position-map circle {
  fill: rgba(23, 92, 211, .78);
  stroke: #fff;
  stroke-width: 3;
  filter: drop-shadow(0 8px 12px rgba(16, 24, 40, .16));
}
.position-map .chart-legend i {
  background: #175cd3;
}
.multi-chart path:not(.grid-line) {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.multi-chart circle {
  stroke: #fff;
  stroke-width: 2;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 8px;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #526071;
  font-size: 12px;
  font-weight: 850;
}
.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.grid-line {
  fill: none;
  stroke: #d8e1ee;
  stroke-width: 1;
}
.score-curve {
  fill: none;
  stroke: #175cd3;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chart-card circle {
  fill: #0f766e;
  stroke: #fff;
  stroke-width: 2;
}
.chart-card text {
  fill: #526071;
  font-size: 11px;
  font-weight: 900;
  text-anchor: middle;
}
.radar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.radar-card {
  min-height: 244px;
}
.radar-svg {
  max-height: 198px;
}
.radar-svg line {
  stroke: #d8e1ee;
  stroke-width: 1;
}
.radar-bg {
  fill: #fff;
  stroke: #d8e1ee;
  stroke-width: 1.3;
}
.radar-shape {
  fill: rgba(23, 92, 211, .22);
  stroke: #175cd3;
  stroke-width: 2.4;
}
.radar-svg text {
  fill: #526071;
  font-size: 9px;
  font-weight: 900;
}
.ranking-chart {
  display: grid;
  gap: 9px;
}
.ranking-chart div {
  display: grid;
  grid-template-columns: 28px 110px minmax(0, 1fr) 42px 78px;
  gap: 10px;
  align-items: center;
}
.ranking-chart b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eef4ff;
  color: #175cd3;
}
.ranking-chart em,
.ability-card p em {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}
.ranking-chart em span,
.ability-card p em b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #175cd3, #0f766e);
}
.ranking-chart small,
.ranking-chart i {
  color: #344054;
  font-style: normal;
  font-weight: 900;
}
.ability-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.ability-card {
  padding: 12px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #f8fafc;
}
.ability-card > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.ability-card > div span {
  color: #175cd3;
  font-weight: 950;
}
.ability-card p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px 28px;
  gap: 7px;
  align-items: center;
  margin: 7px 0;
}
.ability-card label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ability-card small {
  color: #344054;
  font-weight: 900;
}
.ability-matrix {
  overflow-x: auto;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
}
.matrix-head,
.matrix-row {
  display: grid;
  grid-template-columns: 104px repeat(8, minmax(86px, 1fr)) 78px;
  min-width: 920px;
}
.matrix-head span,
.matrix-row strong,
.matrix-row span,
.matrix-row em {
  padding: 8px;
  border-bottom: 1px solid #edf1f6;
  border-right: 1px solid #edf1f6;
  font-size: 12px;
}
.matrix-head span {
  background: #f8fafc;
  color: #667085;
  font-weight: 900;
}
.matrix-row span {
  text-align: center;
  font-weight: 950;
}
.matrix-row span.high { color: #067647; background: #ecfdf3; }
.matrix-row span.mid { color: #b54708; background: #fffaeb; }
.matrix-row span.low { color: #b42318; background: #fef3f2; }
.matrix-row em {
  color: #175cd3;
  font-style: normal;
  font-weight: 900;
}

.report-core-table-wrap {
  width: 100%;
  overflow-x: hidden;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
}
.report-core-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
}
.report-core-table .core-rank { width: 46px; }
.report-core-table .core-name { width: 16%; }
.report-core-table .core-score { width: 13%; }
.report-core-table .core-evidence { width: 25%; }
.report-core-table .core-risk { width: 24%; }
.report-core-table .core-action { width: 18%; }
.report-core-table th,
.report-core-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #edf1f6;
  border-right: 1px solid #edf1f6;
  color: #344054;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 12px;
  line-height: 1.55;
  vertical-align: top;
}
.report-core-table th {
  background: #f8fafc;
  color: #667085;
  font-weight: 950;
  text-align: left;
}
.report-core-table td:first-child {
  width: 54px;
  text-align: center;
}
.report-core-table td strong,
.report-core-table td span,
.report-core-table td small {
  display: block;
}
.report-core-table td strong {
  margin-bottom: 3px;
  color: #101828;
  font-size: 13px;
}
.report-core-table td span,
.report-core-table td small {
  color: #667085;
}
.report-core-table td em {
  display: inline-flex;
  min-width: 46px;
  justify-content: center;
  margin-bottom: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 950;
}
.report-ability-matrix {
  width: 100%;
  overflow-x: hidden;
}
.report-ability-matrix .matrix-head,
.report-ability-matrix .matrix-row {
  grid-template-columns: var(--matrix-cols);
  min-width: 0;
}
.report-ability-matrix .matrix-head span,
.report-ability-matrix .matrix-row strong,
.report-ability-matrix .matrix-row span,
.report-ability-matrix .matrix-row em {
  min-width: 0;
  overflow-wrap: anywhere;
}
.report-ability-matrix .matrix-row em,
.report-ability-matrix .matrix-head span:last-child {
  text-align: left;
  white-space: normal;
}
.radar-note {
  display: block;
  margin-top: 4px;
  color: #667085;
  text-align: center;
  font-size: 12px;
  font-weight: 750;
}
.validation-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.validation-plan-grid article {
  min-width: 0;
  padding: 12px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
}
.validation-plan-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #101828;
  font-size: 13px;
}
.validation-plan-grid ul {
  margin: 0;
  padding-left: 18px;
}
.validation-plan-grid li {
  margin: 5px 0;
  color: #344054;
  line-height: 1.55;
}
.execution-action-list li {
  margin-bottom: 7px;
}

.report-export-wrapper {
  width: 794px;
  padding: 28px;
  background: #fff;
  color: #101828;
}

.business-modal[hidden] { display: none; }
.business-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.business-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .48);
  backdrop-filter: blur(8px);
}
.business-card {
  position: relative;
  width: min(520px, 100%);
  padding: 22px;
  border: 1px solid #fbbf24;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffbeb, #fff);
  box-shadow: 0 30px 80px rgba(16, 24, 40, .28);
}
.business-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}
.business-head h2 {
  margin: 8px 0 0;
  font-size: 28px;
}
.business-email {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #d8e1ee;
  border-radius: 10px;
  background: #eef4ff;
  font-size: 16px;
}

@media (max-width: 1220px) {
  .recruiter-hero,
  .target-builder-grid,
  .recruiter-action-progress-grid {
    grid-template-columns: 1fr;
  }
  .recruiter-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .candidate-progress,
  .candidate-progress-summary,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .recruiter-flow-grid,
  .recruiter-action-card .card-body,
  .recruiter-weight-editor,
  .recruiter-plan-grid,
  .recruiter-action-row,
  .candidate-progress,
  .candidate-progress-summary,
  .compare-grid,
  .ability-card-grid,
  .report-compare-grid,
  .radar-grid,
  .donut-grid,
  .report-context-grid,
  .validation-plan-grid {
    grid-template-columns: 1fr;
  }
  .recruiter-flow-grid article:nth-child(3),
  .recruiter-flow-grid article:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .recruiter-flow-grid article:nth-child(2)::after {
    top: 50%;
    right: -11px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }
  .recruiter-flow-grid article:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.radar-score-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.radar-score-table article,
.ability-score-cards article {
  min-width: 0;
  padding: 10px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
}
.radar-score-table strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #101828;
}
.radar-score-table i,
.ability-score-cards header i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  flex: none;
}
.radar-score-table span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-top: 1px solid #eef2f7;
  color: #526071;
  font-size: 12px;
}
.radar-score-table span b {
  color: #101828;
}
.ability-score-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.ability-score-cards header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 4px 8px;
  align-items: center;
  margin-bottom: 8px;
}
.ability-score-cards header strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ability-score-cards header span {
  color: #175cd3;
  font-size: 20px;
  font-weight: 950;
  text-align: right;
}
.ability-score-cards header em {
  grid-column: 1 / -1;
  color: #175cd3;
  font-style: normal;
  font-weight: 850;
}
.ability-score-cards p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 30px;
  gap: 7px;
  align-items: center;
  margin: 7px 0;
  color: #526071;
  font-size: 12px;
}
.ability-score-cards p b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #344054;
}
.ability-score-cards p i {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}
.ability-score-cards p u {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #175cd3, #0f766e);
}
.ability-score-cards p span {
  color: #101828;
  font-weight: 900;
}
.ability-score-cards small {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
  font-weight: 750;
}
@media (max-width: 900px) {
  .radar-score-table,
  .ability-score-cards {
    grid-template-columns: 1fr;
  }
}

.deep-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.deep-summary-grid article {
  min-width: 0;
  padding: 12px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
}
.deep-summary-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #101828;
  font-weight: 950;
}
.deep-summary-grid ul {
  margin: 0;
  padding-left: 18px;
}
.deep-summary-grid li {
  margin: 6px 0;
}
@media (max-width: 900px) {
  .deep-summary-grid {
    grid-template-columns: 1fr;
  }
}


.progress-card.is-running {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .12), 0 18px 38px rgba(37, 99, 235, .18);
}
.progress-card.is-running .card-head {
  background: linear-gradient(180deg, #dbeafe, #fff);
}
.progress-card.is-running #process-state {
  color: #fff;
  border-color: #2563eb;
  background: #2563eb;
}
.progress-card.is-running .progress-metric {
  border-color: #bfdbfe;
  background: #eff6ff;
}
.progress-card.is-complete {
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, .12);
}
.progress-card.is-complete #process-state {
  color: #065f46;
  border-color: #a7f3d0;
  background: #ecfdf5;
}
.progress-card.has-failed {
  border-color: #f59e0b;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, .14);
}
.progress-card.has-failed #process-state {
  color: #92400e;
  border-color: #fde68a;
  background: #fffbeb;
}


/* 20260529: emphasize target profile and scorecard controls */
.target-profile-panel,
.dimension-fold {
  border-width: 2px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, .08);
}
.target-profile-panel { border-color: rgba(15, 118, 110, .34); }
.dimension-fold { border-color: rgba(109, 93, 252, .34); }
.target-profile-panel summary,
.dimension-fold summary {
  min-height: 56px;
  padding: 14px 16px;
  border-left: 5px solid transparent;
}
.target-profile-panel summary {
  border-left-color: #0f766e;
  background: linear-gradient(90deg, #ccfbf1, #f0fdfa 46%, #fff);
}
.dimension-fold summary {
  border-left-color: #6d5dfc;
  background: linear-gradient(90deg, #ede9fe, #f5f3ff 48%, #fff);
}
.target-profile-panel summary span,
.dimension-fold summary span {
  font-size: 15.5px;
  letter-spacing: 0;
}


/* 20260529: compact service-first hero */
.recruiter-hero {
  grid-template-columns: 1fr;
  min-height: 138px;
  padding: 24px 28px;
}
.recruiter-hero h1 {
  max-width: none;
  font-size: clamp(34px, 4.8vw, 60px);
}
