/* Theme: Remote — base theme.
   Child themes override the custom properties in :root only. */

:root {
  --bg: #FAF8F4;
  --surface: #ffffff;
  --ink: #16233D;
  --ink-soft: #3F4A5C;
  --muted: #5B6577;
  --faint: #8A93A3;
  --faint-2: #9AA2AF;
  --border: #EDE9E0;
  --border-soft: #F0ECE3;
  --border-input: #E4DFD4;
  --chip-bg: #F4F1EA;
  --primary: #0B3FA8;
  --primary-dark: #08307F;
  --primary-tint: #EAF0FC;
  --primary-tint-2: #F2F6FD;
  --primary-border: #C9D5EE;
  --accent: #22B573;
  --accent-dark: #1C9A61;
  --accent-tint: #E6F6EE;
  --navy: #0A1F44;
  --hero-grad-from: #1B54C6;
  --hero-grad-to: #0B3FA8;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Fraunces', serif;
  --radius-card: 20px;
  --shadow-card: 0 1px 2px rgba(16, 35, 61, .04);
  --shadow-card-hover: 0 16px 34px -22px rgba(11, 63, 168, .35);
  --shadow-nav: 0 14px 40px -18px rgba(11, 63, 168, .28);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

.container { max-width: 1180px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }

/* ---------- Navigation ---------- */

.nav-wrap { position: sticky; top: 16px; z-index: 60; padding: 0 14px; margin-bottom: 8px; }

.nav {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid #EFEBE2;
  border-radius: 20px;
  box-shadow: var(--shadow-nav);
  padding: 9px 12px 9px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-logo { display: flex; align-items: center; gap: 9px; color: var(--ink); flex-shrink: 0; }
.nav-logo:hover { color: var(--ink); }

.nav-logo-badge {
  width: 30px; height: 30px; border-radius: 9px; background: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.nav-logo-text { font-weight: 700; font-size: 19px; letter-spacing: -.01em; }
.nav-logo-text .tld { color: var(--accent); }

.nav-search {
  display: flex; align-items: center; gap: 6px;
  background: #F6F4EE; border: 1px solid #ECE8DF; border-radius: 14px;
  padding: 5px 5px 5px 14px; flex: 1; max-width: 560px; margin: 0 auto;
}

.nav-search input {
  flex: 1; border: none; outline: none; font-family: var(--font-body);
  font-size: 16px; color: var(--ink); background: transparent; padding: 11px 0; min-width: 0;
}

.nav-search button {
  background: var(--accent); color: #fff; border: none; border-radius: 11px;
  padding: 11px 22px; font-family: var(--font-body); font-weight: 600; font-size: 15px;
  cursor: pointer; white-space: nowrap;
}
.nav-search button:hover { background: var(--accent-dark); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-burger {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: var(--primary-tint-2); border: 1px solid #E4EAF6; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.nav-burger:hover { background: #E7EEFB; }

.btn-cta {
  display: inline-block;
  background: var(--accent); color: #fff !important; font-weight: 600; font-size: 15px;
  padding: 11px 18px; border-radius: 12px; box-shadow: 0 8px 18px -8px rgba(34, 181, 115, .7);
  white-space: nowrap; border: none; cursor: pointer;
}
.btn-cta:hover { background: var(--accent-dark); }

.nav-menu {
  position: absolute; top: calc(100% + 10px); right: 12px; width: 240px;
  background: var(--surface); border: 1px solid #EFEBE2; border-radius: 16px;
  box-shadow: 0 24px 50px -18px rgba(4, 20, 60, .4);
  padding: 10px; display: none; flex-direction: column; gap: 2px;
}
.nav-menu.open { display: flex; }
.nav-menu a { font-weight: 500; font-size: 15px; padding: 11px 14px; border-radius: 10px; color: var(--ink); }
.nav-menu a:hover { background: #F5F3EE; }
.nav-menu a.active { color: var(--primary); font-weight: 600; }
.nav-menu a.active:hover { background: var(--primary-tint-2); }
.nav-menu hr { height: 1px; background: var(--border-soft); border: none; margin: 6px 6px; }

/* ---------- Hero (homepage) ---------- */

.hero {
  background: radial-gradient(1200px 520px at 50% -12%, var(--hero-grad-from) 0%, var(--hero-grad-to) 58%);
  border-radius: 0 0 44px 44px;
  color: #fff;
  margin-top: -78px; /* sits behind the sticky nav */
}

.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 150px 24px 104px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }

.hero-badge {
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .28);
  color: #fff; padding: 7px 15px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px); line-height: 1.05; letter-spacing: -.015em; margin: 0;
}

.hero-sub { color: rgba(255, 255, 255, .84); font-size: clamp(17px, 1.6vw, 19px); line-height: 1.55; max-width: 480px; margin: 0; }

.hero-search {
  display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 18px;
  padding: 8px; box-shadow: 0 24px 60px -24px rgba(4, 20, 60, .6); width: 100%; max-width: 540px;
}

.hero-search-field { display: flex; align-items: center; gap: 10px; flex: 1; padding: 0 6px 0 16px; }

.hero-search input {
  flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 17px;
  color: var(--ink); background: transparent; padding: 15px 0; min-width: 0;
}

.hero-search button {
  background: var(--accent); color: #fff; border: none; border-radius: 13px; padding: 16px 26px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px; cursor: pointer; white-space: nowrap;
}
.hero-search button:hover { background: var(--accent-dark); }

.hero-popular { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero-popular-label { color: rgba(255, 255, 255, .65); font-size: 14px; }

.hero-popular a {
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .26); color: #fff;
  border-radius: 999px; padding: 8px 15px; font-size: 14px; cursor: pointer;
}
.hero-popular a:hover { background: rgba(255, 255, 255, .22); }

.hero-card {
  background: #fff; border-radius: 24px; padding: 24px;
  box-shadow: 0 40px 80px -30px rgba(4, 20, 60, .55); color: var(--ink);
}

.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.hero-card-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; }

.pill-new {
  background: var(--accent-tint); color: var(--accent-dark);
  font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px;
}

.hero-card-row { display: flex; align-items: center; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--border-soft); color: var(--ink); }
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row .title { font-weight: 600; font-size: 15px; }
.hero-card-row .sub { color: var(--faint); font-size: 13px; }
.hero-card-row .salary { color: var(--ink); font-weight: 600; font-size: 14px; white-space: nowrap; }

/* ---------- Company initial avatar ---------- */

.avatar {
  border-radius: 12px; background: var(--primary-tint); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; flex-shrink: 0;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: contain; }
.avatar-44 { width: 44px; height: 44px; font-size: 18px; }
.avatar-50 { width: 50px; height: 50px; border-radius: 13px; font-size: 22px; }
.avatar-54 { width: 54px; height: 54px; border-radius: 14px; font-size: 24px; }
.avatar-66 { width: 66px; height: 66px; border-radius: 16px; font-size: 30px; }

/* ---------- Sections ---------- */

.section { padding: 64px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; display: flex; flex-direction: column; gap: 13px; align-items: center; }
.section-eyebrow { color: var(--primary); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.section-title { font-size: clamp(30px, 4vw, 44px); color: var(--ink); margin: 0; line-height: 1.1; }
.section-sub { color: var(--muted); font-size: 17px; line-height: 1.55; margin: 0; }

/* ---------- Category cards ---------- */

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.category-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px;
  display: flex; align-items: center; gap: 16px; cursor: pointer; box-shadow: var(--shadow-card);
  color: var(--ink); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.category-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 18px 34px -20px rgba(11, 63, 168, .4); color: var(--ink); }

.category-card .icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--primary-tint); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.category-card .name { font-weight: 600; font-size: 17px; }
.category-card .count { color: var(--muted); font-size: 14px; margin-top: 2px; }

/* ---------- Chips / tags ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--chip-bg); color: var(--muted); border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 500; }
.chip-green { background: var(--accent-tint); color: var(--accent-dark); font-weight: 600; }

/* ---------- Job cards (homepage grid) ---------- */

.job-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.job-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 26px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-card);
}
.job-card h3 { font-size: 22px; margin: 0; line-height: 1.2; }
.job-card h3 a { color: var(--ink); }
.job-card h3 a:hover { color: var(--primary); }
.job-card-meta { display: flex; align-items: center; gap: 12px; }
.job-card-meta .company { font-weight: 600; color: var(--ink); font-size: 15px; }
.job-card-meta .posted { color: var(--faint); font-size: 13px; }
.job-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.job-card-foot .salary { font-weight: 600; color: var(--ink); }
.job-card-foot a { color: var(--accent); font-weight: 600; font-size: 14px; }
.job-card-foot a:hover { color: var(--accent-dark); }

