/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --red-500:  #ef4444;
  --red-600:  #dc2626;
  --orange-500: #f97316;
  --orange-100: #ffedd5;
  --green-500: #22c55e;
  --green-50:  #f0fdf4;
  --green-700: #15803d;
  --yellow-100: #fef9c3;
  --yellow-700: #a16207;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.05);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; padding: .6rem 1.2rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; cursor: pointer; border: none;
  text-decoration: none; transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-700); color: #fff; }

.btn-ghost {
  background: transparent; color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-900); }

.btn-danger { background: var(--red-600); color: #fff; }
.btn-danger:hover { background: #b91c1c; }

.btn-sm  { padding: .35rem .75rem; font-size: .8rem; }
.btn-lg  { padding: .8rem 1.8rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  background: #fff; border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; gap: 1rem;
  height: 60px; justify-content: space-between;
}
.nav-brand {
  font-size: 1.3rem; font-weight: 800; color: var(--blue-600);
  text-decoration: none; display: flex; align-items: center; gap: .35rem;
}
.nav-brand:hover { text-decoration: none; color: var(--blue-700); }
.brand-icon { font-size: 1.2rem; }
.nav-links { display: flex; align-items: center; gap: 1rem; }
.nav-link { color: var(--gray-700); font-weight: 500; font-size: .9rem; }
.nav-link:hover { color: var(--blue-600); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--gray-700); }
.nav-mobile { display: none; background: #fff; border-top: 1px solid var(--gray-200); padding: .75rem 1.25rem; flex-direction: column; gap: .5rem; }
.nav-mobile.open { display: flex; }
.nav-mobile-link { padding: .5rem 0; color: var(--gray-700); font-weight: 500; border-bottom: 1px solid var(--gray-100); }

/* ── Flash messages ───────────────────────────────────────────────────────── */
.flash-container { position: fixed; top: 70px; right: 1rem; z-index: 200; display: flex; flex-direction: column; gap: .5rem; max-width: 420px; }
.flash {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .85rem 1rem; border-radius: var(--radius);
  box-shadow: var(--shadow-md); font-size: .9rem; font-weight: 500;
  animation: slideIn .25s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
.flash-success { background: var(--green-50); color: var(--green-700); border-left: 4px solid var(--green-500); }
.flash-danger   { background: #fef2f2; color: #991b1b; border-left: 4px solid var(--red-500); }
.flash-info     { background: var(--blue-50); color: #1e40af; border-left: 4px solid var(--blue-600); }
.flash-warning  { background: var(--yellow-100); color: var(--yellow-700); border-left: 4px solid #eab308; }
.flash-close { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: inherit; opacity: .6; margin-left: auto; }
.flash-inline { position: static; max-width: 100%; margin-bottom: 1rem; box-shadow: none; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 4rem 0; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 280px; }
.hero-headline { font-size: 3rem; font-weight: 800; line-height: 1.15; color: var(--gray-900); }
.hero-sub { font-size: 1.2rem; color: var(--gray-500); margin-top: .75rem; max-width: 480px; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--blue-600); }
.stat-label { font-size: .8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }
.hero-cta { text-align: center; }
.hero-note { font-size: .8rem; color: var(--gray-400); margin-top: .5rem; }

/* ── Filters ──────────────────────────────────────────────────────────────── */
.filter-section { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
.filter-form {}
.filter-row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .75rem; }
.filter-field { display: flex; flex-direction: column; gap: .3rem; }
.filter-label { font-size: .75rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; }
.filter-select {
  padding: .5rem .75rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: .9rem; background: var(--gray-50); color: var(--gray-900); cursor: pointer; min-width: 160px;
}
.filter-select:focus { outline: none; border-color: var(--blue-600); }
.filter-field-check { justify-content: flex-end; padding-bottom: .1rem; }
.filter-checkbox-label { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9rem; font-weight: 500; user-select: none; }

/* ── Job board ────────────────────────────────────────────────────────────── */
.jobs-section { padding: 2rem 0 4rem; }
.jobs-header { margin-bottom: 1.5rem; }
.jobs-count { font-size: 1rem; font-weight: 600; color: var(--gray-700); }
.jobs-count-sub { color: var(--gray-400); font-weight: 400; }

.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1rem; }

.job-card-link { text-decoration: none; color: inherit; display: block; }
.job-card {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.25rem; transition: box-shadow .15s, border-color .15s; cursor: pointer;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-600); }
.job-card-urgent { border-left: 4px solid var(--orange-500); }

.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .75rem; }
.job-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.job-card-time { font-size: .75rem; color: var(--gray-400); white-space: nowrap; }

.job-card-title { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: .25rem; }
.job-card-company { font-size: .9rem; color: var(--gray-500); margin-bottom: .75rem; }

.job-card-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.job-meta-item { font-size: .8rem; color: var(--gray-500); }
.job-tag {
  font-size: .72rem; font-weight: 600; padding: .15rem .5rem;
  border-radius: 20px; background: var(--gray-100); color: var(--gray-700);
}
.job-tag-category { background: var(--blue-50); color: var(--blue-700); }

/* ── Badges ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; font-weight: 700;
  padding: .2rem .55rem; border-radius: 20px; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em;
}
.badge-urgent { background: var(--orange-100); color: #c2410c; }
.badge-immediate { background: var(--blue-50); color: var(--blue-700); }
.badge-expired { background: var(--gray-100); color: var(--gray-500); }
.badge-lg { font-size: .8rem; padding: .3rem .8rem; }
.badge-xs { font-size: .65rem; padding: .1rem .4rem; }

/* ── Pagination ───────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn {
  padding: .45rem .85rem; border-radius: var(--radius); font-size: .85rem; font-weight: 500;
  color: var(--gray-700); background: #fff; border: 1.5px solid var(--gray-200); text-decoration: none;
  transition: all .15s;
}
.page-btn:hover { border-color: var(--blue-600); color: var(--blue-600); text-decoration: none; }
.page-btn-active { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.page-btn-active:hover { color: #fff; }
.page-ellipsis { padding: .45rem .5rem; color: var(--gray-400); }

/* ── Empty state ──────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 5rem 1rem; color: var(--gray-500); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.25rem; color: var(--gray-700); margin-bottom: .5rem; }
.empty-state p { margin-bottom: 1.5rem; }

/* ── Job detail ───────────────────────────────────────────────────────────── */
.detail-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 2rem;
  align-items: start; padding-top: 2rem; padding-bottom: 4rem;
}
.job-detail-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 2rem; }
.detail-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200); }
.detail-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .75rem; }
.detail-title { font-size: 1.75rem; font-weight: 800; color: var(--gray-900); }
.detail-company { font-size: 1.1rem; color: var(--gray-500); margin-top: .25rem; margin-bottom: 1.25rem; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 1rem; }
.detail-meta-item { display: flex; align-items: center; gap: .4rem; font-size: .9rem; color: var(--gray-600); }
.meta-icon { font-size: 1rem; }
.detail-section { margin-bottom: 2rem; }
.detail-section-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--gray-100); }
.detail-body { font-size: .95rem; color: var(--gray-700); line-height: 1.8; }
.description-body { white-space: pre-wrap; }
.back-link { font-size: .85rem; color: var(--gray-500); }
.back-link:hover { color: var(--blue-600); }

