/* Job Bank website visual system.
   Black and white are the base. Legacy portal surfaces keep shared accent tokens,
   while the landing page remaps them to the login palette. */
:root {
	--jb-black: #050505;
	--jb-charcoal: #111111;
	--jb-graphite: #252525;
	--jb-off-white: #f6f6f3;
	--jb-blue-900: #062f66;
	--jb-blue-800: #08427f;
	--jb-blue-700: #0a5ca8;
	--jb-blue-100: #e8f2ff;
	--jb-blue-050: #f4f8fd;
	--jb-green-700: #137a4b;
	--jb-gold-500: #f4b400;
	--jb-red-700: #b42318;
	--jb-ink: #151515;
	--jb-muted: #646464;
	--jb-line: #d9d9d6;
	--jb-soft-line: #ededeb;
	--jb-surface: #ffffff;
	--jb-page: #f3f3f0;
	--jb-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

/* Frappe's web template wraps page_content in a white container. These route-scoped
   resets let the custom Job Bank pages own the full viewport, including overscroll. */
html {
	background: #050505;
	overscroll-behavior-y: none;
}

body:is(
	[data-path="index"],
	[data-path="job-bank"],
	[data-path="job"],
	[data-path="register"],
	[data-path="job-seeker"],
	[data-path="employer"],
	[data-path="job-bank-admin"]
) {
	margin: 0;
	background: #050505;
	overscroll-behavior-y: none;
}

body:is(
	[data-path="index"],
	[data-path="job-bank"],
	[data-path="job"],
	[data-path="register"],
	[data-path="job-seeker"],
	[data-path="employer"],
	[data-path="job-bank-admin"]
) .page-content-wrapper,
body:is(
	[data-path="index"],
	[data-path="job-bank"],
	[data-path="job"],
	[data-path="register"],
	[data-path="job-seeker"],
	[data-path="employer"],
	[data-path="job-bank-admin"]
) main.container,
body:is(
	[data-path="index"],
	[data-path="job-bank"],
	[data-path="job"],
	[data-path="register"],
	[data-path="job-seeker"],
	[data-path="employer"],
	[data-path="job-bank-admin"]
) .page_content {
	width: 100%;
	max-width: none;
	min-height: 0;
	margin: 0 !important;
	padding: 0 !important;
	background: #050505;
}

body:is(
	[data-path="index"],
	[data-path="job-bank"],
	[data-path="job"],
	[data-path="register"],
	[data-path="job-seeker"],
	[data-path="employer"],
	[data-path="job-bank-admin"]
) .page-breadcrumbs,
body:is(
	[data-path="index"],
	[data-path="job-bank"],
	[data-path="job"],
	[data-path="register"],
	[data-path="job-seeker"],
	[data-path="employer"],
	[data-path="job-bank-admin"]
) .page-header-wrapper,
body:is(
	[data-path="index"],
	[data-path="job-bank"],
	[data-path="job"],
	[data-path="register"],
	[data-path="job-seeker"],
	[data-path="employer"],
	[data-path="job-bank-admin"]
) .page-footer {
	display: none;
}

/* Page shell: keeps all portal pages centered and removes the loose old spacing. */
.jb-shell {
	max-width: 1280px;
	margin: 0 auto;
	padding: 22px 18px 56px;
	color: var(--jb-ink);
}

.jb-shell,
.jb-home-shell,
.jb-register-shell {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-rendering: optimizeLegibility;
}

.jb-public-shell,
.jb-dashboard-shell {
	background: var(--jb-page);
	border-radius: 10px;
}

/* Homepage: screenshot-guided public landing page with black/white structure and logo accents. */
.jb-home-shell {
	width: 100vw;
	min-height: 100vh;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	background: #ffffff;
	color: #111111;
}

.jb-home-hero {
	position: relative;
	display: grid;
	min-height: 100svh;
	grid-template-rows: auto minmax(0, 1fr) auto;
	overflow: hidden;
	padding: 22px 32px 48px;
	background: #030303;
	isolation: isolate;
}

.jb-home-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 96px),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 96px);
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.38));
}

.jb-home-video-shade {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.75) 48%, rgba(0, 0, 0, 0.42) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.9) 100%);
}

.jb-home-nav {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	width: min(1220px, 100%);
	margin: 0 auto;
}

.jb-home-brand {
	display: inline-flex;
	gap: 13px;
	align-items: center;
	min-width: 0;
	color: #ffffff;
	text-decoration: none;
}

.jb-home-brand:hover,
.jb-home-brand:visited {
	color: #ffffff;
	text-decoration: none;
}

.jb-home-brand img {
	width: 66px;
	height: 72px;
	object-fit: contain;
	padding: 5px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.jb-home-brand strong,
.jb-home-brand small {
	display: block;
	letter-spacing: 0;
}

.jb-home-brand strong {
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-home-brand small {
	margin-top: 2px;
	color: var(--jb-gold-500);
	font-size: 12px;
	font-weight: 750;
}

.jb-home-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.jb-home-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.07);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.jb-home-links a:hover,
.jb-home-links a:visited {
	color: #ffffff;
	text-decoration: none;
}

.jb-home-links a:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.15);
}

.jb-home-links a.is-accent {
	border-color: #ffffff;
	background: #ffffff;
	color: #111111;
}

.jb-home-links a.is-signup {
	border-color: var(--jb-green-700);
	background: var(--jb-green-700);
	color: #ffffff;
}

.jb-home-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
	gap: 44px;
	align-content: center;
	align-items: center;
	width: min(1220px, 100%);
	margin: 0 auto;
	padding-top: 56px;
}

.jb-home-copy {
	max-width: 760px;
}

.jb-home-kicker {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.jb-home-copy h1 {
	max-width: 780px;
	margin: 0;
	color: #ffffff;
	font-size: 78px;
	font-weight: 950;
	line-height: 0.98;
	letter-spacing: 0;
}

.jb-home-copy p:not(.jb-home-kicker) {
	max-width: 650px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 19px;
	line-height: 1.55;
}

.jb-home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.jb-home-primary,
.jb-home-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 900;
	text-decoration: none;
}

.jb-home-primary {
	border: 1px solid #ffffff;
	background: #ffffff;
	color: #111111;
}

.jb-home-secondary {
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.jb-home-primary:hover,
.jb-home-secondary:hover {
	border-color: var(--jb-gold-500);
	background: var(--jb-gold-500);
	color: #111111;
	text-decoration: none;
}

.jb-home-search {
	display: grid;
	gap: 16px;
	width: min(820px, 100%);
	margin-top: 28px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(5, 5, 5, 0.76);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(16px);
}

.jb-home-search h2 {
	margin: 0;
	color: #ffffff;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: 0;
}

.jb-home-search-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.7fr) auto;
	gap: 10px;
	align-items: end;
}

.jb-home-search .jb-field label {
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0;
}

.jb-home-search .jb-field input {
	min-height: 48px;
	border-color: rgba(255, 255, 255, 0.28);
	background: #ffffff;
	color: #111111;
}

.jb-home-submit {
	min-height: 48px;
	padding: 10px 22px;
	border: 1px solid #ffffff;
	border-radius: 8px;
	background: #ffffff;
	color: #111111;
	font-weight: 900;
	cursor: pointer;
}

.jb-home-submit:hover {
	border-color: var(--jb-gold-500);
	background: var(--jb-gold-500);
	color: #111111;
}

.jb-home-search-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.jb-home-search-links a,
.jb-home-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #111111;
	border-radius: 8px;
	color: #111111;
	font-size: 12px;
	font-weight: 850;
	text-decoration: none;
}

.jb-home-search-links a {
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.jb-home-search-links a:hover,
.jb-home-outline:hover {
	background: #111111;
	color: #ffffff;
	text-decoration: none;
}

.jb-home-command {
	position: relative;
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(8, 8, 8, 0.74);
	color: #ffffff;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(18px);
	overflow: hidden;
}

.jb-home-command::before {
	position: absolute;
	inset: 0;
	content: "";
	border-top: 3px solid var(--jb-green-700);
	background: linear-gradient(120deg, rgba(19, 122, 75, 0.18), transparent 42%, rgba(184, 165, 111, 0.14));
	pointer-events: none;
}

.jb-home-command::after {
	position: absolute;
	left: -30%;
	top: 0;
	width: 42%;
	height: 100%;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
	transform: skewX(-18deg);
	opacity: 0;
	pointer-events: none;
}

.jb-command-topline,
.jb-command-metrics,
.jb-command-feed {
	position: relative;
	z-index: 1;
}

.jb-command-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.jb-command-topline span,
.jb-command-feed > span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-command-topline strong {
	color: var(--jb-gold-500);
	font-size: 13px;
}

.jb-command-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.jb-command-metrics div {
	min-height: 104px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.jb-command-metrics strong {
	display: block;
	color: #ffffff;
	font-size: 30px;
	line-height: 1;
}

.jb-command-metrics span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.jb-command-feed {
	display: grid;
	gap: 10px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
}

.jb-command-feed div {
	display: grid;
	gap: 8px;
}

.jb-command-feed a {
	display: grid;
	gap: 4px;
	padding: 11px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	text-decoration: none;
}

.jb-command-feed a:hover {
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff;
	text-decoration: none;
}

.jb-command-feed strong,
.jb-command-feed span {
	display: block;
	letter-spacing: 0;
}

.jb-command-feed strong {
	font-size: 14px;
}

.jb-command-feed a span {
	color: rgba(255, 255, 255, 0.64);
	font-size: 12px;
}

.jb-home-hero-ticker {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 28px);
	align-items: stretch;
	width: min(1220px, 100%);
	margin: 26px auto 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: #ffffff;
	overflow: hidden;
}

.jb-home-hero-ticker div {
	display: grid;
	gap: 5px;
	align-content: start;
	min-width: 0;
	padding-left: clamp(14px, 1.8vw, 24px);
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.jb-home-hero-ticker div:first-child {
	padding-left: 0;
	border-left: 0;
}

.jb-home-hero-ticker span {
	color: var(--jb-gold-500);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-home-hero-ticker strong {
	display: block;
	overflow-wrap: anywhere;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.25;
}

.jb-home-counter-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	border-top: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	background: #111111;
	color: #ffffff;
}

.jb-home-counter-strip div {
	position: relative;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 6px;
	min-height: 150px;
	padding: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.jb-home-counter-strip div::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: var(--jb-green-700);
	content: "";
}

.jb-home-counter-strip div:nth-child(2)::before {
	background: var(--jb-gold-500);
}

.jb-home-counter-strip div:nth-child(3)::before {
	background: var(--jb-blue-700);
}

.jb-home-counter-strip div:nth-child(4)::before {
	background: var(--jb-red-700);
}

.jb-home-counter-strip div::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 58%);
	content: "";
	transform: translateX(-120%);
	opacity: 0;
	pointer-events: none;
}

.jb-home-counter-strip div:last-child {
	border-right: 0;
}

.jb-home-counter-strip strong {
	font-size: 46px;
	line-height: 1;
}

.jb-home-counter-strip span {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 850;
	text-transform: uppercase;
}

.jb-home-counter-strip small {
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
	font-weight: 750;
}

.jb-home-service {
	display: grid;
	place-items: center;
	min-height: 210px;
	padding: 42px 20px;
	background: #ffffff;
	text-align: center;
}

.jb-home-service div,
.jb-home-section,
.jb-home-feature,
.jb-home-band,
.jb-home-alert,
.jb-home-footer {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.jb-home-service span,
.jb-home-section-head span,
.jb-home-feature-copy span,
.jb-home-news-grid article span {
	display: block;
	margin-bottom: 8px;
	color: var(--jb-blue-700);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.jb-home-service h2,
.jb-home-section-head h2,
.jb-home-feature-copy h2 {
	margin: 0;
	color: #111111;
	font-size: 30px;
	line-height: 1.14;
	letter-spacing: 0;
}

.jb-home-service p,
.jb-home-section-head p,
.jb-home-feature-copy p {
	max-width: 690px;
	margin: 10px auto 0;
	color: #575046;
	font-size: 14px;
	line-height: 1.55;
}

.jb-home-section {
	padding: 58px 0;
	background: #ffffff;
}

.jb-home-process {
	padding: 0 20px 58px;
	background: #ffffff;
}

.jb-home-process-track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: min(1120px, 100%);
	margin: 0 auto;
	border: 1px solid #222222;
	border-radius: 8px;
	background: #111111;
	color: #ffffff;
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
	overflow: hidden;
}

.jb-home-process-track article {
	position: relative;
	display: grid;
	gap: 7px;
	min-height: 152px;
	align-content: center;
	padding: 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.jb-home-process-track article:last-child {
	border-right: 0;
}

.jb-home-process-track article::before {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 18px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--jb-green-700), var(--jb-gold-500), var(--jb-blue-700));
	content: "";
}

.jb-home-process-track span,
.jb-home-process-track strong,
.jb-home-process-track small {
	position: relative;
	z-index: 1;
	display: block;
}

.jb-home-process-track span {
	color: var(--jb-gold-500);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.jb-home-process-track strong {
	font-size: 24px;
	line-height: 1.05;
}

.jb-home-process-track small {
	max-width: 230px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	line-height: 1.45;
}

.jb-home-start {
	background:
		linear-gradient(180deg, #ffffff 0%, #f6f6f3 100%);
}

.jb-home-section-head {
	margin-bottom: 22px;
	text-align: center;
}

.jb-home-job-list {
	display: grid;
	margin: 0;
	border-top: 1px solid #e4e1d8;
}

.jb-home-live-board {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
	gap: 22px;
	max-width: 1120px;
	margin: 0 auto;
}

.jb-home-job-row {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-height: 84px;
	padding: 14px;
	border-bottom: 1px solid #e9e6dd;
	border-left: 3px solid transparent;
	color: #111111;
	text-decoration: none;
	transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.jb-home-job-row:hover {
	border-left-color: var(--jb-green-700);
	background: #fbfbf8;
	color: #111111;
	text-decoration: none;
	transform: translateX(4px);
}

.jb-home-job-logo {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid #e4e1d8;
	border-radius: 8px;
	background: #ffffff;
	color: var(--jb-blue-800);
	font-size: 11px;
	font-weight: 900;
}

.jb-home-job-row strong,
.jb-home-job-row small {
	display: block;
}

.jb-home-job-row strong {
	font-size: 16px;
}

.jb-home-job-row small {
	margin-top: 4px;
	color: #5b5548;
	font-size: 12px;
}

.jb-home-job-type {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--jb-blue-700);
	color: #ffffff;
	font-size: 12px;
	font-weight: 850;
}

.jb-home-board-panel {
	position: sticky;
	top: 18px;
	display: grid;
	gap: 18px;
	align-content: start;
	padding: 20px;
	border: 1px solid #d9d9d6;
	border-radius: 8px;
	background: #111111;
	color: #ffffff;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
}

.jb-home-board-panel > span {
	color: var(--jb-gold-500);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-flow-steps {
	position: relative;
	display: grid;
	gap: 10px;
}

.jb-flow-steps::before {
	position: absolute;
	left: 16px;
	top: 20px;
	bottom: 20px;
	width: 2px;
	background: rgba(255, 255, 255, 0.14);
	content: "";
}

.jb-flow-steps div {
	position: relative;
	display: grid;
	gap: 3px;
	padding: 12px 12px 12px 34px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.jb-flow-steps div::before {
	position: absolute;
	left: 12px;
	top: 17px;
	z-index: 1;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--jb-green-700);
	content: "";
}

.jb-flow-steps div:nth-child(2)::before {
	background: var(--jb-gold-500);
}

.jb-flow-steps div:nth-child(3)::before {
	background: var(--jb-blue-700);
}

.jb-flow-steps strong,
.jb-flow-steps small {
	display: block;
}

.jb-flow-steps strong {
	color: #ffffff;
	font-size: 15px;
}

.jb-flow-steps small {
	color: rgba(255, 255, 255, 0.64);
}

.jb-flow-meter {
	height: 12px;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
}

.jb-flow-meter span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--jb-green-700), var(--jb-gold-500), var(--jb-blue-700));
}

.jb-home-board-panel .jb-home-outline {
	border-color: #ffffff;
	color: #ffffff;
}

.jb-home-board-panel .jb-home-outline:hover {
	background: #ffffff;
	color: #111111;
}

.jb-home-center-action {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

.jb-home-feature,
.jb-home-band {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
	gap: 56px;
	align-items: center;
	width: 100%;
	padding: 64px max(20px, calc((100vw - 1120px) / 2));
	background: var(--jb-off-white);
}

.jb-home-feature.is-reversed {
	grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
	background: var(--jb-off-white);
}

.jb-home-feature.is-reversed .jb-home-feature-copy {
	order: -1;
}

.jb-home-feature-copy p {
	margin-left: 0;
}

.jb-home-feature-visual {
	position: relative;
	min-height: 280px;
	border: 1px solid rgba(17, 17, 17, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.5)),
		repeating-linear-gradient(90deg, #111111 0, #111111 1px, transparent 1px, transparent 42px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.jb-home-feature-visual::after {
	position: absolute;
	inset: auto 0 0;
	height: 6px;
	background: linear-gradient(90deg, var(--jb-green-700), var(--jb-gold-500), var(--jb-blue-700), var(--jb-red-700));
	content: "";
}

.jb-home-dashboard-card,
.jb-home-profile-card {
	position: absolute;
	border: 1px solid #e4e1d8;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.jb-home-dashboard-card {
	left: 34px;
	right: 88px;
	top: 46px;
	display: grid;
	gap: 12px;
	padding: 20px;
}

.jb-home-dashboard-card span {
	display: block;
	height: 24px;
	border-radius: 6px;
	background: linear-gradient(90deg, #111111, #6d747e);
}

.jb-home-dashboard-card span:nth-child(2) {
	width: 72%;
	background: linear-gradient(90deg, var(--jb-red-700), #ffffff);
}

.jb-home-dashboard-card span:nth-child(3) {
	width: 54%;
	background: linear-gradient(90deg, var(--jb-green-700), var(--jb-gold-500));
}

.jb-home-profile-card {
	right: 32px;
	bottom: 34px;
	display: grid;
	width: 118px;
	height: 132px;
	place-items: center;
}

.jb-home-profile-card img {
	width: 72px;
	height: 82px;
	object-fit: contain;
}

.jb-home-category-grid,
.jb-home-skill-grid,
.jb-home-news-grid {
	display: grid;
	gap: 14px 28px;
}

.jb-home-category-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	max-width: 980px;
	margin: 0 auto;
}

.jb-home-category-grid a {
	min-height: 44px;
	padding: 10px 0;
	border-bottom: 1px solid #e4e4e0;
	color: #111111;
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
	transition: color 160ms ease, padding 160ms ease, border-color 160ms ease;
}

.jb-home-category-grid a:hover {
	padding-left: 8px;
	border-bottom-color: #111111;
	color: var(--jb-blue-700);
	text-decoration: none;
}

.jb-home-band {
	display: block;
	min-height: 220px;
}

.jb-home-skill-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 22px;
}

.jb-home-skill-grid a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid rgba(17, 17, 17, 0.18);
	border-radius: 8px;
	background: #ffffff;
	color: #111111;
	font-weight: 800;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.jb-home-skill-grid a:hover {
	border-color: #111111;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	color: #111111;
	text-decoration: none;
	transform: translateY(-2px);
}

.jb-home-news-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jb-home-news-grid article {
	position: relative;
	min-height: 180px;
	padding: 20px;
	border: 1px solid #e4e1d8;
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
}

.jb-home-news-grid article::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: var(--jb-green-700);
	content: "";
}

.jb-home-news-grid article:nth-child(2)::before {
	background: var(--jb-gold-500);
}

.jb-home-news-grid article:nth-child(3)::before {
	background: var(--jb-blue-700);
}

.jb-home-news-grid h3 {
	margin: 0;
	color: #111111;
	font-size: 20px;
	line-height: 1.2;
}

.jb-home-news-grid a {
	display: inline-flex;
	margin-top: 20px;
	color: var(--jb-red-700);
	font-weight: 850;
	text-decoration: none;
}

