:root {
  --brand-50: #f4f6f8;
  --brand-100: #e8ecf1;
  --brand-200: #cfd8e6;
  --brand-300: #9fafc4;
  --brand-400: #5a6d8c;
  --brand-500: #2f4a66;
  --brand-600: #0f1d2f;
  --brand-700: #0c1828;
  --brand-800: #1e3a5f;
  --brand-900: #0f1d2f;

  --blue-50: var(--brand-50);
  --blue-100: var(--brand-100);
  --blue-200: var(--brand-200);
  --blue-600: var(--brand-500);
  --blue-800: var(--brand-800);
  --blue-900: var(--brand-600);

  --grey-900: #111827;
  --grey-800: #1f2937;
  --grey-700: #374151;
  --grey-600: #4b5563;
  --grey-500: #6b7280;
  --grey-400: #9ca3af;
  --grey-300: #d1d5db;
  --grey-200: #e5e7eb;
  --grey-100: #f3f4f6;
  --grey-50: #f9fafb;

  --accent-amber: #f59e0b;
  --accent-amber-hover: #d97706;
  --white: #ffffff;

  --text-primary: var(--brand-600);
  --text-secondary: var(--grey-600);
  --bg-primary: var(--white);
  --bg-secondary: var(--brand-50);
  --bg-dark: var(--brand-600);
  --cta-bg: var(--accent-amber);
  --cta-hover: var(--accent-amber-hover);
  --cta-text: #0f1d2f;

  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Montserrat", system-ui, sans-serif;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
  --fs-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --fs-xl: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --fs-2xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-3xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --fs-4xl: clamp(1.75rem, 1.5rem + 1.25vw, 2.25rem);
  --fs-5xl: clamp(2.25rem, 1.8rem + 2vw, 3.25rem);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;

  --ls-tight: -0.03em;
  --ls-normal: -0.01em;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-header: 1280px;
  --container-pad: 1.5rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --header-height: 80px;
  --top-bar-height: 36px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--top-bar-height));
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }
svg { display: block; }
.btn svg,
.job-card__tags svg,
.check-list svg,
.path-card__cta svg,
.omj-field__icon svg,
.job-card__save svg,
.top-bar__icon svg,
.header__logo-icon svg {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
h1 { font-size: var(--fs-5xl); font-weight: var(--fw-extrabold); }
h2 { font-size: var(--fs-4xl); font-weight: var(--fw-extrabold); }
h3 { font-size: var(--fs-2xl); }

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}

.container {
  width: 100%;
  max-width: var(--container-header);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container--narrow { max-width: 820px; }

.top-bar {
  background: var(--blue-900);
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
}
.top-bar__inner {
  width: 100%;
  max-width: var(--container-header);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__tagline { font-weight: var(--fw-medium); }
.top-bar__contact { display: flex; gap: var(--space-lg); }
.top-bar a { color: rgba(255,255,255,.7); }
.top-bar a:hover { color: var(--white); }
.top-bar__link { display: inline-flex; align-items: center; gap: 0.625rem; }
.top-bar__icon { display: inline-flex; color: rgba(255,255,255,.95); }
.top-bar__icon svg { width: 18px; height: 18px; }
@media (max-width: 767px) { .top-bar { display: none; } }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  height: 100%;
  max-width: var(--container-header);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: var(--fw-bold);
  color: var(--blue-900);
  letter-spacing: var(--ls-tight);
  flex-shrink: 0;
}
.header__logo-icon {
  width: 36px; height: 36px;
  background: var(--blue-600);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-sm);
  font-family: var(--font-heading);
}
.header__logo-text { font-family: var(--font-heading); font-size: var(--fs-sm); }
.header__logo-text span { color: var(--accent-amber-hover); }
.header__logo img { max-height: 44px; width: auto; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--space-xs); font-family: var(--font-heading); }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--fs-sm); font-weight: var(--fw-medium);
  color: var(--grey-700); border-radius: var(--radius-md);
}
.nav__link:hover, .nav__link--active { color: var(--blue-600); background: var(--blue-50); }
.nav__link svg { width: 14px; height: 14px; }
.nav__dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px; background: var(--white);
  border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: var(--space-xs);
  opacity: 0; visibility: hidden;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown-link { display: block; padding: var(--space-sm) var(--space-md); font-size: var(--fs-sm); border-radius: var(--radius-md); }
