html {
	background: linear-gradient(360deg, #040A3F 9.21%, #FF3C00 18.43%, #FFECA3 21.07%, #00D4FF 24.35%, #0044FF 40.99%, #040A3F 64.22%, #000000 99.32%);
	min-height: 100%;
	scroll-behavior: smooth;
	will-change: transform; /* promotes the element to its own compositing layer, sidestepping the stale-paint webkit bug */
}

body {
	font-family: "Geist", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
	"Segoe UI Symbol", "Noto Color Emoji";
	min-height: 100vh;
	margin: 0;
	padding: 0;
	line-height: 1.5;
	color: white;
}

html::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .3;
	mix-blend-mode: multiply; /* try "overlay" or "multiply" for different looks */
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.text-pixelated {
	font-family: "Geist Pixel", ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
}

.header-logo {
	font-size: 2.5rem;
	text-decoration: none;
	color: white;
}

header {
	margin: 3rem;
}

.landing-header {
	font-size: 3rem;
}

.landing-split {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-left: 3rem;

	> div {
		width: 50%;
	}

	h2 {
		font-weight: 500;
		margin-bottom: 2rem;
	}

	img {
		height: 65vh;
	}
}

.landing-main {
	text-align: center;

	h2 {
		font-size: 2.5rem;
		margin: 0 1rem;
	}
}

button, .button {
	border: 3px solid #0023ac;
	background-color: #0046C7;
	color: white;
	padding: .75rem 1.5rem;
	border-radius: 0.5rem;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 500;
	font-family: inherit;
	text-decoration: none;
	transition: 0.2s ease-in-out;
}

button:hover, .button:hover {
	background-color: #0023ac;
}

.landing-card {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
	align-items: center;
	text-align: start;
	background: rgba(0, 13, 50, 0.5);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);

	/* Frost — simulates the "Frost: 25" blur */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	/* Depth — soft outer shadow gives a sense of thickness/lift */
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35),
	inset 0 1px 0 rgba(255, 255, 255, 0.15); /* thin top inner edge, like glass rim */

	/* Refraction/light highlight — simulates the -45° / 80% light source */
	background-image: linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.15) 0%,
			rgba(255, 255, 255, 0.03) 40%,
			rgba(255, 255, 255, 0) 70%
	);
	background-blend-mode: overlay;

	padding: 3rem;
	margin: 3rem;

	div, video, > img {
		width: 50%;
	}

	b {
		font-size: 2rem;
	}

	p {
		font-size: 1.25rem;
	}

	video, > img {
		max-height: 500px;
		border-radius: 1rem;
		object-fit: cover;
	}
}

form.landing-card {
	display: block;
	width: 480px;
	margin: 1rem auto 0;

	button {
		width: 100%;
	}
}

input {
	padding: .5rem 1rem;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 1rem;
	display: block;
	font-family: inherit;
}

footer {
	opacity: .7;
	padding: 3rem;

	a {
		color: inherit;
	}
}

@media (max-width: 1000px) {
	.landing-header {
		font-size: 2.5rem;
	}

	.landing-split img {
		height: 50vh;
	}
}

@media (max-width: 768px) {
	header {
		margin: 1rem 0;
		text-align: center;
	}

	.landing-header {
		font-size: 2rem;
	}

	.landing-split h2 {
		font-size: 1.5rem;
	}
}

@media (max-width: 640px) {
	.landing-card {
		display: block;
		padding: 2rem;
		margin: 2rem;

		div, video, > img {
			width: 100%;
		}

		video, > img {
			max-height: 50vh;
		}
	}

	.landing-split h2 {
		font-size: 1.25rem;
	}

	.landing-split {
		flex-direction: column;
		align-items: end;

		> div {
			width: 100%;
			margin-right: 1.5rem;
		}
	}

	form.landing-card {
		width: 80vw;
	}
}