.jb-home-collage {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	min-height: 250px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.jb-home-collage div {
	background:
		linear-gradient(160deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.54)),
		linear-gradient(135deg, #ffffff, #e4e1d8);
}

.jb-home-collage div:nth-child(2) {
	background:
		linear-gradient(160deg, rgba(19, 122, 75, 0.26), rgba(0, 0, 0, 0.48)),
		linear-gradient(135deg, #ffffff, #e4e1d8);
}

.jb-home-collage div:nth-child(3) {
	background:
		linear-gradient(160deg, rgba(180, 35, 24, 0.24), rgba(0, 0, 0, 0.48)),
		linear-gradient(135deg, #ffffff, #e4e1d8);
}

.jb-home-alert {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
	gap: 30px;
	align-items: center;
	padding: 58px 0;
}

.jb-home-alert p {
	max-width: 380px;
	margin: 0;
	color: #575046;
	line-height: 1.55;
}

.jb-home-alert form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.jb-home-alert input {
	min-height: 46px;
	padding: 10px 13px;
	border: 1px solid #d8d3c7;
	border-radius: 8px;
}

.jb-home-alert button {
	min-height: 46px;
	padding: 10px 22px;
	border: 1px solid #111111;
	border-radius: 8px;
	background: #111111;
	color: #ffffff;
	font-weight: 900;
	cursor: pointer;
}

.jb-home-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 4px solid var(--jb-blue-700);
	background: #111111;
	color: #ffffff;
}

.jb-home-stats div {
	min-height: 140px;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 4px;
}

.jb-home-stats strong {
	font-size: 42px;
	line-height: 1;
}

.jb-home-stats span {
	font-weight: 800;
}

.jb-home-stats small {
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
	font-weight: 750;
}

.jb-home-footer {
	display: grid;
	grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
	gap: 34px;
	padding: 34px 0 46px;
	background: #ffffff;
}

.jb-home-footer-brand img {
	width: 94px;
	height: 104px;
	object-fit: contain;
}

.jb-home-footer-brand span {
	display: block;
	margin-top: 8px;
	color: #5b5548;
	font-size: 12px;
}

.jb-home-footer h3 {
	margin: 0 0 12px;
	color: #111111;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-home-footer a {
	display: block;
	margin-top: 5px;
	color: #4f493f;
	font-size: 13px;
	text-decoration: none;
}

.jb-home-footer a:hover {
	color: var(--jb-blue-700);
	text-decoration: none;
}

/* Homepage dark-first polish. White is kept as a panel color, not the page base. */
.jb-home-shell {
	background: #050505;
	color: #f7f7f4;
}

.jb-home-hero {
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.jb-home-service,
.jb-home-section,
.jb-home-start,
.jb-home-process,
.jb-home-feature,
.jb-home-feature.is-reversed,
.jb-home-band,
.jb-home-alert,
.jb-home-footer {
	background: #050505;
}

.jb-home-service {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.jb-home-service div {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		#0a0a0a;
}

.jb-home-section,
.jb-home-band,
.jb-home-alert,
.jb-home-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jb-home-service span,
.jb-home-section-head span,
.jb-home-feature-copy span,
.jb-home-news-grid article span {
	color: var(--jb-gold-500);
}

.jb-home-service h2,
.jb-home-section-head h2,
.jb-home-feature-copy h2 {
	color: #ffffff;
}

.jb-home-service p,
.jb-home-section-head p,
.jb-home-feature-copy p,
.jb-home-alert p {
	color: rgba(255, 255, 255, 0.68);
}

.jb-home-process {
	padding-top: 58px;
}

.jb-home-process-track,
.jb-home-board-panel {
	border-color: rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
		#0c0c0c;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.jb-home-pathway,
.jb-home-news-grid article,
.jb-home-job-row,
.jb-home-skill-grid a {
	background: #ffffff;
	color: #111111;
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.jb-home-pathway {
	border-color: rgba(255, 255, 255, 0.18);
}

.jb-home-job-list {
	gap: 10px;
	border-top: 0;
}

.jb-home-job-row {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-left: 4px solid transparent;
	border-radius: 8px;
}

.jb-home-job-row:hover {
	border-left-color: var(--jb-green-700);
	background: #f7f7f4;
}

.jb-home-category-grid a {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
}

.jb-home-category-grid a:hover {
	padding-left: 16px;
	border-color: #ffffff;
	background: #ffffff;
	color: #111111;
}

.jb-home-section .jb-home-outline,
.jb-home-feature .jb-home-outline {
	border-color: rgba(255, 255, 255, 0.72);
	color: #ffffff;
}

.jb-home-section .jb-home-outline:hover,
.jb-home-feature .jb-home-outline:hover {
	border-color: #ffffff;
	background: #ffffff;
	color: #111111;
}

.jb-home-feature {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jb-home-feature-visual {
	border-color: rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 1px, transparent 1px, transparent 42px),
		#0f0f0f;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.jb-home-feature-visual::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 58%);
	transform: translateX(-120%);
	opacity: 0;
	pointer-events: none;
}

.jb-home-collage {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.jb-home-collage div {
	background:
		linear-gradient(160deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.74)),
		linear-gradient(135deg, #ffffff, #6e747d);
}

.jb-home-alert input {
	border-color: rgba(255, 255, 255, 0.22);
	background: #ffffff;
	color: #111111;
}

.jb-home-alert button,
.jb-home-footer {
	background: #111111;
}

.jb-home-alert button {
	border-color: #ffffff;
	background: #ffffff;
	color: #111111;
}

.jb-home-alert button:hover {
	border-color: var(--jb-gold-500);
	background: var(--jb-gold-500);
	color: #111111;
}

.jb-home-footer {
	color: #ffffff;
}

.jb-home-footer h3 {
	color: #ffffff;
}

.jb-home-footer a,
.jb-home-footer-brand span {
	color: rgba(255, 255, 255, 0.68);
}

.jb-home-footer a:hover {
	color: var(--jb-gold-500);
}

.jb-flow-meter span {
	width: 100%;
}

/* Landing readability keeps the black-first look while removing faint, thin text. */
.jb-home-shell {
	--jb-home-green: #137a4b;
	--jb-home-red: #b42318;
	--jb-home-gold: #6f5f2a;
	--jb-home-white: #ffffff;
	--jb-home-readable: rgba(255, 255, 255, 0.92);
	--jb-home-readable-soft: rgba(255, 255, 255, 0.82);
	--jb-home-readable-faint: rgba(255, 255, 255, 0.72);
	--jb-home-card-readable: #151515;
	--jb-home-card-muted: #4b463d;
	/* Older landing selectors still reference shared tokens, so the home shell maps them to the login palette. */
	--jb-blue-900: #111111;
	--jb-blue-800: var(--jb-home-green);
	--jb-blue-700: var(--jb-home-gold);
	--jb-blue-100: var(--jb-home-white);
	--jb-blue-050: #f6f6f3;
	--jb-gold-500: var(--jb-home-gold);
	font-size: 16.5px;
	font-weight: 600;
	line-height: 1.55;
	-webkit-font-smoothing: auto;
}

.jb-home-video-shade {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 48%, rgba(0, 0, 0, 0.58) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.92) 100%);
}

.jb-home-copy h1,
.jb-home-copy p,
.jb-home-kicker {
	text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72);
}

.jb-home-copy p:not(.jb-home-kicker) {
	color: var(--jb-home-readable);
	font-weight: 650;
	line-height: 1.62;
}

.jb-home-kicker,
.jb-home-search .jb-field label,
.jb-command-topline span,
.jb-command-feed > span,
.jb-home-hero-ticker span {
	color: var(--jb-home-readable-soft);
	font-weight: 900;
}

.jb-home-search,
.jb-home-command {
	border-color: rgba(255, 255, 255, 0.26);
	background: rgba(8, 8, 8, 0.88);
}

.jb-home-search h2,
.jb-home-command strong,
.jb-command-feed strong,
.jb-home-hero-ticker strong,
.jb-home-counter-strip strong,
.jb-home-process-track strong,
.jb-flow-steps strong {
	font-weight: 900;
}

.jb-command-metrics span,
.jb-command-feed a span,
.jb-home-counter-strip span,
.jb-home-stats span {
	color: var(--jb-home-readable-soft);
	font-weight: 850;
}

.jb-home-counter-strip small,
.jb-home-stats small,
.jb-home-process-track small,
.jb-flow-steps small,
.jb-home-footer a,
.jb-home-footer-brand span {
	color: var(--jb-home-readable-faint);
	font-weight: 700;
	line-height: 1.5;
}

.jb-command-feed a,
.jb-flow-steps div {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
}

.jb-home-service p,
.jb-home-section-head p,
.jb-home-feature-copy p,
.jb-home-alert p {
	color: var(--jb-home-readable-soft);
	font-size: 15.5px;
	font-weight: 650;
	line-height: 1.65;
}

.jb-home-job-row strong,
.jb-home-news-grid h3,
.jb-home-pathway h3,
.jb-home-category-grid a,
.jb-home-skill-grid a {
	color: var(--jb-home-card-readable);
	font-weight: 850;
}

.jb-home-job-row small,
.jb-home-pathway ol {
	color: var(--jb-home-card-muted);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.6;
}

.jb-home-counter-strip div:nth-child(3)::before {
	background: var(--jb-home-white);
}

.jb-home-process-track article::before,
.jb-flow-meter span,
.jb-home-feature-visual::after {
	background: linear-gradient(90deg, var(--jb-home-green), var(--jb-home-gold), var(--jb-home-white), var(--jb-home-red));
}

.jb-flow-steps div:nth-child(3)::before,
.jb-home-news-grid article:nth-child(3)::before,
.jb-home-pathway.is-employer .jb-pathway-rail span:nth-child(2) {
	background: var(--jb-home-red);
}

.jb-home-pathway.is-employer::before {
	border-top-color: var(--jb-home-red);
}

.jb-home-search .jb-field input,
.jb-home-alert input {
	font-size: 15px;
	font-weight: 650;
}

.jb-home-search .jb-field input::placeholder,
.jb-home-alert input::placeholder {
	color: #635d51;
	opacity: 1;
}

@keyframes jb-home-once-rise {
	from {
		opacity: 0;
		transform: translate3d(0, 18px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes jb-home-once-slide {
	from {
		opacity: 0;
		transform: translate3d(24px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes jb-home-once-glint {
	0%,
	42% {
		opacity: 0;
		transform: translateX(-120%) skewX(-18deg);
	}
	56% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(140%) skewX(-18deg);
	}
}

@keyframes jb-home-once-fill {
	from {
		width: 8%;
	}
	to {
		width: 100%;
	}
}

@keyframes jb-home-once-line {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.jb-home-nav,
	.jb-home-copy,
	.jb-home-search,
	.jb-home-command,
	.jb-home-hero-ticker,
	.jb-home-counter-strip div {
		animation: jb-home-once-rise 620ms ease-out both;
	}

	.jb-home-copy {
		animation-delay: 80ms;
	}

	.jb-home-search {
		animation-delay: 180ms;
	}

	.jb-home-command {
		animation-name: jb-home-once-slide;
		animation-delay: 220ms;
	}

	.jb-home-hero-ticker {
		animation-delay: 340ms;
	}

	.jb-home-counter-strip div:nth-child(1) {
		animation-delay: 90ms;
	}

	.jb-home-counter-strip div:nth-child(2) {
		animation-delay: 150ms;
	}

	.jb-home-counter-strip div:nth-child(3) {
		animation-delay: 210ms;
	}

	.jb-home-counter-strip div:nth-child(4) {
		animation-delay: 270ms;
	}

	.jb-home-command::after,
	.jb-home-counter-strip div::after,
	.jb-home-feature-visual::before {
		animation: jb-home-once-glint 980ms ease-out 440ms both;
	}

	.jb-flow-meter span {
		animation: jb-home-once-fill 760ms ease-out 500ms both;
	}

	.jb-pathway-rail span,
	.jb-home-process-track article::before {
		transform-origin: left center;
		animation: jb-home-once-line 620ms ease-out both;
	}
}

/* Landing page: full-bleed black-and-white first screen with a live video layer. */
.jb-landing-shell {
	width: 100vw;
	min-height: 100vh;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	background: #050505;
	color: #f5f5f5;
}

.jb-landing-hero {
	position: relative;
	display: grid;
	min-height: 100svh;
	grid-template-rows: auto minmax(0, 1fr) auto;
	overflow: hidden;
	padding: 24px 32px 22px;
	background: #020202;
	isolation: isolate;
}

.jb-hero-video,
.jb-landing-hero::before,
.jb-hero-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.jb-hero-video {
	z-index: -3;
	object-fit: cover;
	filter: grayscale(1) contrast(1.18);
	opacity: 0.78;
}

.jb-landing-hero::before {
	z-index: -2;
	content: "";
	background:
		repeating-linear-gradient(
			112deg,
			rgba(255, 255, 255, 0.09) 0,
			rgba(255, 255, 255, 0.09) 1px,
			transparent 1px,
			transparent 96px
		),
		linear-gradient(135deg, #050505 0%, #161616 48%, #000000 100%);
	background-size: 180px 180px, cover;
}

.jb-video-static + .jb-hero-shade {
	backdrop-filter: none;
}

.jb-hero-shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 44%, rgba(0, 0, 0, 0.46) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.9) 100%);
}

.jb-landing-nav {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}

.jb-landing-brand {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	min-width: 0;
	color: #ffffff;
	text-decoration: none;
}

.jb-landing-brand:hover,
.jb-landing-brand:visited {
	color: #ffffff;
	text-decoration: none;
}

.jb-landing-brand img {
	width: 54px;
	height: 60px;
	object-fit: contain;
	padding: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.92);
}

.jb-landing-brand strong,
.jb-landing-brand small {
	display: block;
	letter-spacing: 0;
}

.jb-landing-brand strong {
	color: #ffffff;
	font-size: 16px;
	font-weight: 850;
	text-transform: uppercase;
}

.jb-landing-brand small {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 12px;
	font-weight: 700;
}

.jb-landing-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.jb-landing-links a,
.jb-landing-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
}

.jb-landing-links a {
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.06);
	font-size: 13px;
}

.jb-landing-links a:hover,
.jb-landing-links a:visited,
.jb-landing-button:hover,
.jb-landing-button:visited {
	color: #ffffff;
	text-decoration: none;
}

.jb-landing-links a:hover,
.jb-landing-links a.is-solid {
	border-color: #ffffff;
	background: #ffffff;
	color: #050505;
}

.jb-hero-layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
	gap: 42px;
	align-items: center;
	width: min(1160px, 100%);
	margin: 0 auto;
	padding: 48px 0 34px;
}

.jb-hero-copy {
	max-width: 720px;
}

.jb-hero-kicker {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.jb-hero-copy h1 {
	max-width: 680px;
	margin: 0;
	color: #ffffff;
	font-size: 76px;
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: 0;
}

.jb-hero-copy p:not(.jb-hero-kicker) {
	max-width: 600px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 19px;
	line-height: 1.55;
}

.jb-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.jb-landing-button {
	min-height: 46px;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
}

.jb-landing-button.is-primary {
	border-color: #ffffff;
	background: #ffffff;
	color: #050505;
}

.jb-landing-button.is-primary:hover {
	background: rgba(255, 255, 255, 0.86);
	color: #050505;
}

.jb-landing-search {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.58);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(18px);
}

.jb-search-heading,
.jb-search-row {
	display: grid;
	gap: 12px;
}

.jb-search-heading {
	grid-template-columns: 1fr auto;
	align-items: end;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.jb-search-heading span,
.jb-search-heading strong {
	display: block;
	letter-spacing: 0;
}

.jb-search-heading > span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.jb-search-heading strong {
	color: #ffffff;
	font-size: 14px;
	font-weight: 850;
}

.jb-search-row {
	grid-template-columns: minmax(0, 1fr) minmax(145px, 0.8fr);
}

.jb-landing-shell .jb-field label {
	color: rgba(255, 255, 255, 0.68);
	letter-spacing: 0;
}

.jb-landing-shell .jb-field input,
.jb-landing-shell .jb-field select,
.jb-landing-shell .jb-field textarea {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.96);
	color: #111111;
}

.jb-landing-shell .jb-field input:focus,
.jb-landing-shell .jb-field select:focus,
.jb-landing-shell .jb-field textarea:focus {
	outline: 3px solid rgba(255, 255, 255, 0.2);
	border-color: #ffffff;
}

.jb-hero-options {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: min(1160px, 100%);
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(18px);
}

.jb-hero-options a {
	display: grid;
	gap: 8px;
	min-height: 92px;
	padding: 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
	color: #ffffff;
	text-decoration: none;
}

.jb-hero-options a:last-child {
	border-right: 0;
}

.jb-hero-options a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	text-decoration: none;
}

.jb-hero-options span {
	color: rgba(255, 255, 255, 0.48);
	font-size: 12px;
	font-weight: 850;
}

.jb-hero-options strong {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.2;
}

.jb-landing-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: #d8d8d8;
	color: #101010;
}

.jb-landing-strip div {
	min-height: 132px;
	padding: 28px 34px;
	background: #f7f7f7;
}

.jb-landing-strip span,
.jb-landing-section-head span {
	display: block;
	margin-bottom: 8px;
	color: #6a6a6a;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.jb-landing-strip strong {
	display: block;
	max-width: 360px;
	color: #101010;
	font-size: 24px;
	line-height: 1.15;
}

.jb-landing-results {
	display: grid;
	grid-template-columns: minmax(330px, 430px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 28px;
	background: #ededed;
	color: #111111;
}

.jb-landing-jobs,
.jb-landing-detail {
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.jb-landing-jobs {
	padding: 18px;
}

.jb-landing-detail {
	position: sticky;
	top: 18px;
	padding: 18px;
}

.jb-landing-section-head {
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e2e2e2;
}

.jb-landing-section-head h2 {
	margin: 0;
	color: #101010;
	font-size: 25px;
	line-height: 1.15;
	letter-spacing: 0;
}

.jb-landing-shell .jb-card {
	border-color: #e2e2e2;
	border-left-color: transparent;
	background: #ffffff;
}

.jb-landing-shell .jb-card:hover,
.jb-landing-shell .jb-card.is-active {
	border-color: #101010;
	border-left-color: #101010;
	background: #fafafa;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.jb-landing-shell .jb-card h3,
.jb-landing-shell .jb-section h2,
.jb-landing-shell .jb-panel h2 {
	color: #101010;
}

.jb-landing-shell .jb-button,
.jb-landing-shell .jb-button-secondary {
	border-color: #101010;
	background: #101010;
	color: #ffffff;
}

.jb-landing-shell .jb-button:hover,
.jb-landing-shell .jb-button-secondary:hover {
	background: #ffffff;
	color: #101010;
}

.jb-landing-shell .jb-pill,
.jb-landing-shell .jb-file-link {
	border: 1px solid #d9d9d9;
	background: #f5f5f5;
	color: #101010;
}

.jb-landing-shell .jb-empty,
.jb-landing-shell .jb-status {
	border-color: #d9d9d9;
	background: #f7f7f7;
	color: #5b5b5b;
}

@keyframes jb-landing-fallback-motion {
	from {
		background-position: 0 0, center;
	}
	to {
		background-position: 360px 180px, center;
	}
}

@keyframes jb-home-grid-drift {
	from {
		background-position: 0 0, 0 0;
	}
	to {
		background-position: 192px 0, 0 192px;
	}
}

@keyframes jb-home-scan {
	0%,
	42% {
		transform: translateX(0) skewX(-18deg);
		opacity: 0;
	}
	52% {
		opacity: 1;
	}
	100% {
		transform: translateX(350%) skewX(-18deg);
		opacity: 0;
	}
}

@keyframes jb-home-card-glint {
	0%,
	48% {
		transform: translateX(-120%);
	}
	62%,
	100% {
		transform: translateX(120%);
	}
}

@keyframes jb-home-bars {
	0%,
	100% {
		height: 22px;
		opacity: 0.32;
	}
	50% {
		height: 72px;
		opacity: 0.88;
	}
}

@keyframes jb-home-meter {
	0%,
	100% {
		width: 100%;
	}
	50% {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jb-home-hero::before,
	.jb-home-command::after,
	.jb-home-counter-strip div::after,
	.jb-flow-meter span {
		animation: none;
	}
}

/* Header: black public-service band with compact navigation and full-color logo. */
.jb-header {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin-bottom: 18px;
	padding: 22px;
	border-radius: 8px;
	background: #050505;
	color: #ffffff;
	box-shadow: var(--jb-shadow);
}

.jb-brand-mark {
	display: grid;
	width: 64px;
	height: 64px;
	place-items: center;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 8px;
	background: #ffffff;
	color: #050505;
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
}

.jb-header-brand {
	display: inline-flex;
	gap: 13px;
	align-items: center;
	width: auto;
	min-width: 292px;
	min-height: 76px;
	padding-right: 6px;
	border-radius: 8px;
	color: #ffffff;
	text-decoration: none;
}

.jb-header-brand img {
	width: 58px;
	height: 66px;
	object-fit: contain;
	padding: 5px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.jb-brand-text {
	display: grid;
	gap: 2px;
	min-width: 0;
	line-height: 1.08;
}

.jb-brand-text strong,
.jb-brand-text small {
	display: block;
	letter-spacing: 0;
}

.jb-brand-text strong {
	color: #ffffff;
	font-size: 18px;
	font-weight: 950;
	text-transform: uppercase;
}

.jb-brand-text small {
	color: var(--jb-gold-500);
	font-size: 12px;
	font-weight: 850;
}

.jb-header-brand:hover,
.jb-header-brand:focus-visible,
.jb-header-brand:visited {
	color: #ffffff;
	text-decoration: none;
}

.jb-eyebrow {
	margin-bottom: 4px;
	color: var(--jb-gold-500);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.jb-header h1,
.jb-section h2,
.jb-panel h2,
.jb-search-intro h2 {
	margin: 0;
	letter-spacing: 0;
}

.jb-header h1 {
	/* Headings inherit Frappe's dark desk color unless the portal header pins it. */
	color: #ffffff;
	font-size: 32px;
	line-height: 1.15;
}

.jb-header p {
	max-width: 680px;
	margin: 6px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
}

.jb-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.jb-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}

.jb-nav a:visited {
	color: #ffffff;
}

.jb-nav a:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	text-decoration: none;
}

/* Buttons: one primary action, one quiet action, and one destructive action. */
.jb-button,
.jb-button-secondary,
.jb-button-danger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 14px;
	border-radius: 6px;
	border: 1px solid transparent;
	font-weight: 750;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
}

.jb-button {
	border-color: #111111;
	background: #111111;
	color: #ffffff;
}

.jb-button:hover {
	border-color: var(--jb-green-700);
	background: var(--jb-green-700);
	color: #ffffff;
}

.jb-button-secondary {
	border-color: #111111;
	background: #ffffff;
	color: #111111;
}

.jb-button-secondary:hover {
	border-color: #111111;
	background: #111111;
	color: #ffffff;
}

.jb-button-danger {
	background: var(--jb-red-700);
	color: #ffffff;
}

/* Public search: compact search control panel, not a landing-page hero. */
.jb-search-card {
	margin-bottom: 18px;
	padding: 18px;
	border: 1px solid var(--jb-line);
	border-top: 4px solid var(--jb-gold-500);
	border-radius: 8px;
	background: var(--jb-surface);
	box-shadow: var(--jb-shadow);
}

.jb-search-intro {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.jb-search-intro h2 {
	color: #111111;
	font-size: 22px;
}

.jb-search-intro p {
	margin: 0;
	color: var(--jb-muted);
	font-weight: 650;
}

.jb-toolbar {
	display: grid;
	grid-template-columns: minmax(220px, 2fr) minmax(170px, 1fr) minmax(150px, 1fr) minmax(160px, 1.2fr) auto;
	gap: 10px;
	align-items: end;
}

/* Forms: dense, predictable, and designed for repeated use. */
.jb-field {
	display: grid;
	gap: 6px;
}

.jb-field label {
	margin: 0;
	color: #3d3d3d;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.jb-field input,
.jb-field select,
.jb-field textarea {
	width: 100%;
	min-height: 40px;
	padding: 9px 11px;
	border: 1px solid #c9d4e3;
	border-radius: 6px;
	background: #ffffff;
	color: var(--jb-ink);
	font-size: 14px;
}

.jb-field input:focus,
.jb-field select:focus,
.jb-field textarea:focus {
	outline: 3px solid rgba(244, 180, 0, 0.24);
	border-color: #111111;
}

.jb-field textarea {
	min-height: 104px;
	resize: vertical;
}

.jb-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.jb-form-grid .is-wide {
	grid-column: 1 / -1;
}

/* Layouts: fixed, understandable column systems for public and role pages. */
.jb-board-grid {
	display: grid;
	grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.jb-dashboard-layout {
	display: grid;
	grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.35fr);
	gap: 18px;
	align-items: start;
}

.jb-admin-layout {
	display: grid;
	gap: 18px;
}

.jb-primary-column,
.jb-secondary-column {
	display: grid;
	gap: 16px;
	align-content: start;
}

.jb-job-detail-panel {
	position: sticky;
	top: 18px;
	max-height: calc(100vh - 36px);
	overflow: auto;
	scroll-margin-top: 18px;
}

.jb-job-detail-panel:focus-visible {
	outline: 3px solid rgba(244, 180, 0, 0.45);
	outline-offset: 4px;
}

/* Panels: reserved for actual work surfaces, not decorative nesting. */
.jb-section,
.jb-panel {
	border: 1px solid var(--jb-soft-line);
	border-radius: 8px;
	background: var(--jb-surface);
	box-shadow: 0 8px 22px rgba(23, 32, 51, 0.05);
}

.jb-section {
	padding: 18px;
}

.jb-panel {
	padding: 16px;
}

.jb-section-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--jb-soft-line);
}

.jb-section-header h2 {
	color: #111111;
	font-size: 19px;
	line-height: 1.2;
}

.jb-section-header p {
	margin: 4px 0 0;
	color: var(--jb-muted);
	font-size: 13px;
}

.jb-subheading {
	margin: 0 0 10px;
	color: #111111;
	font-size: 15px;
	line-height: 1.2;
}

/* Summary tiles give role pages structure before the detailed work panels. */
.jb-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 18px;
}

.jb-stat {
	min-height: 86px;
	padding: 15px;
	border: 1px solid var(--jb-line);
	border-top: 3px solid var(--jb-blue-700);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(23, 32, 51, 0.05);
}

.jb-stat span {
	display: block;
	color: #111111;
	font-size: 28px;
	font-weight: 850;
	line-height: 1;
}

.jb-stat small {
	display: block;
	margin-top: 8px;
	color: var(--jb-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

/* Lists and cards: slimmer rows reduce the clutter of the previous layout. */
.jb-list {
	display: grid;
	gap: 10px;
}

.jb-card {
	border: 1px solid var(--jb-soft-line);
	border-left: 4px solid transparent;
	border-radius: 8px;
	padding: 13px;
	background: #ffffff;
}

.jb-card[data-job-card] {
	cursor: pointer;
}

.jb-card[data-job-card]:focus-visible {
	outline: 3px solid rgba(244, 180, 0, 0.42);
	outline-offset: 3px;
}

.jb-card:hover {
	border-left-color: #111111;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.jb-card.is-active {
	border-color: rgba(244, 180, 0, 0.5);
	border-left-color: var(--jb-gold-500);
	background: #fffdf2;
	box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.14);
}

.jb-card h3 {
	margin: 0;
	color: var(--jb-ink);
	font-size: 17px;
	line-height: 1.25;
	letter-spacing: 0;
}

.jb-card p {
	margin: 8px 0 0;
	color: #4b5a70;
	font-size: 14px;
	line-height: 1.45;
}

.jb-card-meta,
.jb-row-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 9px 0 0;
	color: var(--jb-muted);
	font-size: 13px;
}

.jb-card-meta span:not(.jb-pill),
.jb-row-meta span:not(.jb-pill) {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
}

.jb-file-line {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	min-height: 24px;
	color: var(--jb-muted);
}

.jb-file-link {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 2px 8px;
	border: 1px solid var(--jb-line);
	border-radius: 999px;
	background: #ffffff;
	color: #111111;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.jb-file-link:hover {
	border-color: #111111;
	background: #111111;
	color: #ffffff;
	text-decoration: none;
}

.jb-pill {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 2px 8px;
	border: 1px solid var(--jb-line);
	border-radius: 999px;
	background: #ffffff;
	color: #111111;
	font-size: 12px;
	font-weight: 800;
}

.jb-pill-warning {
	background: #fff4d0;
	color: #805600;
}

.jb-pill-danger {
	background: #fdecec;
	color: var(--jb-red-700);
}

.jb-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.jb-status-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}

.jb-status-steps span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 3px 9px;
	border: 1px solid var(--jb-line);
	border-radius: 999px;
	background: #ffffff;
	color: var(--jb-muted);
	font-size: 12px;
	font-weight: 800;
}

.jb-status-steps span.is-complete {
	border-color: #b9dfc9;
	background: #effaf4;
	color: var(--jb-green-700);
}

.jb-status-steps span.is-active {
	border-color: var(--jb-gold-500);
	background: #fff8dd;
	color: #765300;
}

.jb-child-editor-grid {
	display: grid;
	gap: 14px;
	margin-top: 14px;
}

.jb-child-editor {
	padding: 14px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 8px;
	background: #fbfbf8;
}

.jb-child-editor h3 {
	margin: 0 0 12px;
	color: #111111;
	font-size: 16px;
	line-height: 1.2;
}

.jb-child-list {
	display: grid;
	gap: 8px;
	margin-top: 8px;
}

.jb-child-row {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 8px;
	background: #ffffff;
}

.jb-child-row strong,
.jb-child-row span {
	display: block;
}

.jb-child-row strong {
	color: var(--jb-ink);
	font-size: 14px;
}

.jb-child-row span {
	margin-top: 3px;
	color: var(--jb-muted);
	font-size: 12px;
}

.jb-checkbox-field {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	margin: 23px 0 0;
	color: #3d3d3d;
	font-weight: 750;
}

.jb-checkbox-field input {
	width: 18px;
	height: 18px;
	margin: 0;
}

.jb-empty,
.jb-status {
	padding: 12px;
	border: 1px dashed var(--jb-line);
	border-radius: 6px;
	background: #fbfbf8;
	color: var(--jb-muted);
}

.jb-status {
	margin-bottom: 16px;
	border-style: solid;
}

.jb-status.is-error {
	border-color: #f4b8b0;
	background: #fff1f0;
	color: var(--jb-red-700);
}

.jb-status.is-success {
	border-color: #b9dfc9;
	background: #effaf4;
	color: var(--jb-green-700);
}

.jb-status.is-info {
	border-color: #d7d7d2;
	background: #fbfbf8;
	color: #111111;
}

/* Locked admin state: one clear access panel replaces the full operations UI. */
.jb-access-panel {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
	padding: 22px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--jb-shadow);
}

