:root {
	--toolbox-maintenance-bg: none;
	--toolbox-maintenance-overlay-opacity: .65;
}
html,
body {
	min-height: 100%;
	margin: 0;
}
body {
	min-height: 100vh;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111;
	color: #fff;
	position: relative;
	overflow-x: hidden;
	padding: 0;
}
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background-color: #111;
	background-image: var(--toolbox-maintenance-bg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.toolbox-maintenance-layout {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 40px 20px;
}
.toolbox-maintenance-card {
	position: relative;
	z-index: 1;
	width: min(740px, calc(100% - 40px));
	box-sizing: border-box;
	text-align: center;
	background: rgba(0, 0, 0, var(--toolbox-maintenance-overlay-opacity));
	padding: 38px 42px;
	border-radius: 3px;
}
.toolbox-maintenance-card h1 {
	font-weight: 700;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.05;
	margin: 0 0 22px;
	text-transform: none;
	letter-spacing: .01em;
}
.toolbox-maintenance-card p {
	font-weight: 400;
	font-size: clamp(22px, 3vw, 38px);
	line-height: 1.35;
	margin: 14px 0;
}
.toolbox-maintenance-note {
	font-size: 18px;
	opacity: .88;
	margin-top: 22px;
}
@media (max-width: 768px) {
	body::before {
		background-size: cover;
	}
	.toolbox-maintenance-layout {
		padding: 24px 16px;
	}
	.toolbox-maintenance-card {
		padding: 28px 24px;
	}
	.toolbox-maintenance-card p {
		font-size: 22px;
	}
}
