/* Recruiter directory — standalone resource page */
:root {
  --bg: #000000;
  --text: #ffffff;
  --accent: #c79b3b;
  --gold-grad: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 106%; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 3rem 0 4rem;
}
.rd { max-width: 900px; margin: 0 auto; padding: 0 1.4rem; }

/* Header */
.rd-eyebrow {
  font-size: 1rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #f7d879; font-weight: 650; margin-bottom: 0.85rem;
}
.rd-title {
  font-size: 2.5rem; line-height: 1.14; font-weight: 750;
  color: #f7d37d;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 0.7rem;
}
.rd-sub { font-size: 1.02rem; color: #aaa; line-height: 1.7; max-width: 680px; margin-bottom: 0.6rem; }
.rd-sub strong { color: #f2e7c8; }

/* Stat row */
.rd-stats {
  display: flex; gap: 2.2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.1rem 0; margin: 1.8rem 0 0.4rem;
}
.rd-stats__item { display: flex; flex-direction: column; gap: 0.1rem; }
.rd-stats__num { font-size: 1.4rem; font-weight: 750; color: #f5d591; font-variant-numeric: tabular-nums; }
.rd-stats__label { font-size: 0.72rem; color: #888; text-transform: uppercase; letter-spacing: 0.08em; }

/* Search bar */
.rd-bar {
  position: sticky; top: 0; z-index: 5;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(14px);
  padding: 0.9rem 0 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 0.9rem;
}
.rd-bar__input {
  flex: 1;
  font: inherit; font-size: 0.95rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  outline: none;
}
.rd-bar__input:focus { border-color: var(--accent); }
.rd-bar__input::placeholder { color: #777; }
.rd-bar__count {
  font-size: 0.82rem; color: #999; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.rd-bar__export {
  font: inherit; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #f7d879;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 0.65rem 1.05rem;
  min-height: 48px;
  cursor: pointer;
  white-space: nowrap;
}
.rd-bar__export:hover { background: rgba(199,155,59,0.22); color: #ffe08d; }

/* Sections */
.rd-section { margin-top: 2.6rem; }
.rd-section__head { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 0.3rem; }
.rd-section__title {
  font-size: 1.3rem; font-weight: 750;
  color: #f7d37d;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rd-section__chip {
  font-size: 0.75rem; color: #f7d879;
  background: rgba(199,155,59,0.22);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 99px;
  padding: 0.05rem 0.6rem;
  font-variant-numeric: tabular-nums;
}

/* Table */
.rd-tablewrap { overflow-x: auto; }
.rd-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.rd-table td {
  padding: 0.6rem 0.9rem 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}
.rd-row__agency { width: 230px; min-width: 170px; font-weight: 650; }
.rd-row__desc { color: #aaa; line-height: 1.55; }
.rd-row:hover td { background: rgba(255,255,255,0.02); }
.rd-table a { color: #f7d879; text-decoration: none; border-bottom: 1px solid rgba(199,155,59,0.4); }
.rd-table a:hover { color: #ffe08d; border-bottom-color: #ffe08d; }

/* Empty state */
.rd-empty { display: none; margin-top: 2.4rem; color: #999; font-size: 0.98rem; }

/* Method note */
.rd-note {
  margin-top: 3.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.4rem;
  font-size: 0.85rem; color: #999; line-height: 1.65; max-width: 720px;
}
.rd-note p { margin-bottom: 0.55rem; }

/* Responsive */
@media (max-width: 700px) {
  .rd-title { font-size: 1.9rem; }
  .rd-bar { flex-wrap: wrap; }
  .rd-bar__input { min-width: 100%; }
  .rd-bar__export { min-height: 44px; }
  .rd-stats { gap: 1.4rem; }
  .rd-row__agency { width: 160px; min-width: 130px; }
}
