/* ═══════════════════════════════════════════════════════
   CareerLens Design System
   Matches AiAsia Labs: black bg, white text, #e8ff47 accent
   Fonts: Instrument Serif (headings) + Inter (body)
═══════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Design tokens ── */
:root {
  --bg:        #000000;
  --surface:   #0d0d0d;
  --surface2:  #141414;
  --surface3:  #1a1a1a;
  --surface4:  #222222;
  --white:     #ffffff;
  --grey-1:    #f5f5f5;
  --grey-2:    #a3a3a3;
  --grey-3:    #525252;
  --grey-4:    #262626;
  --accent:    #e8ff47;
  --accent-dim: rgba(232,255,71,0.08);
  --accent-border: rgba(232,255,71,0.25);
  --border:    rgba(255,255,255,0.08);
  --border-l:  rgba(255,255,255,0.13);
  --green:     #22c55e;
  --green-dim: rgba(34,197,94,0.1);
  --red:       #ef4444;
  --red-dim:   rgba(239,68,68,0.1);
  --blue:      #60a5fa;
  --blue-dim:  rgba(96,165,250,0.1);
  --amber:     #f59e0b;
  --amber-dim: rgba(245,158,11,0.1);
  --purple:    #a78bfa;
  --purple-dim:rgba(167,139,250,0.1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:'Instrument Serif', Georgia, serif;
  --r:         8px;
  --r-lg:      12px;
  --r-xl:      16px;
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(232,255,71,0.2); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }

/* ── Typography ── */
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--grey-2); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.section-title em { font-style: italic; color: var(--grey-2); }

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-2);
}