/* ---------- Listing page ---------- */

.page-intro { max-width: 720px; }
.page-intro h1 { font-size: clamp(28px, 3.2vw, 38px); margin: 0 0 14px; line-height: 1.1; letter-spacing: -.015em; }
.page-intro p { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0; }
.page-intro.rich p { margin-bottom: 10px; }

.listing-layout {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px 80px;
  display: grid; grid-template-columns: 284px 1fr; gap: 32px; align-items: start;
}

.filters {
  position: sticky; top: 96px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 8px 22px 22px; box-shadow: var(--shadow-card);
}

.filters-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 0 14px; border-bottom: 1px solid var(--border-soft); }
.filters-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.filters-clear { background: none; border: none; color: var(--primary); font-family: var(--font-body); font-weight: 600; font-size: 13px; cursor: pointer; padding: 0; }

.filter-group { padding: 16px 0 6px; }
.filter-group + .filter-group { border-top: 1px solid var(--border-soft); }
.filter-label { font-weight: 700; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }

.filter-option { display: flex; align-items: center; gap: 11px; width: 100%; background: none; border: none; padding: 9px 0; cursor: pointer; text-align: left; font-family: var(--font-body); }
.filter-option .box {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid #CFD6E0;
}
.filter-option.checked .box { background: var(--primary); border-color: var(--primary); }
.filter-option .label { flex: 1; font-size: 15px; color: var(--ink); }
.filter-option .count { color: var(--faint-2); font-size: 13px; }

