:root {
	--font-size-025: 0.75rem;
	--font-size-05: 0.875rem;
	--font-size-1: 1rem;
	--font-size-2: 1.125rem;
	--font-size-3: 1.25rem;
	--font-size-4: 1.5rem;
	--font-size-5: 2rem;
	--font-size-6: 3rem;
	--font-size-7: 3.75rem;
	--font-size-8: 4.5rem;

	--font-size-2: 1.250rem;
	--font-size-3: 1.563rem;
	--font-size-4: 1.953rem;
	--font-size-5: 2.441rem;
	--font-size-6: 3.052rem;
	--font-size-7: 3.815rem;

	--space-025: 4px;
	--space-05: 8px;
	--space-1: 16px;
	--space-2: 24px;
	--space-2: 32px;
	--space-3: 64px;
	--space-4: 128px;

	--border-radius: 6px;
	--border-radius-small: 3px;

	--color-text-small: rgba(255, 255, 255, 0.6);
	--color-text-body: rgba(255, 255, 255, 0.87);
	--color-text-title: white;

	--color-border: rgba(255, 255, 255, 0.16);
	--color-container-dialog: rgba(0, 0, 0, 0.75);
	--color-container-dark: rgba(0, 0, 0, 0.75);
	--color-container-darken: rgba(0, 0, 0, 0.25);
	--color-container-lighten: rgba(255, 255, 255, 0.08);
	--color-container-light: rgba(255, 255, 255, 0.75);

	--container-width: 960px;
	--container-width: 1280px;
}

@media screen and (max-width: 960px) {
	:root {
		--font-size-2: 1.125rem;
		--font-size-3: 1.266rem;
		--font-size-4: 1.424rem;
		--font-size-5: 1.602rem;
		--font-size-6: 1.802rem;
		--font-size-7: 2.027rem;
	}
}

@media screen and (max-width: 640px) {
	:root {
		--font-size-2: 1.067rem;
		--font-size-3: 1.138rem;
		--font-size-4: 1.215rem;
		--font-size-5: 1.296rem;
		--font-size-6: 1.383rem;
		--font-size-7: 1.476rem;
	}
}

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