.body-lg { font-size: 1.0625rem; line-height: 1.7; color: var(--grey-2); }
.body-sm { font-size: 0.875rem;  line-height: 1.65; color: var(--grey-2); }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.page-wrap  { padding-top: 60px; min-height: 100vh; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px; display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  font-size: 1rem; font-weight: 600; letter-spacing: -0.02em;
  color: var(--white); display: flex; align-items: center; gap: 7px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo .dot {
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
.nav-logo .parent-tag {
  font-size: 0.6875rem; color: var(--grey-3);
  padding: 2px 7px; border: 1px solid var(--border);
  border-radius: 4px; margin-left: 2px; font-weight: 400;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 0.875rem; color: var(--grey-2);
  transition: color 0.15s; position: relative; padding-bottom: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--white);
}
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* User chip in nav */
.user-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 4px 12px 4px 5px;
  border: 1px solid var(--border); border-radius: 50px;
  font-size: 0.75rem; color: var(--grey-2);
}
.user-chip img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.user-init {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; font-size: 9px; font-weight: 700; color: #000;
}
.plan-badge {
  padding: 2px 7px; border-radius: 50px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.04em;
}
.plan-free    { background: var(--surface3); color: var(--grey-2); }
.plan-plus    { background: rgba(34,197,94,0.15); color: #86efac; }
.plan-pro     { background: rgba(96,165,250,0.15); color: #93c5fd; }
.plan-premium { background: rgba(167,139,250,0.15); color: #c4b5fd; }
.plan-student { background: rgba(245,158,11,0.15); color: #fcd34d; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 0.8125rem; font-weight: 500;
  padding: 8px 16px; border-radius: var(--r); border: none;
  cursor: pointer; transition: all 0.15s;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-ghost {
  background: transparent; color: var(--grey-2);
  border: 1px solid var(--border-l);
}
.btn-ghost:hover { background: var(--surface2); color: var(--white); border-color: var(--grey-3); }
.btn-primary { background: var(--white); color: var(--bg); }
.btn-primary:hover { background: var(--grey-1); }
.btn-accent  { background: var(--accent); color: #000; font-weight: 600; }
.btn-accent:hover { background: #f5ff6e; transform: translateY(-1px); }
.btn-danger  { background: var(--red-dim); color: #fca5a5; border: 1px solid rgba(239,68,68,0.2); }
.btn-danger:hover { background: rgba(239,68,68,0.18); }
.btn-lg  { font-size: 0.9375rem; padding: 11px 22px; }
.btn-sm  { font-size: 0.75rem;   padding: 6px 12px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ── Sections ── */
.section { padding: 80px 0; border-top: 1px solid var(--border); }
.section-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px; margin-bottom: 48px;
}
.section-header-left { flex: 1; }
.section-header-right { max-width: 340px; padding-top: 28px; }

/* ── Cards ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-l); }
.card-accent {
  background: var(--accent-dim); border: 1px solid var(--accent-border);
}

/* ── Form elements ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 0.8125rem; font-weight: 500; color: var(--grey-2); }
.form-input, .form-select, .form-textarea {
  background: var(--surface); border: 1px solid var(--border-l);
  color: var(--white); padding: 10px 14px;
  font-family: var(--font-sans); font-size: 0.9375rem;
  border-radius: var(--r); outline: none;
  transition: border-color 0.15s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(232,255,71,0.4);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-3); }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23525252' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.form-select option { background: var(--surface2); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error { font-size: 0.8125rem; color: #fca5a5; margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* ── Upload zone ── */
.upload-zone {
  border: 1px dashed var(--border-l); border-radius: var(--r-lg);
  padding: 44px 28px; text-align: center; cursor: pointer;
  transition: all 0.2s; background: var(--surface); position: relative; overflow: hidden;
}
.upload-zone::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,255,71,0.04), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: rgba(232,255,71,0.4); background: var(--surface2);
}
.upload-zone:hover::before, .upload-zone.drag-over::before { opacity: 1; }
.upload-zone .uz-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.upload-zone .uz-title { font-size: 1rem; font-weight: 500; margin-bottom: 0.3rem; }
.upload-zone .uz-sub   { font-size: 0.875rem; color: var(--grey-3); margin-bottom: 1rem; }
.upload-formats { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.fmt-tag {
  padding: 2px 10px; border-radius: 50px;
  background: var(--surface3); border: 1px solid var(--border);
  font-size: 0.6875rem; color: var(--grey-3);
}

/* ── Analyse button ── */
.analyze-btn {
  width: 100%; padding: 13px;
  background: var(--accent); color: #000;
  border: none; border-radius: var(--r);
  font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; margin-top: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: -0.01em;
}
.analyze-btn:hover { background: #f5ff6e; transform: translateY(-1px); }
.analyze-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Tabs ── */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab-btn {
  padding: 10px 20px; font-size: 0.875rem; font-weight: 500;
  color: var(--grey-3); cursor: pointer; border: none; background: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all 0.15s; font-family: var(--font-sans);
}
.tab-btn:hover { color: var(--grey-2); }
.tab-btn.active { color: var(--white); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal {
  background: var(--surface); border: 1px solid var(--border-l);
  border-radius: var(--r-xl); padding: 2.5rem;
  max-width: 560px; width: 100%; position: relative;
  transform: translateY(20px); transition: transform 0.25s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.show .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: 1px solid var(--border);
  border-radius: var(--r); width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-2); font-size: 16px; cursor: pointer;
  transition: all 0.15s;
}
.modal-close:hover { border-color: var(--border-l); color: var(--white); }
.modal h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 0.5rem; }
.modal p  { font-size: 0.9375rem; color: var(--grey-2); line-height: 1.65; margin-bottom: 1.25rem; }

/* ── Badges ── */
.badge {
  padding: 2px 9px; border-radius: 50px;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.01em; border: 1px solid; display: inline-flex; align-items: center;
}
.b-remote    { color: #67e8f9; border-color: rgba(103,232,249,0.25); background: rgba(103,232,249,0.06); }
.b-relocate  { color: #93c5fd; border-color: rgba(147,197,253,0.25); background: rgba(147,197,253,0.06); }
.b-parttime  { color: #fcd34d; border-color: rgba(252,211,77,0.25);  background: rgba(252,211,77,0.06); }
.b-fulltime  { color: #c4b5fd; border-color: rgba(196,181,253,0.25); background: rgba(196,181,253,0.06); }
.b-freelance { color: #6ee7b7; border-color: rgba(110,231,183,0.25); background: rgba(110,231,183,0.06); }
.b-contract  { color: #f9a8d4; border-color: rgba(249,168,212,0.25); background: rgba(249,168,212,0.06); }
.b-visa      { color: #fca5a5; border-color: rgba(252,165,165,0.25); background: rgba(252,165,165,0.06); }
.b-local     { color: #86efac; border-color: rgba(134,239,172,0.25); background: rgba(134,239,172,0.06); }

/* ── Loading spinner ── */
.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid var(--border-l); border-top-color: var(--accent);
  border-radius: 50%; animation: spin 0.8s linear infinite; flex-shrink: 0;
}
.spinner-lg { width: 52px; height: 52px; border-width: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CV Score ring ── */
.score-ring-wrap { position: relative; width: 100px; height: 100px; flex-shrink: 0; }
.score-ring-wrap svg { transform: rotate(-90deg); }
.score-ring-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.score-num { font-size: 1.5rem; font-weight: 600; line-height: 1; letter-spacing: -0.02em; }
.score-sub  { font-size: 0.625rem; color: var(--grey-3); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Progress bar ── */
.progress-bar { height: 4px; background: var(--surface3); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 2px; background: var(--accent); transition: width 0.6s ease; }

/* ── Stat grid ── */
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.stat-cell { background: var(--bg); padding: 18px 20px; }
.stat-num { font-size: 1.4rem; font-weight: 600; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.stat-lbl { font-size: 0.75rem; color: var(--grey-3); margin-top: 4px; }

/* ── Info boxes ── */
.info-box  { background: var(--surface); border-left: 3px solid var(--blue);  border-radius: 0 var(--r) var(--r) 0; padding: 10px 14px; font-size: 0.8125rem; color: var(--grey-2); line-height: 1.65; margin: 10px 0; }
.good-box  { background: rgba(34,197,94,0.05); border-left: 3px solid var(--green); border-radius: 0 var(--r) var(--r) 0; padding: 10px 14px; font-size: 0.8125rem; color: var(--grey-2); line-height: 1.65; margin: 10px 0; }
.warn-box  { background: rgba(245,158,11,0.05); border-left: 3px solid var(--amber); border-radius: 0 var(--r) var(--r) 0; padding: 10px 14px; font-size: 0.8125rem; color: var(--grey-2); line-height: 1.65; margin: 10px 0; }
.error-box { background: var(--red-dim); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--r); padding: 10px 14px; font-size: 0.875rem; color: #fca5a5; line-height: 1.6; margin-top: 0.875rem; display: none; }
.error-box.show { display: block; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--surface); border: 1px solid var(--border-l);
  border-radius: var(--r); padding: 10px 16px;
  font-size: 0.875rem; color: var(--white); z-index: 400;
  transform: translateY(60px); opacity: 0; transition: all 0.3s;
  max-width: 320px; box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(34,197,94,0.3); }
.toast.error   { border-color: rgba(239,68,68,0.3); }
.toast.info    { border-color: var(--accent-border); }

/* ── Upgrade prompt ── */
.upgrade-prompt {
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  border-radius: var(--r-lg); padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.up-title { font-size: 0.9375rem; font-weight: 500; color: var(--accent); }
.up-sub   { font-size: 0.8125rem; color: var(--grey-2); margin-top: 2px; }

/* ── bKash section ── */
.bkash-logo {
  width: 40px; height: 40px; border-radius: 9px;
  background: #E2136E; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 10px; color: #fff; line-height: 1.2;
  text-align: center; flex-shrink: 0; font-family: var(--font-sans);
}
.bkash-step {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.875rem; color: var(--grey-2); line-height: 1.55;
}
.bkash-step-num {
  width: 20px; height: 20px; border-radius: 50%;
  background: #E2136E; color: #fff;
  font-size: 0.625rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.bkash-amount {
  display: inline-block; background: rgba(226,19,110,0.15);
  border: 1px solid rgba(226,19,110,0.3); border-radius: 5px;
  padding: 1px 7px; color: #ff6ba8; font-weight: 600;
}
.bkash-submit {
  width: 100%; padding: 11px; background: #E2136E; color: #fff;
  border: none; border-radius: var(--r); font-family: var(--font-sans);
  font-size: 0.9375rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; display: flex; align-items: center;
  justify-content: center; gap: 7px; margin-top: 0.875rem;
}
.bkash-submit:hover { background: #c41060; }
.bkash-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Job cards ── */
.jobs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.job-card {
  background: var(--bg); padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.15s; animation: fadeUp 0.4s ease both;
}
.job-card:hover { background: var(--surface); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.jc-top  { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.jc-title{ font-size: 0.9375rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.match-pill {
  flex-shrink: 0; padding: 2px 9px; border-radius: 50px;
  font-size: 0.6875rem; font-weight: 700;
  border: 1px solid rgba(232,255,71,0.3); color: var(--accent);
  background: rgba(232,255,71,0.07);
}
.match-pill.hi { border-color: rgba(34,197,94,0.3); color: #86efac; background: rgba(34,197,94,0.07); }
.jc-company { font-size: 0.8125rem; color: var(--grey-2); margin-top: 1px; }
.jc-loc     { font-size: 0.75rem;   color: var(--grey-3); }
.jc-salary  { font-size: 0.875rem;  font-weight: 600; color: var(--white); }
.skills-wrap{ display: flex; gap: 4px; flex-wrap: wrap; }
.s-tag {
  padding: 1px 7px; border-radius: 4px; font-size: 0.6875rem;
  background: var(--surface3); border: 1px solid var(--border); color: var(--grey-3);
}
.fit-note {
  font-size: 0.75rem; color: var(--grey-2); line-height: 1.55;
  border-left: 2px solid rgba(232,255,71,0.25); padding-left: 8px;
}
.jc-actions { display: flex; gap: 5px; margin-top: 4px; }
.jc-apply {
  flex: 1; padding: 8px 12px; border-radius: var(--r);
  background: var(--accent); color: #000; font-weight: 600;
  font-size: 0.75rem; text-align: center;
  transition: 0.15s; border: none; cursor: pointer;
  font-family: var(--font-sans); display: block; text-decoration: none;
}
.jc-apply:hover { background: #f5ff6e; }
.jc-save {
  padding: 8px 10px; border-radius: var(--r);
  background: transparent; border: 1px solid var(--border-l);
  color: var(--grey-2); cursor: pointer; font-size: 0.75rem;
  transition: 0.15s; font-family: var(--font-sans);
}
.jc-save:hover  { border-color: var(--grey-3); color: var(--white); }
.jc-save.saved  { border-color: var(--accent-border); color: var(--accent); }
.jc-feature {
  padding: 7px 10px; border-radius: var(--r);
  background: transparent; border: 1px solid var(--border-l);
  color: var(--grey-2); cursor: pointer; font-size: 0.75rem;
  transition: 0.15s; font-family: var(--font-sans); white-space: nowrap;
}
.jc-feature:hover { border-color: var(--border-l); color: var(--white); background: var(--surface2); }

/* ── Filter chips ── */
.chip {
  padding: 5px 13px; border-radius: 50px;
  border: 1px solid var(--border); background: transparent;
  color: var(--grey-2); font-size: 0.75rem; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  white-space: nowrap; font-family: var(--font-sans);
}
.chip:hover { border-color: var(--border-l); color: var(--white); }
.chip.active { background: var(--accent-dim); border-color: var(--accent-border); color: var(--accent); }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-logo {
  font-size: 0.9375rem; font-weight: 600;
  letter-spacing: -0.02em; color: var(--white);
  display: flex; align-items: center; gap: 6px; text-decoration: none;
}
.footer-logo .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.8125rem; color: var(--grey-3); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8125rem; color: var(--grey-3); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.anim-1 { opacity: 0; animation: fadeUp 0.6s ease 0.05s forwards; }
.anim-2 { opacity: 0; animation: fadeUp 0.6s ease 0.15s forwards; }
.anim-3 { opacity: 0; animation: fadeUp 0.6s ease 0.25s forwards; }
.anim-4 { opacity: 0; animation: fadeUp 0.6s ease 0.35s forwards; }
.anim-5 { opacity: 0; animation: fadeUp 0.6s ease 0.45s forwards; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utility ── */
.or-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--grey-3); font-size: 0.875rem; margin: 1.25rem 0;
}
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.text-accent  { color: var(--accent); }
.text-green   { color: var(--green); }
.text-red     { color: var(--red); }
.text-muted   { color: var(--grey-2); }
.text-faint   { color: var(--grey-3); }
.font-serif   { font-family: var(--font-serif); }
.italic       { font-style: italic; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .container  { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }
  .nav-links  { display: none; }
  .section    { padding: 56px 0; }
  .section-header { flex-direction: column; margin-bottom: 36px; }
  .section-header-right { max-width: 100%; padding-top: 0; }
  .form-row   { grid-template-columns: 1fr; }
  .jobs-grid  { grid-template-columns: 1fr; background: transparent; border-radius: var(--r-lg); }
  .stat-grid  { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 16px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .modal     { padding: 1.75rem; }
}
