:root {
	color-scheme: dark;
	--acid: #d5ff40;
	--ink: #050505;
	--muted: #ffffff9a;
	--line: #ffffff20;
	--glass: #ffffff0b;
}

html {
	font-size: calc(-0.00222717149220486rem + 1.1135857461024499vw);
}

@media screen and (max-width: 90rem) {
	html {
		font-size: calc(-0.00222717149220486rem + 1.1135857461024499vw);
	}
}

@media screen and (max-width: 61.9375rem) {
	html {
		font-size: calc(-0.005831473214285454rem + 2.098214285714285vw);
	}
}

@media screen and (max-width: 47.9375rem) {
	html {
		font-size: 1rem;
	}
}

@media screen and (max-width: 29.9375rem) {
	html {
		font-size: calc(-0.0031380753138075313rem + 5.02092050209205vw);
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100dvh;
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	color: white;
}

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

.wrap {
	width: min(92rem, calc(100% - 2rem));
	min-height: 100dvh;
	margin: auto;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 1rem;
	padding: 1rem 0;
}

.top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: white;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.logo {
	display: grid;
	width: 2.7rem;
	height: 2.7rem;
	place-items: center;
}

.logo svg {
	width: 100%;
	height: 100%;
	border-radius: 0.4rem;
}

.card {
	border: 0.0625rem solid var(--line);
	border-radius: 1.6rem;
	box-shadow: 0 1.5rem 5.625rem rgba(0, 0, 0, 0.32);
	overflow: hidden;
}

.hero {
	display: grid;
	align-content: end;
	min-height: min(72dvh, 42rem);
	padding: 2rem;
	background: linear-gradient(135deg, rgba(213, 255, 64, 0.16), transparent 42%), rgba(255, 255, 255, 0.04);
}

.hero-copy {
	max-width: 62rem;
}

.lede {
	max-width: 42rem;
	margin: 1.2rem 0 0;
	color: var(--muted);
	font-size: 1.25rem;
	line-height: 1.5;
}

h1 {
	margin: 0;
	font-size: 6rem;
	line-height: 0.82;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.stage {
	display: grid;
	place-items: center;
	min-height: 0;
	padding: 1rem;
	background: #0008;
}

.media {
	display: block;
	max-width: 100%;
	max-height: 74dvh;
	border-radius: 1rem;
	background: #020202;
	box-shadow: 0 1rem 4.375rem rgba(0, 0, 0, 0.32);
}

video.media {
	width: min(100%, 78rem);
	aspect-ratio: 16 / 9;
}

.meta {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.1rem 1.15rem;
}

.meta h1 {
	max-width: 64rem;
	font-size: 1rem;
	line-height: 0.92;
	letter-spacing: 0rem;
}

.footer {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.text {
	color: #ffffff80;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.social {
	display: flex;
	gap: 1rem;
}

.social a:hover {
	color: var(--acid);
}

@media (max-width: 40rem) {
	.wrap {
		width: calc(100% - 0.75rem);
		padding: 0.45rem 0;
	}

	.card {
		border-radius: 1.2rem;
	}

	.hero {
		min-height: 68dvh;
	}

	.meta {
		display: grid;
	}

	.button {
		width: max-content;
	}

	.footer {
		flex-direction: column;
	}
}