body {
	font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300;
	margin: 0;
	color: var(--color-text-body);
	
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	line-height: 1.4;

	&::before {
		content: '';
		background: linear-gradient(180deg, #39249e, #4424a1, #4f24a3, #5924a6, #6224a8, #6b24aa, #7424ac, #7d24ae);
		position: fixed;
		inset: 0;
		z-index: -1;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
	line-height: 1.125;
	margin-top: calc((var(--space-3) * -1));
	padding-top: var(--space-3);
	color: var(--color-text-title);
	text-wrap: balance;
}

@media screen and (max-width: 640px) {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin-top: calc((var(--space-4) * -1));
		padding-top: var(--space-4);
	}
}

h1 {
	font-size: var(--font-size-6);
}

h2 {
	font-size: var(--font-size-5);
}

h3 {
	font-size: var(--font-size-4);
}

h4 {
	font-size: var(--font-size-3);
}

h5 {
	font-size: var(--font-size-2);
}

h6 {
	font-size: var(--font-size-1);
}

a {
	font-weight: 500;
	color: var(--color-text-body);
	text-decoration: none;

	&:hover,
	&:focus {
		color: var(--color-text-title);
		text-decoration: underline;
		text-decoration-thickness: 0.5px;
		text-underline-offset: 0.25em;
	}
}

address {
	text-align: left;
	font-style: normal;
}

svg {
	fill: currentColor;
	width: 1.5em;
	height: 1.5em;
}

input,
select,
textarea,
button {
	border: 1px solid var(--color-border);
	padding: var(--space-05);
	border-radius: var(--border-radius-small);
	font: inherit;
	background-color: transparent;
	color: var(--color-text-body);

	&::placeholder {
		color: var(--color-text-small);
	}
}

label:has(input, select, textarea) {
	display: grid;
	grid-template-columns: 45% 1fr;
	align-items: baseline;
	gap: var(--space-1);
}

@media screen and (max-width: 850px) {
	label:has(input, select, textarea) {
		grid-template-columns: 100%;
		gap: var(--space-05);
	}
}

label:has([required]) .label::after {
	content: '*';
}

fieldset,
legend {
	padding: 0;
	margin: 0;
}

fieldset {
	display: inline;
	justify-content: end;
	width: 100%;
	margin: var(--space-1) 0;
	border: none;

	legend {
		float: left;
		width: calc(45% + var(--space-1));
		
	}

	& > span {
		white-space: nowrap;
		width: 55%;
	}
}

@media screen and (max-width: 850px) {
	fieldset {
		display: flex;
		flex-flow: column;

		legend {
			float: none;
			width: 100%;
		}

		& > span {
			width: 100%;
			margin-top: var(--space-05);
		}
	}
}

button {
	cursor: pointer;

	&:active {
		transform: translateY(1px);
	}
}

.main {
	&::before {
		content: '';
		background-color: #1b1b1b;
		mix-blend-mode: luminosity;
		position: fixed;
		inset: 0;
		z-index: -1;
	}
}

.center {
	text-align: center;
}

.title {
	margin-bottom: 0;
	text-wrap: balance;
	font-size: var(--font-size-5);
}

.title--large {
	font-weight: 900;
	text-transform: uppercase;
	font-size: var(--font-size-7);
}

h1.title--large {
	animation-name: fade-in-weight;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

@keyframes fade-in-weight {
	0% {
		font-weight: 200;
	}

	100% {
		font-weight: 900;
	}
}

.description {
	font-weight: 200;
	text-wrap: balance;
	font-size: var(--font-size-4);
	margin-top: var(--space-05);
}

/*
.header {
	background-color: var(--color-container-darken);
	backdrop-filter: blur(20px);
	position: sticky;
	top: 0;
	height: var(--space-3);
	padding: var(--space-05);

	a {
		padding: var(--space-05);
		height: 100%;
		display: flex;
		align-items: center;

		&:hover,
		&:focus {
			color: var(--color-text-title);
		}

		&.logo {
			color: var(--color-text-title);
		}

		&.cta--small {
			padding: var(--space-05) var(--space-1);
		}
	}

	.cta-container {
		grid-template-columns: auto;
		padding: var(--space-05);
	}
}
*/
/*@media screen and (max-width: 640px) {
	.header nav {
		flex-wrap: wrap;
	}

	.header:has(.menu--open) {
		height: auto;
	}
}*/

.header {
	padding: var(--space-05) var(--space-1);
	height: auto;
	position: sticky;
	top: 0;
	background-color: var(--color-container-darken);
	backdrop-filter: blur(20px);
	z-index: 1;

	.logo,
	.cta-container {
		margin: 0 var(--space-05);
	}
}

.header__inner {
	display: grid;
	gap: var(--space-05);
	grid-template-columns: auto 1fr auto;
	grid-template-areas:
		"gLogo gMenu gCta";
	align-items: center;
	height: var(--space-3);
}

@media screen and (max-width: 640px) {
	.header__inner {
		grid-template-columns: 1fr auto auto;
		grid-template-rows: var(--space-3) auto;
		grid-template-areas:
			"gLogo gToggle gCta"
			"gMenu gMenu  gMenu";

		&:has(.menu--open) {
			height: auto;
		}
	}
}

.header__logo {
	grid-area: gLogo;
	display: flex;
}

.header__menu {
	grid-area: gMenu;
}

.menu-toggle {
	display: none;
	grid-area: gToggle;
}

.header__cta.cta-container {
	display: flex;
	grid-area: gCta;
}

@media screen and (max-width: 640px) {
	.menu-toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: auto;
		border: none;
		border-radius: 0;
		padding: var(--space-05);
		background-color: transparent;
		color: var(--color-text-title);
		cursor: pointer;
		padding: 0;

		& > * {
			font-size: var(--font-size-2);
			border: 1px solid var(--color-border);
			border-radius: var(--border-radius-small);
			padding: var(--space-05);
		}
	}
}

.menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	gap: 0;

	a {
		text-align: center;
		padding: var(--space-05);
	}
}

