
:root {
--ink: #062150;
--ink-2: #0b2c62;
--ink-3: #143a78;
--red: #d4101c;
--red-600: #ad0c16;
--red-50: #fdeced;
--blue: #0065c1;
--blue-600: #00519c;
--blue-50: #e8f1fb;
--sky: #7cc0ff;
--text: #1c2533;
--text-2: #475467;
--text-3: #667085;
--line: #e4e7ec;
--line-2: #d0d5dd;
--bg: #ffffff;
--bg-soft: #f7f5f1;
--bg-cool: #f1f4f8;
--on-dark: #eef2f7;
--on-dark-2: #b7c3d4;
--success: #15803d; --success-50: #ecfdf3;
--error: #b42318;   --error-50: #fef3f2;
--warning-50: #fffaeb; --warning: #93370d;
--font-head: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
--font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
--fs-xs: 0.8125rem; --fs-sm: 0.9375rem; --fs-base: 1.0625rem; --fs-lg: 1.1875rem;
--fs-h4: 1.25rem;
--fs-h3: clamp(1.375rem, 1.1rem + 0.9vw, 1.75rem);
--fs-h2: clamp(2rem, 1.35rem + 2.4vw, 3.25rem);
--fs-h1: clamp(2.5rem, 1.5rem + 4vw, 4.75rem);
--s1: .25rem; --s2: .5rem; --s3: .75rem; --s4: 1rem; --s5: 1.5rem; --s6: 2rem; --s7: 3rem; --s8: 4rem; --s9: 6rem;
--section: clamp(4rem, 3rem + 5vw, 8rem);
--gutter: clamp(1rem, 0.5rem + 2.5vw, 2.5rem);
--container: 1240px;
--r-sm: 8px; --r: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;
--sh-1: 0 1px 2px rgba(6, 33, 80, .06), 0 1px 3px rgba(6, 33, 80, .06);
--sh-2: 0 4px 12px -2px rgba(6, 33, 80, .08), 0 2px 4px -2px rgba(6, 33, 80, .05);
--sh-3: 0 18px 40px -12px rgba(6, 33, 80, .22);
--focus: 0 0 0 3px #fff, 0 0 0 6px #1d6fe0;
--ease: cubic-bezier(.2, .7, .2, 1);
--header-h: 76px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; font-family: var(--font-body); font-size: var(--fs-base); line-height: 1.65; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 6px; }
::selection { background: var(--ink); color: #fff; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 1000; padding: .75rem 1.25rem; background: var(--ink); color: #fff; border-radius: var(--r-sm); font-weight: 600; text-decoration: none; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 3vw, 5rem); }
.section--soft { background: var(--bg-soft); }
.section--cool { background: var(--bg-cool); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
.grid { display: grid; gap: var(--s5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split > *, .coverage > *, .form-shell > *, .job-detail > * { min-width: 0; }
@media (min-width: 960px) { .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } .split--wide-left { grid-template-columns: 1.15fr .85fr; } .split--wide-right { grid-template-columns: .85fr 1.15fr; } }
.stack > * + * { margin-top: var(--s4); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); margin: 0 0 var(--s4); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; }
h1 { font-size: var(--fs-h1); letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h4 { font-size: var(--fs-h4); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 var(--s4); }
.lead { font-size: clamp(1.125rem, 1rem + .45vw, 1.3125rem); line-height: 1.6; color: var(--text-2); max-width: 62ch; }
.section--dark .lead { color: var(--on-dark-2); }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: var(--s4); }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--red { color: var(--red); }
.eyebrow--blue { color: var(--blue); }
.eyebrow--light { color: var(--sky); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--row { max-width: none; display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--s5); }
.section-head--row > div { max-width: 700px; }
.hl { color: var(--red); }
.hl-blue { color: var(--blue); }
.text-muted { color: var(--text-2); }
.small { font-size: var(--fs-sm); }
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-top: var(--s7); }
.prose h3 { font-size: 1.25rem; margin-top: var(--s6); }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--blue-600); }
.btn { --bg: var(--ink); --fg: #fff; --bd: transparent; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 52px; padding: .8rem 1.5rem; border-radius: var(--r-pill); border: 1.5px solid var(--bd); background: var(--bg); color: var(--fg); font-family: var(--font-head); font-weight: 700; font-size: 1rem; letter-spacing: -.005em; text-decoration: none; cursor: pointer; line-height: 1.2; transition: transform .25s var(--ease), background-color .2s, box-shadow .25s var(--ease), color .2s, border-color .2s; white-space: nowrap; }
.btn .icon { width: 20px; height: 20px; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn:hover .icon--arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn--employer { --bg: var(--red); }
.btn--employer:hover { --bg: var(--red-600); }
.btn--seeker { --bg: var(--blue); }
.btn--seeker:hover { --bg: var(--blue-600); }
.btn--dark:hover { --bg: var(--ink-3); }
.btn--outline { --bg: transparent; --fg: var(--ink); --bd: var(--line-2); }
.btn--outline:hover { --bd: var(--ink); box-shadow: none; }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--ghost-light { --bg: rgba(255,255,255,.08); --fg: #fff; --bd: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { --bg: rgba(255,255,255,.16); --bd: #fff; }
.btn--sm { min-height: 42px; padding: .55rem 1.1rem; font-size: .9375rem; }
.btn--lg { min-height: 60px; padding: 1rem 1.9rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-busy="true"] { opacity: .7; cursor: progress; transform: none; box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; color: var(--ink); text-decoration: none; }
.link-arrow .icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-arrow--red { color: var(--red); } .link-arrow--blue { color: var(--blue); }
.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-h); background: rgba(255,255,255,.88); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(6,33,80,.35); background: rgba(255,255,255,.95); }
.site-header .container { height: 100%; display: flex; align-items: center; gap: var(--s5); }
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand img { height: 54px; width: auto; }
.footer-brand .brand img { height: 92px; }
@media (max-width: 480px) { .brand img { height: 46px; } }
.nav { margin-left: auto; display: none; }
.nav ul { list-style: none; display: flex; gap: .15rem; margin: 0; padding: 0; }
.nav a { display: block; padding: .55rem .8rem; border-radius: var(--r-pill); font-weight: 500; font-size: .96rem; color: var(--text-2); text-decoration: none; transition: color .2s, background .2s; }
.nav a:hover { color: var(--ink); background: var(--bg-cool); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; background: var(--bg-cool); }
.header-ctas { display: none; gap: .5rem; align-items: center; }
.menu-toggle { margin-left: auto; width: 48px; height: 48px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.menu-toggle .icon { width: 24px; height: 24px; }
@media (min-width: 1180px) { .nav, .header-ctas { display: flex; } .menu-toggle { display: none; } .nav { margin-left: auto; } }
@media (min-width: 1180px) and (max-width: 1320px) { .nav a { padding: .55rem .6rem; font-size: .92rem; } .header-ctas .btn--outline { display: none; } }
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(6,33,80,.5); opacity: 0; transition: opacity .3s; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(420px, 100%); background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; padding: 1rem var(--gutter); height: var(--header-h); border-bottom: 1px solid var(--line); }
.drawer__nav { padding: 1rem var(--gutter); }
.drawer__nav ul { list-style: none; margin: 0; padding: 0; }
.drawer__nav a { display: flex; justify-content: space-between; align-items: center; padding: 1rem .25rem; font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.drawer__nav a[aria-current="page"] { color: var(--red); }
.drawer__nav a .icon { color: var(--text-3); width: 20px; }
.drawer__ctas { padding: 1rem var(--gutter) 1.5rem; display: grid; gap: .75rem; margin-top: auto; }
.drawer__contact { padding: 1.25rem var(--gutter) 2rem; background: var(--bg-soft); font-size: var(--fs-sm); color: var(--text-2); }
.drawer__contact a { color: var(--ink); font-weight: 600; text-decoration: none; }
body.no-scroll { overflow: hidden; }
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .625rem var(--gutter) calc(.625rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .35s var(--ease); }
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { min-height: 48px; padding-inline: .75rem; font-size: .95rem; }
@media (min-width: 900px) { .mobile-cta { display: none; } }
.hero { position: relative; isolation: isolate; min-height: min(92vh, 900px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--ink); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.06); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4,22,54,.92) 0%, rgba(4,22,54,.78) 38%, rgba(4,22,54,.25) 75%, rgba(4,22,54,.15) 100%), linear-gradient(0deg, rgba(4,22,54,.85) 0%, rgba(4,22,54,0) 45%); }
.hero__inner { width: 100%; padding-block: clamp(7rem, 5rem + 8vw, 11rem) clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.hero__content { max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: var(--s5); }
.hero h1 .accent { color: var(--sky); }
.hero__rotator { position: relative; height: 1.7em; overflow: hidden; font-size: clamp(1.125rem, 1rem + .6vw, 1.4rem); color: var(--on-dark); font-weight: 500; margin-bottom: var(--s6); }
.hero__rotator span { position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(100%); transition: opacity .6s var(--ease), transform .6s var(--ease); white-space: nowrap; }
.hero__rotator span.is-active { opacity: 1; transform: none; }
.hero__rotator span.is-leaving { opacity: 0; transform: translateY(-100%); }
@media (max-width: 640px) { .hero__rotator { height: 3.4em; } .hero__rotator span { white-space: normal; } }
.paths { display: grid; gap: var(--s3); grid-template-columns: 1fr; max-width: 760px; }
@media (min-width: 640px) { .paths { grid-template-columns: 1fr 1fr; } }
.path { position: relative; display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; border-radius: var(--r-lg); text-decoration: none; color: #fff; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .2s; }
.path:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(0,0,0,.55); }
.path--employer { background: var(--red); }
.path--employer:hover { background: var(--red-600); }
.path--seeker { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(8px); }
.path--seeker:hover { background: var(--blue); border-color: var(--blue); }
.path__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.16); }
.path__text { flex: 1; min-width: 0; }
.path__label { display: block; font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }
.path__cta { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; line-height: 1.25; }
.path__arrow { width: 22px; transition: transform .25s var(--ease); }
.path:hover .path__arrow { transform: translateX(4px); }
.hero__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: var(--s5); font-size: var(--fs-sm); color: var(--on-dark-2); }
.hero__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__meta .icon { width: 18px; color: var(--sky); }
.hero__meta a { color: #fff; text-decoration: none; font-weight: 600; }
.hero__meta a:hover { text-decoration: underline; }
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #fff; padding-block: clamp(4rem, 3rem + 5vw, 7.5rem) clamp(3.5rem, 2.5rem + 4vw, 6rem); }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4,22,54,.94) 0%, rgba(4,22,54,.82) 45%, rgba(4,22,54,.35) 100%); }
.page-hero--plain { background: var(--ink); }
.page-hero--plain::before { background: radial-gradient(900px 400px at 85% -10%, rgba(0,101,193,.35), transparent 60%), radial-gradient(700px 380px at 0% 120%, rgba(200,16,46,.25), transparent 60%); }
.page-hero h1 { color: #fff; font-size: clamp(2.25rem, 1.4rem + 3.4vw, 4rem); max-width: 18ch; }
.page-hero .lead { color: var(--on-dark); }
.page-hero .btn-row { margin-top: var(--s6); }
.crumbs { font-size: var(--fs-sm); color: var(--on-dark-2); margin-bottom: var(--s5); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs li + li::before { content: '/'; margin-right: .4rem; opacity: .6; }
.crumbs a { color: #fff; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs--dark { color: var(--text-3); }
.crumbs--dark a { color: var(--ink); }
.pattern-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 70% 20%, #000 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 70% 20%, #000 10%, transparent 70%); }
.pattern-dots { position: absolute; pointer-events: none; width: 220px; height: 220px; background-image: radial-gradient(var(--line-2) 1.5px, transparent 1.5px); background-size: 16px 16px; }
.ribbon { background: #fff; border-bottom: 1px solid var(--line); }
.ribbon__inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: var(--s5); padding-block: 1.4rem; }
.ribbon__title { font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--ink); display: flex; align-items: center; gap: .6rem; white-space: nowrap; }
.ribbon__title .flag { width: 28px; height: 28px; border-radius: 8px; background: var(--red-50); color: var(--red); display: grid; place-items: center; }
.ribbon__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: flex-end; }
.ribbon__list li { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .9rem; border-radius: var(--r-pill); background: var(--bg-cool); font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.ribbon__list .icon { width: 16px; height: 16px; color: var(--blue); }
@media (max-width: 1080px) { .ribbon__inner { grid-template-columns: 1fr; } .ribbon__list { justify-content: flex-start; } }
@media (max-width: 640px) { .ribbon__list { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); } .ribbon__list::-webkit-scrollbar { display: none; } .ribbon__list li { flex-shrink: 0; } }
.media-stack { position: relative; min-height: 460px; }
.media-stack__a, .media-stack__b { position: absolute; overflow: hidden; box-shadow: var(--sh-3); }
.media-stack__a { inset: 0 18% 14% 0; border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 120px; }
.media-stack__b { right: 0; bottom: 0; width: 52%; height: 50%; border-radius: var(--r-lg); border: 6px solid #fff; }
.media-stack img { width: 100%; height: 100%; object-fit: cover; }
.media-stack__badge { position: absolute; left: -8px; bottom: 6%; z-index: 2; display: flex; align-items: center; gap: .75rem; padding: .9rem 1.1rem; background: #fff; border-radius: var(--r); box-shadow: var(--sh-3); max-width: 260px; }
.media-stack__badge .icon-tile { flex-shrink: 0; }
.media-stack__badge strong { display: block; font-family: var(--font-head); color: var(--ink); line-height: 1.2; }
.media-stack__badge span { font-size: var(--fs-xs); color: var(--text-3); }
@media (max-width: 640px) { .media-stack { min-height: 360px; } .media-stack__badge { left: 0; } }
.icon-tile { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-cool); color: var(--ink); flex-shrink: 0; }
.icon-tile .icon { width: 26px; height: 26px; }
.icon-tile--red { background: var(--red-50); color: var(--red); }
.icon-tile--blue { background: var(--blue-50); color: var(--blue); }
.icon-tile--dark { background: rgba(255,255,255,.08); color: var(--sky); border: 1px solid rgba(255,255,255,.12); }
.checklist { list-style: none; padding: 0; margin: var(--s5) 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist .icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--blue); margin-top: 2px; }
.checklist--red .icon { color: var(--red); }
.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 1.2rem + 1vw, 2rem); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: transparent; }
.card h3 { font-size: 1.3rem; margin: var(--s5) 0 var(--s3); }
.card p { color: var(--text-2); margin: 0; }
.card--link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.card__foot { margin-top: auto; padding-top: var(--s5); }
.card--service .icon-tile { transition: background .3s, color .3s; }
.card--service:hover .icon-tile { background: var(--red); color: #fff; }
.card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.card--dark:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); box-shadow: none; }
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--on-dark-2); }
.card__num { position: absolute; top: 1.5rem; right: 1.75rem; font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: var(--text-3); letter-spacing: .06em; }
.industry-grid { display: grid; gap: var(--s4); grid-template-columns: repeat(12, 1fr); }
.industry { position: relative; grid-column: span 4; min-height: 330px; border-radius: var(--r-lg); overflow: hidden; isolation: isolate; color: #fff; text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background: var(--ink-2); }
.industry:nth-child(1), .industry:nth-child(7) { grid-column: span 8; }
.industry:nth-child(8), .industry:nth-child(9) { grid-column: span 6; }
.industry img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.industry::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4,22,54,.05) 20%, rgba(4,22,54,.9) 100%); transition: background .4s; }
.industry:hover img, .industry:focus-visible img { transform: scale(1.06); }
.industry:hover::after { background: linear-gradient(180deg, rgba(4,22,54,.3) 0%, rgba(4,22,54,.95) 100%); }
.industry__icon { position: absolute; top: 1.25rem; left: 1.25rem; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.14); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); }
.industry__icon .icon { width: 22px; height: 22px; }
.industry h3 { color: #fff; font-size: 1.35rem; margin: 0 0 .35rem; }
.industry p { margin: 0; color: rgba(255,255,255,.82); font-size: var(--fs-sm); line-height: 1.5; max-width: 46ch; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s, margin .4s; }
.industry:hover p, .industry:focus-visible p, .industry:focus-within p { max-height: 6em; opacity: 1; margin-top: .25rem; }
.industry__go { position: absolute; top: 1.25rem; right: 1.25rem; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--ink); transform: scale(.6); opacity: 0; transition: transform .35s var(--ease), opacity .3s; }
.industry:hover .industry__go, .industry:focus-visible .industry__go { transform: none; opacity: 1; }
@media (hover: none) { .industry p { max-height: none; opacity: 1; margin-top: .25rem; } }
@media (max-width: 1024px) { .industry, .industry:nth-child(n) { grid-column: span 6; } .industry:last-child:nth-child(odd) { grid-column: span 12; } }
@media (max-width: 640px) { .industry-grid { grid-template-columns: minmax(0, 1fr); } .industry, .industry:nth-child(n), .industry:last-child:nth-child(odd) { grid-column: auto; min-height: 240px; } }
.industry-row { display: grid; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; padding-block: clamp(2rem, 1.5rem + 2vw, 3.5rem); border-top: 1px solid var(--line); }
.industry-row:first-child { border-top: 0; }
@media (min-width: 900px) { .industry-row { grid-template-columns: 1fr 1fr; } .industry-row:nth-child(even) .industry-row__media { order: 2; } }
.industry-row__media { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16 / 11; box-shadow: var(--sh-2); }
.industry-row__media img { width: 100%; height: 100%; object-fit: cover; }
.industry-row h2 { font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem); }
.steps { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); counter-reset: step; position: relative; }
.step { position: relative; padding-top: 4.5rem; }
.step__num { position: absolute; top: 0; left: 0; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; background: var(--ink); box-shadow: 0 0 0 8px var(--bg); z-index: 1; }
.section--soft .step__num { box-shadow: 0 0 0 8px var(--bg-soft); }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { color: var(--text-2); margin: 0; }
@media (min-width: 1000px) { .steps::before { content: ''; position: absolute; top: 28px; left: 28px; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); } }
.steps--red .step__num { background: var(--red); }
.steps--blue .step__num { background: var(--blue); }
.coverage { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
@media (min-width: 1000px) { .coverage { grid-template-columns: .9fr 1.1fr; } }
.tilemap-wrap { position: relative; padding: clamp(1.25rem, 1rem + 1.5vw, 2.5rem); border-radius: var(--r-xl); background: var(--ink); overflow: hidden; }
.tilemap { position: relative; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); grid-template-rows: repeat(3, auto); gap: clamp(6px, .4rem + .5vw, 12px); }
.tile { aspect-ratio: 1; border: 0; border-radius: clamp(10px, .5rem + .6vw, 18px); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: clamp(.8rem, .6rem + .8vw, 1.2rem); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; transition: background .25s, transform .25s var(--ease), border-color .25s; padding: 0; }
.tile small { font-family: var(--font-body); font-weight: 500; font-size: clamp(.55rem, .45rem + .3vw, .7rem); opacity: .75; letter-spacing: .02em; }
.tile--province { background: rgba(0,101,193,.35); border-color: rgba(124,192,255,.5); }
.tile--territory { background: rgba(255,255,255,.05); border-style: dashed; }
.tile:hover, .tile.is-active { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.tilemap-legend { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 1.25rem; font-size: var(--fs-xs); color: var(--on-dark-2); }
.tilemap-legend span { display: inline-flex; align-items: center; gap: .5rem; }
.tilemap-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.tilemap-info { margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: var(--r); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: var(--on-dark); min-height: 84px; }
.tilemap-info strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.1rem; }
.tilemap-info p { margin: .25rem 0 0; font-size: var(--fs-sm); color: var(--on-dark-2); }
.province-list { columns: 2; column-gap: 2rem; list-style: none; padding: 0; margin: var(--s5) 0; font-size: var(--fs-sm); }
.province-list li { padding: .35rem 0; display: flex; align-items: center; gap: .5rem; break-inside: avoid; color: var(--text-2); }
.province-list .icon { width: 16px; color: var(--blue); }
.seeker { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blue-50), #fff); }
.arch { position: relative; aspect-ratio: 4 / 5; border-radius: 999px 999px var(--r-xl) var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); max-width: 480px; margin-inline: auto; background: var(--blue); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch-wrap { position: relative; }
.float-chip { position: absolute; display: flex; align-items: center; gap: .6rem; padding: .7rem 1rem; background: #fff; border-radius: var(--r-pill); box-shadow: var(--sh-3); font-weight: 600; font-size: var(--fs-sm); color: var(--ink); white-space: nowrap; }
.float-chip .icon { width: 18px; color: var(--blue); }
.float-chip--1 { top: 14%; left: 0; animation: bob 6s ease-in-out infinite; }
.float-chip--2 { bottom: 16%; right: 0; animation: bob 6s ease-in-out 1.5s infinite; }
@keyframes bob { 50% { transform: translateY(-8px); } }
@media (max-width: 560px) { .float-chip--1 { left: -4px; } .float-chip--2 { right: -4px; } }
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: var(--s6) 0; }
.benefit { display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); font-weight: 600; font-size: var(--fs-sm); color: var(--ink); }
.benefit .icon { width: 20px; color: var(--blue); flex-shrink: 0; }
@media (max-width: 420px) { .benefits { grid-template-columns: 1fr; } }
.final-cta { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.final-cta h2 { color: #fff; max-width: 18ch; margin-inline: auto; text-align: center; }
.final-cta .lead { margin-inline: auto; text-align: center; color: var(--on-dark-2); }
.dual { display: grid; gap: var(--s4); margin-top: var(--s7); }
@media (min-width: 800px) { .dual { grid-template-columns: 1fr 1fr; } }
.dual__card { position: relative; display: flex; flex-direction: column; gap: .75rem; padding: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem); border-radius: var(--r-xl); text-decoration: none; color: #fff; overflow: hidden; isolation: isolate; transition: transform .35s var(--ease); min-height: 260px; }
.dual__card:hover { transform: translateY(-4px); }
.dual__card--employer { background: var(--red); }
.dual__card--seeker { background: var(--blue); }
.dual__card::after { content: ''; position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%; border: 44px solid rgba(255,255,255,.08); z-index: -1; transition: transform .6s var(--ease); }
.dual__card:hover::after { transform: scale(1.15); }
.dual__card .path__label { opacity: .9; }
.dual__card h3 { color: #fff; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin: 0; }
.dual__card p { color: rgba(255,255,255,.88); margin: 0; max-width: 40ch; }
.dual__card .btn { margin-top: auto; align-self: flex-start; }
.band { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding-block: clamp(4rem, 3rem + 5vw, 7rem); background: var(--ink); }
.band__bg { position: absolute; inset: -12% 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(4,22,54,.94) 0%, rgba(4,22,54,.75) 60%, rgba(200,16,46,.55) 130%); }
.band h2 { color: #fff; max-width: 20ch; }
.band .lead { color: var(--on-dark); }
.band__grid { display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 960px) { .band__grid { grid-template-columns: 1.3fr .7fr; } }
.band__contact { display: grid; gap: .75rem; }
.contact-pill { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.2rem; border-radius: var(--r); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; text-decoration: none; transition: background .25s; }
.contact-pill:hover { background: rgba(255,255,255,.15); }
.contact-pill .icon { width: 22px; color: var(--sky); flex-shrink: 0; }
.contact-pill small { display: block; color: var(--on-dark-2); font-size: var(--fs-xs); }
.contact-pill strong { font-family: var(--font-head); font-size: 1.1rem; overflow-wrap: anywhere; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem .25rem; font-family: var(--font-head); font-weight: 700; font-size: 1.125rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq__icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); transition: transform .3s var(--ease), background .2s, color .2s; }
.faq summary .faq__icon .icon { width: 18px; }
.faq details[open] summary .faq__icon { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq summary:hover { color: var(--red); }
.faq .faq__a { padding: 0 3.5rem 1.5rem .25rem; color: var(--text-2); max-width: 75ch; }
.faq-tabs { display: inline-flex; gap: .25rem; padding: .3rem; background: var(--bg-cool); border-radius: var(--r-pill); margin-bottom: var(--s5); }
.faq-tabs button { border: 0; background: transparent; padding: .6rem 1.1rem; border-radius: var(--r-pill); font-weight: 600; cursor: pointer; color: var(--text-2); min-height: 44px; }
.faq-tabs button[aria-selected="true"] { background: #fff; color: var(--ink); box-shadow: var(--sh-1); }
.callout { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 1.4rem; border-radius: var(--r); background: var(--blue-50); border: 1px solid #bcd7f3; color: var(--ink); }
.callout .icon { flex-shrink: 0; width: 24px; color: var(--blue); }
.callout p { margin: 0; }
.callout--warn { background: var(--warning-50); border-color: #fedf89; }
.callout--warn .icon { color: var(--warning); }
.callout--red { background: var(--red-50); border-color: #f8c9cf; }
.callout--red .icon { color: var(--red); }
.placeholder { display: inline-block; padding: 0 .35em; border-radius: 4px; background: #fff4d6; color: #7a4b00; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }
.mini { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.mini h3 { font-size: 1.1rem; margin: 0 0 .25rem; }
.mini p { margin: 0; color: var(--text-2); font-size: var(--fs-sm); }
.approach { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); counter-reset: ap; }
.approach li { list-style: none; position: relative; padding: 1.25rem; border-radius: var(--r); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); font-family: var(--font-head); font-weight: 700; color: #fff; }
.approach li::before { counter-increment: ap; content: '0' counter(ap); display: block; font-size: .8rem; color: var(--sky); margin-bottom: .4rem; letter-spacing: .08em; }
.approach { padding: 0; margin: 0; }
.form-shell { display: grid; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: start; }
@media (min-width: 1000px) { .form-shell { grid-template-columns: 1fr 360px; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.25rem, 1rem + 2vw, 2.75rem); box-shadow: var(--sh-2); }
.form-aside { display: grid; gap: var(--s4); position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 999px) { .form-aside { position: static; } }
.aside-card { padding: 1.5rem; border-radius: var(--r-lg); background: var(--bg-soft); }
.aside-card h2, .aside-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.aside-card p, .aside-card li { font-size: var(--fs-sm); color: var(--text-2); }
.aside-card--dark { background: var(--ink); color: var(--on-dark); }
.aside-card--dark h2, .aside-card--dark h3 { color: #fff; }
.aside-card--dark p { color: var(--on-dark-2); }
.aside-card--dark a { color: #fff; }
fieldset { border: 0; padding: 0; margin: 0 0 var(--s6); min-width: 0; }
legend { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--ink); margin-bottom: var(--s4); padding: 0; display: flex; align-items: center; gap: .6rem; }
legend .legend-num { width: 28px; height: 28px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--ink); color: #fff; font-size: .8rem; }
.fields { display: grid; gap: 1.1rem 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .fields { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field label, .field .label { font-weight: 600; font-size: .9375rem; color: var(--ink); }
.req { color: var(--red); margin-left: 2px; }
.opt { color: var(--text-3); font-weight: 400; font-size: .85rem; margin-left: 4px; }
.hint { font-size: var(--fs-xs); color: var(--text-3); margin: 0; }
.input, .select, .textarea { width: 100%; min-height: 52px; padding: .8rem 1rem; border: 1.5px solid var(--line-2); border-radius: 12px; background: #fff; font-size: 1rem; transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none; }
.select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23475467' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.75rem; }
.textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--text-3); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(29,111,224,.2); }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { border-color: var(--error); background: var(--error-50); }
.field-error { display: none; align-items: center; gap: .35rem; font-size: var(--fs-xs); font-weight: 600; color: var(--error); margin: 0; }
.field.has-error .field-error { display: flex; }
.choice-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice span { display: inline-flex; align-items: center; min-height: 44px; padding: .55rem 1rem; border: 1.5px solid var(--line-2); border-radius: var(--r-pill); font-weight: 600; font-size: .9375rem; color: var(--text-2); transition: all .2s; background: #fff; }
.choice input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.choice input:focus-visible + span { box-shadow: var(--focus); }
.choice:hover span { border-color: var(--ink); }
.check { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-2); line-height: 1.55; }
.check input { flex-shrink: 0; width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--ink); cursor: pointer; }
.check a { color: var(--blue-600); font-weight: 600; }
.dropzone { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; text-align: center; padding: 1.75rem 1rem; border: 2px dashed var(--line-2); border-radius: var(--r); background: var(--bg-cool); transition: border-color .2s, background .2s; cursor: pointer; }
.dropzone:hover, .dropzone.is-drag { border-color: var(--blue); background: var(--blue-50); }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.dropzone .icon { width: 30px; height: 30px; color: var(--blue); }
.dropzone strong { color: var(--ink); }
.dropzone__file { display: none; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); }
.dropzone.has-file .dropzone__file { display: inline-flex; }
.dropzone.has-file .dropzone__prompt { display: none; }
.field.has-error .dropzone { border-color: var(--error); background: var(--error-50); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-privacy { font-size: var(--fs-xs); color: var(--text-3); margin-top: var(--s4); display: flex; gap: .5rem; align-items: flex-start; }
.form-privacy .icon { width: 16px; flex-shrink: 0; margin-top: 2px; }
.form-status { display: none; margin-bottom: var(--s5); }
.form-status.is-visible { display: flex; }
.form-success { display: none; text-align: center; padding: clamp(2rem, 1.5rem + 2vw, 3.5rem) 1rem; }
.form-success.is-visible { display: block; animation: rise .5s var(--ease); }
.form-success__icon { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto var(--s5); background: var(--success-50); color: var(--success); }
.form-success__icon .icon { width: 40px; height: 40px; }
.form-success h2 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
.form-success p { color: var(--text-2); max-width: 52ch; margin-inline: auto; }
.form-success .ref { display: inline-block; margin: .5rem 0 1.5rem; padding: .4rem .9rem; border-radius: var(--r-pill); background: var(--bg-cool); font-family: ui-monospace, Menlo, monospace; font-size: .9rem; color: var(--ink); }
.form-success .btn-row { justify-content: center; margin-top: var(--s5); }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.progress { display: flex; gap: .35rem; margin-bottom: var(--s6); }
.progress span { flex: 1; height: 4px; border-radius: 4px; background: var(--line); transition: background .3s; }
.progress span.is-done { background: var(--ink); }
.job-filters { display: grid; gap: .75rem; padding: 1rem; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-3); border: 1px solid var(--line); }
@media (min-width: 720px) { .job-filters { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1100px) { .job-filters { grid-template-columns: 2fr 1fr 1.25fr 1.35fr 1.15fr auto; align-items: end; } }
.job-filters .field label { white-space: nowrap; }
.job-filters .field label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); }
.job-filters .input, .job-filters .select { min-height: 50px; }
.search-input { position: relative; }
.search-input .icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); width: 20px; color: var(--text-3); pointer-events: none; }
.search-input .input { padding-left: 2.75rem; }
.jobs-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin: var(--s6) 0 var(--s4); }
.jobs-count { font-weight: 600; color: var(--ink); }
.type-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.type-chips button { border: 1.5px solid var(--line-2); background: #fff; border-radius: var(--r-pill); padding: .45rem .9rem; font-size: .875rem; font-weight: 600; color: var(--text-2); cursor: pointer; min-height: 40px; transition: all .2s; }
.type-chips button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.type-chips button:hover { border-color: var(--ink); }
.job-list { display: grid; gap: var(--s4); }
.job-list--grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
.job-list--grid > div { display: flex; } .job-list--grid > div > .job-card { flex: 1; }
.job-card { position: relative; display: flex; flex-direction: column; gap: .85rem; padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s; }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--sh-3); border-color: transparent; }
.job-card__top { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.job-card h3 { font-size: 1.25rem; margin: 0; }
.job-card h3 a { text-decoration: none; color: var(--ink); }
.job-card h3 a::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.job-card h3 a:focus-visible { box-shadow: none; }
.job-card:focus-within { box-shadow: var(--focus); }
.job-card__meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: var(--fs-sm); color: var(--text-2); }
.job-card__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.job-card__meta .icon { width: 16px; color: var(--text-3); }
.job-card p { margin: 0; color: var(--text-2); font-size: .975rem; }
.job-card__foot { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line); }
.job-card__foot .btn-row { position: relative; z-index: 1; gap: .5rem; }
.job-card__date { font-size: var(--fs-xs); color: var(--text-3); }
.tag { display: inline-flex; align-items: center; padding: .28rem .7rem; border-radius: var(--r-pill); font-size: .78rem; font-weight: 700; letter-spacing: .01em; background: var(--bg-cool); color: var(--ink-2); white-space: nowrap; }
.tag--blue { background: var(--blue-50); color: var(--blue-600); }
.tag--red { background: var(--red-50); color: var(--red-600); }
.jobs-empty { text-align: center; padding: 3rem 1rem; border: 2px dashed var(--line); border-radius: var(--r-lg); }
.jobs-empty .icon-tile { margin: 0 auto 1rem; }
.job-detail { display: grid; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: start; }
@media (min-width: 1000px) { .job-detail { grid-template-columns: 1fr 360px; } }
.job-detail__facts { display: grid; gap: 0; margin: 0; }
.job-detail__facts div { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: var(--fs-sm); }
.job-detail__facts dt { color: var(--on-dark-2); }
.job-detail__facts dd { margin: 0; font-weight: 600; color: #fff; text-align: right; }
.job-meta-hero { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--s4); }
.job-meta-hero .tag { background: rgba(255,255,255,.12); color: #fff; }
.site-footer { background: #041a40; color: var(--on-dark-2); padding-top: clamp(3.5rem, 3rem + 3vw, 6rem); font-size: var(--fs-sm); }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-top { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 720px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; } }
.footer-brand p { margin-top: 1.25rem; max-width: 34ch; }
.footer-col h2 { font-family: var(--font-head); font-size: .8rem; font-weight: 800; color: #fff; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact .icon { width: 18px; color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.footer-ctas { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-block: 1.5rem calc(1.5rem + 76px); font-size: var(--fs-xs); }
@media (min-width: 900px) { .footer-bottom { padding-bottom: 1.5rem; } }
.footer-bottom ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; } .mt-4 { margin-top: var(--s4); } .mt-5 { margin-top: var(--s5); } .mt-6 { margin-top: var(--s6); } .mt-7 { margin-top: var(--s7); }
.center { text-align: center; }
.hide-sm { display: none; } @media (min-width: 720px) { .hide-sm { display: initial; } }
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="left"] { transform: translateX(-30px); }
.js [data-reveal="right"] { transform: translateX(30px); }
.js [data-reveal="zoom"] { transform: scale(.96); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
.js [data-reveal] { opacity: 1; transform: none; }
}
@media print { .site-header, .mobile-cta, .drawer, .site-footer, .hero__media { display: none !important; } body { color: #000; } }
@media (max-width: 520px) { .tile small { display: none; } .tile { font-size: .78rem; border-radius: 9px; } }
.field label.check { font-weight: 400; color: var(--text-2); font-size: var(--fs-sm); }
.page-hero--compact { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) clamp(2.5rem, 2rem + 2.5vw, 4rem); }
.page-hero--compact h1 { font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.25rem); }