.jb-access-panel h2 {
	margin: 0;
	color: #111111;
	font-size: 24px;
}

.jb-access-panel p {
	max-width: 680px;
	margin: 0;
	color: var(--jb-muted);
}

/* Admin operations: compact indicators and tables for repeated review. */
.jb-kpi-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.jb-kpi {
	min-height: 72px;
	padding: 12px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 8px;
	background: #ffffff;
}

.jb-kpi strong {
	display: block;
	color: #111111;
	font-size: 22px;
	line-height: 1;
}

.jb-kpi span {
	display: block;
	margin-top: 7px;
	color: var(--jb-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.jb-code-panel {
	margin-top: 12px;
	overflow: auto;
	white-space: pre-wrap;
	font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	line-height: 1.45;
	color: #2c3950;
}

.jb-table-wrap {
	margin-top: 14px;
	overflow: auto;
	border: 1px solid var(--jb-soft-line);
	border-radius: 8px;
	background: #ffffff;
}

.jb-report-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.jb-report-table th,
.jb-report-table td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--jb-soft-line);
	text-align: left;
	vertical-align: top;
	font-size: 13px;
}

.jb-report-table th {
	color: #111111;
	font-weight: 850;
	text-transform: uppercase;
}

.jb-report-table td {
	color: #38465a;
}

/* Public job detail keeps long descriptions readable without overpowering lists. */
.jb-detail-body {
	display: grid;
	gap: 14px;
	margin-top: 14px;
	color: #38465a;
	line-height: 1.55;
}

.jb-detail-body .jb-section {
	margin-top: 6px;
	box-shadow: none;
}

.jb-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.jb-home-pathways {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	max-width: 980px;
	margin: 24px auto 0;
}

.jb-home-pathway {
	position: relative;
	display: grid;
	gap: 14px;
	min-height: 340px;
	padding: 24px;
	border: 1px solid #d9d9d6;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 243, 0.92)),
		repeating-linear-gradient(120deg, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.08) 1px, transparent 1px, transparent 48px);
	text-align: left;
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.jb-home-pathway:hover {
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
}

.jb-home-pathway::before {
	position: absolute;
	inset: 0;
	border-top: 5px solid var(--jb-green-700);
	content: "";
	pointer-events: none;
}

.jb-home-pathway.is-employer::before {
	border-top-color: var(--jb-blue-700);
}

.jb-pathway-index {
	position: absolute;
	right: 18px;
	top: 18px;
	color: rgba(0, 0, 0, 0.08);
	font-size: 86px;
	font-weight: 950;
	line-height: 0.8;
}

.jb-home-pathway h3 {
	margin: 0;
	color: #111111;
	font-size: 20px;
	line-height: 1.2;
}

.jb-pathway-rail {
	display: grid;
	grid-template-columns: 1fr 0.8fr 0.55fr;
	gap: 8px;
	width: min(280px, 100%);
	margin: 2px 0 4px;
}

.jb-pathway-rail span {
	display: block;
	height: 9px;
	border-radius: 999px;
	background: #111111;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.jb-pathway-rail span:nth-child(2) {
	background: var(--jb-green-700);
}

.jb-pathway-rail span:nth-child(3) {
	background: var(--jb-gold-500);
}

.jb-home-pathway.is-employer .jb-pathway-rail span:nth-child(2) {
	background: var(--jb-blue-700);
}

.jb-home-pathway.is-employer .jb-pathway-rail span:nth-child(3) {
	background: var(--jb-red-700);
}

.jb-home-pathway ol {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
	color: #4a4a4a;
	line-height: 1.5;
}

.jb-home-pathway .jb-actions {
	margin-top: 0;
}

.jb-home-pathway.is-employer::before {
	border-top-color: var(--jb-home-red);
}

.jb-home-pathway.is-employer .jb-pathway-rail span:nth-child(2) {
	background: var(--jb-home-gold);
}

.jb-home-pathway.is-employer .jb-pathway-rail span:nth-child(3) {
	background: var(--jb-home-red);
}

/* Shared dark portal theme for public search, role dashboards, and admin pages. */
.jb-public-shell,
.jb-dashboard-shell {
	position: relative;
	width: 100vw;
	max-width: none;
	min-height: 100vh;
	margin-left: calc(50% - 50vw);
	padding: 24px max(18px, calc((100vw - 1280px) / 2)) 64px;
	border-radius: 0;
	background-color: #050505;
	background-image:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 96px),
		linear-gradient(180deg, #050505 0%, #0b0b0b 52%, #050505 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	overflow-x: clip;
	overflow-y: visible;
	isolation: isolate;
}

.jb-home-shell *,
.jb-public-shell *,
.jb-dashboard-shell *,
.jb-register-shell * {
	box-sizing: border-box;
}