.nav__dropdown-link:hover { background: var(--blue-50); color: var(--blue-600); }

.header__actions { display: flex; align-items: center; gap: var(--space-md); }
.header__cta { display: none; }

.mobile-toggle { display: flex; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; z-index: 1001; }
.mobile-toggle span { display: block; height: 2px; background: var(--grey-800); border-radius: 2px; transition: all var(--transition-base); }
.mobile-toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle--active span:nth-child(2) { opacity: 0; }
.mobile-toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  position: fixed; inset: 0; background: var(--white); z-index: 999;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
  overflow-y: auto; transform: translateX(100%); transition: transform var(--transition-slow);
}
.mobile-nav--open { transform: translateX(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: var(--space-xs); font-family: var(--font-heading); margin-bottom: var(--space-xl); }
.mobile-nav__link { display: block; padding: var(--space-md); font-size: var(--fs-lg); font-weight: var(--fw-semibold); }
.mobile-nav__row { display: flex; }
.mobile-nav__toggle { padding: var(--space-md); }
.mobile-nav__sub { display: none; padding-left: var(--space-md); }
.mobile-nav__sub--open { display: block; }
body.mobile-nav-open { overflow: hidden; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .mobile-toggle, .mobile-nav { display: none; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
  padding: 14px 28px; font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-normal); border-radius: var(--radius-lg);
  transition: all var(--transition-fast); white-space: nowrap; line-height: 1;
}
.btn--primary {
  background: var(--cta-bg); color: var(--cta-text); font-weight: var(--fw-bold);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}
.btn--primary:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn--secondary { background: var(--brand-500); color: var(--white); }
.btn--secondary:hover { background: var(--brand-800); }
.btn--outline { background: transparent; color: var(--blue-600); border: 2px solid var(--blue-200); }
.btn--outline:hover { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); }
.btn--ghost { background: transparent; color: var(--grey-700); }
.btn--ghost:hover { background: var(--grey-100); }
.btn--lg { padding: 18px 36px; font-size: var(--fs-base); border-radius: var(--radius-xl); }
.btn--sm { padding: 10px 20px; font-size: var(--fs-xs); }
.btn--full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.section { padding: var(--space-4xl) 0; }
.section--grey { background: var(--bg-secondary); }
.section--tight { padding: var(--space-2xl) 0 var(--space-4xl); }
.section__header { max-width: 720px; margin-bottom: var(--space-2xl); }
.section__label {
  display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-bold);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-amber-hover); margin-bottom: var(--space-sm);
}
.section__title { margin-bottom: var(--space-md); }
.section__desc { color: var(--text-secondary); font-size: var(--fs-lg); }
.section__actions { margin-top: var(--space-xl); }

.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-3xl);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(245,158,11,.18), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(47,74,102,.6), transparent 45%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero__kicker {
  font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-amber); margin-bottom: var(--space-md);
}
.hero__title { max-width: 18ch; margin-bottom: var(--space-lg); }
.hero__desc { max-width: 42rem; color: rgba(255,255,255,.78); margin-bottom: var(--space-xl); font-size: var(--fs-lg); }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: var(--space-lg);
  margin-top: var(--space-xl); color: rgba(255,255,255,.7); font-size: var(--fs-sm);
}
.hero__proof span { display: inline-flex; align-items: center; gap: var(--space-xs); }
.hero__proof span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-amber); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg); }

