/* =====================================================
   Latentra Jobs — jobs.css
   Brand: Navy #050d1a · Green #00d68f · Blue #3d7eff
   Different look from main site — clean, functional, spacious
===================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #040b15;
  color: #e2e8f0;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.jobs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.jobs-accent { color: #00d68f; }

/* ── Header ─────────────────────────────────────── */
.jobs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 11, 21, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.jobs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}
.jobs-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
}
.jobs-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  font-weight: 900;
  font-size: 0.875rem;
  color: #050d1a;
}
.jobs-logo-text {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.jobs-header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.jobs-header-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.jobs-header-link:hover { color: #fff; }

/* ── Search hero ────────────────────────────────── */
.jobs-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(0,214,143,0.03) 0%, transparent 100%);
}
.jobs-hero-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
}
.jobs-hero-sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
}

/* Search bar */
.jobs-search-form { display: flex; flex-direction: column; gap: 0.875rem; }
.jobs-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  transition: border-color 0.2s;
}
.jobs-search-bar:focus-within {
  border-color: rgba(0,214,143,0.4);
}
.jobs-search-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.jobs-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9375rem;
  padding: 0.625rem 0.75rem;
  font-family: inherit;
}
.jobs-search-input::placeholder { color: rgba(255,255,255,0.25); }
.jobs-search-btn {
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  color: #050d1a;
  font-weight: 700;
  font-size: 0.8125rem;
  font-family: inherit;
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.jobs-search-btn:hover { opacity: 0.9; }

/* Filters */
.jobs-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.jobs-filter-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-family: inherit;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23ffffff50' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
}
.jobs-filter-select:focus { border-color: rgba(0,214,143,0.4); }
.jobs-filter-select--active {
  border-color: rgba(0,214,143,0.3);
  color: #00d68f;
}
.jobs-filter-select option { background: #0b1729; color: #fff; }
.jobs-filter-group { position: relative; }


/* Popular searches */
.jobs-popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}
.jobs-popular-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.jobs-popular-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.jobs-popular-tag:hover {
  background: rgba(0,214,143,0.1);
  border-color: rgba(0,214,143,0.25);
  color: #00d68f;
}

/* Keyword highlight */
.jobs-highlight {
  background: rgba(0,214,143,0.2);
  color: #00d68f;
  border-radius: 2px;
  padding: 0 2px;
}

.jobs-clear-btn {
  font-size: 0.8125rem;
  color: #00d68f;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  transition: opacity 0.2s;
}
.jobs-clear-btn:hover { opacity: 0.8; }

/* Active filter pills */
.jobs-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
}
.jobs-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3125rem 0.625rem;
  border-radius: 999px;
  background: rgba(0,214,143,0.1);
  color: #00d68f;
  border: 1px solid rgba(0,214,143,0.2);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.jobs-filter-pill:hover {
  background: rgba(0,214,143,0.18);
  border-color: rgba(0,214,143,0.35);
}
.jobs-filter-pill--skill {
  background: rgba(61,126,255,0.1);
  color: #6ea3ff;
  border-color: rgba(61,126,255,0.2);
}
.jobs-filter-pill--skill:hover {
  background: rgba(61,126,255,0.18);
  border-color: rgba(61,126,255,0.35);
}
.pill-x {
  font-size: 0.875rem;
  line-height: 1;
  opacity: 0.6;
}
.jobs-filter-pill:hover .pill-x { opacity: 1; }
.jobs-filter-pill--category {
  background: rgba(0,214,143,0.1);
  color: #00d68f;
  border-color: rgba(0,214,143,0.2);
}
.jobs-filter-pill--category:hover {
  background: rgba(0,214,143,0.18);
  border-color: rgba(0,214,143,0.35);
}

/* ── Browse by Category ────────────────────────── */
.jobs-categories {
  padding: 1.25rem 0 0.5rem;
}
.jobs-categories-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.jobs-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.jobs-category-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.jobs-category-card:hover {
  background: rgba(0,214,143,0.06);
  border-color: rgba(0,214,143,0.2);
}
.jobs-category-icon {
  font-size: 1rem;
}
.jobs-category-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.jobs-category-card:hover .jobs-category-label {
  color: #fff;
}
.jobs-category-count {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

/* ── Main ───────────────────────────────────────── */
.jobs-main {
  flex: 1;
  padding: 1.5rem 0 3rem;
}
.jobs-count {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

/* ── Job cards ──────────────────────────────────── */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.job-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.job-card:hover {
  background: rgba(255,255,255,0.045);
  border-color: rgba(0,214,143,0.2);
  transform: translateY(-1px);
}
.job-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}
.job-card-company-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, rgba(0,214,143,0.15), rgba(61,126,255,0.15));
  color: #00d68f;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.job-card-info { flex: 1; min-width: 0; }