@media screen and (max-width: 640px) {
	.menu {
		display: none;
	}
}

@media screen and (max-width: 640px) {
	.menu--open {
		display: flex;
		flex-flow: column;
		align-items: stretch;
		border-top: 1px solid var(--color-border);
		padding: var(--space-05) 0;

		& > a {
			text-align: left;
			padding: var(--space-05) 0;
		}

		.cta-container {
			margin: var(--space-05) 0;
		}
		/*position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: auto;
		background-color: var(--color-container-darken);
		backdrop-filter: blur(20px);*/
	}
}
/*
.header__inner {
	display: flex;
	justify-content: space-between;
	gap: var(--space-05);
	height: 100%;

	nav {
		display: flex;
		align-items: center;
		height: 100%;
	}
}*/
/*
@media screen and (max-width: 640px) {
	.header__inner {
		flex-flow: column;
		gap: 0;

		nav {
			height: var(--space-3);

			&:last-of-type {
				flex-flow: column;
				height: auto;
			}
		}
	}
}*/

.section {
	padding: var(--space-3);

	&:nth-of-type(even) {
		background-color: var(--color-container-darken);

		.card {
			background-color: var(--color-container-lighten);
		}
	}
}

@media screen and (max-width: 960px) {
	.section {
		text-align: center;
		padding: var(--space-2) var(--space-1);
	}
}

.section__inner {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
}

.section__inner--grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-template-areas: 
		"gContent gContent gGraphic";
	gap: var(--space-2);
	align-items: end;
}

@media screen and (max-width: 960px) {
	.section__inner--grid {
		gap: var(--space-1);
		grid-template-rows: minmax(0, auto) minmax(0, auto);
		grid-template-areas:
			"gGraphic"	
			"gContent";
	}
}

.hero-content-container {
	grid-area: gContent;
}

.hero-graphic-container {
	grid-area: gGraphic;
}

.footer {
	color: var(--color-text-small);
	background-color: var(--color-container-darken);
	padding: var(--space-1);
	font-weight: 500;

	p {
		text-wrap: balance;
		margin: 0;
	}

	a {
		color: inherit;
		font-weight: inherit;
		display: flex;
		align-items: center;
		gap: var(--space-025);

		&.cta-container {
			&:hover,
			&:focus {
				text-decoration: none;
			}

			&:active {
				.cta {
					transform: translateY(1px);
				}
			}
		}

		&.logo {
			color: var(--color-text-title);
		}

		&.cta--small {
			padding: var(--space-05) var(--space-1);
		}
	}
}

@media screen and (max-width: 640px) {
	.footer {
		text-align: center;
		display: flex;
		flex-flow: column;
		gap: var(--space-05);
	}
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-05);
	max-width: var(--container-width);
	margin: 0 auto;
}

@media screen and (max-width: 640px) {
	.footer__inner {
		flex-flow: column;
	}
}

.footer__inner--contact {
	align-items: start;
	flex-wrap: wrap;

	&::before {
		content: '';
		display: block;
		border-top: 1px solid var(--color-border);
		margin-top: var(--space-05);
		margin-left: var(--space-05);
		margin-right: var(--space-05);
		width: 100%;
	}
}

@media screen and (max-width: 640px) {
	.footer__inner--contact {
		align-items: center;
		flex-wrap: nowrap;
	}
}

.footer__logo {
	padding: var(--space-1);
}

.footer__navigation {
	display: flex;
	justify-content: end;

	a,
	p {
		color: var(--color-text-body);
		padding: var(--space-05);
	}

	a {
		&:hover,
		&:focus {
			color: var(--color-text-title);
		}
	}
}

@media screen and (max-width: 640px) {
	.footer__navigation {
		flex-flow: column;
		align-items: center;
	}
}