.omj-search { width: 100%; }
.omj-search__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  background: var(--white);
  padding: var(--space-sm);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 800px) {
  .omj-search__main { grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) auto; align-items: stretch; }
}
.omj-field { position: relative; display: flex; align-items: center; }
.omj-field__icon { position: absolute; left: 14px; color: var(--grey-500); pointer-events: none; }
.omj-field__icon svg { width: 18px; height: 18px; }
.omj-field input {
  width: 100%; border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: 16px 16px 16px 44px; font: inherit; background: var(--grey-50);
}
.omj-field input:focus { outline: 2px solid var(--accent-amber); background: var(--white); }
.omj-search__submit { min-height: 54px; }
.omj-search__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-md); }
.omj-chip {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  font-size: var(--fs-xs); font-weight: var(--fw-semibold); border: 1px solid rgba(255,255,255,.15);
}
.omj-chip:hover, .omj-chip.is-active { background: var(--accent-amber); color: var(--cta-text); border-color: var(--accent-amber); }
.omj-search--archive .omj-chip { background: var(--brand-50); color: var(--brand-600); border-color: var(--brand-200); }
.omj-search--archive .omj-chip.is-active, .omj-search--archive .omj-chip:hover { background: var(--brand-600); color: var(--white); }

.omj-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); z-index: 20; overflow: hidden; color: var(--text-primary);
}
.omj-suggest button {
  display: flex; justify-content: space-between; gap: var(--space-md);
  width: 100%; text-align: left; padding: 12px 16px; font-size: var(--fs-sm);
}
.omj-suggest button:hover, .omj-suggest button.is-active { background: var(--brand-50); }
.omj-suggest small { color: var(--grey-500); }

.paths__grid { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }
@media (min-width: 800px) { .paths__grid { grid-template-columns: 1fr 1fr; } }
.path-card {
  display: block; padding: var(--space-2xl); border-radius: var(--radius-xl);
  background: var(--white); border: 1px solid var(--grey-200); box-shadow: var(--shadow-sm);
}
.path-card:hover { border-color: var(--brand-300); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.path-card--alt { background: var(--brand-50); }
.path-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--brand-600); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md);
}
.path-card h2 { font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }
.path-card p { color: var(--text-secondary); margin-bottom: var(--space-lg); }
.path-card__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: var(--fw-bold); color: var(--brand-500); }

.job-list { display: flex; flex-direction: column; gap: var(--space-md); }
.job-card {
  display: grid; grid-template-columns: 1fr; gap: var(--space-md);
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl); padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.job-card--featured { border-color: rgba(245,158,11,.45); box-shadow: 0 0 0 1px rgba(245,158,11,.2), var(--shadow-sm); }
@media (min-width: 720px) {
  .job-card { grid-template-columns: minmax(0, 1fr) 160px; align-items: start; }
}
.job-card__link { display: flex; gap: var(--space-md); color: inherit; min-width: 0; }
.job-card__logo {
  width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--brand-100); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: var(--fw-bold);
}
.job-card__body { min-width: 0; }
.job-card__meta { display: flex; justify-content: space-between; gap: var(--space-md); font-size: var(--fs-sm); color: var(--grey-500); margin-bottom: 4px; }
.job-card__company { font-weight: var(--fw-semibold); color: var(--brand-500); }
.job-card__title { font-size: var(--fs-xl); margin-bottom: 6px; }
.job-card:hover .job-card__title { color: var(--brand-500); }
.job-card__excerpt { color: var(--text-secondary); font-size: var(--fs-sm); margin-bottom: var(--space-sm); }
.job-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.job-card__tags li {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--grey-50); border: 1px solid var(--grey-200);
  border-radius: var(--radius-full); padding: 4px 10px; font-size: var(--fs-xs); color: var(--grey-700);
}
.job-card__tags svg { width: 14px; height: 14px; }
.job-card__tags--lg { margin-top: var(--space-lg); }
.job-card__tags--lg li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.job-card__aside { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start; justify-content: flex-end; }
.job-card__badge {
  background: var(--cta-bg); color: var(--cta-text); font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: .06em; text-transform: uppercase; border-radius: var(--radius-full); padding: 4px 10px;
}
.job-card__disc, .job-card__level {
  font-size: var(--fs-xs); color: var(--brand-500); background: var(--brand-50);
  border-radius: var(--radius-full); padding: 4px 10px; font-weight: var(--fw-semibold);
}
.job-card__save {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-xs); color: var(--grey-600); padding: 4px 8px; border-radius: var(--radius-md);
}
.job-card__save.is-saved, .job-card__save[aria-pressed="true"] { color: #b45309; }

.jobs-layout { display: grid; gap: var(--space-xl); }
@media (min-width: 960px) {
  .jobs-layout { grid-template-columns: 260px minmax(0, 1fr); align-items: start; }
}
.jobs-filters {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-xl);
  padding: var(--space-lg); position: sticky; top: calc(var(--header-height) + 16px);
}
.jobs-filters__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
.jobs-filters__head h2 { font-size: var(--fs-lg); display: flex; align-items: center; gap: 8px; }
.jobs-filters__close { display: none; }
.jobs-filters__open { display: inline-flex; }
.jobs-filters__reset { display: block; text-align: center; margin-top: var(--space-md); font-size: var(--fs-sm); color: var(--brand-500); }
@media (min-width: 960px) {
  .jobs-filters__open, .jobs-filters__close { display: none !important; }
}
@media (max-width: 959px) {
  .jobs-filters {
    position: fixed; inset: 0; z-index: 1100; border-radius: 0; overflow: auto;
    transform: translateX(-110%); transition: transform var(--transition-base); top: 0;
  }
  .jobs-filters.is-open { transform: none; }
  .jobs-filters__close { display: inline-flex; }
  body.filters-open { overflow: hidden; }
}
.jobs-results__bar { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; margin-bottom: var(--space-md); }
.jobs-results__count { font-weight: var(--fw-semibold); margin-right: auto; }
.jobs-sort { min-width: 180px; }
.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-md); }
.active-chips a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-50); border-radius: var(--radius-full); padding: 4px 10px; font-size: var(--fs-xs);
}
.active-chips svg { width: 12px; height: 12px; }

