:root {
	--bg: #02070c;
	--bg-deep: #010407;
	--bg-highlight: #071018;
	--text-primary: #f1f3f4;
	--text-secondary: #a8adb2;
	--text-body: #9aa1a7;
	--text-muted: #747c83;
	--text-link: #899097;
	--text-link-hover: #c4c8cb;
	--divider: #172129;
	--image-border: #34434b;
	--footer-sep: #555e65;
	--elmiva-mint: #62d7c0;
	--elmiva-cyan: #4fc3c8;
	--after-silence: #4ecbd2;
	--after-silence-border: #319da4;
	--herd-league: #83c94a;
	--herd-league-border: #689f3d;
	--blackbeam: #f3a21b;
	--blackbeam-border: #c77e10;
	--container: 884px;
	--game-image: 466px;
	--game-gap: 36px;
	--radius-image: 7px;
	--radius-button: 4px;
	--font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.55;
	color: var(--text-primary);
	background:
		radial-gradient(
			circle at 50% 0%,
			var(--bg-highlight) 0%,
			var(--bg) 42%,
			var(--bg-deep) 100%
		);
	-webkit-font-smoothing: antialiased;
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

.skip-link {
	position: absolute;
	left: 0.75rem;
	top: -4rem;
	z-index: 10;
	padding: 0.6rem 0.9rem;
	background: var(--elmiva-cyan);
	color: #041016;
	font-weight: 600;
	text-decoration: none;
}

.skip-link:focus {
	top: 0.75rem;
}

.wrap {
	width: min(var(--container), calc(100% - 48px));
	margin-inline: auto;
}

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 86px 0 0;
	text-align: center;
}

.hero__mark {
	width: 64px;
	height: auto;
}

.hero__brand {
	margin: 25px 0 0;
	padding-left: 0.42em;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0.42em;
	line-height: 1;
	text-transform: uppercase;
	color: var(--text-primary);
}

.hero__rule {
	display: block;
	width: 62px;
	height: 2px;
	margin-top: 37px;
	background: var(--elmiva-cyan);
	opacity: 0.9;
}

.hero__tagline {
	margin: 39px 0 80px;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: var(--text-secondary);
}

.title {
	display: grid;
	gap: 26px;
	padding: 24px 0 31px;
}

.title:first-of-type {
	padding-top: 0;
}

.title + .title {
	border-top: 1px solid var(--divider);
	margin-top: 30px;
	padding-top: 54px;
}

.gallery {
	min-width: 0;
	width: 100%;
}

.gallery:focus {
	outline: none;
}

.gallery:focus-visible .gallery__frame {
	outline: 1px solid color-mix(in srgb, var(--elmiva-cyan) 55%, transparent);
	outline-offset: 2px;
}

.gallery__frame {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1.56 / 1;
	border-radius: var(--radius-image);
	background: #000;
	border: 1px solid var(--image-border);
}

.gallery__track {
	margin: 0;
	padding: 0;
	list-style: none;
	height: 100%;
}

.gallery__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.gallery__slide.is-current {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.gallery__slide img,
.gallery__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #000;
}

.gallery__arrow {
	appearance: none;
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(2, 7, 12, 0.22);
	color: rgba(241, 243, 244, 0.35);
	transform: translateY(-50%);
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
}

.gallery__arrow svg {
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

.gallery__arrow--prev {
	left: 0.4rem;
}

.gallery__arrow--next {
	right: 0.4rem;
}

.gallery__frame:hover .gallery__arrow,
.gallery__arrow:focus-visible {
	color: rgba(241, 243, 244, 0.82);
	background: rgba(2, 7, 12, 0.42);
}

.gallery__arrow:focus-visible {
	outline: none;
}

.gallery__arrow[hidden] {
	display: none !important;
}

.title__copy {
	min-width: 0;
}

.title__status {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.title--as .title__status,
.title--as .title__line {
	color: var(--after-silence);
}

.title--hl .title__status,
.title--hl .title__line {
	color: var(--herd-league);
}

.title--bb .title__status,
.title--bb .title__line {
	color: var(--blackbeam);
}

.title__name {
	margin: 0;
	font-size: 43px;
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: var(--text-primary);
}

.title__line {
	margin: 12px 0 22px;
	font-size: 16px;
	font-weight: 450;
	line-height: 1.45;
}

.title__pitch {
	margin: 0 0 25px;
	max-width: 380px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: -0.005em;
	color: var(--text-body);
}

.title__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 44px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: var(--radius-button);
	font-family: var(--font);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn__icon {
	width: 15px;
	height: 17px;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linejoin: round;
	stroke-linecap: round;
}

.btn--as {
	color: var(--after-silence);
	border-color: var(--after-silence-border);
}

.btn--hl {
	color: var(--herd-league);
	border-color: var(--herd-league-border);
}

.btn--bb {
	color: var(--blackbeam);
	border-color: var(--blackbeam-border);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.035);
}

.btn--as:hover {
	border-color: color-mix(in srgb, var(--after-silence) 70%, white);
}

.btn--hl:hover {
	border-color: color-mix(in srgb, var(--herd-league) 70%, white);
}

.btn--bb:hover {
	border-color: color-mix(in srgb, var(--blackbeam) 70%, white);
}

.btn[hidden] {
	display: none !important;
}

.footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	padding: 27px 0 32px;
	border-top: 1px solid var(--divider);
	font-size: 13px;
	font-weight: 400;
	color: var(--text-muted);
}

.footer__link {
	color: var(--text-link);
	text-decoration: none;
}

.footer__link:hover {
	color: var(--text-link-hover);
}

.footer__sep {
	margin: 0 28px;
	color: var(--footer-sep);
}

@media (min-width: 721px) {
	.title {
		grid-template-columns: var(--game-image) 1fr;
		gap: var(--game-gap);
		align-items: center;
	}
}

@media (max-width: 720px) {
	.wrap {
		width: calc(100% - 36px);
	}

	.hero {
		padding-top: 56px;
	}

	.hero__mark {
		width: 50px;
	}

	.hero__brand {
		padding-left: 0.35em;
		font-size: 20px;
		letter-spacing: 0.35em;
	}

	.hero__tagline {
		margin-bottom: 56px;
		font-size: 18px;
	}

	.title {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.title__name {
		font-size: 34px;
	}

	.title__pitch {
		max-width: none;
	}

	.footer__sep {
		margin: 0 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.gallery__slide {
		transition: none;
	}
}