.job-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.125rem;
  line-height: 1.3;
}
.job-card-company {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.job-card-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.125rem;
}

/* Meta tags row */
.job-card-meta, .job-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  white-space: nowrap;
}
.job-tag-icon { width: 0.75rem; height: 0.75rem; }
.job-tag--location {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.job-tag--remote-remote {
  background: rgba(0,214,143,0.1);
  color: #00d68f;
  border: 1px solid rgba(0,214,143,0.2);
}
.job-tag--remote-hybrid {
  background: rgba(61,126,255,0.1);
  color: #6ea3ff;
  border: 1px solid rgba(61,126,255,0.2);
}
.job-tag--remote-onsite {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.job-tag--seniority {
  background: rgba(139,92,246,0.1);
  color: #a78bfa;
  border: 1px solid rgba(139,92,246,0.2);
}
.job-tag--type {
  background: rgba(251,191,36,0.08);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.15);
}
.job-tag--dept {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.07);
}
.job-tag--salary {
  background: rgba(0,214,143,0.08);
  color: #00d68f;
  border: 1px solid rgba(0,214,143,0.15);
  font-weight: 700;
}
.job-tag--country {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.07);
}
.job-tag--cloud {
  background: rgba(251,146,60,0.1);
  color: #fb923c;
  border: 1px solid rgba(251,146,60,0.2);
}
.job-tag--quality-warn {
  background: rgba(250,204,21,0.08);
  color: rgba(250,204,21,0.7);
  border: 1px solid rgba(250,204,21,0.15);
  font-size: 0.625rem;
}

/* Skill tags */
.job-card-tags, .job-detail-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.job-skill-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3125rem;
  background: rgba(61,126,255,0.08);
  color: rgba(61,126,255,0.7);
  border: 1px solid rgba(61,126,255,0.12);
}
.job-skill-tag--link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.job-skill-tag--link:hover {
  background: rgba(61,126,255,0.18);
  border-color: rgba(61,126,255,0.3);
  color: #6ea3ff;
}
.job-skill-tag--more {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.08);
}

/* Cloud platform tags */
.job-detail-clouds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}
.job-cloud-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 0.3125rem;
  background: rgba(251,146,60,0.08);
  color: rgba(251,146,60,0.8);
  border: 1px solid rgba(251,146,60,0.15);
}
.job-cloud-tag--heavy {
  background: rgba(251,146,60,0.15);
  color: #fb923c;
  border-color: rgba(251,146,60,0.3);
}

/* ── Empty state ────────────────────────────────── */
.jobs-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.jobs-empty-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.jobs-empty-sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.jobs-empty-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 1rem;
  align-items: center;
}
.jobs-empty-link {
  color: #00d68f;
  font-weight: 600;
  text-decoration: none;
}
.jobs-empty-link:hover { text-decoration: underline; }