.jb-public-shell .jb-header,
.jb-dashboard-shell .jb-header {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		#080808;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.jb-public-shell .jb-search-card,
.jb-public-shell .jb-section,
.jb-public-shell .jb-panel,
.jb-dashboard-shell .jb-section,
.jb-dashboard-shell .jb-panel,
.jb-dashboard-shell .jb-access-panel {
	border-color: rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
		#101010;
	color: #ffffff;
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.jb-public-shell .jb-search-card {
	border-top-color: var(--jb-gold-500);
}

.jb-public-shell .jb-section-header,
.jb-public-shell .jb-landing-section-head,
.jb-dashboard-shell .jb-section-header {
	border-bottom-color: rgba(255, 255, 255, 0.13);
}

.jb-public-shell .jb-search-intro h2,
.jb-public-shell .jb-section-header h2,
.jb-public-shell .jb-panel h2,
.jb-dashboard-shell .jb-section-header h2,
.jb-dashboard-shell .jb-panel h2,
.jb-dashboard-shell .jb-access-panel h2,
.jb-dashboard-shell .jb-subheading {
	color: #ffffff;
}

.jb-public-shell .jb-search-intro p,
.jb-public-shell .jb-section-header p,
.jb-public-shell .jb-panel p,
.jb-dashboard-shell .jb-section-header p,
.jb-dashboard-shell .jb-panel p,
.jb-dashboard-shell .jb-access-panel p {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 600;
	line-height: 1.5;
}

.jb-public-shell .jb-field label,
.jb-dashboard-shell .jb-field label,
.jb-dashboard-shell .jb-checkbox-field {
	color: rgba(255, 255, 255, 0.88);
	font-size: 13.5px;
	font-weight: 850;
}

.jb-public-shell .jb-field input,
.jb-public-shell .jb-field select,
.jb-public-shell .jb-field textarea,
.jb-dashboard-shell .jb-field input,
.jb-dashboard-shell .jb-field select,
.jb-dashboard-shell .jb-field textarea {
	border-color: rgba(255, 255, 255, 0.22);
	background: #ffffff;
	color: #111111;
}

.jb-public-shell .jb-button,
.jb-dashboard-shell .jb-button {
	border-color: #ffffff;
	background: #ffffff;
	color: #111111;
}

.jb-public-shell .jb-button:hover,
.jb-dashboard-shell .jb-button:hover {
	border-color: var(--jb-gold-500);
	background: var(--jb-gold-500);
	color: #111111;
}

.jb-public-shell .jb-button-secondary,
.jb-dashboard-shell .jb-button-secondary {
	border-color: rgba(255, 255, 255, 0.52);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.jb-public-shell .jb-button-secondary:hover,
.jb-dashboard-shell .jb-button-secondary:hover {
	border-color: #ffffff;
	background: #ffffff;
	color: #111111;
}

.jb-dashboard-shell .jb-card,
.jb-dashboard-shell .jb-kpi,
.jb-dashboard-shell .jb-table-wrap,
.jb-dashboard-shell .jb-child-editor,
.jb-dashboard-shell .jb-child-row {
	border-color: rgba(255, 255, 255, 0.18);
	background: #ffffff;
	color: #111111;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.jb-public-shell .jb-card {
	border-color: rgba(255, 255, 255, 0.14);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		#141414;
	color: #ffffff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.jb-public-shell .jb-card:hover {
	border-color: rgba(244, 180, 0, 0.55);
	border-left-color: var(--jb-gold-500);
	background:
		linear-gradient(135deg, rgba(244, 180, 0, 0.08), rgba(255, 255, 255, 0.035)),
		#171717;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.jb-public-shell .jb-card.is-active {
	border-color: rgba(244, 180, 0, 0.72);
	border-left-color: var(--jb-gold-500);
	background:
		linear-gradient(135deg, rgba(244, 180, 0, 0.14), rgba(19, 122, 75, 0.06)),
		#18160f;
	box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.16), 0 16px 42px rgba(0, 0, 0, 0.3);
}

.jb-public-shell .jb-card h3,
.jb-public-shell .jb-card-meta,
.jb-public-shell .jb-row-meta,
.jb-dashboard-shell .jb-card h3,
.jb-dashboard-shell .jb-card p,
.jb-dashboard-shell .jb-card-meta,
.jb-dashboard-shell .jb-row-meta,
.jb-dashboard-shell .jb-child-editor h3,
.jb-dashboard-shell .jb-child-row strong,
.jb-dashboard-shell .jb-child-row span,
.jb-dashboard-shell .jb-kpi strong,
.jb-dashboard-shell .jb-kpi span,
.jb-dashboard-shell .jb-report-table th,
.jb-dashboard-shell .jb-report-table td {
	color: inherit;
}

.jb-public-shell .jb-card h3 {
	font-size: 18px;
	font-weight: 850;
	line-height: 1.28;
}

.jb-public-shell .jb-card p,
.jb-public-shell .jb-card-meta {
	color: rgba(255, 255, 255, 0.86);
}

.jb-public-shell .jb-card p {
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.58;
}

.jb-public-shell .jb-card-meta,
.jb-public-shell .jb-row-meta {
	font-size: 14.5px;
	font-weight: 650;
	line-height: 1.4;
}

.jb-dashboard-shell .jb-child-editor .jb-field label,
.jb-dashboard-shell .jb-card .jb-field label,
.jb-dashboard-shell .jb-kpi .jb-field label {
	color: #3d3d3d;
}

.jb-dashboard-shell .jb-card .jb-button-secondary,
.jb-dashboard-shell .jb-child-editor .jb-button-secondary {
	border-color: #111111;
	background: #ffffff;
	color: #111111;
}

.jb-dashboard-shell .jb-card .jb-button-secondary:hover,
.jb-dashboard-shell .jb-child-editor .jb-button-secondary:hover {
	background: #111111;
	color: #ffffff;
}

.jb-public-shell .jb-card .jb-button-secondary {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.jb-public-shell .jb-card .jb-button-secondary:hover {
	border-color: var(--jb-gold-500);
	background: var(--jb-gold-500);
	color: #111111;
}

.jb-public-shell .jb-stat,
.jb-dashboard-shell .jb-stat {
	border-color: rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
		#101010;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.jb-public-shell .jb-stat span,
.jb-dashboard-shell .jb-stat span {
	color: #ffffff;
}

.jb-public-shell .jb-stat small,
.jb-dashboard-shell .jb-stat small {
	color: rgba(255, 255, 255, 0.62);
}

.jb-public-shell .jb-empty,
.jb-public-shell .jb-status,
.jb-dashboard-shell .jb-empty,
.jb-dashboard-shell .jb-status,
.jb-dashboard-shell .jb-code-panel {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.86);
	font-weight: 600;
}

.jb-public-shell .jb-status.is-error,
.jb-dashboard-shell .jb-status.is-error {
	border-color: rgba(180, 35, 24, 0.55);
	background: rgba(180, 35, 24, 0.13);
	color: #ffd8d5;
}

.jb-public-shell .jb-status.is-success,
.jb-dashboard-shell .jb-status.is-success {
	border-color: rgba(19, 122, 75, 0.6);
	background: rgba(19, 122, 75, 0.16);
	color: #dff8ea;
}

.jb-public-shell .jb-status.is-info,
.jb-dashboard-shell .jb-status.is-info {
	border-color: rgba(244, 180, 0, 0.42);
	background: rgba(244, 180, 0, 0.12);
	color: #fff1bd;
}

.jb-public-shell .jb-detail-body {
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.75;
}

.jb-public-shell .jb-detail-body p,
.jb-public-shell .jb-detail-body div {
	color: inherit;
}

.jb-public-shell .jb-detail-body strong {
	color: #ffffff;
	font-weight: 850;
}

.jb-public-shell .jb-pill,
.jb-public-shell .jb-file-link,
.jb-dashboard-shell .jb-pill,
.jb-dashboard-shell .jb-file-link,
.jb-dashboard-shell .jb-status-steps span {
	border-color: rgba(255, 255, 255, 0.18);
	background: #ffffff;
	color: #111111;
}

/* Job Seeker uses the logo green as its accent so it feels calmer than gold. */
.jb-dashboard-shell[data-job-bank-page="job-seeker"] {
	--jb-gold-500: var(--jb-green-700);
	--jb-seeker-accent: #137a4b;
	--jb-seeker-accent-strong: #0f633d;
	--jb-seeker-accent-soft: rgba(19, 122, 75, 0.18);
	--jb-seeker-accent-line: rgba(19, 122, 75, 0.48);
	--jb-seeker-field-bg: #171b18;
	--jb-seeker-field-bg-soft: #121612;
	--jb-seeker-field-line: rgba(212, 242, 224, 0.34);
	--jb-seeker-text: #f6fff9;
	--jb-seeker-muted-text: rgba(246, 255, 249, 0.76);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-eyebrow {
	color: #46c083;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-header,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-section,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-panel,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-access-panel {
	border-color: var(--jb-seeker-accent-line);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-section,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-panel,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-access-panel {
	background:
		linear-gradient(135deg, rgba(19, 122, 75, 0.09), rgba(255, 255, 255, 0.018)),
		#101010;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-stat {
	border-top: 3px solid var(--jb-seeker-accent);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-stat small,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-section-header p,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-panel p,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-empty {
	color: var(--jb-seeker-muted-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field label,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-checkbox-field {
	color: rgba(246, 255, 249, 0.84);
	font-weight: 850;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field input,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field select,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field textarea {
	border-color: var(--jb-seeker-field-line);
	background: var(--jb-seeker-field-bg);
	color: var(--jb-seeker-text);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.45;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field input::placeholder,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field textarea::placeholder {
	color: rgba(246, 255, 249, 0.54);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field select option {
	background: var(--jb-seeker-field-bg);
	color: var(--jb-seeker-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field input[type="file"] {
	padding: 6px;
	color: var(--jb-seeker-muted-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field input[type="file"]::file-selector-button {
	margin-right: 10px;
	padding: 7px 10px;
	border: 1px solid var(--jb-seeker-field-line);
	border-radius: 5px;
	background: #223028;
	color: var(--jb-seeker-text);
	font-weight: 750;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field input:focus,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field select:focus,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field textarea:focus {
	outline-color: rgba(19, 122, 75, 0.3);
	border-color: var(--jb-seeker-accent);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-button {
	border-color: var(--jb-seeker-accent);
	background: var(--jb-seeker-accent);
	color: #ffffff;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-button:hover {
	border-color: var(--jb-seeker-accent-strong);
	background: var(--jb-seeker-accent-strong);
	color: #ffffff;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-button-secondary:hover {
	border-color: var(--jb-seeker-accent);
	background: var(--jb-seeker-accent);
	color: #ffffff;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-card .jb-button-secondary,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-child-editor .jb-button-secondary,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-button-secondary {
	border-color: rgba(246, 255, 249, 0.38);
	background: rgba(255, 255, 255, 0.07);
	color: var(--jb-seeker-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-card .jb-button-secondary:hover,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-child-editor .jb-button-secondary:hover,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-button-secondary:hover {
	border-color: var(--jb-seeker-accent);
	background: var(--jb-seeker-accent);
	color: #ffffff;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-card.is-active {
	border-color: var(--jb-seeker-accent-line);
	border-left-color: var(--jb-seeker-accent);
	background: #effaf4;
	box-shadow: 0 0 0 3px var(--jb-seeker-accent-soft);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-child-editor,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-child-row {
	border-color: var(--jb-seeker-field-line);
	background:
		linear-gradient(135deg, rgba(19, 122, 75, 0.1), rgba(255, 255, 255, 0.018)),
		var(--jb-seeker-field-bg-soft);
	color: var(--jb-seeker-text);
	box-shadow: none;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-child-editor h3,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-child-row strong {
	color: var(--jb-seeker-text);
	font-weight: 780;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-child-row span,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-file-line {
	color: var(--jb-seeker-muted-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-status.is-info,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-status-steps span.is-active {
	border-color: var(--jb-seeker-accent-line);
	background: var(--jb-seeker-accent-soft);
	color: #dff8ea;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-pill,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-file-link,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-status-steps span {
	border-color: var(--jb-seeker-field-line);
	background: rgba(255, 255, 255, 0.08);
	color: var(--jb-seeker-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-status-steps span.is-complete {
	border-color: var(--jb-seeker-accent-line);
	background: rgba(19, 122, 75, 0.22);
	color: #dff8ea;
}

/* Employer uses the logo red as its accent and avoids bright white work fields. */
.jb-dashboard-shell[data-job-bank-page="employer"] {
	--jb-gold-500: var(--jb-red-700);
	--jb-employer-accent: #b42318;
	--jb-employer-accent-strong: #8f1c13;
	--jb-employer-accent-soft: rgba(180, 35, 24, 0.18);
	--jb-employer-accent-line: rgba(233, 108, 95, 0.52);
	--jb-employer-field-bg: #1b1514;
	--jb-employer-field-bg-soft: #15100f;
	--jb-employer-field-line: rgba(255, 214, 209, 0.34);
	--jb-employer-text: #fff8f6;
	--jb-employer-muted-text: rgba(255, 248, 246, 0.76);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-eyebrow {
	color: #ff8176;
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-header,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-section,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-panel,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-access-panel {
	border-color: var(--jb-employer-accent-line);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-section,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-panel,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-access-panel {
	background:
		linear-gradient(135deg, rgba(180, 35, 24, 0.1), rgba(255, 255, 255, 0.018)),
		#101010;
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-stat {
	border-top: 3px solid var(--jb-employer-accent);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-stat small,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-section-header p,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-panel p,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-empty {
	color: var(--jb-employer-muted-text);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field label,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-checkbox-field {
	color: rgba(255, 248, 246, 0.84);
	font-weight: 850;
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field input,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field select,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field textarea {
	border-color: var(--jb-employer-field-line);
	background: var(--jb-employer-field-bg);
	color: var(--jb-employer-text);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.45;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field input::placeholder,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field textarea::placeholder {
	color: rgba(255, 248, 246, 0.54);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field select option {
	background: var(--jb-employer-field-bg);
	color: var(--jb-employer-text);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field input:focus,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field select:focus,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field textarea:focus {
	outline-color: rgba(180, 35, 24, 0.32);
	border-color: var(--jb-employer-accent);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-button {
	border-color: var(--jb-employer-accent);
	background: var(--jb-employer-accent);
	color: #ffffff;
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-button:hover {
	border-color: var(--jb-employer-accent-strong);
	background: var(--jb-employer-accent-strong);
	color: #ffffff;
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-card .jb-button-secondary,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-button-secondary {
	border-color: rgba(255, 248, 246, 0.38);
	background: rgba(255, 255, 255, 0.07);
	color: var(--jb-employer-text);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-card .jb-button-secondary:hover,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-button-secondary:hover {
	border-color: var(--jb-employer-accent);
	background: var(--jb-employer-accent);
	color: #ffffff;
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-card,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-kpi,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-table-wrap,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-child-row {
	border-color: var(--jb-employer-field-line);
	background:
		linear-gradient(135deg, rgba(180, 35, 24, 0.1), rgba(255, 255, 255, 0.018)),
		var(--jb-employer-field-bg-soft);
	color: var(--jb-employer-text);
	box-shadow: none;
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-card p,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-card-meta,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-row-meta,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-child-row span {
	color: var(--jb-employer-muted-text);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-card h3,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-child-row strong {
	color: var(--jb-employer-text);
	font-weight: 780;
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-card.is-active {
	border-color: var(--jb-employer-accent-line);
	border-left-color: var(--jb-employer-accent);
	background:
		linear-gradient(135deg, rgba(180, 35, 24, 0.2), rgba(255, 255, 255, 0.02)),
		var(--jb-employer-field-bg-soft);
	box-shadow: 0 0 0 3px var(--jb-employer-accent-soft);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-pill,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-file-link,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-status-steps span {
	border-color: var(--jb-employer-field-line);
	background: rgba(255, 255, 255, 0.08);
	color: var(--jb-employer-text);
}

.jb-register-shell {
	background: #050505;
}

.jb-register-hero {
	position: relative;
	display: grid;
	min-height: 100svh;
	grid-template-rows: auto minmax(0, 1fr);
	overflow: hidden;
	padding: 22px 32px 48px;
	background: #030303;
	isolation: isolate;
}

.jb-register-layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
	gap: 44px;
	align-items: center;
	width: min(1220px, 100%);
	margin: 0 auto;
	padding-top: 42px;
}

.jb-register-copy {
	max-width: 690px;
}

.jb-register-copy h1 {
	margin: 0;
	color: #ffffff;
	font-size: 68px;
	font-weight: 950;
	line-height: 0.98;
	letter-spacing: 0;
}

.jb-register-copy p:not(.jb-home-kicker) {
	max-width: 620px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	line-height: 1.55;
}

.jb-workflow-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.jb-workflow-grid article {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
}

.jb-workflow-grid span {
	display: block;
	margin-bottom: 8px;
	color: var(--jb-gold-500);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-workflow-grid strong {
	display: block;
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	line-height: 1.4;
}

.jb-register-card {
	display: grid;
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.jb-register-card-head {
	display: grid;
	gap: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--jb-soft-line);
}

.jb-register-card h2 {
	margin: 0;
	color: #111111;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: 0;
}

.jb-register-card p {
	margin: 8px 0 0;
	color: #5c5c5c;
	line-height: 1.5;
}

.jb-register-toggle {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px;
	padding: 4px;
	border: 1px solid #d9d9d6;
	border-radius: 8px;
	background: #f6f6f3;
}

.jb-register-toggle button {
	min-height: 38px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: transparent;
	color: #111111;
	font-weight: 850;
	cursor: pointer;
}

.jb-register-toggle button.is-active {
	border-color: #111111;
	background: #111111;
	color: #ffffff;
}

.jb-register-employer-fields,
.jb-register-seeker-fields {
	margin-top: -4px;
}

.jb-register-newsletter {
	margin: 0;
}

.jb-hidden {
	display: none !important;
}

@media (max-width: 1060px) {
	.jb-home-hero {
		padding: 18px;
	}

	.jb-home-nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.jb-home-links {
		justify-content: flex-start;
	}

	.jb-home-hero-inner {
		padding-top: 42px;
	}

	.jb-home-copy h1 {
		max-width: 620px;
		font-size: 56px;
	}

	.jb-home-hero-inner,
	.jb-home-search-grid,
	.jb-home-live-board,
	.jb-home-process-track,
	.jb-home-feature,
	.jb-home-feature.is-reversed,
	.jb-home-alert,
	.jb-home-footer {
		grid-template-columns: 1fr;
	}

	.jb-home-board-panel {
		position: static;
	}

	.jb-home-process-track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jb-home-process-track article:nth-child(2n) {
		border-right: 0;
	}

	.jb-home-process-track article:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.jb-home-feature,
	.jb-home-feature.is-reversed {
		gap: 28px;
		padding: 46px 20px;
	}

	.jb-home-feature.is-reversed .jb-home-feature-copy {
		order: 0;
	}

	.jb-home-category-grid,
	.jb-home-skill-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jb-landing-hero {
		padding: 18px;
	}

	.jb-landing-nav,
	.jb-hero-layout,
	.jb-landing-results,
	.jb-register-layout {
		grid-template-columns: 1fr;
	}

	.jb-landing-nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.jb-landing-links {
		justify-content: flex-start;
	}

	.jb-hero-layout {
		gap: 22px;
		padding: 40px 0 28px;
	}

	.jb-hero-copy h1 {
		max-width: 620px;
		font-size: 56px;
		line-height: 1;
	}

	.jb-landing-search {
		max-width: 560px;
	}

	.jb-register-card {
		max-width: 620px;
	}

	.jb-hero-options,
	.jb-landing-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jb-hero-options a:nth-child(2) {
		border-right: 0;
	}

	.jb-hero-options a:nth-child(1),
	.jb-hero-options a:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.jb-landing-detail {
		position: static;
	}

	.jb-header,
	.jb-toolbar,
	.jb-board-grid,
	.jb-dashboard-layout {
		grid-template-columns: 1fr;
	}

	.jb-job-detail-panel {
		position: static;
		max-height: none;
		overflow: visible;
	}

	.jb-nav,
	.jb-search-intro {
		justify-content: flex-start;
	}
}

@media (max-width: 760px) {
	.jb-home-hero {
		padding: 14px;
	}

	.jb-home-nav,
	.jb-home-links,
	.jb-home-hero-inner,
	.jb-home-copy,
	.jb-home-search,
	.jb-home-command,
	.jb-register-layout,
	.jb-register-copy,
	.jb-register-card,
	.jb-nav,
	.jb-public-shell .jb-header,
	.jb-dashboard-shell .jb-header,
	.jb-public-shell .jb-search-card,
	.jb-public-shell .jb-section,
	.jb-public-shell .jb-panel,
	.jb-dashboard-shell .jb-section,
	.jb-dashboard-shell .jb-panel,
	.jb-dashboard-shell .jb-access-panel {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.jb-home-brand img {
		width: 50px;
		height: 56px;
	}

	.jb-home-brand,
	.jb-landing-brand {
		width: 100%;
		min-width: 0;
	}

	.jb-home-brand span,
	.jb-landing-brand span {
		min-width: 0;
	}

	.jb-home-brand strong {
		font-size: 15px;
	}

	.jb-home-brand small {
		font-size: 11px;
	}

	.jb-home-links a {
		flex: 1 1 calc(50% - 4px);
		min-height: 36px;
		padding: 7px 10px;
	}

	.jb-home-copy h1 {
		max-width: 100%;
		font-size: 32px;
		overflow-wrap: anywhere;
	}

	.jb-home-copy p:not(.jb-home-kicker) {
		max-width: 100%;
		font-size: 16px;
		overflow-wrap: anywhere;
	}

	.jb-home-search {
		padding: 14px;
	}

	.jb-home-search-grid,
	.jb-command-metrics,
	.jb-home-category-grid,
	.jb-home-skill-grid,
	.jb-home-news-grid,
	.jb-home-pathways,
	.jb-home-process-track,
	.jb-home-counter-strip,
	.jb-home-stats,
	.jb-home-alert form,
	.jb-workflow-grid {
		grid-template-columns: 1fr;
	}

	.jb-home-process {
		padding-right: 14px;
		padding-left: 14px;
	}

	.jb-home-process-track article {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.jb-home-process-track article:last-child {
		border-bottom: 0;
	}

	.jb-home-command,
	.jb-home-counter-strip div {
		padding: 14px;
	}

	.jb-home-counter-strip div {
		min-height: 110px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.jb-home-hero-ticker {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jb-home-service div,
	.jb-home-section,
	.jb-home-feature,
	.jb-home-band,
	.jb-home-alert,
	.jb-home-footer {
		width: min(100% - 28px, 1120px);
	}

	.jb-home-service h2,
	.jb-home-section-head h2,
	.jb-home-feature-copy h2 {
		font-size: 24px;
	}

	.jb-home-job-row {
		grid-template-columns: 44px minmax(0, 1fr);
	}

	.jb-home-job-type {
		grid-column: 2;
		justify-self: start;
	}

	.jb-home-feature-visual,
	.jb-home-collage {
		min-height: 220px;
	}

	.jb-landing-hero {
		min-height: 100svh;
		padding: 14px;
	}

	.jb-register-hero {
		padding: 14px;
	}

	.jb-landing-brand img {
		width: 46px;
		height: 52px;
	}

	.jb-landing-links a {
		flex: 1 1 calc(50% - 4px);
		min-height: 36px;
		padding: 7px 10px;
	}

	.jb-hero-layout {
		padding: 34px 0 22px;
	}

	.jb-hero-copy h1 {
		font-size: 42px;
	}

	.jb-register-copy h1 {
		max-width: 100%;
		font-size: 32px;
		overflow-wrap: anywhere;
	}

	.jb-hero-copy p:not(.jb-hero-kicker) {
		font-size: 16px;
	}

	.jb-register-copy p:not(.jb-home-kicker) {
		max-width: 100%;
		font-size: 16px;
		overflow-wrap: anywhere;
	}

	.jb-search-heading,
	.jb-search-row,
	.jb-hero-options,
	.jb-landing-strip,
	.jb-landing-results {
		grid-template-columns: 1fr;
	}

	.jb-landing-search,
	.jb-landing-jobs,
	.jb-landing-detail {
		padding: 14px;
	}

	.jb-hero-options a,
	.jb-hero-options a:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.jb-hero-options a:last-child {
		border-bottom: 0;
	}

	.jb-landing-strip div {
		min-height: 106px;
		padding: 22px;
	}

	.jb-landing-strip strong {
		font-size: 20px;
	}

	.jb-landing-results {
		padding: 14px;
	}

	.jb-shell {
		padding: 14px 10px 36px;
	}

	.jb-header {
		padding: 18px;
	}

	.jb-header h1 {
		font-size: 26px;
		overflow-wrap: anywhere;
	}

	.jb-nav a {
		flex: 1 1 calc(50% - 4px);
		min-width: 0;
		text-align: center;
	}

	.jb-public-shell,
	.jb-dashboard-shell {
		padding-right: 10px;
		padding-left: 10px;
	}

	.jb-stat-grid,
	.jb-form-grid,
	.jb-register-toggle,
	.jb-split {
		grid-template-columns: 1fr;
	}

	.jb-search-intro {
		display: block;
	}

	.jb-child-row {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 520px) {
	.jb-home-nav,
	.jb-home-links,
	.jb-home-hero-inner,
	.jb-home-copy,
	.jb-home-search,
	.jb-home-command,
	.jb-register-layout,
	.jb-register-copy,
	.jb-register-card,
	.jb-public-shell .jb-header,
	.jb-dashboard-shell .jb-header,
	.jb-public-shell .jb-search-card,
	.jb-public-shell .jb-section,
	.jb-public-shell .jb-panel,
	.jb-dashboard-shell .jb-section,
	.jb-dashboard-shell .jb-panel,
	.jb-dashboard-shell .jb-access-panel,
	.jb-nav {
		max-width: 362px;
		margin-right: 0;
		margin-left: 0;
	}
}

/* Reference-guided landing refresh: compact dark dashboard layout based on the provided mockup. */
.jb-home-shell {
	--jb-home-panel: rgba(12, 12, 12, 0.92);
	--jb-home-panel-strong: #0b0b0b;
	--jb-home-line: rgba(255, 255, 255, 0.16);
	--jb-home-line-soft: rgba(255, 255, 255, 0.09);
	--jb-home-text: #f8f8f5;
	--jb-home-subtle: rgba(255, 255, 255, 0.72);
	--jb-home-green-glow: rgba(19, 122, 75, 0.18);
	--jb-home-gold-glow: rgba(184, 165, 111, 0.18);
	--jb-home-red-glow: rgba(180, 35, 24, 0.18);
	background:
		radial-gradient(circle at 15% 5%, rgba(19, 122, 75, 0.14), transparent 28%),
		radial-gradient(circle at 86% 18%, rgba(180, 35, 24, 0.1), transparent 30%),
		linear-gradient(#050505, #050505);
	color: var(--jb-home-text);
}

.jb-home-shell::before {
	position: fixed;
	inset: 0;
	z-index: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 92px 92px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18));
	pointer-events: none;
}

.jb-home-shell > * {
	position: relative;
	z-index: 1;
}

.jb-home-hero {
	min-height: auto;
	padding: 10px 20px 28px;
	background: transparent;
	box-shadow: none;
}

.jb-home-video-shade,
.jb-hero-video {
	display: none;
}

.jb-home-nav {
	width: min(1120px, 100%);
	min-height: 64px;
	padding: 8px 0 12px;
	border-bottom: 1px solid var(--jb-home-line-soft);
}

.jb-home-brand img {
	width: 54px;
	height: 58px;
	border-radius: 6px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.jb-home-brand strong {
	color: #ffffff;
	font-size: 20px;
	line-height: 1.05;
}

.jb-home-brand small {
	color: var(--jb-home-gold);
	font-size: 12px;
	font-weight: 850;
}

.jb-home-links {
	gap: 16px;
}

.jb-home-links a {
	min-height: 34px;
	padding: 7px 11px;
	border-color: transparent;
	background: transparent;
	font-size: 13px;
	font-weight: 760;
}

.jb-home-links a:hover {
	border-color: var(--jb-home-line);
	background: rgba(255, 255, 255, 0.06);
}

.jb-home-links a.is-accent,
.jb-home-links a.is-signup {
	min-width: 84px;
	border-color: rgba(255, 255, 255, 0.22);
	border-radius: 5px;
}

.jb-home-links a.is-accent {
	background: transparent;
	color: var(--jb-home-text);
}

.jb-home-links a.is-signup {
	border-color: var(--jb-home-green);
	background: var(--jb-home-green);
	color: #ffffff;
}

.jb-home-hero-inner {
	grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.98fr);
	gap: 38px;
	width: min(1120px, 100%);
	padding-top: 30px;
}

.jb-home-copy {
	max-width: 540px;
}

.jb-home-kicker {
	margin-bottom: 12px;
	color: #20d37a;
	font-size: 12px;
}

.jb-home-copy h1 {
	max-width: 560px;
	font-size: clamp(44px, 5.5vw, 64px);
	line-height: 0.96;
	text-shadow: 0 20px 55px rgba(0, 0, 0, 0.72);
}

.jb-home-accent {
	color: #20c76e;
}

.jb-home-copy p:not(.jb-home-kicker) {
	max-width: 520px;
	margin-top: 14px;
	color: var(--jb-home-subtle);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.52;
}

.jb-home-hero-actions {
	margin-top: 22px;
}

.jb-home-primary,
.jb-home-secondary,
.jb-home-submit,
.jb-home-outline,
.jb-home-pathway .jb-button,
.jb-home-pathway .jb-button-secondary,
.jb-home-alert button {
	border-radius: 5px;
}

.jb-home-primary {
	border-color: var(--jb-home-green);
	background: var(--jb-home-green);
	color: #ffffff;
}

.jb-home-secondary {
	border-color: var(--jb-home-line);
	background: transparent;
	color: #ffffff;
}

.jb-home-primary:hover,
.jb-home-secondary:hover,
.jb-home-submit:hover,
.jb-home-alert button:hover {
	border-color: var(--jb-home-gold);
	background: var(--jb-home-gold);
	color: #111111;
}

.jb-home-search {
	width: 100%;
	margin-top: 20px;
	padding: 16px;
	border-color: var(--jb-home-line);
	border-radius: 8px;
	background: rgba(5, 5, 5, 0.78);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	backdrop-filter: none;
}

.jb-home-search h2 {
	font-size: 20px;
}

.jb-home-search-grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr) auto;
}

.jb-home-search .jb-field label,
.jb-home-search-links {
	font-size: 10px;
	text-transform: uppercase;
}

.jb-home-search .jb-field input {
	min-height: 36px;
	border-color: var(--jb-home-line);
	border-radius: 4px;
	background: #090909;
	color: #ffffff;
	font-size: 13px;
}

.jb-home-submit {
	min-height: 36px;
	padding: 8px 18px;
}

.jb-home-search-links {
	align-items: center;
}

.jb-home-search-links::before {
	content: "Popular searches:";
	color: var(--jb-home-subtle);
	font-weight: 850;
}

.jb-home-search-links a {
	min-height: 26px;
	padding: 5px 9px;
	border-color: var(--jb-home-line);
	background: rgba(255, 255, 255, 0.06);
	font-size: 10px;
}

.jb-home-command,
.jb-home-counter-strip,
.jb-home-process-track,
.jb-home-pathway,
.jb-home-jobs,
.jb-home-board-panel,
.jb-home-grid-row > .jb-home-feature,
.jb-home-grid-row > .jb-home-section,
.jb-home-alert,
.jb-home-footer {
	border: 1px solid var(--jb-home-line);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
		var(--jb-home-panel);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.jb-home-command {
	gap: 14px;
	padding: 18px;
}

.jb-command-topline {
	padding-bottom: 12px;
}

.jb-command-topline span,
.jb-command-feed > span {
	color: #20d37a;
}

.jb-command-topline strong {
	color: var(--jb-home-gold);
	font-size: 12px;
}

.jb-command-metrics {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jb-command-metrics div {
	min-height: 78px;
	padding: 12px 8px;
	border-color: var(--jb-home-line);
	background: rgba(255, 255, 255, 0.035);
}

.jb-command-metrics div:nth-child(1) strong {
	color: #20c76e;
}

.jb-command-metrics div:nth-child(2) strong {
	color: var(--jb-home-gold);
}

.jb-command-metrics div:nth-child(3) strong {
	color: #ffffff;
}

.jb-command-metrics div:nth-child(4) strong {
	color: #ff4238;
}

.jb-command-metrics strong {
	font-size: clamp(23px, 2.5vw, 32px);
	text-align: center;
}

.jb-command-metrics span {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 10px;
	text-align: center;
}

.jb-command-feed {
	padding: 12px;
	border-color: var(--jb-home-line);
	background: rgba(0, 0, 0, 0.18);
}

.jb-command-feed a {
	grid-template-columns: minmax(0, 1fr);
	padding: 10px 4px;
	border: 0;
	border-bottom: 1px solid var(--jb-home-line-soft);
	border-radius: 0;
	background: transparent;
}

.jb-command-feed a:last-child {
	border-bottom: 0;
}

.jb-command-feed strong {
	font-size: 13px;
}

.jb-command-feed a span {
	color: var(--jb-home-subtle);
	font-size: 11px;
}

.jb-home-hero-lower {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	width: min(1680px, 100%);
	margin: 18px auto 0;
}

.jb-home-hero-lower .jb-home-process {
	width: 100%;
}

.jb-home-counter-strip {
	border-color: var(--jb-home-line);
	background: var(--jb-home-panel);
}

.jb-home-counter-strip div {
	min-height: 118px;
	padding: 18px 12px;
	border-right-color: var(--jb-home-line-soft);
}

.jb-home-counter-strip div::before {
	inset: auto 18px 18px;
	width: auto;
	height: 2px;
	border-radius: 999px;
}

.jb-home-counter-strip div:nth-child(3)::before {
	background: #ffffff;
}

.jb-home-counter-strip strong,
.jb-home-stats strong {
	font-size: clamp(26px, 3vw, 34px);
}

.jb-home-counter-strip div:nth-child(1) strong,
.jb-home-stats div:nth-child(1) strong {
	color: #20c76e;
}

.jb-home-counter-strip div:nth-child(2) strong,
.jb-home-stats div:nth-child(2) strong {
	color: var(--jb-home-gold);
}

.jb-home-counter-strip div:nth-child(3) strong,
.jb-home-stats div:nth-child(3) strong {
	color: #ffffff;
}

.jb-home-counter-strip div:nth-child(4) strong,
.jb-home-stats div:nth-child(4) strong {
	color: #ff4238;
}

.jb-home-counter-strip span,
.jb-home-stats span {
	color: #ffffff;
	font-size: 12px;
	text-transform: none;
}

.jb-home-counter-strip small {
	color: var(--jb-home-subtle);
	font-size: 11px;
}

.jb-home-process {
	padding: 0;
	background: transparent;
}

.jb-home-process-track {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	height: 100%;
	margin: 0;
	border-color: var(--jb-home-line);
	background: var(--jb-home-panel);
}

.jb-home-process-track article {
	min-height: 178px;
	padding: clamp(26px, 2.5vw, 40px) clamp(20px, 2.2vw, 34px);
	border-right-color: var(--jb-home-line-soft);
}

.jb-home-process-track article::before {
	display: none;
}

.jb-home-process-track span {
	color: var(--jb-home-gold);
	font-size: clamp(28px, 2.4vw, 36px);
	line-height: 1;
}

.jb-home-process-track article:nth-child(1) span {
	color: #20c76e;
}

.jb-home-process-track article:nth-child(4) span {
	color: #ff4238;
}

.jb-home-process-track strong {
	font-size: clamp(21px, 1.7vw, 28px);
	line-height: 1.15;
}

.jb-home-process-track small {
	color: var(--jb-home-subtle);
	font-size: clamp(15.5px, 1.15vw, 18px);
	line-height: 1.42;
}

.jb-home-start {
	position: relative;
	width: min(1120px, calc(100% - 40px));
	padding: 24px 0 18px;
	background: transparent;
	overflow: hidden;
}

.jb-home-start::before,
.jb-home-start::after {
	position: absolute;
	top: 76px;
	z-index: 0;
	width: 190px;
	height: 230px;
	content: "";
	background: url("/assets/job_bank_website/ministry_labour_logo_transparent_HD.png") center / contain no-repeat;
	opacity: 0.18;
	pointer-events: none;
}

.jb-home-start::before {
	left: -112px;
	filter: drop-shadow(0 0 28px rgba(19, 122, 75, 0.5));
}

.jb-home-start::after {
	right: -112px;
	filter: drop-shadow(0 0 28px rgba(180, 35, 24, 0.48));
	transform: scaleX(-1);
}

.jb-home-start > * {
	position: relative;
	z-index: 1;
}

.jb-home-section-head {
	margin-bottom: 16px;
}

.jb-home-section-head span,
.jb-home-compact-head span,
.jb-home-feature-copy span,
.jb-home-check-grid article span,
.jb-home-alert span {
	color: var(--jb-home-gold);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-home-section-head h2,
.jb-home-compact-head h2,
.jb-home-feature-copy h2,
.jb-home-alert h2 {
	color: #ffffff;
	font-size: 22px;
	line-height: 1.18;
}

.jb-home-section-head p,
.jb-home-feature-copy p,
.jb-home-alert p {
	color: var(--jb-home-subtle);
}

.jb-home-pathways {
	gap: 22px;
	max-width: 820px;
	margin-top: 12px;
}

.jb-home-pathway {
	min-height: 196px;
	padding: 18px;
	border-color: var(--jb-home-line);
	background:
		linear-gradient(135deg, var(--jb-home-green-glow), transparent 58%),
		var(--jb-home-panel);
	color: #ffffff;
}

.jb-home-pathway.is-employer {
	background:
		linear-gradient(135deg, var(--jb-home-red-glow), transparent 58%),
		var(--jb-home-panel);
}

.jb-pathway-index {
	color: rgba(255, 255, 255, 0.08);
	font-size: 58px;
}

.jb-home-pathway h3 {
	color: #ffffff;
	font-size: 18px;
}

.jb-home-pathway ol {
	gap: 7px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
}

.jb-home-pathway ol li::marker {
	color: #20c76e;
}

.jb-home-pathway.is-employer ol li::marker {
	color: #ff4238;
}

.jb-home-pathway .jb-actions {
	margin-top: 2px;
}

.jb-home-pathway .jb-button {
	border-color: var(--jb-home-green);
	background: var(--jb-home-green);
}

.jb-home-pathway.is-employer .jb-button {
	border-color: var(--jb-home-red);
	background: var(--jb-home-red);
}

.jb-home-pathway .jb-button-secondary {
	border-color: var(--jb-home-line);
	background: transparent;
	color: #ffffff;
}

.jb-home-jobs {
	width: min(1120px, calc(100% - 40px));
	padding: 0;
	background: transparent;
}

.jb-home-jobs .jb-home-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin: 0 0 8px;
	text-align: left;
}

.jb-home-live-board {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
	gap: 18px;
	max-width: none;
}

.jb-home-job-list {
	gap: 0;
	border: 1px solid var(--jb-home-line);
	border-radius: 8px;
	background: var(--jb-home-panel);
	overflow: hidden;
}

.jb-home-job-row {
	grid-template-columns: 42px minmax(0, 1fr) auto;
	min-height: 58px;
	padding: 10px 14px;
	border: 0;
	border-bottom: 1px solid var(--jb-home-line-soft);
	border-left: 0;
	border-radius: 0;
	background: transparent;
	color: #ffffff;
	box-shadow: none;
}

.jb-home-job-row:last-child {
	border-bottom: 0;
}

.jb-home-job-row:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	transform: none;
}

.jb-home-job-logo {
	width: 28px;
	height: 20px;
	border: 0;
	border-radius: 3px;
	background: var(--jb-home-green);
	color: #ffffff;
	font-size: 9px;
	text-transform: uppercase;
}

.jb-home-job-row strong {
	color: #ffffff;
	font-size: 13px;
}

.jb-home-job-row small {
	color: var(--jb-home-subtle);
	font-size: 11px;
}

.jb-home-job-type {
	min-height: 24px;
	background: var(--jb-home-green);
	font-size: 10px;
}

.jb-home-board-panel {
	position: static;
	gap: 12px;
	padding: 16px;
	border-color: var(--jb-home-line);
	background: var(--jb-home-panel);
}

.jb-flow-steps div {
	border-color: transparent;
	background: transparent;
}

.jb-flow-meter span {
	background: linear-gradient(90deg, var(--jb-home-green), var(--jb-home-gold), var(--jb-home-red));
}

.jb-home-grid-row {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
	gap: 24px;
	width: min(1120px, calc(100% - 40px));
	margin: 14px auto 0;
}

.jb-home-grid-row.is-bottom {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
}

.jb-home-grid-row > .jb-home-feature,
.jb-home-grid-row > .jb-home-section,
.jb-home-grid-row > .jb-home-alert {
	width: 100%;
	margin: 0;
	padding: 18px;
}

.jb-home-grid-row > .jb-home-feature {
	grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr);
	gap: 18px;
}

.jb-home-feature-visual {
	min-height: 170px;
	border-color: var(--jb-home-line);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		#101010;
}

.jb-home-dashboard-card {
	left: 28px;
	right: 26px;
	top: 30px;
	padding: 12px;
	background: #171717;
}

.jb-home-dashboard-card span {
	height: 14px;
}

.jb-home-profile-card {
	right: 22px;
	bottom: 20px;
	width: 76px;
	height: 86px;
	background: #ffffff;
}

.jb-home-profile-card img {
	width: 52px;
	height: 58px;
}

.jb-home-compact-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.jb-home-compact-head h2 {
	margin: 4px 0 0;
}

.jb-home-compact-head a {
	color: #20c76e;
	font-size: 12px;
	font-weight: 850;
	text-decoration: none;
}

.jb-home-category-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: none;
}

.jb-home-category-grid a,
.jb-home-skill-grid a {
	min-height: 34px;
	padding: 8px 10px;
	border-color: var(--jb-home-line);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.035);
	color: #ffffff;
	font-size: 11px;
	font-weight: 750;
}

.jb-home-category-grid a:hover,
.jb-home-skill-grid a:hover {
	border-color: var(--jb-home-green);
	background: rgba(19, 122, 75, 0.18);
	color: #ffffff;
	transform: none;
}

.jb-home-check-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.jb-home-check-grid article {
	min-height: 118px;
	padding: 14px;
	border: 1px solid var(--jb-home-line);
	border-radius: 5px;
	background: linear-gradient(135deg, var(--jb-home-green-glow), rgba(255, 255, 255, 0.02));
}

.jb-home-check-grid article:nth-child(2) {
	background: linear-gradient(135deg, var(--jb-home-gold-glow), rgba(255, 255, 255, 0.02));
}

.jb-home-check-grid article:nth-child(3) {
	background: linear-gradient(135deg, var(--jb-home-red-glow), rgba(255, 255, 255, 0.02));
}

.jb-home-check-grid h3 {
	margin: 7px 0 0;
	color: #ffffff;
	font-size: 15px;
}

.jb-home-check-grid p {
	margin: 6px 0 10px;
	color: var(--jb-home-subtle);
	font-size: 12px;
}

.jb-home-check-grid a {
	color: #20c76e;
	font-size: 12px;
	font-weight: 850;
	text-decoration: none;
}

.jb-home-check-grid article:nth-child(2) a {
	color: var(--jb-home-gold);
}

.jb-home-check-grid article:nth-child(3) a {
	color: #ff5b52;
}

.jb-home-alert {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-content: center;
	padding: 18px;
}

.jb-home-alert form {
	grid-template-columns: minmax(0, 1fr) auto;
}

.jb-home-alert input {
	min-height: 38px;
	border-color: var(--jb-home-line);
	border-radius: 5px;
	background: #080808;
	color: #ffffff;
}

.jb-home-alert button {
	min-height: 38px;
	border-color: var(--jb-home-green);
	background: var(--jb-home-green);
	color: #ffffff;
}

.jb-home-stats {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	margin-top: 22px;
	border-top: 1px solid var(--jb-home-line);
	border-bottom: 1px solid var(--jb-home-line);
	background:
		linear-gradient(90deg, var(--jb-home-green) 0 25%, var(--jb-home-gold) 25% 50%, #ffffff 50% 75%, var(--jb-home-red) 75% 100%) top / 100% 3px no-repeat,
		#050505;
}

.jb-home-stats div {
	min-height: 82px;
	border-right: 1px solid var(--jb-home-line-soft);
}

.jb-home-stats div:last-child {
	border-right: 0;
}

.jb-home-footer {
	grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
	width: min(1120px, calc(100% - 40px));
	margin-top: 0;
	padding: 24px 0 30px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.jb-home-footer-brand img {
	width: 52px;
	height: 58px;
}

@media (max-width: 1100px) {
	.jb-home-hero-inner,
	.jb-home-hero-lower,
	.jb-home-grid-row,
	.jb-home-grid-row.is-bottom {
		grid-template-columns: 1fr;
	}

	.jb-home-copy {
		max-width: 680px;
	}

	.jb-home-command {
		max-width: none;
	}
}

@media (max-width: 760px) {
	.jb-home-hero {
		padding: 12px 14px 22px;
	}

	.jb-home-links {
		gap: 8px;
	}

	.jb-home-hero-inner {
		padding-top: 22px;
	}

	.jb-home-copy h1 {
		font-size: 38px;
	}

	.jb-command-metrics,
	.jb-home-hero-lower .jb-home-counter-strip,
	.jb-home-process-track,
	.jb-home-pathways,
	.jb-home-live-board,
	.jb-home-category-grid,
	.jb-home-check-grid,
	.jb-home-stats,
	.jb-home-footer {
		grid-template-columns: 1fr;
	}

	.jb-home-grid-row,
	.jb-home-start,
	.jb-home-jobs,
	.jb-home-footer {
		width: min(100% - 28px, 1120px);
	}

	.jb-home-grid-row > .jb-home-feature {
		grid-template-columns: 1fr;
	}

	.jb-home-feature-visual {
		display: none;
	}

	.jb-home-counter-strip div,
	.jb-home-stats div {
		border-right: 0;
		border-bottom: 1px solid var(--jb-home-line-soft);
	}

	.jb-home-counter-strip div:last-child,
	.jb-home-stats div:last-child {
		border-bottom: 0;
	}

	.jb-home-alert form {
		grid-template-columns: 1fr;
	}
}

/* Shared clickable hover polish: a short sweep, lift, and ring without lowering text contrast. */
.jb-home-shell,
.jb-shell,
.jb-register-shell,
.jb-landing-shell {
	--jb-hover-gold: #6f5f2a;
	--jb-hover-ring: rgba(184, 165, 111, 0.48);
	--jb-hover-glow: rgba(184, 165, 111, 0.32);
	--jb-hover-sheen: rgba(255, 255, 255, 0.24);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] {
	--jb-hover-ring: rgba(19, 122, 75, 0.55);
	--jb-hover-glow: rgba(19, 122, 75, 0.38);
}

.jb-dashboard-shell[data-job-bank-page="employer"] {
	--jb-hover-ring: rgba(180, 35, 24, 0.55);
	--jb-hover-glow: rgba(180, 35, 24, 0.34);
}

:where(
	.jb-home-links a,
	.jb-home-primary,
	.jb-home-secondary,
	.jb-home-submit,
	.jb-home-outline,
	.jb-home-search-links a,
	.jb-home-pathway .jb-button,
	.jb-home-pathway .jb-button-secondary,
	.jb-home-alert button,
	.jb-landing-button,
	.jb-landing-links a,
	.jb-hero-options a,
	.jb-nav a,
	.jb-button,
	.jb-button-secondary,
	.jb-button-danger,
	.jb-register-toggle button
) {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	transition:
		transform 160ms ease,
		border-color 160ms ease,
		background-color 160ms ease,
		box-shadow 160ms ease,
		color 160ms ease;
}

:where(
	.jb-home-links a,
	.jb-home-primary,
	.jb-home-secondary,
	.jb-home-submit,
	.jb-home-outline,
	.jb-home-search-links a,
	.jb-home-pathway .jb-button,
	.jb-home-pathway .jb-button-secondary,
	.jb-home-alert button,
	.jb-landing-button,
	.jb-landing-links a,
	.jb-hero-options a,
	.jb-nav a,
	.jb-button,
	.jb-button-secondary,
	.jb-button-danger,
	.jb-register-toggle button
)::before {
	position: absolute;
	inset: -2px -42%;
	z-index: 0;
	content: "";
	background: linear-gradient(110deg, transparent 28%, var(--jb-hover-sheen) 50%, transparent 72%);
	opacity: 0;
	pointer-events: none;
	transform: translateX(-160%) skewX(-18deg);
	transition:
		opacity 120ms ease,
		transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

:where(
	.jb-home-links a,
	.jb-home-primary,
	.jb-home-secondary,
	.jb-home-submit,
	.jb-home-outline,
	.jb-home-search-links a,
	.jb-home-pathway .jb-button,
	.jb-home-pathway .jb-button-secondary,
	.jb-home-alert button,
	.jb-landing-button,
	.jb-landing-links a,
	.jb-hero-options a,
	.jb-nav a,
	.jb-button,
	.jb-button-secondary,
	.jb-button-danger,
	.jb-register-toggle button
):is(:hover, :focus-visible) {
	transform: translateY(-2px);
	box-shadow:
		0 14px 30px rgba(0, 0, 0, 0.24),
		0 0 0 1px var(--jb-hover-ring),
		0 0 24px var(--jb-hover-glow);
	text-decoration: none;
}

:where(
	.jb-home-links a,
	.jb-home-primary,
	.jb-home-secondary,
	.jb-home-submit,
	.jb-home-outline,
	.jb-home-search-links a,
	.jb-home-pathway .jb-button,
	.jb-home-pathway .jb-button-secondary,
	.jb-home-alert button,
	.jb-landing-button,
	.jb-landing-links a,
	.jb-hero-options a,
	.jb-nav a,
	.jb-button,
	.jb-button-secondary,
	.jb-button-danger,
	.jb-register-toggle button
):is(:hover, :focus-visible)::before {
	opacity: 0.62;
	transform: translateX(160%) skewX(-18deg);
}

:where(
	.jb-home-links a,
	.jb-home-primary,
	.jb-home-secondary,
	.jb-home-submit,
	.jb-home-outline,
	.jb-home-search-links a,
	.jb-home-pathway .jb-button,
	.jb-home-pathway .jb-button-secondary,
	.jb-home-alert button,
	.jb-landing-button,
	.jb-landing-links a,
	.jb-hero-options a,
	.jb-nav a,
	.jb-button,
	.jb-button-secondary,
	.jb-button-danger,
	.jb-register-toggle button
):focus-visible {
	outline: 3px solid var(--jb-hover-ring);
	outline-offset: 3px;
}

.jb-home-shell .jb-home-primary:is(:hover, :focus-visible),
.jb-home-shell .jb-home-links a.is-signup:is(:hover, :focus-visible),
.jb-home-shell .jb-home-pathway .jb-button:is(:hover, :focus-visible),
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-button:is(:hover, :focus-visible) {
	border-color: #20a869;
	background: linear-gradient(135deg, #15965b, #0e5f3a);
	color: #ffffff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.jb-dashboard-shell[data-job-bank-page="employer"] .jb-button:is(:hover, :focus-visible),
.jb-home-shell .jb-home-pathway.is-employer .jb-button:is(:hover, :focus-visible) {
	border-color: #d14a3f;
	background: linear-gradient(135deg, #c72b20, #7e180f);
	color: #ffffff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.38);
}

.jb-home-shell .jb-home-submit:is(:hover, :focus-visible),
.jb-public-shell .jb-button:is(:hover, :focus-visible),
.jb-home-shell .jb-home-alert button:is(:hover, :focus-visible),
.jb-register-toggle button.is-active:is(:hover, :focus-visible) {
	border-color: var(--jb-hover-gold);
	background: linear-gradient(135deg, #ffffff, var(--jb-hover-gold));
	color: #080808;
	text-shadow: none;
}

.jb-home-shell .jb-home-secondary:is(:hover, :focus-visible),
.jb-home-shell .jb-home-outline:is(:hover, :focus-visible),
.jb-home-shell .jb-home-search-links a:is(:hover, :focus-visible),
.jb-home-shell .jb-home-links a:not(.is-signup):not(.is-accent):is(:hover, :focus-visible),
.jb-nav a:is(:hover, :focus-visible),
.jb-landing-links a:not(.is-solid):is(:hover, :focus-visible),
.jb-landing-button:is(:hover, :focus-visible),
.jb-hero-options a:is(:hover, :focus-visible),
.jb-button-secondary:is(:hover, :focus-visible),
.jb-register-toggle button:not(.is-active):is(:hover, :focus-visible) {
	border-color: var(--jb-hover-gold);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.32);
}

.jb-home-shell .jb-home-links a.is-accent:is(:hover, :focus-visible),
.jb-public-shell .jb-button-secondary:is(:hover, :focus-visible),
.jb-dashboard-shell .jb-button-secondary:is(:hover, :focus-visible) {
	border-color: #ffffff;
	background: #ffffff;
	color: #080808;
	text-shadow: none;
}

.jb-button-danger:is(:hover, :focus-visible) {
	border-color: #d14a3f;
	background: linear-gradient(135deg, #c72b20, #7e180f);
	color: #ffffff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.38);
}

@media (prefers-reduced-motion: reduce) {
	:where(
		.jb-home-links a,
		.jb-home-primary,
		.jb-home-secondary,
		.jb-home-submit,
		.jb-home-outline,
		.jb-home-search-links a,
		.jb-home-pathway .jb-button,
		.jb-home-pathway .jb-button-secondary,
		.jb-home-alert button,
		.jb-landing-button,
		.jb-landing-links a,
		.jb-hero-options a,
		.jb-nav a,
		.jb-button,
		.jb-button-secondary,
		.jb-button-danger,
		.jb-register-toggle button
	) {
		transition: none;
	}

	:where(
		.jb-home-links a,
		.jb-home-primary,
		.jb-home-secondary,
		.jb-home-submit,
		.jb-home-outline,
		.jb-home-search-links a,
		.jb-home-pathway .jb-button,
		.jb-home-pathway .jb-button-secondary,
		.jb-home-alert button,
		.jb-landing-button,
		.jb-landing-links a,
		.jb-hero-options a,
		.jb-nav a,
		.jb-button,
		.jb-button-secondary,
		.jb-button-danger,
		.jb-register-toggle button
	)::before {
		display: none;
	}
}

/* Search placeholders stay readable at rest, then disappear when the field receives focus. */
.jb-home-search .jb-field input::placeholder,
.jb-home-alert input::placeholder,
.jb-dashboard-shell .jb-field input::placeholder,
.jb-dashboard-shell .jb-field textarea::placeholder {
	color: #d8c98f;
	font-weight: 750;
	opacity: 1;
}

.jb-public-shell .jb-field input::placeholder,
.jb-public-shell .jb-field textarea::placeholder,
.jb-register-shell .jb-field input::placeholder,
.jb-register-shell .jb-field textarea::placeholder {
	color: #5b523f;
	font-weight: 700;
	opacity: 1;
}

.jb-home-search .jb-field input:focus::placeholder,
.jb-home-alert input:focus::placeholder,
.jb-public-shell .jb-field input:focus::placeholder,
.jb-public-shell .jb-field textarea:focus::placeholder,
.jb-register-shell .jb-field input:focus::placeholder,
.jb-register-shell .jb-field textarea:focus::placeholder,
.jb-dashboard-shell .jb-field input:focus::placeholder,
.jb-dashboard-shell .jb-field textarea:focus::placeholder {
	color: transparent;
	opacity: 0;
}

/* Locked portal theme: landing-page visual language carried across the working pages. */
.jb-public-shell,
.jb-dashboard-shell,
.jb-register-shell {
	--jb-page-accent: #b8a56f;
	--jb-page-accent-strong: #6f5f2a;
	--jb-page-accent-soft: rgba(184, 165, 111, 0.18);
	--jb-page-accent-line: rgba(184, 165, 111, 0.5);
	--jb-page-panel: rgba(16, 16, 16, 0.94);
	--jb-page-panel-strong: #0b0b0b;
	--jb-page-panel-soft: rgba(255, 255, 255, 0.065);
	--jb-page-line: rgba(255, 255, 255, 0.16);
	--jb-page-line-strong: rgba(255, 255, 255, 0.26);
	--jb-page-text: #f8f8f5;
	--jb-page-muted: rgba(255, 255, 255, 0.78);
	--jb-page-faint: rgba(255, 255, 255, 0.62);
	--jb-page-field: #101010;
	--jb-page-field-soft: #151515;
	--jb-page-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

/* Public job search uses gold as the priority accent. */
.jb-public-shell,
.jb-dashboard-shell[data-job-bank-page="admin"] {
	--jb-gold-500: var(--jb-page-accent);
}

/* Job seeker work surfaces use the logo green as their priority accent. */
.jb-dashboard-shell[data-job-bank-page="job-seeker"] {
	--jb-page-accent: #137a4b;
	--jb-page-accent-strong: #0f633d;
	--jb-page-accent-soft: rgba(19, 122, 75, 0.2);
	--jb-page-accent-line: rgba(19, 122, 75, 0.52);
	--jb-gold-500: var(--jb-page-accent);
}

/* Employer work surfaces use the logo red as their priority accent. */
.jb-dashboard-shell[data-job-bank-page="employer"] {
	--jb-page-accent: #b42318;
	--jb-page-accent-strong: #8f1c13;
	--jb-page-accent-soft: rgba(180, 35, 24, 0.2);
	--jb-page-accent-line: rgba(233, 108, 95, 0.54);
	--jb-gold-500: var(--jb-page-accent);
}

.jb-public-shell,
.jb-dashboard-shell {
	background-color: #050505;
	background-image:
		radial-gradient(circle at 10% 0%, var(--jb-page-accent-soft), transparent 30%),
		radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.055), transparent 32%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 96px),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 96px),
		linear-gradient(180deg, #050505 0%, #0b0b0b 50%, #050505 100%);
	color: var(--jb-page-text);
}

.jb-public-shell .jb-header,
.jb-dashboard-shell .jb-header,
.jb-public-shell .jb-search-card,
.jb-public-shell .jb-section,
.jb-public-shell .jb-panel,
.jb-dashboard-shell .jb-section,
.jb-dashboard-shell .jb-panel,
.jb-dashboard-shell .jb-access-panel,
.jb-dashboard-shell .jb-table-wrap,
.jb-dashboard-shell .jb-kpi,
.jb-dashboard-shell .jb-child-editor,
.jb-dashboard-shell .jb-child-row {
	border-color: var(--jb-page-line);
	background:
		linear-gradient(135deg, var(--jb-page-panel-soft), rgba(255, 255, 255, 0.018)),
		var(--jb-page-panel);
	color: var(--jb-page-text);
	box-shadow: var(--jb-page-shadow);
}

.jb-public-shell .jb-header,
.jb-dashboard-shell .jb-header {
	border-top: 3px solid var(--jb-page-accent);
}

.jb-public-shell .jb-search-card,
.jb-public-shell .jb-section,
.jb-public-shell .jb-panel,
.jb-dashboard-shell .jb-section,
.jb-dashboard-shell .jb-panel,
.jb-dashboard-shell .jb-access-panel {
	border-top: 3px solid var(--jb-page-accent);
}

.jb-header-brand {
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.jb-header-brand img {
	box-shadow: none;
}

.jb-public-shell .jb-eyebrow,
.jb-dashboard-shell .jb-eyebrow,
.jb-public-shell .jb-search-intro p span,
.jb-dashboard-shell .jb-subheading {
	color: var(--jb-page-accent);
}

.jb-public-shell .jb-header h1,
.jb-dashboard-shell .jb-header h1,
.jb-public-shell .jb-search-intro h2,
.jb-public-shell .jb-section-header h2,
.jb-public-shell .jb-panel h2,
.jb-dashboard-shell .jb-section-header h2,
.jb-dashboard-shell .jb-panel h2,
.jb-dashboard-shell .jb-access-panel h2,
.jb-dashboard-shell .jb-kpi strong {
	color: var(--jb-page-text);
	font-weight: 900;
}

.jb-public-shell .jb-header p,
.jb-dashboard-shell .jb-header p,
.jb-public-shell .jb-search-intro p,
.jb-public-shell .jb-section-header p,
.jb-public-shell .jb-panel p,
.jb-dashboard-shell .jb-section-header p,
.jb-dashboard-shell .jb-panel p,
.jb-dashboard-shell .jb-access-panel p,
.jb-dashboard-shell .jb-kpi span,
.jb-dashboard-shell .jb-empty {
	color: var(--jb-page-muted);
	font-weight: 650;
	line-height: 1.55;
}

.jb-public-shell .jb-section-header,
.jb-public-shell .jb-landing-section-head,
.jb-dashboard-shell .jb-section-header {
	border-bottom-color: var(--jb-page-line);
}

.jb-public-shell .jb-field label,
.jb-dashboard-shell .jb-field label,
.jb-dashboard-shell .jb-checkbox-field,
.jb-register-shell .jb-field label,
.jb-register-shell .jb-checkbox-field {
	color: rgba(255, 255, 255, 0.86);
	font-weight: 850;
}

.jb-public-shell .jb-field input,
.jb-public-shell .jb-field select,
.jb-public-shell .jb-field textarea,
.jb-dashboard-shell .jb-field input,
.jb-dashboard-shell .jb-field select,
.jb-dashboard-shell .jb-field textarea,
.jb-register-shell .jb-field input,
.jb-register-shell .jb-field select,
.jb-register-shell .jb-field textarea {
	border-color: var(--jb-page-line-strong);
	background: var(--jb-page-field);
	color: var(--jb-page-text);
	font-size: 14.5px;
	font-weight: 650;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.jb-public-shell .jb-field input:focus,
.jb-public-shell .jb-field select:focus,
.jb-public-shell .jb-field textarea:focus,
.jb-dashboard-shell .jb-field input:focus,
.jb-dashboard-shell .jb-field select:focus,
.jb-dashboard-shell .jb-field textarea:focus,
.jb-register-shell .jb-field input:focus,
.jb-register-shell .jb-field select:focus,
.jb-register-shell .jb-field textarea:focus {
	outline-color: var(--jb-page-accent-soft);
	border-color: var(--jb-page-accent);
}

.jb-public-shell .jb-field select option,
.jb-dashboard-shell .jb-field select option,
.jb-register-shell .jb-field select option {
	background: var(--jb-page-field);
	color: var(--jb-page-text);
}

.jb-public-shell .jb-field input::placeholder,
.jb-public-shell .jb-field textarea::placeholder,
.jb-dashboard-shell .jb-field input::placeholder,
.jb-dashboard-shell .jb-field textarea::placeholder,
.jb-register-shell .jb-field input::placeholder,
.jb-register-shell .jb-field textarea::placeholder {
	color: #d8c98f;
	font-weight: 750;
	opacity: 1;
}

.jb-public-shell .jb-button,
.jb-dashboard-shell .jb-button,
.jb-register-shell .jb-button {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent);
	color: #080808;
	font-weight: 850;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-button,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-button {
	color: #ffffff;
}

.jb-public-shell .jb-button-secondary,
.jb-dashboard-shell .jb-button-secondary,
.jb-register-shell .jb-button-secondary {
	border-color: var(--jb-page-line-strong);
	background: rgba(255, 255, 255, 0.07);
	color: var(--jb-page-text);
}

.jb-public-shell .jb-button:is(:hover, :focus-visible),
.jb-dashboard-shell .jb-button:is(:hover, :focus-visible),
.jb-register-shell .jb-button:is(:hover, :focus-visible) {
	border-color: var(--jb-page-accent-strong);
	background: linear-gradient(135deg, var(--jb-page-accent), var(--jb-page-accent-strong));
	color: #ffffff;
}

.jb-public-shell .jb-button-secondary:is(:hover, :focus-visible),
.jb-dashboard-shell .jb-button-secondary:is(:hover, :focus-visible),
.jb-register-shell .jb-button-secondary:is(:hover, :focus-visible) {
	border-color: var(--jb-page-accent);
	background: rgba(255, 255, 255, 0.12);
	color: var(--jb-page-text);
}

.jb-public-shell .jb-stat,
.jb-dashboard-shell .jb-stat {
	border-color: var(--jb-page-line);
	border-top-color: var(--jb-page-accent);
	background:
		linear-gradient(135deg, var(--jb-page-accent-soft), rgba(255, 255, 255, 0.02)),
		var(--jb-page-panel);
	color: var(--jb-page-text);
	box-shadow: var(--jb-page-shadow);
}

.jb-public-shell .jb-stat span,
.jb-dashboard-shell .jb-stat span {
	color: var(--jb-page-text);
	font-weight: 900;
}

.jb-public-shell .jb-stat small,
.jb-dashboard-shell .jb-stat small {
	color: var(--jb-page-muted);
}

.jb-public-shell .jb-card,
.jb-dashboard-shell .jb-card {
	border-color: var(--jb-page-line);
	border-left-color: transparent;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
		#141414;
	color: var(--jb-page-text);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.jb-public-shell .jb-card:hover,
.jb-dashboard-shell .jb-card:hover,
.jb-public-shell .jb-card.is-active,
.jb-dashboard-shell .jb-card.is-active {
	border-color: var(--jb-page-accent-line);
	border-left-color: var(--jb-page-accent);
	background:
		linear-gradient(135deg, var(--jb-page-accent-soft), rgba(255, 255, 255, 0.02)),
		#181818;
	box-shadow: 0 0 0 3px var(--jb-page-accent-soft), 0 18px 44px rgba(0, 0, 0, 0.32);
}

.jb-public-shell .jb-card h3,
.jb-dashboard-shell .jb-card h3,
.jb-dashboard-shell .jb-child-editor h3,
.jb-dashboard-shell .jb-child-row strong {
	color: var(--jb-page-text);
	font-weight: 850;
}

.jb-public-shell .jb-card p,
.jb-public-shell .jb-card-meta,
.jb-public-shell .jb-row-meta,
.jb-dashboard-shell .jb-card p,
.jb-dashboard-shell .jb-card-meta,
.jb-dashboard-shell .jb-row-meta,
.jb-dashboard-shell .jb-child-row span,
.jb-dashboard-shell .jb-file-line {
	color: var(--jb-page-muted);
}

.jb-public-shell .jb-pill,
.jb-public-shell .jb-file-link,
.jb-dashboard-shell .jb-pill,
.jb-dashboard-shell .jb-file-link,
.jb-dashboard-shell .jb-status-steps span {
	border-color: var(--jb-page-line-strong);
	background: rgba(255, 255, 255, 0.08);
	color: var(--jb-page-text);
}

.jb-dashboard-shell .jb-status-steps span.is-active,
.jb-dashboard-shell .jb-status-steps span.is-complete {
	border-color: var(--jb-page-accent-line);
	background: var(--jb-page-accent-soft);
	color: var(--jb-page-text);
}

.jb-public-shell .jb-empty,
.jb-public-shell .jb-status,
.jb-dashboard-shell .jb-empty,
.jb-dashboard-shell .jb-status,
.jb-dashboard-shell .jb-code-panel {
	border-color: var(--jb-page-line);
	background: rgba(255, 255, 255, 0.06);
	color: var(--jb-page-muted);
}

.jb-dashboard-shell .jb-table-wrap {
	background: var(--jb-page-panel-strong);
}

.jb-dashboard-shell .jb-report-table th,
.jb-dashboard-shell .jb-report-table td {
	border-bottom-color: var(--jb-page-line);
	color: var(--jb-page-muted);
}

.jb-dashboard-shell .jb-report-table th {
	color: var(--jb-page-text);
}

.jb-public-shell .jb-detail-body {
	color: var(--jb-page-muted);
	font-size: 17px;
	line-height: 1.75;
}

.jb-public-shell .jb-job-detail-panel {
	border-top-color: var(--jb-page-accent);
	scrollbar-color: var(--jb-page-accent) #111111;
}

.jb-register-shell {
	--jb-page-accent: #b8a56f;
	--jb-page-accent-strong: #6f5f2a;
	--jb-page-accent-soft: rgba(184, 165, 111, 0.18);
	--jb-page-accent-line: rgba(184, 165, 111, 0.5);
}

.jb-register-shell .jb-register-hero {
	background:
		radial-gradient(circle at 12% 0%, rgba(19, 122, 75, 0.14), transparent 28%),
		radial-gradient(circle at 88% 12%, rgba(180, 35, 24, 0.1), transparent 30%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 96px),
		#050505;
}

.jb-register-shell .jb-register-card {
	border-color: var(--jb-page-accent-line);
	border-top: 3px solid var(--jb-page-accent);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
		var(--jb-page-panel);
	color: var(--jb-page-text);
	box-shadow: var(--jb-page-shadow);
}

.jb-register-shell .jb-register-card-head {
	border-bottom-color: var(--jb-page-line);
}

.jb-register-shell .jb-register-card h2,
.jb-register-shell .jb-register-card p {
	color: var(--jb-page-text);
}

.jb-register-shell .jb-register-card p {
	color: var(--jb-page-muted);
}

.jb-register-shell .jb-register-toggle {
	border-color: var(--jb-page-line);
	background: var(--jb-page-field);
}

.jb-register-shell .jb-register-toggle button {
	color: var(--jb-page-text);
}

.jb-register-shell .jb-register-toggle button.is-active {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent);
	color: #080808;
}

.jb-register-shell .jb-workflow-grid article {
	border-color: var(--jb-page-line);
	background:
		linear-gradient(135deg, var(--jb-page-accent-soft), rgba(255, 255, 255, 0.025)),
		rgba(10, 10, 10, 0.82);
}

.jb-register-shell .jb-workflow-grid span {
	color: var(--jb-page-accent);
}

@media (max-width: 900px) {
	.jb-public-shell .jb-toolbar,
	.jb-public-shell .jb-board-grid,
	.jb-dashboard-shell .jb-dashboard-layout,
	.jb-dashboard-shell .jb-admin-layout {
		grid-template-columns: 1fr;
	}

	.jb-public-shell .jb-job-detail-panel {
		position: static;
		max-height: none;
	}
}

@media (max-width: 620px) {
	.jb-home-search-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.jb-home-search .jb-field input,
	.jb-home-submit {
		width: 100%;
		min-height: 44px;
		font-size: 14px;
	}

	.jb-home-search-links::before {
		flex-basis: 100%;
	}

	.jb-home-search-links a {
		flex: 1 1 calc(50% - 8px);
	}
}

/* Keep the public brand lockup consistent across landing, auth, and portal pages. */
.jb-home-brand,
.jb-header-brand {
	display: inline-flex;
	gap: 13px;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
}

.jb-home-brand:hover,
.jb-home-brand:focus-visible,
.jb-home-brand:visited,
.jb-header-brand:hover,
.jb-header-brand:focus-visible,
.jb-header-brand:visited {
	color: #ffffff;
	text-decoration: none;
}

.jb-home-brand strong,
.jb-brand-text strong {
	color: #ffffff;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.05;
	text-transform: uppercase;
}

.jb-home-brand small,
.jb-brand-text small {
	color: #6f5f2a;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.25;
}

.jb-home-brand img,
.jb-header-brand img {
	flex: 0 0 auto;
	background: #ffffff;
}

.jb-brand-text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

@media (max-width: 620px) {
	.jb-header-brand {
		width: 100%;
		min-width: 0;
	}

	.jb-home-brand strong,
	.jb-brand-text strong {
		font-size: 16px;
	}

	.jb-home-brand small,
	.jb-brand-text small {
		font-size: 11px;
	}
}

/* Workspace tabs keep protected portal pages focused instead of showing every form at once. */
.jb-workspace-tabs {
	position: sticky;
	top: 0;
	z-index: 8;
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 16px 0;
	padding: 10px;
	border: 1px solid var(--jb-page-line);
	border-radius: 8px;
	background:
		linear-gradient(135deg, var(--jb-page-panel-soft), rgba(255, 255, 255, 0.012)),
		rgba(10, 10, 10, 0.94);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
	overflow-x: auto;
	scrollbar-width: thin;
}

.jb-workspace-tabs button {
	flex: 1 0 128px;
	min-height: 46px;
	padding: 10px 16px;
	border: 1px solid var(--jb-page-line-strong);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.075);
	color: var(--jb-page-text);
	font: inherit;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0;
	text-align: center;
	cursor: pointer;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.jb-workspace-tabs button:hover,
.jb-workspace-tabs button:focus-visible {
	border-color: var(--jb-page-accent-line);
	background: var(--jb-page-accent-soft);
	color: var(--jb-page-text);
	box-shadow: 0 0 0 3px var(--jb-page-accent-soft);
	transform: translateY(-1px);
}

.jb-workspace-tabs button.is-active {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent);
	color: #080808;
	box-shadow: 0 14px 34px var(--jb-page-accent-soft);
}

.jb-workspace-hidden,
[data-jb-workspace-panel][hidden],
.jb-primary-column[hidden],
.jb-secondary-column[hidden] {
	display: none !important;
}

.jb-dashboard-layout.is-single-column {
	grid-template-columns: minmax(0, 1fr);
}

.jb-dashboard-layout.is-single-column > .jb-primary-column,
.jb-dashboard-layout.is-single-column > .jb-secondary-column {
	grid-column: 1 / -1;
}

.jb-dashboard-shell [data-jb-workspace-panel]:not([hidden]) {
	scroll-margin-top: 92px;
}

@media (min-width: 901px) {
	.jb-dashboard-shell [data-jb-workspace-panel]:not([hidden]) {
		max-height: min(76vh, 860px);
		overflow: auto;
	}
}

@media (max-width: 620px) {
	.jb-workspace-tabs {
		position: static;
		gap: 8px;
		margin: 12px 0;
		padding: 8px;
	}

	.jb-workspace-tabs button {
		flex-basis: 132px;
		min-height: 42px;
		font-size: 14px;
	}
}

/* Landing-only light preview: invert the black presentation while keeping logo accents. */
.jb-home-shell[data-job-bank-page="landing"] {
	--jb-home-panel: rgba(255, 255, 255, 0.92);
	--jb-home-panel-strong: #ffffff;
	--jb-home-line: rgba(0, 0, 0, 0.18);
	--jb-home-line-soft: rgba(0, 0, 0, 0.1);
	--jb-home-text: #080808;
	--jb-home-subtle: rgba(8, 8, 8, 0.7);
	--jb-home-green-glow: rgba(19, 122, 75, 0.12);
	--jb-home-gold-glow: rgba(184, 165, 111, 0.16);
	--jb-home-red-glow: rgba(180, 35, 24, 0.1);
	background:
		radial-gradient(circle at 15% 5%, rgba(19, 122, 75, 0.1), transparent 28%),
		radial-gradient(circle at 86% 18%, rgba(180, 35, 24, 0.08), transparent 30%),
		linear-gradient(#ffffff, #f5f5f2);
	color: var(--jb-home-text);
}

.jb-home-shell[data-job-bank-page="landing"]::before {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px),
		linear-gradient(180deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.16));
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-brand,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-brand:hover,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-brand:focus-visible,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-brand:visited,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-links a,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-secondary,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-outline,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-pathway .jb-button-secondary {
	color: var(--jb-home-text);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-brand strong,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-copy h1,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-search h2,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-section-head h2,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-compact-head h2,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-feature-copy h2,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-alert h2,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-pathway h3,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-job-row strong,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-check-grid h3,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-footer h3,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-process-track strong,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed strong {
	color: var(--jb-home-text);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-copy h1 {
	text-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-copy p:not(.jb-home-kicker),
.jb-home-shell[data-job-bank-page="landing"] .jb-home-section-head p,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-feature-copy p,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-alert p,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-pathway ol,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-job-row small,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-check-grid p,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-footer a,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-footer-brand span,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-process-track small,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed a span,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-metrics span,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-counter-strip small,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-search .jb-field label,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-search-links,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-search-links::before {
	color: var(--jb-home-subtle);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-search,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-command,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-counter-strip,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-process-track,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-pathway,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-job-list,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-board-panel,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-grid-row > .jb-home-feature,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-grid-row > .jb-home-section,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-alert {
	border-color: var(--jb-home-line);
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.025), rgba(255, 255, 255, 0.7)),
		var(--jb-home-panel);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-nav,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-topline,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed a,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-job-row,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-stats div,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-counter-strip div,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-process-track article {
	border-color: var(--jb-home-line-soft);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-links a:hover,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-search-links a,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-metrics div,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-category-grid a,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-skill-grid a {
	border-color: var(--jb-home-line);
	background: rgba(0, 0, 0, 0.035);
	color: var(--jb-home-text);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-search .jb-field input,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-alert input {
	border-color: var(--jb-home-line);
	background: #ffffff;
	color: var(--jb-home-text);
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-search .jb-field input::placeholder,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-alert input::placeholder {
	color: #8a7a47;
	opacity: 1;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-secondary,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-outline,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-pathway .jb-button-secondary,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-links a.is-accent {
	border-color: var(--jb-home-line);
	background: rgba(255, 255, 255, 0.64);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-submit {
	border-color: var(--jb-home-text);
	background: var(--jb-home-text);
	color: #ffffff;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-submit:hover,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-secondary:hover,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-outline:hover,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-pathway .jb-button-secondary:hover {
	border-color: var(--jb-home-gold);
	background: var(--jb-home-gold);
	color: #080808;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-feature-visual {
	border-color: var(--jb-home-line);
	background: rgba(255, 255, 255, 0.68);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-dashboard-card {
	background: #ffffff;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-profile-card {
	border: 1px solid var(--jb-home-line-soft);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-stats {
	background:
		linear-gradient(90deg, var(--jb-home-green) 0 25%, var(--jb-home-gold) 25% 50%, #080808 50% 75%, var(--jb-home-red) 75% 100%) top / 100% 3px no-repeat,
		#ffffff;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-counter-strip span,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-stats span,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-metrics div:nth-child(3) strong,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-counter-strip div:nth-child(3) strong,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-stats div:nth-child(3) strong {
	color: var(--jb-home-text);
}

/* Ministry light theme: public, register, role, and admin pages use white surfaces. */
.jb-public-shell,
.jb-dashboard-shell,
.jb-register-shell {
	--jb-page-panel: rgba(255, 255, 255, 0.94);
	--jb-page-panel-strong: #ffffff;
	--jb-page-panel-soft: rgba(0, 0, 0, 0.025);
	--jb-page-line: rgba(8, 8, 8, 0.16);
	--jb-page-line-strong: rgba(8, 8, 8, 0.28);
	--jb-page-text: #080808;
	--jb-page-muted: rgba(8, 8, 8, 0.72);
	--jb-page-faint: rgba(8, 8, 8, 0.56);
	--jb-page-field: #ffffff;
	--jb-page-field-soft: #f6f6f3;
	--jb-page-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	--jb-page-accent-contrast: #080808;
	background-color: #ffffff;
	background-image:
		radial-gradient(circle at 10% 0%, var(--jb-page-accent-soft), transparent 30%),
		radial-gradient(circle at 92% 12%, rgba(180, 35, 24, 0.055), transparent 32%),
		repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.045) 0, rgba(0, 0, 0, 0.045) 1px, transparent 1px, transparent 96px),
		repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.035) 0, rgba(0, 0, 0, 0.035) 1px, transparent 1px, transparent 96px),
		linear-gradient(180deg, #ffffff 0%, #f7f7f3 52%, #ffffff 100%);
	color: var(--jb-page-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] {
	--jb-page-accent-contrast: #ffffff;
	--jb-seeker-field-bg: #ffffff;
	--jb-seeker-field-bg-soft: #f6fbf7;
	--jb-seeker-field-line: rgba(19, 122, 75, 0.32);
	--jb-seeker-text: #080808;
	--jb-seeker-muted-text: rgba(8, 8, 8, 0.72);
}

.jb-dashboard-shell[data-job-bank-page="employer"] {
	--jb-page-accent-contrast: #ffffff;
	--jb-employer-field-bg: #ffffff;
	--jb-employer-field-bg-soft: #fff8f7;
	--jb-employer-field-line: rgba(180, 35, 24, 0.3);
	--jb-employer-text: #080808;
	--jb-employer-muted-text: rgba(8, 8, 8, 0.72);
}

.jb-public-shell .jb-header,
.jb-dashboard-shell .jb-header,
.jb-public-shell .jb-search-card,
.jb-public-shell .jb-section,
.jb-public-shell .jb-panel,
.jb-dashboard-shell .jb-section,
.jb-dashboard-shell .jb-panel,
.jb-dashboard-shell .jb-access-panel,
.jb-dashboard-shell .jb-table-wrap,
.jb-dashboard-shell .jb-kpi,
.jb-dashboard-shell .jb-child-editor,
.jb-dashboard-shell .jb-child-row,
.jb-register-shell .jb-register-card,
.jb-register-shell .jb-workflow-grid article,
.jb-workspace-tabs {
	border-color: var(--jb-page-line);
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.018), rgba(255, 255, 255, 0.74)),
		var(--jb-page-panel);
	color: var(--jb-page-text);
	box-shadow: var(--jb-page-shadow);
}

.jb-public-shell .jb-header,
.jb-dashboard-shell .jb-header,
.jb-register-shell .jb-register-card {
	border-top: 3px solid var(--jb-page-accent);
}

.jb-header-brand {
	border-color: var(--jb-page-line);
	box-shadow: none;
}

.jb-header-brand strong,
.jb-public-shell .jb-header h1,
.jb-dashboard-shell .jb-header h1,
.jb-public-shell .jb-search-intro h2,
.jb-public-shell .jb-section-header h2,
.jb-public-shell .jb-panel h2,
.jb-dashboard-shell .jb-section-header h2,
.jb-dashboard-shell .jb-panel h2,
.jb-dashboard-shell .jb-access-panel h2,
.jb-dashboard-shell .jb-kpi strong,
.jb-dashboard-shell .jb-card h3,
.jb-public-shell .jb-card h3,
.jb-dashboard-shell .jb-child-editor h3,
.jb-dashboard-shell .jb-child-row strong,
.jb-register-shell .jb-register-card h2,
.jb-register-shell .jb-register-copy h1 {
	color: var(--jb-page-text);
}

.jb-public-shell .jb-header p,
.jb-dashboard-shell .jb-header p,
.jb-public-shell .jb-search-intro p,
.jb-public-shell .jb-section-header p,
.jb-public-shell .jb-panel p,
.jb-dashboard-shell .jb-section-header p,
.jb-dashboard-shell .jb-panel p,
.jb-dashboard-shell .jb-access-panel p,
.jb-dashboard-shell .jb-kpi span,
.jb-dashboard-shell .jb-empty,
.jb-dashboard-shell .jb-card p,
.jb-dashboard-shell .jb-card-meta,
.jb-dashboard-shell .jb-row-meta,
.jb-dashboard-shell .jb-child-row span,
.jb-dashboard-shell .jb-file-line,
.jb-public-shell .jb-card p,
.jb-public-shell .jb-card-meta,
.jb-public-shell .jb-row-meta,
.jb-register-shell .jb-register-card p,
.jb-register-shell .jb-register-copy p {
	color: var(--jb-page-muted);
}

.jb-public-shell .jb-section-header,
.jb-public-shell .jb-landing-section-head,
.jb-dashboard-shell .jb-section-header,
.jb-register-shell .jb-register-card-head {
	border-bottom-color: var(--jb-page-line);
}

.jb-public-shell .jb-field label,
.jb-dashboard-shell .jb-field label,
.jb-dashboard-shell .jb-checkbox-field,
.jb-register-shell .jb-field label,
.jb-register-shell .jb-checkbox-field {
	color: var(--jb-page-muted);
}

.jb-public-shell .jb-field input,
.jb-public-shell .jb-field select,
.jb-public-shell .jb-field textarea,
.jb-dashboard-shell .jb-field input,
.jb-dashboard-shell .jb-field select,
.jb-dashboard-shell .jb-field textarea,
.jb-register-shell .jb-field input,
.jb-register-shell .jb-field select,
.jb-register-shell .jb-field textarea {
	border-color: var(--jb-page-line-strong);
	background: var(--jb-page-field);
	color: var(--jb-page-text);
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.035);
}

.jb-public-shell .jb-field select option,
.jb-dashboard-shell .jb-field select option,
.jb-register-shell .jb-field select option {
	background: #ffffff;
	color: #080808;
}

.jb-public-shell .jb-field input::placeholder,
.jb-public-shell .jb-field textarea::placeholder,
.jb-dashboard-shell .jb-field input::placeholder,
.jb-dashboard-shell .jb-field textarea::placeholder,
.jb-register-shell .jb-field input::placeholder,
.jb-register-shell .jb-field textarea::placeholder {
	color: #8a7a47;
	opacity: 1;
}

.jb-public-shell .jb-card,
.jb-dashboard-shell .jb-card,
.jb-public-shell .jb-stat,
.jb-dashboard-shell .jb-stat,
.jb-dashboard-shell .jb-empty,
.jb-public-shell .jb-empty,
.jb-dashboard-shell .jb-status,
.jb-public-shell .jb-status,
.jb-dashboard-shell .jb-code-panel {
	border-color: var(--jb-page-line);
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.018), rgba(255, 255, 255, 0.78)),
		#ffffff;
	color: var(--jb-page-text);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.jb-public-shell .jb-card:hover,
.jb-dashboard-shell .jb-card:hover,
.jb-public-shell .jb-card.is-active,
.jb-dashboard-shell .jb-card.is-active {
	border-color: var(--jb-page-accent-line);
	border-left-color: var(--jb-page-accent);
	background:
		linear-gradient(135deg, var(--jb-page-accent-soft), rgba(255, 255, 255, 0.8)),
		#ffffff;
	box-shadow: 0 0 0 3px var(--jb-page-accent-soft), 0 10px 26px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
}

.jb-public-shell .jb-button,
.jb-dashboard-shell .jb-button,
.jb-register-shell .jb-button {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent);
	color: var(--jb-page-accent-contrast);
	box-shadow: none;
}

.jb-public-shell .jb-button-secondary,
.jb-dashboard-shell .jb-button-secondary,
.jb-register-shell .jb-button-secondary,
.jb-nav a,
.jb-register-shell .jb-register-toggle button,
.jb-workspace-tabs button {
	border-color: var(--jb-page-line);
	background: rgba(255, 255, 255, 0.82);
	color: var(--jb-page-text);
	box-shadow: none;
}

.jb-public-shell .jb-button:is(:hover, :focus-visible),
.jb-dashboard-shell .jb-button:is(:hover, :focus-visible),
.jb-register-shell .jb-button:is(:hover, :focus-visible),
.jb-nav a:is(:hover, :focus-visible),
.jb-workspace-tabs button:is(:hover, :focus-visible),
.jb-register-shell .jb-register-toggle button:is(:hover, :focus-visible) {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent-soft);
	color: var(--jb-page-text);
	box-shadow: 0 0 0 3px var(--jb-page-accent-soft);
	transform: translateY(-1px);
	text-decoration: none;
}

.jb-public-shell .jb-button-secondary:is(:hover, :focus-visible),
.jb-dashboard-shell .jb-button-secondary:is(:hover, :focus-visible),
.jb-register-shell .jb-button-secondary:is(:hover, :focus-visible) {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent-soft);
	color: var(--jb-page-text);
	box-shadow: 0 0 0 3px var(--jb-page-accent-soft);
}

.jb-workspace-tabs button.is-active,
.jb-register-shell .jb-register-toggle button.is-active {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent);
	color: var(--jb-page-accent-contrast);
	box-shadow: none;
}

.jb-public-shell .jb-button-danger,
.jb-dashboard-shell .jb-button-danger {
	box-shadow: none;
}

.jb-public-shell .jb-pill,
.jb-public-shell .jb-file-link,
.jb-dashboard-shell .jb-pill,
.jb-dashboard-shell .jb-file-link,
.jb-dashboard-shell .jb-status-steps span {
	border-color: var(--jb-page-line);
	background: rgba(8, 8, 8, 0.04);
	color: var(--jb-page-text);
}

.jb-dashboard-shell .jb-status-steps span.is-active,
.jb-dashboard-shell .jb-status-steps span.is-complete,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-status-steps span.is-active,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-status-steps span.is-complete {
	border-color: var(--jb-page-accent-line);
	background: var(--jb-page-accent-soft);
	color: var(--jb-page-text);
}

.jb-public-shell .jb-job-detail-panel {
	scrollbar-color: var(--jb-page-accent) #f2f2ee;
}

.jb-public-shell .jb-detail-body,
.jb-public-shell .jb-detail-body p,
.jb-public-shell .jb-detail-body div {
	color: var(--jb-page-muted);
}

.jb-register-shell .jb-register-hero {
	background:
		radial-gradient(circle at 12% 0%, rgba(19, 122, 75, 0.1), transparent 28%),
		radial-gradient(circle at 88% 12%, rgba(180, 35, 24, 0.08), transparent 30%),
		repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.045) 0, rgba(0, 0, 0, 0.045) 1px, transparent 1px, transparent 96px),
		#ffffff;
	color: var(--jb-page-text);
}

.jb-register-shell .jb-workflow-grid article {
	background:
		linear-gradient(135deg, var(--jb-page-accent-soft), rgba(255, 255, 255, 0.76)),
		#ffffff;
}

.jb-nav a:visited,
.jb-header-brand,
.jb-header-brand:hover,
.jb-header-brand:focus-visible,
.jb-header-brand:visited {
	color: var(--jb-page-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-header,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-section,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-panel,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-access-panel,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-header,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-section,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-panel,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-access-panel {
	border-color: var(--jb-page-line);
	background:
		linear-gradient(135deg, var(--jb-page-accent-soft), rgba(255, 255, 255, 0.78)),
		#ffffff;
	color: var(--jb-page-text);
	box-shadow: var(--jb-page-shadow);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-section-header p,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-panel p,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-empty,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-card-meta,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-row-meta,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-child-row span,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-file-line,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-section-header p,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-panel p,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-empty,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-card-meta,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-row-meta,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-child-row span,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-file-line {
	color: var(--jb-page-muted);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field label,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-checkbox-field,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field label,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-checkbox-field {
	color: var(--jb-page-muted);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field input,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field select,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-field textarea,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field input,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field select,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-field textarea {
	border-color: var(--jb-page-line-strong);
	background: #ffffff;
	color: var(--jb-page-text);
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-pill,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-file-link,
.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-status-steps span,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-pill,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-file-link,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-status-steps span {
	border-color: var(--jb-page-line);
	background: rgba(8, 8, 8, 0.04);
	color: var(--jb-page-text);
}

/* Final light-mode specificity guards for older dark selectors that target nested controls. */
.jb-register-shell .jb-home-brand,
.jb-register-shell .jb-home-brand:hover,
.jb-register-shell .jb-home-brand:focus-visible,
.jb-register-shell .jb-home-brand:visited,
.jb-register-shell .jb-home-links a,
.jb-register-shell .jb-home-links a:hover,
.jb-register-shell .jb-home-links a:focus-visible,
.jb-register-shell .jb-home-links a:visited {
	color: var(--jb-page-text);
}

.jb-register-shell .jb-home-brand strong,
.jb-register-shell .jb-workflow-grid article strong {
	color: var(--jb-page-text);
}

.jb-register-shell .jb-home-brand small,
.jb-register-shell .jb-workflow-grid article span {
	color: var(--jb-page-accent-strong);
}

.jb-register-shell .jb-home-links a {
	border-color: var(--jb-page-line);
	background: rgba(255, 255, 255, 0.76);
}

.jb-register-shell .jb-home-links a:is(:hover, :focus-visible) {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent-soft);
	box-shadow: 0 0 0 3px var(--jb-page-accent-soft);
	transform: translateY(-1px);
}

.jb-public-shell .jb-card .jb-button-secondary,
.jb-dashboard-shell .jb-card .jb-button-secondary,
.jb-dashboard-shell .jb-child-editor .jb-button-secondary {
	border-color: var(--jb-page-line-strong);
	background: rgba(255, 255, 255, 0.86);
	color: var(--jb-page-text);
}

.jb-public-shell .jb-card .jb-button-secondary:is(:hover, :focus-visible),
.jb-dashboard-shell .jb-card .jb-button-secondary:is(:hover, :focus-visible),
.jb-dashboard-shell .jb-child-editor .jb-button-secondary:is(:hover, :focus-visible) {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent-soft);
	color: var(--jb-page-text);
	box-shadow: 0 0 0 3px var(--jb-page-accent-soft);
}

/* Light landing polish keeps the white ministry page crisp and readable. */
.jb-home-shell[data-job-bank-page="landing"] .jb-home-copy h1,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-copy p,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-kicker {
	text-shadow: none;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-kicker {
	color: #0f633d;
	font-size: 13px;
	font-weight: 950;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-brand small,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-topline strong,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-metrics div:nth-child(2) strong {
	color: #6f5f2a;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-accent,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-topline span,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed > span,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-metrics div:nth-child(1) strong {
	color: #137a4b;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-command-metrics div:nth-child(4) strong {
	color: #b42318;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-links a.is-signup,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-links a.is-signup:visited {
	border-color: #137a4b;
	background: #137a4b;
	color: #ffffff;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-links a.is-signup:is(:hover, :focus-visible) {
	border-color: #0f633d;
	background: #0f633d;
	color: #ffffff;
	box-shadow: 0 8px 18px rgba(19, 122, 75, 0.22), 0 0 0 3px rgba(19, 122, 75, 0.14);
	text-shadow: none;
}

/* Every header button adopts the active green with white text on hover/focus so
   the label stays readable instead of white-on-white or white-on-translucent. */
.jb-home-shell[data-job-bank-page="landing"] .jb-home-nav .jb-home-links a:is(:hover, :focus-visible) {
	border-color: #0f633d;
	background: #0f633d;
	color: #ffffff;
	text-shadow: none;
	box-shadow: 0 8px 18px rgba(19, 122, 75, 0.22), 0 0 0 3px rgba(19, 122, 75, 0.14);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed a,
.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed a:visited {
	border-color: rgba(8, 8, 8, 0.14);
	background: rgba(255, 255, 255, 0.8);
	color: #080808;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed a:is(:hover, :focus-visible) {
	border-color: rgba(19, 122, 75, 0.38);
	background: rgba(19, 122, 75, 0.08);
	color: #080808;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(19, 122, 75, 0.12);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed a strong {
	color: #080808;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-command-feed a span {
	color: rgba(8, 8, 8, 0.72);
}

.jb-home-shell[data-job-bank-page="landing"] :where(
	.jb-home-command,
	.jb-command-topline,
	.jb-command-metrics,
	.jb-command-feed,
	.jb-command-feed > div,
	.jb-home-stats,
	.jb-home-stats div,
	.jb-home-job-row,
	.jb-home-job-row div,
	.jb-home-board-panel,
	.jb-flow-steps,
	.jb-flow-steps div,
	.jb-flow-steps strong,
	.jb-home-footer,
	.jb-home-footer-brand,
	.jb-home-pathway .jb-actions,
	.jb-home-grid-row .jb-actions
) {
	color: #080808;
}

.jb-home-shell[data-job-bank-page="landing"] :where(
	.jb-home-stats span,
	.jb-home-stats small,
	.jb-home-job-row small,
	.jb-home-pathway ol,
	.jb-home-pathway li,
	.jb-flow-steps small,
	.jb-home-footer a,
	.jb-home-footer-brand span
) {
	color: rgba(8, 8, 8, 0.72);
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-brand img,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-search,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-command,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-counter-strip,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-process-track,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-pathway,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-job-list,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-board-panel,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-grid-row > .jb-home-feature,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-grid-row > .jb-home-section,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-alert,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-dashboard-card,
.jb-home-shell[data-job-bank-page="landing"] .jb-home-profile-card {
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.075);
}

.jb-home-shell[data-job-bank-page="landing"] :where(
	.jb-home-links a,
	.jb-home-primary,
	.jb-home-secondary,
	.jb-home-submit,
	.jb-home-outline,
	.jb-home-search-links a,
	.jb-home-pathway .jb-button,
	.jb-home-pathway .jb-button-secondary,
	.jb-home-alert button
):is(:hover, :focus-visible) {
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(184, 165, 111, 0.18);
}

/* Modern public board: listings stay primary, details open in a closable modal. */
.jb-public-shell .jb-job-board {
	display: block;
}

.jb-public-shell .jb-job-results {
	width: 100%;
}

.jb-public-shell .jb-job-results .jb-list {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.jb-public-shell .jb-job-card {
	display: grid;
	gap: 12px;
	min-height: 250px;
	padding: 18px;
	border-left-width: 1px;
	background:
		linear-gradient(135deg, rgba(184, 165, 111, 0.08), rgba(255, 255, 255, 0.88)),
		#ffffff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.055);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.jb-public-shell .jb-job-card:hover,
.jb-public-shell .jb-job-card:focus-visible,
.jb-public-shell .jb-job-card.is-active {
	border-color: var(--jb-page-accent-line);
	background:
		linear-gradient(135deg, rgba(184, 165, 111, 0.14), rgba(255, 255, 255, 0.92)),
		#ffffff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(184, 165, 111, 0.14);
	transform: translateY(-2px);
}

.jb-job-card-head {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	justify-content: space-between;
}

.jb-public-shell .jb-job-card h3 {
	font-size: 20px;
	line-height: 1.2;
}

.jb-public-shell .jb-job-card-head .jb-pill {
	flex: 0 0 auto;
	white-space: nowrap;
}

.jb-public-shell .jb-job-card p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	color: #3f3f3f;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.55;
}

.jb-public-shell .jb-job-card .jb-actions {
	align-self: end;
}

.jb-modal[hidden] {
	display: none !important;
}

.jb-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 22px;
}

.jb-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 8, 0.42);
	backdrop-filter: blur(5px);
}

.jb-modal-panel {
	position: relative;
	z-index: 1;
	width: min(900px, 100%);
	max-height: min(86vh, 820px);
	overflow: auto;
	padding: 22px;
	border: 1px solid rgba(8, 8, 8, 0.16);
	border-top: 4px solid var(--jb-page-accent);
	border-radius: 8px;
	background: #ffffff;
	color: #080808;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.jb-modal-panel:focus {
	outline: none;
}

.jb-modal-close {
	position: sticky;
	top: 0;
	z-index: 2;
	float: right;
	min-height: 36px;
	margin: 0 0 10px 16px;
	padding: 7px 12px;
	border: 1px solid rgba(8, 8, 8, 0.22);
	border-radius: 6px;
	background: #ffffff;
	color: #080808;
	font: inherit;
	font-weight: 850;
	cursor: pointer;
}

.jb-modal-close:is(:hover, :focus-visible) {
	border-color: var(--jb-page-accent);
	background: var(--jb-page-accent-soft);
	box-shadow: 0 0 0 3px var(--jb-page-accent-soft);
}

body.jb-modal-open {
	overflow: hidden;
}

/* Light text repair for legacy dark selectors that still leak into white surfaces. */
.jb-public-shell :where(h1, h2, h3, h4, strong, label),
.jb-dashboard-shell :where(h1, h2, h3, h4, strong, label),
.jb-register-shell :where(h1, h2, h3, h4, strong, label),
.jb-modal-panel :where(h1, h2, h3, h4, strong, label) {
	color: #080808;
}

.jb-public-shell :where(p, li, small, .jb-card-meta, .jb-row-meta, .jb-detail-body),
.jb-dashboard-shell :where(p, li, small, .jb-card-meta, .jb-row-meta, .jb-detail-body),
.jb-register-shell :where(p, li, small),
.jb-modal-panel :where(p, li, small, .jb-card-meta, .jb-row-meta, .jb-detail-body) {
	color: rgba(8, 8, 8, 0.72);
}

.jb-public-shell .jb-eyebrow,
.jb-dashboard-shell .jb-eyebrow,
.jb-register-shell .jb-eyebrow,
.jb-public-shell .jb-brand-text small,
.jb-dashboard-shell .jb-brand-text small,
.jb-register-shell .jb-home-brand small {
	color: var(--jb-page-accent-strong);
}

.jb-public-shell .jb-search-intro p span {
	color: #6f5f2a;
}

.jb-public-shell .jb-button {
	color: #080808;
}

.jb-dashboard-shell[data-job-bank-page="job-seeker"] .jb-button,
.jb-dashboard-shell[data-job-bank-page="employer"] .jb-button {
	color: #ffffff;
}

/* The simplified landing hero keeps the first viewport calm before video assets return. */
.jb-home-shell[data-job-bank-page="landing"] .jb-home-hero {
	min-height: 88svh;
	padding-bottom: 34px;
	background:
		radial-gradient(circle at 15% 8%, rgba(19, 122, 75, 0.1), transparent 30%),
		radial-gradient(circle at 86% 20%, rgba(180, 35, 24, 0.08), transparent 32%),
		#ffffff;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-video-shade {
	background: transparent;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-hero-inner {
	align-items: center;
	padding-top: 18px;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-copy {
	max-width: 640px;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-copy h1 {
	max-width: 640px;
}

.jb-home-shell[data-job-bank-page="landing"] .jb-home-command {
	max-width: 520px;
	justify-self: end;
}

/* Signed-in registration state: keep this as a compact decision panel, not a full registration form. */
.jb-register-shell [data-jb-register-signed-in] {
	align-self: start;
	justify-self: center;
	align-content: start;
	width: min(860px, calc(100% - 32px));
	height: auto;
	min-height: 0;
	margin: clamp(30px, 8vh, 76px) auto 0;
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid rgba(8, 8, 8, 0.12);
	border-top: 4px solid var(--jb-page-accent);
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.jb-register-shell [data-jb-register-signed-in].jb-hidden {
	display: none;
}

.jb-register-shell [data-jb-register-signed-in] h2 {
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.1;
}

.jb-register-shell [data-jb-register-signed-in] p {
	max-width: 660px;
	margin-top: 8px;
	font-size: 17px;
	line-height: 1.55;
}

.jb-register-shell [data-jb-register-signed-in] .jb-actions {
	align-items: center;
	gap: 10px;
	margin-top: 22px;
}

.jb-register-shell [data-jb-register-signed-in] .jb-button,
.jb-register-shell [data-jb-register-signed-in] .jb-button-secondary {
	width: auto;
	min-height: 44px;
	padding: 10px 16px;
}

/* Admin workbench: identity, key records, and controls stay visible without flooding the page. */
.jb-admin-workbench {
	display: grid;
	grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.jb-admin-command-stack {
	display: grid;
	gap: 16px;
	min-width: 0;
}

.jb-dashboard-shell[data-job-bank-page="admin"] .jb-stat-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jb-admin-operator {
	position: sticky;
	top: 18px;
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid var(--jb-page-line);
	border-top: 4px solid var(--jb-page-accent);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
		#ffffff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.jb-admin-operator-head {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.jb-admin-avatar {
	position: relative;
	display: grid;
	place-items: center;
	width: 72px;
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid rgba(8, 8, 8, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(19, 122, 75, 0.14), rgba(184, 165, 111, 0.16), rgba(180, 35, 24, 0.12)),
		#ffffff;
	color: #080808;
	font-size: 24px;
	font-weight: 900;
}

.jb-admin-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jb-admin-presence {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	min-height: 24px;
	color: #137a4b;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-admin-presence span {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #137a4b;
	box-shadow: 0 0 0 4px rgba(19, 122, 75, 0.16);
}

.jb-admin-operator strong {
	display: block;
	margin-top: 4px;
	color: #080808;
	font-size: 20px;
	line-height: 1.15;
}

.jb-admin-operator small {
	display: block;
	margin-top: 4px;
	color: rgba(8, 8, 8, 0.68);
	font-weight: 750;
	overflow-wrap: anywhere;
}

.jb-admin-operator-stats {
	display: grid;
	gap: 8px;
	margin: 0;
}

.jb-admin-operator-stats div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-top: 1px solid rgba(8, 8, 8, 0.1);
}

.jb-admin-operator-stats dt,
.jb-admin-operator-stats dd {
	margin: 0;
}

.jb-admin-operator-stats dt {
	color: rgba(8, 8, 8, 0.64);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-admin-operator-stats dd {
	color: #080808;
	font-weight: 900;
	text-align: right;
}

.jb-admin-overview-grid,
.jb-admin-tools-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 16px;
	align-items: start;
}

.jb-admin-tools-grid .is-wide {
	grid-column: 1 / -1;
}

.jb-admin-control-bar {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--jb-page-line);
}

.jb-admin-control-bar h2 {
	margin: 0;
	color: #080808;
	font-size: 24px;
	line-height: 1.15;
}

.jb-admin-control-bar p {
	max-width: 760px;
	margin: 5px 0 0;
	color: rgba(8, 8, 8, 0.68);
	font-weight: 700;
	line-height: 1.5;
}

.jb-admin-filter {
	display: grid;
	gap: 6px;
	min-width: min(320px, 100%);
	color: rgba(8, 8, 8, 0.7);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.jb-admin-filter input {
	min-height: 42px;
	padding: 9px 12px;
	border: 1px solid rgba(8, 8, 8, 0.22);
	border-radius: 6px;
	background: #ffffff;
	color: #080808;
	font: inherit;
	font-size: 14px;
	text-transform: none;
}

.jb-admin-record-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 12px;
	max-height: min(68vh, 760px);
	overflow: auto;
	padding: 2px 4px 2px 2px;
	scrollbar-color: var(--jb-page-accent) #f2f2ee;
}

.jb-admin-record-card {
	display: grid;
	gap: 10px;
	align-content: start;
	min-height: 210px;
}

.jb-card-head {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	justify-content: space-between;
}

.jb-card-head h3 {
	min-width: 0;
}

.jb-admin-queue-list {
	max-height: 430px;
	overflow: auto;
	padding-right: 4px;
}

.jb-admin-shortcuts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-top: 14px;
}

.jb-admin-shortcuts .jb-button-secondary {
	width: 100%;
}

@media (max-width: 900px) {
	.jb-public-shell .jb-job-results .jb-list {
		grid-template-columns: 1fr;
	}

	.jb-modal {
		padding: 12px;
	}

	.jb-modal-panel {
		max-height: calc(100vh - 24px);
		padding: 18px;
	}

	.jb-home-shell[data-job-bank-page="landing"] .jb-home-command {
		max-width: none;
		justify-self: stretch;
	}

	.jb-register-shell [data-jb-register-signed-in] .jb-actions {
		align-items: stretch;
	}

	.jb-register-shell [data-jb-register-signed-in] .jb-button,
	.jb-register-shell [data-jb-register-signed-in] .jb-button-secondary {
		width: 100%;
	}

	.jb-admin-workbench,
	.jb-admin-overview-grid,
	.jb-admin-tools-grid {
		grid-template-columns: 1fr;
	}

	.jb-dashboard-shell[data-job-bank-page="admin"] .jb-stat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jb-admin-operator {
		position: static;
	}

	.jb-admin-control-bar {
		align-items: stretch;
		flex-direction: column;
	}

	.jb-admin-shortcuts {
		grid-template-columns: 1fr;
	}
}

body:has(.jb-home-shell),
body:has(.jb-public-shell),
body:has(.jb-dashboard-shell),
body:has(.jb-register-shell) {
	background: #ffffff;
}

/* -------------------------------------------------------------------------
   Job board: employer logos, highlight chips, and the redesigned detail view.
   ------------------------------------------------------------------------- */
.jb-employer-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--jb-soft-line);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.jb-employer-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.jb-employer-logo-fallback {
	border: 0;
	background: linear-gradient(135deg, var(--jb-page-accent, #b8a56f), var(--jb-page-accent-strong, #6f5f2a));
	color: #ffffff;
	font-size: 16px;
	font-weight: 850;
	letter-spacing: 0.02em;
}

.jb-employer-logo-lg {
	width: 64px;
	height: 64px;
	border-radius: 12px;
}

.jb-employer-logo-lg.jb-employer-logo-fallback {
	font-size: 22px;
}

/* Card head now leads with the employer logo. */
.jb-job-card-headings {
	flex: 1 1 auto;
	min-width: 0;
	display: grid;
	gap: 2px;
}

.jb-public-shell .jb-job-card-employer {
	color: var(--jb-page-accent-strong, #6f5f2a);
	font-size: 13px;
	font-weight: 800;
}

/* Compact highlight chips for listing cards. */
.jb-highlight-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.jb-highlight-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 26px;
	padding: 3px 10px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 999px;
	background: rgba(184, 165, 111, 0.1);
	color: #2c2517;
	font-size: 12.5px;
	font-weight: 750;
}

.jb-highlight-chip span {
	white-space: nowrap;
}

.jb-ic {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	color: var(--jb-page-accent-strong, #6f5f2a);
}

/* Detail view header: logo + title + employer. */
.jb-detail-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--jb-soft-line);
}

.jb-detail-head-body {
	min-width: 0;
}

.jb-modal-panel .jb-detail-head-body h2 {
	margin: 0;
	font-size: 23px;
	line-height: 1.2;
}

.jb-public-shell .jb-detail-employer {
	margin: 4px 0 0;
	color: var(--jb-page-accent-strong, #6f5f2a);
	font-size: 14px;
	font-weight: 800;
}

/* Highlights grid: the key facts at a glance. */
.jb-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 10px;
	margin-bottom: 18px;
}

.jb-highlight {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 13px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(184, 165, 111, 0.1), #ffffff);
}

.jb-highlight-ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: rgba(184, 165, 111, 0.18);
}

.jb-highlight-ic .jb-ic {
	width: 18px;
	height: 18px;
}

.jb-highlight-body {
	display: grid;
	gap: 1px;
	min-width: 0;
}

.jb-public-shell .jb-highlight-body small,
.jb-modal-panel .jb-highlight-body small {
	color: var(--jb-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.jb-public-shell .jb-highlight-body strong,
.jb-modal-panel .jb-highlight-body strong {
	color: #111111;
	font-size: 14.5px;
	font-weight: 800;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

/* Detail body: titled sections for readability. */
.jb-detail-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.jb-modal-panel .jb-detail-section h3 {
	margin: 0 0 6px;
	color: #111111;
	font-size: 15px;
	font-weight: 850;
}

.jb-detail-section p,
.jb-detail-section div {
	margin: 0;
}

/* -------------------------------------------------------------------------
   Dedicated job detail page (/job): spacious two-column layout.
   ------------------------------------------------------------------------- */
.jb-detail-page {
	display: grid;
	gap: 16px;
	margin-top: 4px;
}

.jb-public-shell .jb-back-link {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 999px;
	background: #ffffff;
	color: #111111;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.jb-public-shell .jb-back-link:hover {
	border-color: var(--jb-page-accent, #b8a56f);
	background: var(--jb-page-accent-soft, rgba(184, 165, 111, 0.18));
	text-decoration: none;
}

.jb-detail-canvas > .jb-empty {
	padding: 40px 18px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 12px;
	background: #ffffff;
	color: var(--jb-muted);
	text-align: center;
}

.jb-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 18px;
	align-items: start;
}

.jb-detail-main {
	padding: 26px;
	border: 1px solid var(--jb-soft-line);
	border-top: 4px solid var(--jb-page-accent, #b8a56f);
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.jb-public-shell .jb-detail-main .jb-detail-head-body h1 {
	margin: 0;
	color: #111111;
	font-size: 26px;
	line-height: 1.18;
}

/* Restore readable body text on the white detail card (theme defaults to light text). */
.jb-public-shell .jb-detail-main .jb-detail-body,
.jb-public-shell .jb-detail-main .jb-detail-body p,
.jb-public-shell .jb-detail-main .jb-detail-body div,
.jb-public-shell .jb-detail-main .jb-detail-body li {
	color: #38465a;
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.7;
}

.jb-public-shell .jb-detail-main .jb-detail-section h3 {
	margin: 0 0 6px;
	color: #111111;
	font-size: 16px;
	font-weight: 850;
}

.jb-detail-aside {
	position: sticky;
	top: 18px;
	display: grid;
	gap: 14px;
}

.jb-apply-card {
	display: grid;
	gap: 12px;
	padding: 20px;
	border: 1px solid var(--jb-soft-line);
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(184, 165, 111, 0.12), #ffffff);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.jb-public-shell .jb-apply-card h2 {
	margin: 0;
	color: #111111;
	font-size: 18px;
}

.jb-apply-card .jb-actions {
	margin-top: 4px;
}

.jb-apply-card .jb-button,
.jb-apply-card .jb-button-secondary {
	width: 100%;
	justify-content: center;
}

@media (max-width: 880px) {
	.jb-detail-grid {
		grid-template-columns: 1fr;
	}

	.jb-detail-aside {
		position: static;
	}
}

/* Dark auth registration skin. Kept at the end so it wins over older light
   portal rules while staying scoped to /register only. */
.jb-register-shell[data-job-bank-page="register"] {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: #040605;
	color: #f7f5ee;
	color-scheme: dark;
}

.jb-register-shell[data-job-bank-page="register"]::before,
.jb-register-shell[data-job-bank-page="register"]::after {
	position: fixed;
	inset: 0;
	content: "";
	pointer-events: none;
}

.jb-register-shell[data-job-bank-page="register"]::before {
	z-index: 0;
	background-image: url("/assets/job_bank_website/images/auth/job-bank-auth-guyana-bg.png?v=20260708-1");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: saturate(1.08) contrast(1.03) brightness(0.94);
}

.jb-register-shell[data-job-bank-page="register"]::after {
	z-index: 1;
	background:
		radial-gradient(circle at 18% 12%, rgba(31, 154, 95, 0.12), transparent 30%),
		linear-gradient(90deg, rgba(3, 6, 5, 0.48), rgba(3, 6, 5, 0.1) 48%, rgba(3, 6, 5, 0.5)),
		linear-gradient(180deg, rgba(3, 6, 5, 0.16), rgba(3, 6, 5, 0.64));
}

.jb-register-shell[data-job-bank-page="register"] > * {
	position: relative;
	z-index: 2;
}

.jb-register-shell[data-job-bank-page="register"] .jb-register-hero {
	min-height: 100vh;
	background: transparent;
}

.jb-register-shell[data-job-bank-page="register"] .jb-home-video-shade,
.jb-register-shell[data-job-bank-page="register"] .jb-hero-video {
	display: none;
}

.jb-register-shell[data-job-bank-page="register"] .jb-home-nav,
.jb-register-shell[data-job-bank-page="register"] .jb-register-card,
.jb-register-shell[data-job-bank-page="register"] .jb-workflow-grid article,
.jb-register-shell[data-job-bank-page="register"] [data-jb-register-signed-in] {
	border: 1px solid rgba(217, 174, 58, 0.24);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
		rgba(8, 12, 10, 0.84);
	box-shadow:
		0 32px 84px rgba(0, 0, 0, 0.44),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
}

.jb-register-shell[data-job-bank-page="register"] .jb-home-brand,
.jb-register-shell[data-job-bank-page="register"] .jb-home-brand:hover,
.jb-register-shell[data-job-bank-page="register"] .jb-home-brand:visited,
.jb-register-shell[data-job-bank-page="register"] .jb-home-links a,
.jb-register-shell[data-job-bank-page="register"] .jb-home-links a:hover,
.jb-register-shell[data-job-bank-page="register"] .jb-home-links a:visited {
	color: #f7f5ee;
}

.jb-register-shell[data-job-bank-page="register"] .jb-home-links a {
	border-color: rgba(217, 174, 58, 0.28);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
		rgba(14, 17, 15, 0.72);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.jb-register-shell[data-job-bank-page="register"] .jb-home-links a:is(:hover, :focus-visible) {
	border-color: rgba(217, 174, 58, 0.52);
	background: rgba(217, 174, 58, 0.14);
}

.jb-register-shell[data-job-bank-page="register"] :where(h1, h2, h3, h4, strong, label),
.jb-register-shell[data-job-bank-page="register"] .jb-home-brand strong,
.jb-register-shell[data-job-bank-page="register"] .jb-workflow-grid article strong {
	color: #f7f5ee !important;
	-webkit-text-fill-color: #f7f5ee;
}

.jb-register-shell[data-job-bank-page="register"] :where(p, li, small),
.jb-register-shell[data-job-bank-page="register"] .jb-register-card p,
.jb-register-shell[data-job-bank-page="register"] .jb-register-copy p,
.jb-register-shell[data-job-bank-page="register"] .jb-checkbox-field {
	color: rgba(247, 245, 238, 0.72) !important;
	-webkit-text-fill-color: currentColor;
}

.jb-register-shell[data-job-bank-page="register"] .jb-home-kicker,
.jb-register-shell[data-job-bank-page="register"] .jb-home-brand small,
.jb-register-shell[data-job-bank-page="register"] .jb-workflow-grid article span {
	color: #d9ae3a !important;
	-webkit-text-fill-color: #d9ae3a;
}

.jb-register-shell[data-job-bank-page="register"] .jb-register-copy h1 {
	color: #f7f5ee !important;
	-webkit-text-fill-color: #f7f5ee;
	text-shadow: 0 20px 48px rgba(0, 0, 0, 0.52);
}

.jb-register-shell[data-job-bank-page="register"] .jb-field input,
.jb-register-shell[data-job-bank-page="register"] .jb-field select,
.jb-register-shell[data-job-bank-page="register"] .jb-field textarea {
	border-color: rgba(247, 245, 238, 0.16);
	background: rgba(255, 255, 255, 0.075);
	color: #f7f5ee;
}

.jb-register-shell[data-job-bank-page="register"] .jb-field input::placeholder,
.jb-register-shell[data-job-bank-page="register"] .jb-field textarea::placeholder {
	color: rgba(247, 245, 238, 0.48);
}

.jb-register-shell[data-job-bank-page="register"] .jb-field select option {
	background: #101412;
	color: #f7f5ee;
}

.jb-register-shell[data-job-bank-page="register"] .jb-field input:focus,
.jb-register-shell[data-job-bank-page="register"] .jb-field select:focus,
.jb-register-shell[data-job-bank-page="register"] .jb-field textarea:focus {
	border-color: rgba(217, 174, 58, 0.68);
	box-shadow: 0 0 0 3px rgba(217, 174, 58, 0.14);
}

.jb-register-shell[data-job-bank-page="register"] .jb-register-toggle {
	border: 1px solid rgba(247, 245, 238, 0.14);
	background: rgba(255, 255, 255, 0.055) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.jb-register-shell[data-job-bank-page="register"] .jb-button,
.jb-register-shell[data-job-bank-page="register"] .jb-register-toggle button.is-active {
	border-color: rgba(255, 215, 92, 0.88);
	background:
		linear-gradient(180deg, rgba(255, 245, 178, 0.72), rgba(217, 174, 58, 0.98) 42%, rgba(154, 101, 15, 0.95)),
		#d9ae3a;
	color: #080808;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.58),
		inset 0 -12px 22px rgba(91, 52, 0, 0.22),
		0 15px 32px rgba(0, 0, 0, 0.28);
}

.jb-register-shell[data-job-bank-page="register"] .jb-button:hover,
.jb-register-shell[data-job-bank-page="register"] .jb-register-toggle button.is-active:hover {
	border-color: rgba(255, 232, 151, 0.72);
	background:
		linear-gradient(180deg, rgba(255, 251, 203, 0.82), rgba(229, 187, 66, 1) 42%, rgba(180, 119, 17, 0.98)),
		#e0b53e;
	color: #080808;
}

.jb-register-shell[data-job-bank-page="register"] .jb-button-secondary,
.jb-register-shell[data-job-bank-page="register"] .jb-register-toggle button:not(.is-active) {
	border-color: rgba(247, 245, 238, 0.16);
	background: rgba(255, 255, 255, 0.07) !important;
	color: rgba(247, 245, 238, 0.8) !important;
	-webkit-text-fill-color: rgba(247, 245, 238, 0.8);
}

.jb-register-shell[data-job-bank-page="register"] .jb-button-secondary:hover,
.jb-register-shell[data-job-bank-page="register"] .jb-register-toggle button:not(.is-active):hover {
	border-color: rgba(217, 174, 58, 0.48);
	background: rgba(217, 174, 58, 0.13);
	color: #f7f5ee;
}
