@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
	color: #f4f4f4;
	background: #000;
	font-family: 'DM Sans', Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	min-width: 320px;
	min-height: 100%;
	margin: 0;
}

body {
	background: #000;
}

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

.tacit-portal {
	isolation: isolate;
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #000;
}

.tacit-portal__video {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.tacit-portal__content,
.tacit-portal__footer {
	width: min(100% - 48px, 1440px);
	margin: 0 auto;
}

.tacit-portal__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 0 48px;
}

.tacit-portal__wordmark {
	display: flex;
	width: min(100%, 402px);
	margin: 0 0 14px;
	align-items: center;
	justify-content: space-between;
	color: #e5e5e6;
	font-size: clamp(25px, 3vw, 39px);
	font-weight: 300;
	line-height: 1;
}

.tacit-portal__wordmark-space {
	width: .32em;
	flex: none;
}

.tacit-portal__download-panel {
	width: min(100%, 402px);
}

.tacit-portal__download-button {
	min-height: 70px;
	padding: 9px 13px 9px 10px;
	display: flex;
	align-items: center;
	gap: 13px;
	border: 1px solid #fff;
	border-radius: 9px;
	background: #f3f3f3;
	color: #101010;
	box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
	cursor: pointer;
	transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.tacit-portal__download-button:hover {
	transform: translateY(-3px);
	background: #fff;
	box-shadow: 0 17px 42px rgba(0, 0, 0, .32);
}

.tacit-portal__download-button[aria-disabled='true'] {
	cursor: default;
}

.tacit-portal__download-button[aria-disabled='true']:hover {
	transform: none;
	background: #f3f3f3;
	box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.tacit-portal__download-button:focus-visible,
.tacit-portal__footer a:focus-visible,
.tacit-portal__wordmark:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.tacit-portal__download-icon {
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	flex: none;
	border-radius: 6px;
	background: #dedede;
}

.tacit-portal__download-icon img,
.tacit-portal__download-icon svg {
	width: 23px;
	height: 23px;
	display: block;
	object-fit: contain;
}

.tacit-portal__download-icon .tacit-portal__platform-icon--hidden {
	display: none !important;
}

.tacit-portal__download-copy {
	display: grid;
	gap: 5px;
	flex: 1;
}

.tacit-portal__download-copy strong {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.025em;
}

.tacit-portal__download-copy small {
	color: #5a5a5a;
	font: 10px/1 'DM Mono', monospace;
	text-transform: uppercase;
	letter-spacing: .045em;
}

.tacit-portal__download-arrow {
	width: 19px;
	height: 19px;
	margin-right: 5px;
}

.tacit-portal svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tacit-portal__footer {
	padding-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: rgba(255, 255, 255, .45);
	font: 10px/1 'DM Mono', monospace;
	letter-spacing: .02em;
}

.tacit-portal__footer a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, .73);
	transition: color .2s ease;
}

.tacit-portal__footer a:hover {
	color: #fff;
}

.tacit-portal__footer svg {
	width: 14px;
	height: 14px;
}

@media (max-width: 640px) {
	.tacit-portal__footer,
	.tacit-portal__content {
		width: min(100% - 36px, 1440px);
	}

	.tacit-portal__content {
		justify-content: flex-end;
		padding: 110px 0 55px;
	}

	.tacit-portal__footer {
		padding-bottom: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tacit-portal__download-button {
		transition: none;
	}

	.tacit-portal__download-button:hover {
		transform: none;
	}
}
