.xln-site-header {
	--xln-header-navy: #0f366e;
	--xln-header-blue: #0369a1;
	--xln-header-blue-dark: #075985;
	--xln-header-sky: #f0f9ff;
	--xln-header-surface: #ffffff;
	--xln-header-text: #0f172a;
	--xln-header-muted: #475569;
	--xln-header-border: #dbeafe;
	--xln-header-phone: #c2410c;
	--xln-header-focus: #fbbf24;
	--xln-header-max: 1160px;
	position: relative;
	z-index: 20;
	width: 100%;
	background: var(--xln-header-surface);
	color: var(--xln-header-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.xln-site-header *,
.xln-site-header *::before,
.xln-site-header *::after {
	box-sizing: border-box;
}

.xln-site-header a {
	text-decoration: none;
}

.xln-header__top {
	border-bottom: 1px solid var(--xln-header-border);
	background: var(--xln-header-surface);
}

.xln-header__inner,
.xln-header__navigation {
	width: min(var(--xln-header-max), calc(100% - 32px));
	margin-inline: auto;
}

.xln-header__desktop,
.xln-header__nav-band {
	display: none;
}

.xln-header__mobile {
	display: block;
	padding-block: 7px 8px;
}

.xln-header__mobile-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
}

.xln-header__mobile-logo-link,
.xln-header__logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border-radius: 50%;
}

.xln-header__mobile-logo {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: contain;
}

.xln-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 96px;
	min-height: 48px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid var(--xln-header-border);
	border-radius: 6px;
	background: var(--xln-header-surface);
	box-shadow: none;
	color: var(--xln-header-navy);
	font-size: 14px;
	font-weight: 650;
	line-height: 1;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.xln-header__menu-toggle:hover,
.xln-header__menu-toggle[aria-expanded="true"] {
	border-color: var(--xln-header-blue);
	background: var(--xln-header-sky);
	color: var(--xln-header-blue-dark);
}

.xln-header__menu-toggle:focus-visible,
.xln-site-header a:focus-visible,
.xln-header__search input:focus-visible,
.xln-header__search button:focus-visible,
.xln-header__ticker:focus-visible {
	outline: 3px solid var(--xln-header-focus);
	outline-offset: 2px;
}

.xln-header__menu-toggle svg,
.xln-header__search svg,
.xln-header__mobile-actions svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.xln-header__menu-close {
	display: none;
}

.xln-header__menu-toggle[aria-expanded="true"] .xln-header__menu-lines {
	display: none;
}

.xln-header__menu-toggle[aria-expanded="true"] .xln-header__menu-close {
	display: block;
}

.xln-header__mobile-panel {
	margin: 8px 0 10px;
	padding: 8px;
	border: 1px solid var(--xln-header-border);
	border-radius: 8px;
	background: #f8fafc;
	box-shadow: 0 10px 28px rgba(15, 54, 110, 0.1);
}

.xln-header__mobile-panel[hidden] {
	display: none !important;
}

.xln-header__mobile-menu,
.xln-header__mobile-menu ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.xln-header__mobile-menu ul {
	margin: 4px 0 0 16px;
}

.xln-header__mobile-menu li {
	margin: 0;
	padding: 0;
}

.xln-header__mobile-menu a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 14px;
	border-radius: 5px;
	background: var(--xln-header-surface);
	color: var(--xln-header-navy);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease;
}

.xln-header__mobile-menu a:hover,
.xln-header__mobile-menu a:focus-visible,
.xln-header__mobile-menu .current-menu-item > a,
.xln-header__mobile-menu .current-menu-ancestor > a {
	background: var(--xln-header-blue-dark);
	color: #ffffff;
}

.xln-header__search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px;
	width: 100%;
	height: 44px;
	margin: 0;
	overflow: hidden;
	border: 1px solid #94a3b8;
	border-radius: 6px;
	background: var(--xln-header-surface);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.xln-header__search:focus-within {
	border-color: var(--xln-header-blue);
	box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.14);
}

.xln-header__search input[type="search"] {
	width: 100%;
	max-width: none;
	min-width: 0;
	height: 42px;
	margin: 0;
	padding: 0 14px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--xln-header-text);
	font: inherit;
	font-size: 16px;
	line-height: 42px;
	-webkit-appearance: none;
	appearance: none;
}

.xln-header__search input[type="search"]::placeholder {
	color: #64748b;
	opacity: 1;
}

.xln-header__search input[type="search"]:focus {
	outline: 0;
}

.xln-header__search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 0;
	border-left: 1px solid var(--xln-header-border);
	border-radius: 0;
	background: var(--xln-header-sky);
	box-shadow: none;
	color: var(--xln-header-blue-dark);
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.xln-header__search button:hover {
	background: var(--xln-header-blue);
	color: #ffffff;
}

.xln-header__search--mobile {
	margin-top: 8px;
}

.xln-header__mobile-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 8px;
}

.xln-header__mobile-actions > a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	min-height: 52px;
	padding: 5px 8px;
	border-radius: 6px;
	background: var(--xln-header-blue);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	line-height: 1.15;
	transition: background-color 180ms ease;
}

.xln-header__mobile-actions > a:hover,
.xln-header__mobile-actions > a:focus-visible {
	background: var(--xln-header-blue-dark);
	color: #ffffff;
}

.xln-header__mobile-actions span,
.xln-header__mobile-actions small {
	display: block;
}