/* Apply panel */
.apply-panel { position: sticky; top: 80px; }
.apply-card { background: #fff; border: 2px solid var(--blue-600); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-lg); }
.apply-title { font-size: 1.3rem; font-weight: 800; color: var(--gray-900); margin-bottom: .25rem; }
.apply-sub { font-size: .85rem; color: var(--gray-400); margin-bottom: 1.25rem; }

/* File upload */
.file-upload-area { border: 2px dashed var(--gray-200); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: border-color .15s; }
.file-upload-area:hover { border-color: var(--blue-600); }
.file-input { position: absolute; opacity: 0; width: 0; height: 0; }
.file-upload-label { cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.file-upload-icon { font-size: 1.75rem; }
.file-upload-text { font-size: .85rem; color: var(--gray-500); }

/* ── Forms (shared) ───────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group-inline { flex-direction: row; align-items: center; }
.form-group-grow { flex: 1; }
.form-group-span2 { grid-column: span 2; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--gray-700); }
.form-input {
  padding: .6rem .9rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: .95rem; background: #fff; color: var(--gray-900); width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-input-error { border-color: var(--red-500); }
.form-textarea { min-height: 220px; resize: vertical; font-family: inherit; }
.form-select { cursor: pointer; }
.form-error { font-size: .8rem; color: var(--red-600); }
.form-hint { font-size: .78rem; color: var(--gray-400); margin-top: .2rem; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-checkbox-label { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9rem; }
.form-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.check-group { display: flex; flex-direction: column; gap: .75rem; justify-content: center; }

/* ── Auth pages ───────────────────────────────────────────────────────────── */
.auth-page { display: flex; justify-content: center; align-items: flex-start; min-height: 80vh; padding: 4rem 1rem; }
.auth-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 440px; box-shadow: var(--shadow-md); }
.auth-card-wide { max-width: 640px; }
.auth-header { margin-bottom: 1.75rem; }
.auth-title { font-size: 1.6rem; font-weight: 800; }
.auth-sub { color: var(--gray-500); margin-top: .35rem; font-size: .95rem; }
.auth-alt { text-align: center; margin-top: 1.5rem; font-size: .9rem; color: var(--gray-500); }

/* ── Dashboard ────────────────────────────────────────────────────────────── */
.dashboard-layout { padding-top: 2rem; padding-bottom: 4rem; }
.dashboard-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.dashboard-title { font-size: 1.75rem; font-weight: 800; }
.dashboard-sub { color: var(--gray-500); margin-top: .25rem; }
.dash-stats { display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.dash-stat { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem 2rem; text-align: center; }
.dash-stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--blue-600); }
.dash-stat-label { font-size: .8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; }
.dash-table-wrap { overflow-x: auto; }
.dash-table { width: 100%; border-collapse: collapse; background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; font-size: .875rem; }
.dash-table th { background: var(--gray-50); padding: .75rem 1rem; text-align: left; font-size: .75rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--gray-200); }
.dash-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.dash-table tr:last-child td { border-bottom: none; }
.row-inactive td { opacity: .55; }
.row-expired td { opacity: .65; }
.text-center { text-align: center; }
.text-muted { color: var(--gray-400); }
.text-danger { color: var(--red-600); }
.dash-job-title { max-width: 240px; }
.dash-job-badges { display: flex; gap: .3rem; flex-wrap: wrap; margin-top: .3rem; }
.job-title-link { font-weight: 600; color: var(--gray-900); }
.job-title-link:hover { color: var(--blue-600); }
.app-count-link { font-weight: 700; color: var(--blue-600); }
.email-link { color: var(--blue-600); }
.notif-sent { color: var(--green-700); font-weight: 700; font-size: 1rem; }
.notif-pending { color: var(--orange-500); font-weight: 700; font-size: 1rem; }
.dash-stat-link { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.dash-stat-link:hover .dash-stat-num { color: var(--blue-700); text-decoration: underline; }
.status-dot { font-size: .78rem; font-weight: 600; padding: .2rem .6rem; border-radius: 20px; }
.status-active { background: var(--green-50); color: var(--green-700); }
.status-inactive { background: var(--gray-100); color: var(--gray-500); }
.status-expired { background: var(--yellow-100); color: var(--yellow-700); }
.dash-actions { display: flex; gap: .4rem; flex-wrap: wrap; }
.action-btn { padding: .3rem .65rem; border-radius: 6px; font-size: .78rem; font-weight: 600; color: var(--blue-700); background: var(--blue-50); border: none; cursor: pointer; text-decoration: none; transition: background .15s; white-space: nowrap; }
.action-btn:hover { background: var(--blue-100); text-decoration: none; }
.action-btn-toggle { color: var(--gray-700); background: var(--gray-100); }
.action-btn-toggle:hover { background: var(--gray-200); }
.action-btn-danger { color: #991b1b; background: #fef2f2; }
.action-btn-danger:hover { background: #fee2e2; }

/* ── Post job / Template picker ───────────────────────────────────────────── */
.post-layout { padding-top: 2rem; padding-bottom: 4rem; max-width: 860px; }
.post-header { margin-bottom: 2rem; }
.post-title { font-size: 1.75rem; font-weight: 800; }
.post-sub { color: var(--gray-500); margin-top: .35rem; }
.template-picker { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem; }
.picker-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.category-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.cat-tab {
  padding: .5rem 1rem; border-radius: 20px; font-size: .85rem; font-weight: 600;
  background: var(--gray-100); color: var(--gray-700); border: 1.5px solid transparent;
  cursor: pointer; transition: all .15s;
}
.cat-tab:hover, .cat-tab.active { background: var(--blue-50); color: var(--blue-700); border-color: var(--blue-600); }
.cat-tab-scratch { background: var(--gray-50); color: var(--gray-500); border: 1.5px dashed var(--gray-300); }
.cat-tab-scratch:hover { background: var(--gray-100); color: var(--gray-700); border-color: var(--gray-400); }
.template-list-title { font-size: .9rem; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.template-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .5rem; }
.template-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 1rem; border-radius: var(--radius); background: var(--gray-50);
  border: 1.5px solid var(--gray-200); cursor: pointer; text-align: left;
  transition: all .15s; font-size: .9rem;
}
.template-card:hover { border-color: var(--blue-600); background: var(--blue-50); }
.tpl-title { font-weight: 600; color: var(--gray-800); }
.tpl-arrow { color: var(--gray-400); font-size: 1rem; }
.post-form-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.post-form-wrap { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 2rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 2.5rem 0; margin-top: auto; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .75rem; text-align: center; }
.footer-brand { color: #fff; font-weight: 700; font-size: 1rem; }
.footer-copy { font-size: .8rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--gray-400); font-size: .85rem; }
.footer-links a:hover { color: #fff; text-decoration: none; }

/* ── Seeker pages ─────────────────────────────────────────────────────────── */
.seeker-profile-card {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.75rem; margin-bottom: 1.5rem;
}
.profile-summary-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.profile-summary-name { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.profile-summary-email { font-size: .9rem; color: var(--gray-500); margin-top: .15rem; }
.profile-resume-hint { font-size: .85rem; color: var(--gray-500); margin-top: .75rem; }

.resume-file-row { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.resume-file-icon { font-size: 1.3rem; }
.resume-file-name { font-size: .9rem; font-weight: 600; color: var(--gray-800); }

.section-heading { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }

/* One-click apply widget */
.quick-apply-info {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; margin-top: 1rem;
}
.qa-row {
  display: flex; align-items: center; padding: .65rem 1rem;
  border-bottom: 1px solid var(--gray-100); font-size: .88rem;
}
.qa-row:last-child { border-bottom: none; }
.qa-label { width: 4.5rem; font-weight: 600; color: var(--gray-500); flex-shrink: 0; }
.qa-value { flex: 1; color: var(--gray-800); }
.qa-resume { display: flex; align-items: center; gap: .5rem; }
.qa-change { font-size: .8rem; color: var(--blue-600); }

/* Upsell link below guest form */
.apply-upsell {
  text-align: center; font-size: .82rem; color: var(--gray-400);
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-100);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
  .apply-panel { position: static; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-group-span2 { grid-column: span 1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-headline { font-size: 2rem; }
  .jobs-grid { grid-template-columns: 1fr; }
  .dashboard-header { flex-direction: column; gap: 1rem; }
  .hero-inner { flex-direction: column; gap: 2rem; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .dash-table { font-size: .8rem; }
  .filter-row { flex-direction: column; }
  .filter-select { min-width: 100%; }
}
