/* B"H
Boruch Hashem
Blessed is He
The Awtsmoos keeps the entire home inside the visual viewport while menus rise above every later-painted layer.
*/
:root {
	color-scheme: dark;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #060a12;
	color: #f4f7fc;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	height: 100dvh;
	margin: 0;
	overflow: hidden;
	background: #060a12;
}

body {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

.site-header,
.home,
.site-footer {
	position: relative;
}

.site-header {
	z-index: 100;
	width: min(1180px, calc(100% - 28px));
	margin: 0 auto;
	padding: 10px 0 7px;
}

.home {
	z-index: 4;
}

.site-footer {
	z-index: 4;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 5px;
	min-width: 0;
}

.site-nav > a,
.menu > button {
	padding: 8px 12px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #aab4c5;
	cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.menu > button:hover,
.menu > button:focus-visible {
	outline: none;
	background: rgba(255, 255, 255, .06);
	color: #fff;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

@media (max-width: 680px) {
	.site-header {
		width: min(100% - 16px, 1180px);
		padding-top: 8px;
	}

	.site-nav > a {
		display: none;
	}
}
