/*
 * USBO header and footer.
 * Scope: .usbo-skip-link, .usbo-site-header and .usbo-site-footer.
 */

.usbo-site-header,
.usbo-site-header *,
.usbo-site-footer,
.usbo-site-footer *{
	box-sizing:border-box;
	letter-spacing:0;
}

.usbo-skip-link{
	position:absolute;
	left:-999px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}

.usbo-skip-link:focus{
	left:16px;
	top:16px;
	width:auto;
	height:auto;
	z-index:99999;
	padding:10px 14px;
	border-radius:8px;
	background:#111111;
	color:#ffffff;
	text-decoration:none;
	outline:2px solid #2dd4bf;
	outline-offset:2px;
}

.usbo-site-header{
	position:sticky;
	top:0;
	z-index:1000;
	width:100%;
	background:rgba(17,17,17,.94);
	border-bottom:1px solid rgba(255,255,255,.10);
	backdrop-filter:blur(16px);
	-webkit-backdrop-filter:blur(16px);
	transition:background-color 180ms ease;
}

.usbo-site-header.is-scrolled{
	background:#111111;
}

.usbo-site-header__inner{
	width:100%;
	min-height:74px;
	padding:0 28px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:22px;
}

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

.usbo-site-header__logo{
	display:block;
	width:auto;
	height:36px;
	max-width:150px;
	object-fit:contain;
}

.usbo-site-header__brand-text{
	padding-left:12px;
	border-left:1px solid rgba(255,255,255,.18);
	color:#f5f6f8;
	font-size:12.5px;
	font-weight:750;
	line-height:1.35;
	white-space:nowrap;
}

.usbo-site-header__nav{
	display:flex;
	align-items:center;
	gap:8px;
}

.usbo-site-header__nav a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:40px;
	padding:9px 17px;
	border:1px solid transparent;
	border-radius:16px;
	color:#f5f6f8;
	font-size:14px;
	font-weight:750;
	line-height:1;
	text-decoration:none;
	transition:background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.usbo-site-header__nav a:hover{
	background:#1b1b1b;
	color:#ffffff;
}

.usbo-site-header__nav a:active{
	transform:translateY(1px);
}

.usbo-site-header__nav a:focus-visible{
	outline:2px solid #2dd4bf;
	outline-offset:3px;
}

.usbo-site-header__nav a.usbo-site-header__login{
	border-color:#2dd4bf;
	border-radius:16px;
	background:#0f766e;
	color:#ffffff;
	font-weight:850;
}

.usbo-site-header__nav a.usbo-site-header__login:hover{
	background:#2dd4bf;
	border-color:#2dd4bf;
	color:#111111;
}

.usbo-site-header .screen-reader-text{
	position:absolute;
	width:1px;
	height:1px;
	overflow:hidden;
	clip:rect(0 0 0 0);
	white-space:nowrap;
}

.usbo-site-footer{
	width:100%;
	border-top:1px solid rgba(255,255,255,.10);
	background:#111111;
	color:#f5f6f8;
}

.usbo-site-footer a{
	color:inherit;
	text-decoration:none;
}

.usbo-site-footer__inner{
	width:100%;
	margin:0;
	padding:44px 32px 34px;
	display:grid;
	grid-template-columns:50% 50%;
	grid-template-rows:auto auto;
	align-items:start;
	row-gap:12px;
}

.usbo-site-footer__logo-img{
	grid-column:1;
	grid-row:1;
	justify-self:start;
	display:block;
	width:auto;
	height:36px;
	object-fit:contain;
}

.usbo-site-footer__tagline{
	grid-column:1;
	grid-row:2;
	max-width:430px;
	margin:0;
	color:#cbd5e1;
	font-size:14px;
	line-height:1.65;
	text-align:left;
}

.usbo-site-footer__legal{
	grid-column:2;
	grid-row:1;
	justify-self:end;
	display:flex;
	align-items:center;
	justify-content:flex-end;
	flex-wrap:wrap;
	gap:8px 24px;
}

.usbo-site-footer__legal a{
	display:inline-flex;
	align-items:center;
	min-height:36px;
	color:#f5f6f8;
	font-size:14px;
	font-weight:700;
	transition:color 150ms ease;
}

.usbo-site-footer__legal a:hover{
	color:#2dd4bf;
}

.usbo-site-footer__legal a:active{
	color:#5eead4;
}

.usbo-site-footer__legal a:focus-visible{
	outline:2px solid #2dd4bf;
	outline-offset:3px;
	border-radius:4px;
}

.usbo-site-footer__copy{
	grid-column:2;
	grid-row:2;
	justify-self:end;
	margin:0;
	color:#a1a1aa;
	font-size:12.5px;
	line-height:1.6;
	text-align:right;
}

@media (max-width:768px){
	.usbo-site-header__inner{
		min-height:68px;
		padding:0 20px;
	}

	.usbo-site-footer__inner{
		width:100%;
		padding:38px 24px 30px;
		display:flex;
		flex-direction:column;
		align-items:center;
		gap:12px;
		text-align:center;
	}

	.usbo-site-footer__logo-img{
		align-self:center;
	}

	.usbo-site-footer__tagline,
	.usbo-site-footer__copy{
		max-width:560px;
		text-align:center;
	}

	.usbo-site-footer__legal{
		justify-content:center;
	}
}

@media (max-width:430px){
	.usbo-site-header__inner{
		min-height:64px;
		padding:0 14px;
		gap:10px;
	}

	.usbo-site-header__logo{
		height:29px;
	}

	.usbo-site-header__brand-text{
		display:none;
	}

	.usbo-site-header__nav{
		gap:4px;
	}

	.usbo-site-header__nav a{
		min-height:38px;
		padding:8px 12px;
		font-size:13px;
	}

	.usbo-site-footer__inner{
		width:100%;
		padding:34px 18px 26px;
	}

	.usbo-site-footer__legal{
		gap:4px 16px;
	}
}

@media (prefers-reduced-motion:reduce){
	.usbo-site-header,
	.usbo-site-header__nav a,
	.usbo-site-footer__legal a{
		transition:none;
	}
}