/* âââ Tokens âââââââââââââââââââââââââââââââââââââââââââââââââ */
:root {
  --purple:      #4C2A85;
  --purple-mid:  #6E42B8;
  --coral:       #E8544F;
  --green:       #1E8A5C;
  --bg:          #F7F5FB;
  --surface:     #FFFFFF;
  --text:        #1A1530;
  --text-muted:  #6B6380;
  --border:      #E2DCF0;
  --hero-bg:     #0E0820;
  --nav-bg:      rgba(14,8,32,0.92);
  --card-shadow: 0 2px 16px rgba(76,42,133,0.10);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:         #13102B;
    --surface:    #1E1A3E;
    --text:       #EDE8FF;
    --text-muted: #9E96BE;
    --border:     #2E2855;
    --card-shadow:0 2px 16px rgba(0,0,0,0.35);
  }
}
:root[data-theme="dark"] {
  --bg:         #13102B;
  --surface:    #1E1A3E;
  --text:       #EDE8FF;
  --text-muted: #9E96BE;
  --border:     #2E2855;
  --card-shadow:0 2px 16px rgba(0,0,0,0.35);
}

/* âââ Base âââââââââââââââââââââââââââââââââââââââââââââââââââ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1140px; margin: 0 auto; padding-inline: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* âââ Nav âââââââââââââââââââââââââââââââââââââââââââââââââââââ */
nav {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-wordmark {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-wordmark span { color: var(--coral); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
@media (max-width: 640px) { .nav-links { display: none; } }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.88; }

/* âââ Hero ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.hero {
  background: var(--hero-bg);
  padding-block: 80px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(76,42,133,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(232,84,79,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.06;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(95deg, #B490FF 0%, #E8544F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 7px;
  transition: opacity 0.15s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 7px;
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.50); margin-top: 2px; letter-spacing: 0.02em; }

/* Job card mock */
.hero-visual { perspective: 1000px; }
.job-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 24px;
  backdrop-filter: blur(10px);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
  position: relative;
}
.jc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.jc-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.jc-title { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.3; }
.jc-company { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.jc-reply-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,138,92,0.18);
  border: 1px solid rgba(30,138,92,0.35);
  border-radius: 20px;
  padding: 5px 10px 5px 6px;
  flex-shrink: 0;
}
/* Reply rate donut */
.reply-donut {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.donut-track { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 3; }
.donut-fill { fill: none; stroke: #1E8A5C; stroke-width: 3; stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; transition: stroke-dasharray 0.6s ease; }
.reply-pct { font-size: 12px; font-weight: 700; color: #4AE39C; white-space: nowrap; }
.jc-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.jc-chip {
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 3px 10px;
  color: rgba(255,255,255,0.70);
}
.jc-salary {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: 'Fraunces', serif;
  margin-bottom: 4px;
}
.jc-salary-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.jc-apply {
  width: 100%;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px;
  border-radius: 8px;
  text-align: center;
  transition: opacity 0.15s;
}
.jc-apply:hover { opacity: 0.88; }
.open-offer-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--purple-mid);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* âââ Differentiators ââââââââââââââââââââââââââââââââââââââââââ */
.section { padding-block: 80px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.section-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
}
.section-header { margin-bottom: 52px; }

/* Differentiator cards */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.diff-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(76,42,133,0.13); }
.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.diff-icon.purple { background: rgba(76,42,133,0.10); }
.diff-icon.coral  { background: rgba(232,84,79,0.10); }
.diff-icon.green  { background: rgba(30,138,92,0.10); }
.diff-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}
.diff-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
/* mini UI mocks inside diff cards */
.mini-rate-bar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-bar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.mini-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--green);
}
.mini-bar-label { font-size: 13px; font-weight: 700; color: var(--green); white-space: nowrap; font-variant-numeric: tabular-nums; }
.mini-offer {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
}
.mini-offer-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 6px; }
.mini-offer-row:last-child { margin-bottom: 0; }
.mini-offer-label { color: var(--text-muted); }
.mini-offer-val { font-weight: 600; font-variant-numeric: tabular-nums; }
.mini-offer-val.green { color: var(--green); }
.mini-zero-fees {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  font-size: 22px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--green);
}
.mini-zero-fees small { display: block; font-size: 11px; font-family: 'Outfit', sans-serif; font-weight: 500; color: var(--text-muted); margin-top: 2px; }

