/* === BASE === */
:root {
  --bg: #080b15;
  --bg-2: #0d1220;
  --bg-3: #111827;
  --fg: #f0f2f8;
  --fg-2: #a8b0c4;
  --fg-3: #6b7590;
  --amber: #f0b429;
  --amber-dim: rgba(240, 180, 41, 0.12);
  --amber-glow: rgba(240, 180, 41, 0.08);
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 21, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

.nav-cta {
  padding: 8px 18px;
  background: var(--amber) !important;
  color: #000 !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,180,41,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(240,180,41,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* City silhouette via CSS shapes */
.city-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background:
    /* Building cluster left */
    linear-gradient(to top, var(--bg-2) 0%, transparent 100%),
    /* Buildings */
    repeating-linear-gradient(90deg, transparent 0px, transparent 40px, rgba(15,20,35,0.9) 40px, rgba(15,20,35,0.9) 60px)
    ;
  opacity: 0.6;
  /* Simulated buildings via pseudo elements */
  --b1: 5%; --b2: 12%; --b3: 18%; --b4: 25%; --b5: 32%; --b6: 40%; --b7: 48%; --b8: 56%; --b9: 65%; --b10: 74%; --b11: 83%; --b12: 92%;
}
.city-silhouette::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background:
    linear-gradient(to top, rgba(15,20,35,0.9) 0%, transparent 100%);
}

/* Animated nodes */
.node {
  position: absolute;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 20px rgba(240,180,41,0.4), 0 0 60px rgba(240,180,41,0.15);
  animation: float 6s ease-in-out infinite;
}
.node-1 { width: 8px; height: 8px; top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { width: 5px; height: 5px; top: 35%; left: 55%; animation-delay: 1s; }
.node-3 { width: 6px; height: 6px; top: 25%; right: 20%; animation-delay: 2s; }
.node-4 { width: 4px; height: 4px; top: 55%; left: 25%; animation-delay: 0.5s; }
.node-5 { width: 5px; height: 5px; top: 45%; right: 35%; animation-delay: 1.5s; }

.connection {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,0.15), transparent);
  height: 1px;
  animation: pulse 4s ease-in-out infinite;
}
.c1 { top: 22%; left: 15%; width: 38%; transform: rotate(12deg); animation-delay: 0.3s; }
.c2 { top: 30%; left: 20%; width: 30%; transform: rotate(-8deg); animation-delay: 0.8s; }
.c3 { top: 28%; right: 15%; width: 25%; transform: rotate(5deg); animation-delay: 1.2s; }
.c4 { top: 48%; left: 25%; width: 20%; transform: rotate(-15deg); animation-delay: 0.6s; }
.c5 { top: 42%; right: 30%; width: 15%; transform: rotate(20deg); animation-delay: 1.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--amber);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

/* Match card */
.match-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(240,180,41,0.06);
}
.match-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.match-score {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--amber);
}
.match-label {
  font-size: 12px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.candidate-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-dim);
  border: 1px solid rgba(240,180,41,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
}
.candidate-name {
  font-weight: 600;
  font-size: 15px;
}
.candidate-role {
  font-size: 13px;
  color: var(--fg-3);
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.tag {
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--amber-glow);
  border: 1px solid rgba(240,180,41,0.2);
  font-size: 12px;
  color: var(--amber);
  font-weight: 500;
}
.match-reason {
  font-size: 12px;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.match-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.salary {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}
.fit {
  font-size: 12px;
  color: var(--fg-3);
}

/* Talent nodes visual */
.talent-nodes-visual {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 12px rgba(240,180,41,0.6));
}
.tn-1 { position: absolute; top: 5%; left: 50%; transform: translateX(-50%); }
.tn-2 { position: absolute; top: 35%; right: 5%; }
.tn-3 { position: absolute; bottom: 20%; right: 10%; }
.tn-4 { position: absolute; bottom: 5%; left: 30%; }
.tn-5 { position: absolute; top: 50%; left: 5%; }
.tn-6 { position: absolute; top: 20%; left: 15%; }

/* === SECTION COMMONS === */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.two-columns {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.column {
  padding: 40px;
  background: var(--bg-3);
}
.col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  font-size: 15px;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.6;
}
.matching-layer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--amber-glow);
}
.layer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.layer-desc {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === MATCHING === */
.matching-section {
  padding: 100px 24px;
}
.matching-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.matching-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.matching-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 36px;
}
.match-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mf-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.mf-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--amber-dim);
  border: 1px solid rgba(240,180,41,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mf-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.mf-desc {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}

/* Search demo */
.search-demo {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.search-bar {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-3);
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}
.search-results { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.result-item.top-result {
  border-color: rgba(240,180,41,0.3);
  background: var(--amber-glow);
}
.result-score {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--amber);
  min-width: 44px;
  text-align: right;
}
.result-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.result-meta { font-size: 12px; color: var(--fg-3); margin-bottom: 6px; }
.result-skills { display: flex; gap: 4px; flex-wrap: wrap; }
.rs {
  padding: 2px 8px;
  border-radius: 12px;
  background: var(--amber-dim);
  font-size: 11px;
  color: var(--amber);
}
.result-fit {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 11px;
  color: var(--fg-3);
}
.fit-bar {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.fit-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--fit);
  background: var(--amber);
  border-radius: 2px;
}