.xln-header__mobile-actions small {
	margin-bottom: 2px;
	color: #e0f2fe;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.xln-header__ticker {
	position: relative;
	height: 36px;
	overflow: hidden;
	border: 1px solid var(--xln-header-border);
	border-radius: 6px;
	background: var(--xln-header-sky);
	color: var(--xln-header-navy);
	font-size: 17px;
	font-weight: 650;
	line-height: 34px;
	white-space: nowrap;
}

.xln-header__ticker-track {
	display: flex;
	width: max-content;
	gap: 64px;
	padding-inline: 14px;
	animation: xln-header-ticker 30s linear infinite;
	will-change: transform;
}

.xln-header__ticker:hover .xln-header__ticker-track,
.xln-header__ticker:focus .xln-header__ticker-track,
.xln-header__ticker:focus-within .xln-header__ticker-track {
	animation-play-state: paused;
}

.xln-header__ticker--mobile {
	height: 28px;
	margin-top: 8px;
	font-size: 14px;
	line-height: 26px;
}

@keyframes xln-header-ticker {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		/* Half the track plus 18px equals one item width + the 64px gap. */
		transform: translate3d(calc(-50% - 18px), 0, 0);
	}
}

@media (min-width: 1101px) {
	.xln-header__inner,
	.xln-header__navigation {
		width: min(var(--xln-header-max), calc(100% - 48px));
	}

	.xln-header__mobile {
		display: none;
	}

	.xln-header__desktop {
		display: grid;
		grid-template-columns: 168px minmax(0, 1fr) 312px;
		align-items: center;
		gap: 32px;
		min-height: 176px;
		padding-block: 16px;
	}

	.xln-header__logo-link {
		justify-self: center;
	}

	.xln-header__logo {
		display: block;
		width: 144px;
		height: 144px;
		border-radius: 50%;
		object-fit: contain;
	}

	.xln-header__primary {
		min-width: 0;
	}

	.xln-header__search input[type="search"] {
		font-size: 14px;
	}

	.xln-header__ticker {
		margin-top: 12px;
	}

	.xln-header__company {
		margin: 0;
		color: var(--xln-header-navy);
		font-size: 14px;
		font-style: normal;
		font-weight: 600;
		line-height: 1.5;
		text-align: center;
	}

	.xln-header__company p {
		margin: 3px 0 0;
	}

	.xln-header__company-name {
		margin-top: 0 !important;
		font-size: 15px;
		font-weight: 750;
		line-height: 1.45;
		letter-spacing: 0.01em;
		text-wrap: balance;
	}

	.xln-header__company span {
		font-weight: 700;
	}

	.xln-header__company a {
		color: var(--xln-header-phone);
		font-weight: 750;
		font-variant-numeric: tabular-nums;
	}

	.xln-header__company a:hover {
		text-decoration: underline;
		text-underline-offset: 3px;
	}

	.xln-header__nav-band {
		display: block;
		background: var(--xln-header-blue);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 2px 8px rgba(15, 54, 110, 0.12);
	}

	.xln-header__menu,
	.xln-header__menu ul {
		display: flex;
		align-items: stretch;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.xln-header__menu {
		justify-content: space-between;
		width: 100%;
		height: 52px;
	}

	.xln-header__menu > li {
		display: flex;
		flex: 0 1 auto;
		min-width: 0;
		margin: 0;
		padding: 0;
		position: relative;
	}

	.xln-header__menu > li > a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 52px;
		padding-inline: clamp(8px, 0.75vw, 14px);
		color: #ffffff;
		font-size: 13px;
		font-weight: 650;
		line-height: 1.2;
		letter-spacing: 0.005em;
		text-align: center;
		text-transform: uppercase;
		white-space: nowrap;
		transition: background-color 180ms ease, color 180ms ease;
	}

	.xln-header__menu > li > a:hover,
	.xln-header__menu > li > a:focus-visible,
	.xln-header__menu > .current-menu-item > a,
	.xln-header__menu > .current-menu-ancestor > a,
	.xln-header__menu > .current_page_item > a {
		background: var(--xln-header-blue-dark);
		color: #ffffff;
	}

	.xln-header__menu .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 30;
		display: none;
		min-width: 220px;
		padding: 8px;
		border-radius: 0 0 6px 6px;
		background: var(--xln-header-blue-dark);
		box-shadow: 0 12px 28px rgba(15, 54, 110, 0.2);
	}

	.xln-header__menu li:hover > .sub-menu,
	.xln-header__menu li:focus-within > .sub-menu {
		display: grid;
	}

	.xln-header__menu .sub-menu a {
		display: flex;
		align-items: center;
		min-height: 44px;
		padding: 9px 12px;
		border-radius: 4px;
		color: #ffffff;
		font-size: 13px;
		line-height: 1.35;
	}

	.xln-header__menu .sub-menu a:hover,
	.xln-header__menu .sub-menu a:focus-visible {
		background: rgba(255, 255, 255, 0.12);
		color: #ffffff;
	}
}

@media (max-width: 420px) {
	.xln-header__inner {
		width: min(var(--xln-header-max), calc(100% - 24px));
	}

	.xln-header__menu-toggle {
		min-width: 88px;
		padding-inline: 12px;
	}

	.xln-header__mobile-actions > a {
		gap: 6px;
		padding-inline: 6px;
		font-size: 12.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.xln-site-header *,
	.xln-site-header *::before,
	.xln-site-header *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.xln-header__ticker-track {
		display: block;
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		transform: none !important;
		animation: none !important;
	}

	.xln-header__ticker-copy {
		display: none;
	}
}