/* âââ Seeker section âââââââââââââââââââââââââââââââââââââââââââ */
.seeker-section {
  background: var(--hero-bg);
  padding-block: 80px;
  overflow: hidden;
  position: relative;
}
.seeker-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(76,42,133,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.seeker-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 800px) { .seeker-grid { grid-template-columns: 1fr; } }
.seeker-section .section-eyebrow { color: rgba(180,144,255,0.9); }
.seeker-section .section-h2 { color: #fff; }
.seeker-section .section-lead { color: rgba(255,255,255,0.60); }

.cv-demo {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px;
  font-size: 13px;
}
.cv-demo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.cv-name { font-size: 16px; font-weight: 700; color: #fff; }
.cv-role { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.cv-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(180,144,255,0.7);
  margin-bottom: 8px;
  margin-top: 14px;
}
.cv-line {
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}
.cv-line::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 5px;
  width: var(--w, 80%);
  animation: cvType 1.8s ease-out both;
  animation-delay: var(--delay, 0s);
}
@keyframes cvType { from { width: 0; } to { width: var(--w, 80%); } }
@media (prefers-reduced-motion: reduce) {
  .cv-line::after { animation: none; width: var(--w, 80%); }
}
.cv-cursor {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--coral);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 4px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.cv-status {
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }


.seeker-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  margin-top: 32px;
}
.seeker-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sf-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(76,42,133,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sf-text strong { display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.sf-text p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.5; }

/* âââ Employer section âââââââââââââââââââââââââââââââââââââââââ */
.employer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) { .employer-grid { grid-template-columns: 1fr; } }

/* Dashboard mock */
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.dash-topbar {
  background: var(--purple);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-topbar-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-topbar-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.80); margin-left: 4px; }
.dash-body { padding: 16px; }
.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dash-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}
.dash-stat-num { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.dash-stat-lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.dash-reply-row {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}
.dash-reply-label { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.dash-reply-bar { display: flex; align-items: center; gap: 8px; }
.dash-reply-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.dash-reply-fill { height: 100%; background: linear-gradient(90deg, var(--purple) 0%, var(--coral) 100%); border-radius: 4px; }
.dash-reply-pct { font-size: 13px; font-weight: 700; color: var(--green); font-variant-numeric: tabular-nums; white-space: nowrap; }
.applicant-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.applicant-row:last-child { border-bottom: none; }
.app-avatar-sm {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-name { font-size: 13px; font-weight: 500; flex: 1; color: var(--text); }
.app-exp { font-size: 11px; color: var(--text-muted); }
.app-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
}
.app-status.replied { background: rgba(30,138,92,0.12); color: var(--green); }
.app-status.pending { background: rgba(107,99,128,0.12); color: var(--text-muted); }

/* âââ Feed section ââââââââââââââââââââââââââââââââââââââââââââ */
.feed-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(76,42,133,0.04) 100%);
  padding-block: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 800px) { .feed-grid { grid-template-columns: 1fr; } }
.feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}
.feed-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feed-type.job    { color: var(--purple); }
.feed-type.offer  { color: var(--coral); }
.feed-type.post   { color: #0EA5E9; }
.feed-card h4 { font-size: 15px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; color: var(--text); }
.feed-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.feed-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.feed-reply-rate { font-size: 12px; font-weight: 600; color: var(--green); }
.feed-time { font-size: 11px; color: var(--text-muted); }
.feed-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(76,42,133,0.10);
  color: var(--purple);
}

/* âââ CTA ââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.cta-section {
  background: var(--hero-bg);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(76,42,133,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: 24px;
  text-align: center;
  position: relative;
}
.cta-inner .section-h2 { color: #fff; margin-bottom: 14px; }
.cta-inner .section-lead { color: rgba(255,255,255,0.60); max-width: 480px; margin: 0 auto 48px; }
.cta-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 600px) { .cta-paths { grid-template-columns: 1fr; } }
.cta-path {
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
}
.cta-path.seeker {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}
.cta-path.employer {
  background: rgba(76,42,133,0.25);
  border: 1px solid rgba(110,66,184,0.50);
}
.cta-path-label { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 8px; }
.cta-path.seeker .cta-path-label { color: rgba(255,255,255,0.55); }
.cta-path.employer .cta-path-label { color: rgba(180,144,255,0.8); }
.cta-path h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.cta-path p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.55; }
.cta-path-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 7px;
  transition: opacity 0.15s;
}
.cta-path.seeker .cta-path-btn {
  background: var(--coral);
  color: #fff;
}
.cta-path.employer .cta-path-btn {
  background: var(--purple-mid);
  color: #fff;
}
.cta-path-btn:hover { opacity: 0.85; }

/* âââ Footer âââââââââââââââââââââââââââââââââââââââââââââââââââ */
footer {
  background: #080516;
  padding-block: 48px 36px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px; color: #fff; }
.footer-logo span { color: var(--coral); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 6px; }
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-link-group h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.40); margin-bottom: 12px; }
.footer-link-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-link-group a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-link-group a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.30); }
.footer-credo { font-size: 12px; color: rgba(255,255,255,0.30); font-style: italic; }

/* âââ Scroll reveal ââââââââââââââââââââââââââââââââââââââââââââ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}