.footer__navigation--secondary {
	font-size: var(--font-size-025);

	a,
	p {
		color: var(--color-text-small);
	}

	a {
		&:hover,
		&:focus {
			color: var(--color-text-body);
		}
	}
}

.footer__contact {
	p {
		margin: 0;
	}

	a {
		display: inline-flex;
		align-items: start;

		.material-symbols-sharp {
			font-size: 1.5em;
		}

		&:hover,
		&:focus {
			text-decoration: none;

			span:not(.material-symbols-sharp) {
				text-decoration: underline;
			}
		}
	}
}

@media screen and (max-width: 640px) {
	.footer__social {
		flex-flow: row;
	}
}

.cta-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--space-2);
}

@media screen and (max-width: 850px) {
	.cta-container {
		grid-template-columns: 100%;
		gap: var(--space-1);
	}
}

.cta-container--center {
	justify-content: center;
}

.cta-container--end {
	justify-content: end;
}

.cta {
	appearance: none;
	font: inherit;
	font-weight: bold;
	font-size: var(--font-size-2);
	color: rgba(0, 0, 0, 0.87);
	background-color: #ffc107;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
	background-blend-mode: overlay;
	border-radius: var(--border-radius);
	padding: var(--space-1) var(--space-2);
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--space-05);
	cursor: pointer;
	white-space: nowrap;
	text-transform: uppercase;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
	box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
	border: none;

	&:hover,
	&:focus {
		color: rgba(0, 0, 0, 0.87);
		text-decoration: none;
	}

	&:active {
		transform: translateY(1px);
	}
}

.cta--secondary {
	font-weight: 600;
	color: var(--color-text-title);
	background-color: transparent;
	background-image: none;
	background-blend-mode: normal;
	border: 1px solid var(--color-border);
	box-shadow: none;
	padding: calc(var(--space-1) + 1px) calc(var(--space-2) + 1px);

	&:hover,
	&:focus {
		color: var(--color-text-title);
	}
}

.cta--small {
	font-size: var(--font-size-05);
	border-radius: var(--border-radius-small);
	padding: var(--space-05) var(--space-1);
}

.list-grid {
	list-style-type: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	justify-content: center;
	justify-items: center;
	gap: var(--space-2);
	margin: var(--space-2) 0;

	li {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 850px) {
	.list-grid {
		gap: var(--space-05);
		margin: var(--space-1) 0;
	}
}

.list-grid--small {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
	background-color: var(--color-container-darken);
	padding: var(--space-2);
	border-radius: var(--border-radius);
}

.card__title {
	margin-bottom: var(--space-05);
	text-wrap: balance;
}

.card__description {
	margin: 0.25em 0;
	text-wrap: balance;
	color: var(--color-text-small);
}

.display-icon-container {
	color: white;
	background-color: var(--color-container-darken);
	width: var(--space-3);
	height: var(--space-3);
	border-radius: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: var(--space-1);
	font-weight: 800;

	& > .material-symbols-sharp {
		font-size: 2rem;
	}
}

.material-symbols-sharp {
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24
}

.form {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	text-align: left;

	.cta-container {
		grid-template-columns: 45% 1fr;
	}
}

@media screen and (max-width: 850px) {
	.form {
		.cta-container {
			grid-template-columns: 100%;
		}
	}
}

.placeholder-recaptcha {
	width: 100%;
	max-width: 304px;
	height: 78px;
	margin-bottom: var(--space-1);
}

.hero-graphic {
	width: 100%;
	height: 100%;
	max-height: 300px;
	object-fit: contain;
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

@media screen and (max-width: 960px) {
	.hero-graphic {
		max-width: 300px;
	}
}

.logo {
	color: var(--color-text-title);
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));

	svg {
		fill: currentColor;
		width: auto;
		height: auto;
		max-width: 180px;
	}
}
/*
@media screen and (max-width: 640px) {
	.logo {
		width: 100%;
	}
}
*/
.flex-grow {
	flex-grow: 1;
	flex-shrink: 0;
}