/* === COPILOT === */
.copilot-section {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.copilot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.copilot-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.copilot-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.copilot-examples { display: flex; flex-direction: column; gap: 12px; }
.ce-label { font-size: 12px; font-weight: 600; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ce-items { display: flex; flex-direction: column; gap: 10px; }
.ce-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
}

/* Chat window */
.chat-window {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.chat-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
}
.chat-dots { display: flex; gap: 6px; }
.chat-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-3);
}
.chat-title { font-size: 13px; font-weight: 600; color: var(--fg-2); }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; max-height: 380px; overflow-y: auto; }
.msg { max-width: 85%; }
.user-msg { align-self: flex-end; }
.user-msg span, .bot-msg span { display: block; padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.user-msg span { background: rgba(240,180,41,0.15); border: 1px solid rgba(240,180,41,0.25); color: var(--fg); }
.bot-msg span { background: var(--bg-2); border: 1px solid var(--border); color: var(--fg-2); }
.short { font-size: 12px !important; }
.chat-job-card {
  background: var(--amber-glow);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 10px;
  padding: 12px;
  margin-top: 4px;
}
.cjc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.cjc-header strong { font-size: 13px; }
.cjc-score { font-size: 12px; color: var(--amber); font-weight: 700; }
.cjc-company { font-size: 12px; color: var(--fg-3); margin-bottom: 2px; }
.cjc-salary { font-size: 12px; color: var(--fg-2); margin-bottom: 6px; }
.cjc-reason { font-size: 11px; color: var(--fg-3); line-height: 1.5; }
.chat-input {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-3);
}

/* === SALARY === */
.salary-section { padding: 100px 24px; }
.salary-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.salary-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.salary-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.salary-cta { display: flex; flex-direction: column; gap: 10px; }
.salary-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
}

/* Salary card */
.salary-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
}
.sc-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.sc-bars { display: flex; flex-direction: column; gap: 14px; }
.sc-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sc-country {
  font-size: 13px;
  color: var(--fg-2);
  min-width: 90px;
  font-weight: 500;
}
.sc-bar-wrap {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-3);
  overflow: hidden;
}
.sc-bar {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--amber), rgba(240,180,41,0.5));
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(240,180,41,0.3);
}
.sc-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  min-width: 60px;
  text-align: right;
  font-family: 'Fraunces', serif;
}
.sc-note {
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 16px;
  line-height: 1.5;
}
.salary-insight {
  background: var(--amber-glow);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 10px;
  padding: 16px;
}
.insight-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 8px;
}
.salary-insight p { font-size: 13px; color: var(--fg-2); line-height: 1.6; }

/* === EUROPE === */
.europe-section { padding: 100px 24px; background: var(--bg-2); border-top: 1px solid var(--border); }
.europe-inner { max-width: 1200px; margin: 0 auto; }
.europe-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 48px;
}
.europe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.eg-item {
  padding: 32px;
  background: var(--bg-3);
}
.eg-icon {
  margin-bottom: 16px;
}
.eg-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}
.eg-desc {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.6;
}

/* === CLOSING === */
.closing-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,180,41,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta {
  display: flex;
  justify-content: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 24px;
}
.cta-candidate, .cta-employer {
  padding: 28px 36px;
  background: var(--bg-3);
  min-width: 220px;
}
.cta-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3); margin-bottom: 8px; }
.cta-price { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600; color: var(--amber); margin-bottom: 10px; }
.cta-features { font-size: 13px; color: var(--fg-3); line-height: 1.6; }
.closing-note { font-size: 14px; color: var(--fg-3); }

/* === FOOTER === */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--fg-3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 12px; color: var(--fg-3); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-headline { font-size: 48px; }
  .hero { min-height: auto; padding: 60px 24px; }
  .two-columns, .matching-inner, .copilot-inner, .salary-inner, .europe-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .matching-text h2, .copilot-text h2, .salary-text h2 { font-size: 32px; }
  .closing-cta { flex-direction: column; width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-sep { display: none; }
  .closing-cta { width: 100%; }
  .cta-candidate, .cta-employer { padding: 20px; }
}