/* ── Pagination ─────────────────────────────────── */
.jobs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  margin-top: 2rem;
}
.jobs-page-btn, .jobs-page-num {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.jobs-page-btn {
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.jobs-page-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.jobs-page-num {
  color: rgba(255,255,255,0.5);
  background: transparent;
}
.jobs-page-num:hover { background: rgba(255,255,255,0.05); color: #fff; }
.jobs-page-num--active {
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  color: #050d1a;
}
.jobs-page-num--active:hover { background: linear-gradient(135deg, #00d68f, #3d7eff); color: #050d1a; }
.jobs-page-ellipsis {
  color: rgba(255,255,255,0.25);
  font-size: 0.875rem;
  padding: 0.5rem 0.25rem;
  user-select: none;
}

/* ── Job detail page ────────────────────────────── */
.job-back {
  display: inline-block;
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.job-back:hover { color: #00d68f; }

.job-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.job-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.job-detail-company-badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(0,214,143,0.15), rgba(61,126,255,0.15));
  color: #00d68f;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.job-detail-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}
.job-detail-company {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 0.125rem;
}

.job-detail-tags { margin-bottom: 1rem; }
.job-detail-skills { margin-bottom: 1.5rem; }

/* Description */
.job-detail-body {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 2rem;
  line-height: 1.8;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}
.job-detail-body h1, .job-detail-body h2, .job-detail-body h3, .job-detail-body h4 {
  color: #fff;
  font-weight: 700;
  margin: 1.5rem 0 0.625rem;
  line-height: 1.3;
}
.job-detail-body h1 { font-size: 1.25rem; }
.job-detail-body h2 { font-size: 1.125rem; }
.job-detail-body h3 { font-size: 1rem; }
.job-detail-body p { margin-bottom: 0.875rem; }
.job-detail-body ul, .job-detail-body ol {
  margin: 0.5rem 0 1rem 1.5rem;
}
.job-detail-body li { margin-bottom: 0.375rem; }
.job-detail-body a {
  color: #00d68f;
  text-decoration: underline;
  text-decoration-color: rgba(0,214,143,0.3);
}
.job-detail-body a:hover { text-decoration-color: #00d68f; }
.job-detail-body strong { color: rgba(255,255,255,0.9); }

/* Sidebar */
.job-detail-sidebar {
  position: sticky;
  top: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.job-sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.5rem;
}
.job-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  color: #050d1a;
  font-weight: 800;
  font-size: 0.9375rem;
  font-family: inherit;
  border: none;
  border-radius: 0.625rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0,214,143,0.25);
  margin-bottom: 1.25rem;
}
.job-apply-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,214,143,0.35);
}
.job-apply-icon { width: 1rem; height: 1rem; }
.job-sidebar-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.job-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8125rem;
}
.job-sidebar-label {
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.job-sidebar-value {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-align: right;
}

/* Latentra CTA card */
.job-sidebar-cta {
  background: rgba(0,214,143,0.04);
  border: 1px solid rgba(0,214,143,0.15);
  border-radius: 1rem;
  padding: 1.25rem;
}
.job-sidebar-cta-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
}
.job-sidebar-cta-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}
.job-sidebar-cta-btn {
  display: block;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #00d68f;
  border: 1px solid rgba(0,214,143,0.25);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.job-sidebar-cta-btn:hover {
  background: rgba(0,214,143,0.08);
}

/* ── Report broken link ────────────────────────── */
.job-report-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  padding: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.job-report-btn:hover {
  color: #fbbf24;
  border-color: rgba(251,191,36,0.25);
  background: rgba(251,191,36,0.05);
}
.job-report-btn:disabled {
  cursor: default;
  opacity: 0.7;
}
.job-report-btn--done {
  color: #00d68f;
  border-color: rgba(0,214,143,0.2);
}

/* ── Stale job banner ──────────────────────────── */
.job-stale-banner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fbbf24;
  line-height: 1.5;
}
.job-stale-banner svg {
  flex-shrink: 0;
  color: #fbbf24;
}

/* ── Footer ─────────────────────────────────────── */
.jobs-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  margin-top: auto;
}
.jobs-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.jobs-footer-links {
  display: flex;
  gap: 1.25rem;
}
.jobs-footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.jobs-footer-links a:hover { color: #fff; }


/* ── Analytics Page ─────────────────────────────── */
.analytics-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.analytics-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}
.analytics-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #00d68f;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.analytics-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
}
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.analytics-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.5rem;
}
.analytics-card--wide {
  grid-column: 1 / -1;
}
.analytics-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .jobs-header-nav { display: none; }
  .jobs-hero-title { font-size: 1.5rem; }
  .jobs-search-bar { flex-wrap: wrap; }
  .jobs-search-btn { width: 100%; margin-top: 0.25rem; }
  .jobs-filters { gap: 0.375rem; }
  .jobs-filter-select { flex: 1; min-width: 0; font-size: 0.75rem; padding: 0.4375rem 1.75rem 0.4375rem 0.625rem; }

  .job-detail {
    grid-template-columns: 1fr;
  }
  .job-detail-sidebar {
    position: static;
    order: -1;
  }
  .job-detail-title { font-size: 1.25rem; }
  .job-detail-body { padding: 1.25rem; }

  .analytics-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .analytics-grid { grid-template-columns: 1fr; }
  .analytics-stat-number { font-size: 1.5rem; }
}