.listing-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 16px; flex-wrap: wrap; }
.listing-toolbar .showing { color: var(--muted); font-size: 15px; }
.listing-toolbar .showing b { color: var(--ink); }
.listing-toolbar label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.listing-toolbar select {
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  border: 1px solid var(--border-input); border-radius: 10px; padding: 8px 12px;
  background: #fff; cursor: pointer; outline: none;
}

.job-rows { display: flex; flex-direction: column; gap: 14px; }

.job-row {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; box-shadow: var(--shadow-card);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.job-row:hover { border-color: #CBD6EC; box-shadow: var(--shadow-card-hover); }
.job-row[data-href] { cursor: pointer; }

.job-row-main { flex: 1; min-width: 0; }
.job-row-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.job-row-meta .company { font-weight: 600; color: var(--ink); font-size: 14px; }
.job-row-meta .dot { color: #C4C9D1; }
.job-row-meta .posted { color: var(--faint); font-size: 13px; }
.job-row h3 { font-size: 21px; margin: 0 0 12px; line-height: 1.2; }
.job-row h3 a { color: var(--ink); }
.job-row h3 a:hover { color: var(--primary); }

.job-row-side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.job-row-side .salary { font-weight: 600; color: var(--ink); font-size: 15px; white-space: nowrap; }
.job-row-side .actions { display: flex; align-items: center; gap: 8px; }

.bookmark-btn {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; border: none;
  background: transparent; color: var(--faint-2);
}
.bookmark-btn.active { background: var(--primary-tint); color: var(--primary); }

.btn-view {
  background: var(--accent); color: #fff !important; border-radius: 11px; padding: 10px 18px;
  font-weight: 600; font-size: 14px; white-space: nowrap;
}
.btn-view:hover { background: var(--accent-dark); }

.empty-state {
  background: var(--surface); border: 1px dashed #D8D2C6; border-radius: 18px;
  padding: 56px 24px; text-align: center;
}
.empty-state .title { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.empty-state p { color: var(--muted); font-size: 16px; margin: 0 0 20px; }

.btn-primary {
  display: inline-block; background: var(--primary); color: #fff !important; border: none; border-radius: 12px;
  padding: 12px 22px; font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); }

.load-more-wrap { text-align: center; margin-top: 28px; }
.btn-outline {
  display: inline-block; background: var(--surface); color: var(--primary); border: 1.5px solid var(--primary-border);
  border-radius: 13px; padding: 13px 28px; font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer;
}
.btn-outline:hover { background: var(--primary-tint-2); border-color: var(--primary); }

.sidebar-text {
  margin-top: 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 20px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.6;
}
.sidebar-text :first-child { margin-top: 0; }
.sidebar-text :last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */

.faq-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 8px 28px; box-shadow: var(--shadow-card);
}

.faq-item { border-top: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; padding: 22px 0; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 18px; font-weight: 600; color: var(--ink);
}
.faq-q .toggle { width: 26px; height: 26px; flex-shrink: 0; color: var(--primary); font-size: 22px; line-height: 1; text-align: center; }

.faq-a { padding: 0 0 24px; color: var(--muted); font-size: 16px; line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- Job detail ---------- */

.breadcrumbs { color: var(--faint); font-size: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 24px 0 12px; }
.breadcrumbs a { color: var(--faint); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { color: #C4C9D1; }
.breadcrumbs .current { color: var(--ink); font-weight: 500; }

.detail-layout {
  max-width: 1180px; margin: 0 auto; padding: 12px 24px 80px;
  display: grid; grid-template-columns: 1fr 356px; gap: 32px; align-items: start;
}

.panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 32px 34px; box-shadow: var(--shadow-card);
}
.panel + .panel { margin-top: 20px; }

/* HTML sitemap: full-width sections so a growing list (companies especially,
   sourced from feeds and effectively unbounded) flows into more columns
   instead of stretching one narrow card into a long, hard-to-scan strip. */
.sitemap-section { padding: 28px 32px; }
.sitemap-section h2 { font-size: 19px; margin: 0 0 16px; }
.sitemap-count { color: var(--faint); font-weight: 400; font-size: 15px; }
.sitemap-links { column-width: 220px; column-gap: 28px; }
.sitemap-links a {
  display: block; color: var(--ink-soft); font-size: 15px; line-height: 1.9;
  break-inside: avoid; text-decoration: none;
}
.sitemap-links a:hover { color: var(--primary); }
.sitemap-group { display: block; break-inside: avoid; }
.sitemap-child { padding-left: 14px; font-size: 14px; color: var(--faint); }
.sitemap-child::before { content: '– '; }

.job-head { display: flex; gap: 20px; align-items: flex-start; }
.job-head-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.job-head-meta .company { font-weight: 600; font-size: 16px; }
.job-head-meta .dim { color: var(--faint); font-size: 14px; }
.job-head-meta .dot { color: #C4C9D1; }
.job-head h1 { font-size: clamp(28px, 3.4vw, 36px); margin: 0 0 16px; line-height: 1.12; letter-spacing: -.015em; }

.job-body { padding: 34px 40px; }
.job-body section { margin-bottom: 34px; }
.job-body section:last-child { margin-bottom: 8px; }
.job-body h2 { font-size: 23px; margin: 0 0 14px; }
.job-body p, .job-body li { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.job-body p { margin: 0 0 12px; }
.job-body ul { padding-left: 22px; margin: 0 0 12px; }

.company-panel { padding: 30px 40px; }
.company-panel-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.company-panel-head .name { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.company-panel-head .sub { color: var(--faint); font-size: 14px; }
.company-panel p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-weight: 600; font-size: 15px; }

.job-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }

.apply-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 26px 24px;
  box-shadow: 0 6px 20px -14px rgba(11, 63, 168, .3);
}

.salary-block { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); }
.fact-label { color: var(--faint); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.salary-block .amount { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: -.01em; }

.facts { display: flex; flex-direction: column; gap: 2px; padding: 16px 0 4px; }
.fact { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.fact .icon {
  width: 34px; height: 34px; border-radius: 10px; background: var(--primary-tint-2); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px;
}
.fact .value { color: var(--ink); font-size: 15px; font-weight: 600; }

.btn-apply {
  display: block; text-align: center; background: var(--accent); color: #fff !important; border-radius: 14px;
  padding: 15px; font-weight: 600; font-size: 16px; margin-top: 14px;
  box-shadow: 0 10px 22px -10px rgba(34, 181, 115, .75);
}
.btn-apply:hover { background: var(--accent-dark); }

.btn-save {
  width: 100%; margin-top: 10px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  background: var(--surface); border: 1.5px solid var(--primary-border); color: var(--primary);
}
.btn-save.active { background: var(--primary-tint); border-color: var(--primary); }

.apply-note { text-align: center; color: var(--faint); font-size: 13px; margin-top: 14px; line-height: 1.5; }

.share-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 22px 24px; box-shadow: var(--shadow-card); }
.share-buttons { display: flex; gap: 10px; }
.share-buttons a, .share-buttons button {
  flex: 1; height: 44px; border-radius: 12px; background: #F6F4EE; border: 1px solid #ECE8DF; color: var(--muted);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; gap: 7px;
}
.share-buttons a:hover, .share-buttons button:hover { background: #EEF3FB; border-color: #D6E1F5; color: var(--primary); }

.alert-card { background: var(--navy); border-radius: 22px; padding: 24px; color: #fff; }
.alert-card .title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 8px; line-height: 1.2; }
.alert-card p { color: rgba(255, 255, 255, .7); font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.alert-card .btn {
  display: block; text-align: center; background: #fff; color: var(--navy) !important;
  border-radius: 12px; padding: 12px; font-weight: 600; font-size: 15px; border: none; width: 100%; cursor: pointer;
  font-family: var(--font-body);
}
.alert-card .btn:hover { background: var(--primary-tint); }

/* similar jobs */
.similar-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.similar-card {
  display: block; background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 22px; box-shadow: var(--shadow-card); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.similar-card:hover { border-color: #CBD6EC; box-shadow: var(--shadow-card-hover); color: var(--ink); }
.similar-card h3 { font-size: 18px; margin: 0 0 12px; line-height: 1.25; }
.similar-card .foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.similar-card .salary { font-weight: 600; font-size: 14px; }

/* ---------- Stats band ---------- */

.stats-band {
  background: radial-gradient(900px 400px at 50% -30%, var(--hero-grad-from) 0%, var(--hero-grad-to) 60%);
  border-radius: 32px; padding: 60px 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; color: #fff;
}
.stats-band .number { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 4vw, 48px); line-height: 1; }
.stats-band .label { color: rgba(255, 255, 255, .78); font-size: 15px; margin-top: 8px; }

/* ---------- Newsletter / alert band ---------- */

.newsletter {
  background: #EEF7F1; border: 1px solid #DBEEE3; border-radius: 28px; padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.newsletter h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 12px; line-height: 1.15; }
.newsletter p { color: #4C6355; font-size: 17px; line-height: 1.55; margin: 0; max-width: 440px; }
.newsletter form {
  display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #DBEEE3;
  border-radius: 16px; padding: 7px; min-width: 320px; flex: 0 1 420px;
}
.newsletter input {
  flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 16px;
  color: var(--ink); background: transparent; padding: 13px 14px; min-width: 0;
}
.newsletter button {
  background: var(--accent); color: #fff; border: none; border-radius: 12px; padding: 14px 24px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer; white-space: nowrap;
}
.newsletter button:hover { background: var(--accent-dark); }

/* ---------- Companies ---------- */

.company-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---------- Forms (auth/account) ---------- */

.form-card {
  max-width: 440px; margin: 40px auto 80px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 22px; padding: 34px; box-shadow: var(--shadow-card);
}
.form-card h1 { font-size: 28px; margin: 0 0 20px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.form-field input {
  width: 100%; border: 1px solid var(--border-input); border-radius: 12px; padding: 12px 14px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); outline: none; background: #fff;
}
.form-field input:focus { border-color: var(--primary); }
.form-error { color: #C0392B; font-size: 13px; margin-top: 5px; }
.form-note { color: var(--muted); font-size: 14px; margin-top: 18px; text-align: center; }
.status-note { background: var(--accent-tint); color: var(--accent-dark); border-radius: 12px; padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }

.account-layout { max-width: 900px; margin: 0 auto; padding: 24px 24px 80px; }
.account-nav { display: flex; gap: 8px; margin: 18px 0 26px; flex-wrap: wrap; }
.account-nav a { padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--muted); background: var(--chip-bg); }
.account-nav a.active { background: var(--primary); color: #fff; }

/* ---------- Modal ---------- */

.modal-backdrop {
  position: fixed; inset: 0; background: rgba(4, 20, 60, .5); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface); border-radius: 22px; padding: 30px; max-width: 420px; width: 100%;
  box-shadow: 0 40px 80px -30px rgba(4, 20, 60, .55);
}
.modal h2 { font-size: 22px; margin: 0 0 10px; }
.modal p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0 0 18px; }
.modal .actions { display: flex; gap: 10px; }
.modal .actions > * { flex: 1; text-align: center; }
.modal-close { float: right; background: none; border: none; font-size: 20px; color: var(--faint); cursor: pointer; }

.switcher-group { margin-top: 18px; }
.switcher-label { font-weight: 700; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.switcher-options { display: flex; flex-wrap: wrap; gap: 8px; }
.switcher-option {
  padding: 9px 15px; border-radius: 999px; font-family: var(--font-body); font-weight: 600; font-size: 14px;
  background: var(--chip-bg); color: var(--ink); border: 1.5px solid transparent; cursor: pointer;
}
.switcher-option:hover { background: var(--primary-tint-2); color: var(--primary); }
.switcher-option.active { background: var(--primary); color: #fff; }

/* ---------- Landing page statistics ---------- */

.stats-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 24px; box-shadow: var(--shadow-card);
}
.stat-card .stat-value { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3vw, 34px); color: var(--ink); line-height: 1; }
.stat-card .stat-label { color: var(--muted); font-size: 14px; margin-top: 10px; }

.stats-table {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-card); overflow: hidden;
}
.stats-table table { width: 100%; border-collapse: collapse; }
.stats-table tr { border-top: 1px solid var(--border-soft); }
.stats-table tr:first-child { border-top: none; }
.stats-table th {
  text-align: left; font-weight: 600; font-size: 14px; color: var(--muted);
  padding: 15px 22px; width: 42%; vertical-align: top;
}
.stats-table td { padding: 15px 22px; color: var(--ink); font-weight: 600; font-size: 15px; }
.stat-sub { color: var(--faint); font-weight: 500; font-size: 13px; }
.stat-empty { color: var(--faint); }
.stat-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.stat-chip {
  background: var(--chip-bg); color: var(--ink); border-radius: 999px; padding: 6px 13px;
  font-size: 13px; font-weight: 600;
}
.stat-chip:hover { background: var(--primary-tint-2); color: var(--primary); }
.stat-chip.active { background: var(--primary); color: #fff; }
.stat-chip.active .stat-sub { color: rgba(255,255,255,.75); }

@media (max-width: 700px) {
  .stats-cards { grid-template-columns: 1fr; }
  .stats-table th, .stats-table td { display: block; width: auto; }
  .stats-table th { padding-bottom: 2px; }
  .stats-table td { padding-top: 2px; }
}

/* ---------- Footer ---------- */

.footer { background: var(--navy); color: #fff; padding: 64px 24px 40px; margin-top: 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.footer-brand .badge { width: 30px; height: 30px; border-radius: 9px; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.footer-brand .text { font-weight: 700; font-size: 19px; color: #fff; }
.footer-brand .text .tld { color: var(--accent); }
.footer-about { color: rgba(255, 255, 255, .6); font-size: 15px; line-height: 1.6; margin: 0; max-width: 300px; }
.footer-col-title { font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255, 255, 255, .62); font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; flex-wrap: wrap; }
.footer-bottom .copy { color: rgba(255, 255, 255, .5); font-size: 14px; }
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom a { color: rgba(255, 255, 255, .5); font-size: 14px; }
.footer-bottom a:hover { color: #fff; }
.footer-breadcrumb { color: rgba(255, 255, 255, .55); font-size: 14px; padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, .12); margin-bottom: 0; }
.footer-breadcrumb a { color: rgba(255, 255, 255, .55); }
.footer-breadcrumb a:hover { color: #fff; }
.footer-lang { display: flex; gap: 14px; margin-top: 18px; }
.footer-lang a { color: rgba(255, 255, 255, .62); font-size: 14px; }
.footer-lang a.active { color: #fff; font-weight: 600; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 130px 24px 72px; }
  .hero-card { display: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .job-grid { grid-template-columns: 1fr; }
  .listing-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .job-aside { position: static; }
  .similar-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .company-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-search { display: none; }
}

@media (max-width: 560px) {
  .category-grid { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .job-row { flex-wrap: wrap; }
  .job-row-side { flex-direction: row; width: 100%; align-items: center; justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr; }
  .job-body { padding: 24px; }
  .panel { padding: 24px; }
}