.split { display: grid; gap: var(--space-2xl); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr .9fr; } }
.check-list { display: grid; gap: var(--space-sm); margin: var(--space-lg) 0; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list svg { color: var(--accent-amber-hover); flex-shrink: 0; margin-top: 2px; }
.check-list--wide { max-width: 720px; }

.quote-card {
  background: var(--brand-50); border-radius: var(--radius-xl); padding: var(--space-2xl);
  font-size: var(--fs-lg); border-left: 4px solid var(--accent-amber);
}
.quote-card cite { display: block; margin-top: var(--space-lg); font-style: normal; font-size: var(--fs-sm); font-weight: var(--fw-semibold); }
.quote-card cite span { font-weight: var(--fw-regular); color: var(--grey-500); }

.steps { display: grid; gap: var(--space-lg); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-xl); border: 1px solid var(--grey-200); counter-increment: step; }
.steps { counter-reset: step; }
.steps li strong { display: block; font-family: var(--font-heading); font-size: var(--fs-lg); margin: var(--space-sm) 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading); font-weight: var(--fw-extrabold); color: var(--accent-amber-hover);
}
.steps li p { color: var(--text-secondary); }

.accordion { display: grid; gap: var(--space-sm); }
.accordion__item { border: 1px solid var(--grey-200); border-radius: var(--radius-lg); background: var(--white); }
.accordion__trigger {
  width: 100%; text-align: left; padding: var(--space-md) var(--space-lg);
  font-weight: var(--fw-semibold); font-family: var(--font-heading);
}
.accordion__panel { display: none; padding: 0 var(--space-lg) var(--space-md); color: var(--text-secondary); }
.accordion__item--open .accordion__panel { display: block; }

.cta-block {
  background: var(--bg-dark); color: var(--white); text-align: center;
  padding: var(--space-4xl) var(--container-pad);
}
.cta-block h2 { margin-bottom: var(--space-md); }
.cta-block p { color: rgba(255,255,255,.75); margin-bottom: var(--space-xl); }

.page-hero {
  background: var(--bg-dark); color: var(--white); padding: var(--space-3xl) 0 var(--space-2xl);
}
.page-hero--compact { padding: var(--space-2xl) 0 var(--space-xl); }
.page-hero p { color: rgba(255,255,255,.78); max-width: 42rem; margin-top: var(--space-md); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: var(--fs-xs); color: rgba(255,255,255,.6); margin-bottom: var(--space-md); }
.breadcrumb a:hover { color: var(--white); }

