*
{
	font-family: 'Roboto';
	font-weight: 300;
	color:rgb(220,220,220);

	line-height: 1.5;
}

body
{
	background: rgb(13,16,15);

	position: relative;
	text-align: left;
}

.container
{
	max-width: 1256px;
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
}

.header .container
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 24px;
}

.pageLayout
{
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	padding-top: 88px;
	padding-bottom: 48px;
}

.pageLayout-container
{
	margin-top: auto;
	margin-bottom: auto;
	width: 100%;
}

section
{
	padding: 16px 0 64px 0;
	position: relative;
	border-top: 1px solid rgb(56,56,56);
}

section:first-of-type
{
	border-top: none;
}

h1
{
	font-size: 40px;
	margin: 12px 0;
	font-style: italic;
	font-weight: 300;
}

h2
{
	font-size: 28px;
	margin: 40px 0;
	font-weight: 700;
	font-style: italic;
	text-align: center;
}

section h2
{
	margin-bottom: 72px;
}

.subHeading
{
	margin-top: -32px;
	margin-bottom: 32px;
	max-width: 75%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.subHeading p
{
	font-size: 16px;
	margin-bottom: 0;
}

h3
{
	font-size: 20px;
	margin: 12px 0 24px 0;
	font-weight: 700;
}

.rSplit
{
	margin-top: 40px;
}

p
{
	font-size: 20px;
	margin-bottom: 18px;
	font-weight: 300;
}

.content
{
	padding: 24px;
}

.header
{
	position: fixed;
	left: 0px;
	right: 0px;
	z-index: 1000;
	padding: 0px 0;
	text-align: left;
	background: rgb(13,16,15,0.5);
	box-shadow: none;
	opacity: 1;
	will-change: opacity;
}

.headerWordmark
{
	font-size: 28px;
	margin: 12px 0;
	font-style: italic;
	font-weight: 300;
	line-height: 1.2;
}

.headerHome
{
	color: rgb(220,220,220);
	text-decoration: none;
}

.headerHome:hover
{
	text-decoration: underline;
}

.headerLinks
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
	flex: 0 0 auto;
	gap: 12px;
	font-size: 16px;
	white-space: nowrap;
}

.headerLinks a
{
	color: rgb(220,220,220);
	text-decoration: none;
}

.headerLinks a:hover
{
	text-decoration: underline;
}

.headerLinks span
{
	opacity: 0.4;
}

.viewportFade
{
	position: fixed;
	left: 0;
	right: 0;
	height: 48px;
	pointer-events: none;
	z-index: 999;
	will-change: opacity;
}

.viewportFade-top
{
	top: 0;
	opacity: 0;
	background: linear-gradient(to bottom, rgba(13,16,15,1) 0px, rgba(13,16,15,0) 48px);
}

.viewportFade-bottom
{
	bottom: 0;
	opacity: 1;
	background: linear-gradient(to top, rgba(13,16,15,1) 0px, rgba(13,16,15,0) 48px);
}

.siteFooter
{
	border-top: 1px solid rgb(56,56,56);
	padding: 64px 0;
}

.siteFooter .container
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	text-align: center;
}

.siteFooter-brand
{
	font-size: 22px;
	font-style: italic;
	font-weight: 300;
	line-height: 1.2;
}

.siteFooter-links
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	font-size: 15px;
}

.siteFooter-links a
{
	color: rgb(220,220,220);
	text-decoration: none;
}

.siteFooter-links a:hover
{
	text-decoration: underline;
}

.siteFooter-links span
{
	opacity: 0.4;
}

.left
{
	padding-right: 16px;
	text-align: left;
}

.right
{
	padding-left: 16px;
	text-align: left;
}

.panelBox
{
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
	background: rgba(26,31,29,0.42);
	padding: 14px 18px;
	min-height: 60px;
	transition: border-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease, color 120ms ease;
}

.panelBox-selected
{
	border-color: rgba(76,255,210,0.72);
	background: radial-gradient(circle at 50% 50%, rgba(14,48,38,0.5), rgba(20,24,23,0.4));
	box-shadow: 0 0 0 1px rgba(76,255,210,0.14) inset;
	color: rgb(112,255,220);
}
.panelBox-selected h3
{
	color: rgb(112,255,220);
}

.tbcBanner
{
	position: absolute;
	left: 50%;
	top: 52%;
	transform: translate(-50%, -50%) rotate(-2deg);
	z-index: 6;
	pointer-events: none;
	width: min(720px, calc(100% - 64px));
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 10px 24px;
	border: 1px solid rgba(76,255,210,0.48);
	border-radius: 16px;
	background: rgba(14,48,38,0.72);
	box-shadow: 0 0 0 1px rgba(76,255,210,0.12) inset;
	color: rgb(112,255,220);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-align: center;
}

.ctaSecondary
{
	margin-top: 28px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.ctaSecondary-link
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgb(220,220,220);
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	padding: 8px 0;
}

.ctaSecondary-icon
{
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex: 0 0 auto;
}

.ctaSecondary-separator
{
	opacity: 0.4;
}

.ctaSecondary-link:hover
{
	text-decoration: underline;
}

.textImage
{
	display: flex;
	align-items: center;
	gap: 32px;
}

.textImage.x
{
	flex-direction: row;
}

.textImage.x.flip
{
	flex-direction: row-reverse;
}

.textImage.y
{
	flex-direction: column;
}

.textImage.y.flip
{
	flex-direction: column-reverse;
}

.ti-text,
.ti-image
{
	flex: 1;
	min-width: 0; /* critical */
 }

.ti-image img
{
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.itemRow
{
	display: grid;
	margin: 0 auto;
	
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}

.itemRow-item
{
	min-height: 96px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;

	border: 1px solid rgb(56,56,56);
	border-radius: 12px;
	padding: 24px;

	background: rgb(20,24,23);
}

.itemRow-icon
{
	font-size: 28px;
	line-height: 1;
}

.itemRow-name
{
	font-size: 24px;
	line-height: 1;
}


@media (max-width: 640px)
{
	.left { padding: 0; }
	.right { padding: 0; }
	.header .container { flex-wrap: wrap; }
	.headerLinks { width: 100%; justify-content: flex-start; }
	.pageLayout { padding-top: 104px; }
	.siteFooter { padding-bottom: 88px; }
}
