/* Employers & recruiters — promo card + pricing page */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --emp-blue: #2563eb;
  --emp-blue-strong: #1d4ed8;
  --emp-purple: #7c3aed;
  --emp-purple-strong: #6d28d9;
  --emp-ink: #0f1729;
  --emp-muted: #64748b;
  --emp-line: #e2e8f0;
  --emp-card-shadow: 0 18px 48px -28px rgba(15, 23, 42, 0.28);
}

/* ---- Homepage promo card (image 1) ---- */
.emp-promo-section {
  max-width: var(--lh-max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--lh-pad);
}

.emp-promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--emp-line);
  box-shadow: var(--emp-card-shadow);
}

.emp-promo-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emp-blue-strong);
}

.emp-promo-card h2 {
  margin: 0 0 14px;
  font-family: var(--lh-display, "Segoe UI", system-ui, sans-serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--emp-ink);
}

.emp-promo-lead {
  margin: 0 0 18px;
  color: var(--emp-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 52ch;
}

.emp-promo-rule {
  margin: 0 0 16px;
  width: 48px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--emp-blue);
}

.emp-promo-sub {
  margin: 0 0 22px;
  color: var(--emp-muted);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 48ch;
}

.emp-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--emp-blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px -14px rgba(37, 99, 235, 0.65);
  transition: background 0.15s ease, transform 0.15s ease;
}

.emp-promo-cta:hover {
  background: var(--emp-blue-strong);
  transform: translateY(-1px);
}

.emp-promo-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.emp-promo-illustration {
  position: relative;
  width: min(220px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.emp-promo-orbit {
  position: absolute;
  inset: 8%;
  border: 2px dashed rgba(37, 99, 235, 0.22);
  border-radius: 50%;
}

.emp-promo-briefcase {
  width: 88px;
  height: 88px;
  color: var(--emp-blue);
}

.emp-promo-team-badge {
  position: absolute;
  right: 18%;
  bottom: 22%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--emp-blue);
  display: grid;
  place-items: center;
  color: var(--emp-blue);
  box-shadow: 0 8px 20px -12px rgba(37, 99, 235, 0.5);
}

.emp-promo-team-badge svg {
  width: 28px;
  height: 28px;
}

.emp-promo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.emp-promo-stat {
  text-align: center;
  padding: 0 8px;
}

.emp-promo-stat:not(:last-child) {
  border-right: 1px solid var(--emp-line);
}

.emp-promo-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  color: var(--emp-blue);
}

.emp-promo-stat-icon svg {
  width: 22px;
  height: 22px;
}

.emp-promo-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--emp-blue-strong);
  letter-spacing: -0.02em;
}

.emp-promo-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--emp-muted);
  line-height: 1.3;
}

/* ---- Employers page ---- */
.employers-page {
  background: #fff;
  color: var(--emp-ink);
}

html.employers-nav-solid .lh-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--emp-line);
  box-shadow: 0 8px 24px -20px rgba(15, 23, 42, 0.2);
}

html.employers-nav-solid .lh-nav a {
  color: var(--emp-muted);
}

html.employers-nav-solid .lh-nav a:hover,
html.employers-nav-solid .lh-nav a[aria-current="page"] {
  color: var(--emp-blue-strong);
}

html.employers-nav-solid .lh-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

html.employers-nav-solid .lh-tagline {
  color: var(--emp-muted);
}

html.employers-nav-solid .lh-btn-ghost {
  color: var(--lh-ink);
  border: 1px solid var(--lh-line);
}

html.employers-nav-solid .lh-btn-ghost:hover {
  background: #f1f5f9;
}

.employers-page .lh-header {
  position: sticky;
  top: 0;
}

.emp-page-main {
  padding-top: var(--lh-header-h, 72px);
}

.emp-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--lh-pad) clamp(32px, 5vw, 48px);
  text-align: center;
}

.emp-hero h1 {
  margin: 0 0 16px;
  font-family: var(--lh-display, "Segoe UI", system-ui, sans-serif);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--emp-ink);
}

.emp-hero-accent {
  color: var(--emp-blue);
}

.emp-hero-lead {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--emp-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.emp-stats {
  max-width: var(--lh-max);
  margin: 0 auto clamp(28px, 5vw, 40px);
  padding: 0 var(--lh-pad);
}

.emp-stats .lh-stats {
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--emp-line);
  background: #f8fafc;
  box-shadow: none;
}

.emp-value-prop {
  max-width: 720px;
  margin: 0 auto clamp(36px, 6vw, 52px);
  padding: 0 var(--lh-pad);
  text-align: center;
}

.emp-value-prop h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.emp-value-prop p {
  margin: 0;
  color: var(--emp-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.emp-pricing {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--lh-pad) clamp(64px, 10vw, 96px);
}

.emp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

.emp-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 18px;
  border: 1px solid var(--emp-line);
  background: #fff;
  box-shadow: var(--emp-card-shadow);
}

.emp-pricing-card--featured {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 22px 56px -30px rgba(124, 58, 237, 0.35);
}

.emp-pricing-ribbon {
  position: absolute;
  top: 0;
  right: 28px;
  width: 44px;
  height: 56px;
  background: linear-gradient(180deg, #8b5cf6, #6d28d9);
  border-radius: 0 0 10px 10px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px -10px rgba(109, 40, 217, 0.7);
}

.emp-pricing-ribbon svg {
  width: 20px;
  height: 20px;
}

.emp-pricing-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.emp-pricing-badge--standard {
  background: #eff6ff;
  color: var(--emp-blue-strong);
}

.emp-pricing-badge--membership {
  background: #f5f3ff;
  color: var(--emp-purple-strong);
}

.emp-pricing-card h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.emp-pricing-tagline {
  margin: 0 0 18px;
  color: var(--emp-muted);
  font-size: 0.95rem;
}

.emp-pricing-price {
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.emp-pricing-amount {
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.emp-pricing-card--standard .emp-pricing-amount {
  color: var(--emp-blue);
}

.emp-pricing-card--featured .emp-pricing-amount {
  color: var(--emp-purple);
}

.emp-pricing-period {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--emp-muted);
  text-transform: uppercase;
}

.emp-pricing-blurb {
  margin: 0 0 22px;
  color: var(--emp-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.emp-pricing-section-title {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emp-ink);
}

.emp-pricing-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emp-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--emp-ink);
}

.emp-pricing-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.emp-pricing-list--yes li svg {
  color: var(--emp-blue);
}

.emp-pricing-card--featured .emp-pricing-list--yes li svg {
  color: var(--emp-purple);
}

.emp-pricing-list--no li {
  color: var(--emp-muted);
}

.emp-pricing-list--no li svg {
  color: #94a3b8;
}

.emp-pricing-list--plus {
  flex: 1;
}

.emp-pricing-list--plus li .emp-info {
  margin-left: auto;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

.emp-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.emp-pricing-cta--standard {
  background: var(--emp-blue);
}

.emp-pricing-cta--standard:hover {
  background: var(--emp-blue-strong);
}

.emp-pricing-cta--partner {
  background: var(--emp-purple);
}

.emp-pricing-cta--partner:hover {
  background: var(--emp-purple-strong);
}

.emp-pricing-cta.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

.emp-pricing-foot {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--emp-muted);
}

.emp-pricing-pending {
  margin: 8px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--emp-purple-strong);
}

@media (max-width: 960px) {
  .emp-promo-card {
    grid-template-columns: 1fr;
  }

  .emp-promo-visual {
    order: -1;
  }

  .emp-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .emp-promo-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .emp-promo-stat:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--emp-line);
    padding-bottom: 12px;
  }
}