.form-card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-xl);
  padding: var(--space-xl); box-shadow: var(--shadow-sm);
}
.omj-form { display: grid; gap: var(--space-md); }
.form__row { display: grid; gap: var(--space-md); }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__label { display: block; font-size: var(--fs-sm); font-weight: var(--fw-semibold); margin-bottom: 6px; }
.form__input, .form__select, .form__textarea {
  width: 100%; border: 1px solid var(--grey-200); border-radius: var(--radius-md);
  padding: 12px 14px; font: inherit; background: var(--white);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__hint { font-size: var(--fs-xs); color: var(--grey-500); }
.omj-form__honeypot { position: absolute; left: -9999px; }
.omj-form__roles { border: 0; display: flex; gap: var(--space-sm); }
.omj-form__roles legend { font-weight: var(--fw-semibold); margin-bottom: var(--space-xs); }
.omj-choice {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--grey-200); border-radius: var(--radius-full); padding: 8px 14px; cursor: pointer;
}
.omj-choice:has(input:checked) { border-color: var(--brand-500); background: var(--brand-50); }
.omj-form__status { padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); font-size: var(--fs-sm); }
.omj-form__status.is-ok { background: #ecfdf3; color: #166534; }
.omj-form__status.is-err { background: #fef2f2; color: #991b1b; }

.job-single { display: grid; gap: var(--space-2xl); }
@media (min-width: 960px) { .job-single { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; } }
.job-single__company { color: var(--accent-amber); font-weight: var(--fw-semibold); margin-bottom: var(--space-sm); }
.job-single__skills { margin-bottom: var(--space-lg); color: var(--text-secondary); }
.apply-card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-xl);
  padding: var(--space-xl); position: sticky; top: calc(var(--header-height) + 16px);
}
.apply-card h2 { font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }
.apply-card > p { color: var(--text-secondary); margin-bottom: var(--space-lg); }
.apply-card__tools { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }

.prose { font-size: var(--fs-lg); }
.prose h2, .prose h3 { margin: var(--space-xl) 0 var(--space-sm); }
.prose p { margin-bottom: var(--space-md); }
.prose ul { list-style: disc; padding-left: 1.2rem; margin-bottom: var(--space-md); }
.prose a { color: var(--brand-500); text-decoration: underline; }

.contact-facts { display: grid; gap: var(--space-lg); }
.contact-facts li { display: flex; gap: var(--space-md); align-items: flex-start; }
.contact-facts span:first-child {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--brand-50); display: flex; align-items: center; justify-content: center; color: var(--brand-600);
}

.empty-state { text-align: center; padding: var(--space-3xl) var(--space-md); }
.empty-state h1, .empty-state h2 { margin-bottom: var(--space-md); }
.empty-state p { color: var(--text-secondary); margin-bottom: var(--space-xl); }
.empty-state .omj-search { max-width: 840px; margin: 0 auto var(--space-xl); }
.empty-state .omj-chip { background: var(--brand-50); color: var(--brand-600); border-color: var(--brand-200); }

.pagination { margin-top: var(--space-2xl); }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: var(--radius-md); border: 1px solid var(--grey-200); padding: 0 12px;
}
.pagination .current { background: var(--brand-600); color: var(--white); border-color: var(--brand-600); }

.footer { background: var(--brand-600); color: rgba(255,255,255,.75); padding-top: var(--space-3xl); }
.footer__grid { display: grid; gap: var(--space-2xl); grid-template-columns: 1fr; padding-bottom: var(--space-2xl); }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h3 { color: var(--white); font-size: var(--fs-sm); letter-spacing: .06em; text-transform: uppercase; margin-bottom: var(--space-md); }
.footer__brand p { margin-top: var(--space-md); }
.footer__logo { color: var(--white); margin-bottom: var(--space-sm); }
.footer__logo .header__logo-icon { background: var(--accent-amber); color: var(--cta-text); }
.footer__links { display: grid; gap: 8px; }
.footer__links a:hover { color: var(--white); }
.footer__contact a { color: var(--white); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-sm);
  padding: var(--space-md) var(--container-pad); font-size: var(--fs-xs);
}
