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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--aeonik);
	background: var(--canvas);
	color: var(--frost);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	letter-spacing: -0.011em;
}

main {
	display: block;
}

.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 32px;
}

.mono {
	font-family: var(--mono);
	letter-spacing: -0.037em;
}

/* ===========================
   NAV
=========================== */

nav {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(16, 16, 16, .9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--onyx);
}

.nav-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 18px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.nav-logo img {
	height: 32px;
	display: block;
}

.nav-div {
	width: 1px;
	height: 20px;
	background: var(--silver);
	opacity: .4;
}

.nav-links {
	display: flex;
	gap: 20px;
	list-style: none;
	align-items: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.011em;
	color: var(--frost);
	text-decoration: none;
	transition: color .15s;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-links a.soft,
.mobile-menu a.soft,
.foot-col a.soft {
	color: var(--rattler);
}

.foot-col a.soft:hover {
	color: var(--rattler);
	opacity: .8;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--white);
	color: var(--canvas);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 11px 18px;
	border-radius: 99px;
	text-decoration: none;
	transition: opacity .15s;
}

.nav-rbi {
	display: inline-flex;
	align-items: center;
	background: var(--white);
	padding: 5px 9px;
	border-radius: 8px;
	opacity: .92;
	transition: opacity .15s;
}

.nav-rbi:hover {
	opacity: 1;
}

.nav-rbi img {
	height: 26px;
	width: auto;
	display: block;
}

.nav-pill:hover {
	opacity: .9;
}

.nav-pill:active {
	background: var(--accent);
	color: var(--white);
	opacity: 1;
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--frost);
	font-size: 26px;
	cursor: pointer;
}

.mobile-menu {
	position: fixed;
	top: 68px;
	left: 0;
	right: 0;
	background: var(--canvas);
	border-bottom: 1px solid var(--onyx);
	display: none;
	flex-direction: column;
	padding: 24px 32px;
	z-index: 199;
}

.mobile-menu.open {
	display: flex;
}

.mobile-menu a {
	color: var(--frost);
	text-decoration: none;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

/* ===========================
   BUTTONS
=========================== */

.btn-white {
	background: var(--white);
	color: var(--canvas);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.011em;
	padding: 11px 22px;
	border-radius: 8px;
	text-decoration: none;
	transition: opacity .15s;
	display: inline-block;
}

.btn-white:hover {
	opacity: .9;
}

/* Instant press feedback -- :active covers a mouse/tap press on any
   btn-white use (Register a Player, Request Information, etc.); the
   .is-submitting class is added by JS on the two async forms (Register,
   Contact) so the teal state persists through the submit -> iframe-load
   round trip instead of just flashing for the moment the button is held
   down. */
.btn-white:active,
.btn-white.is-submitting {
	background: var(--accent);
	color: var(--white);
	opacity: 1;
}

.btn-out {
	background: transparent;
	border: 1px solid var(--silver);
	color: var(--frost);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.011em;
	padding: 11px 22px;
	border-radius: 8px;
	text-decoration: none;
	transition: border-color .15s, color .15s;
	display: inline-block;
}

.btn-out:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.btn-rattler {
	background: var(--rattler);
	color: #0a2408;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.011em;
	padding: 11px 22px;
	border-radius: 8px;
	text-decoration: none;
	display: inline-block;
	transition: opacity .15s;
}

.btn-rattler:hover {
	opacity: .9;
}

/* ===========================
   SECTION
=========================== */

section.blk {
	padding: 96px 0;
}

.sec-label {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: var(--accent);
	margin-bottom: 16px;
}

.sec-title {
	font-family: var(--display);
	font-size: clamp(34px, 5vw, 60px);
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--frost);
	margin-bottom: 16px;
}

.sec-title em {
	font-style: normal;
	color: var(--accent);
}

.sec-lead {
	font-size: 18px;
	font-weight: 400;
	color: var(--smoke);
	line-height: 1.5;
	max-width: 620px;
	margin-bottom: 40px;
}

/* ===========================
   FOOTER
=========================== */

footer {
	border-top: 1px solid var(--onyx);
	padding: 56px 0 32px;
}

.foot-grid {
	display: grid;
	grid-template-columns: 1.6fr 3fr;
	gap: 40px;
	margin-bottom: 40px;
}

.foot-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.foot-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.foot-brand img {
	height: 30px;
}

.foot-brand-txt {
	font-family: var(--display);
	font-size: 20px;
	font-weight: 400;
	color: var(--frost);
	letter-spacing: .02em;
	text-transform: uppercase;
}

.foot-tag {
	font-size: 14px;
	color: var(--graphite);
	line-height: 1.5;
	max-width: 220px;
}

.foot-col h4 {
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: var(--accent);
	margin-bottom: 16px;
}

.foot-col ul {
	list-style: none;
}

.foot-col li {
	margin-bottom: 10px;
}

.foot-col a {
	color: var(--smoke);
	text-decoration: none;
	font-size: 14px;
	transition: color .15s;
}

.foot-col a:hover {
	color: var(--frost);
}

.foot-col a:active {
	color: var(--accent);
}

.foot-bot {
	border-top: 1px solid var(--onyx);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-family: var(--mono);
	font-size: 13px;
	letter-spacing: -0.02em;
	color: var(--graphite);
}

.foot-credit {
	margin-top: 16px;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: -0.02em;
	color: var(--graphite);
}

.foot-credit a {
	color: var(--accent);
	text-decoration: underline;
}

.foot-credit a:hover {
	opacity: .8;
}

.socials {
	display: flex;
	align-items: center;
	gap: 16px;
}

.socials a {
	color: var(--graphite);
	text-decoration: none;
	transition: color .15s;
	display: inline-flex;
	align-items: center;
}

.socials a:hover {
	color: var(--accent);
}

.socials svg {
	display: block;
}

/* ===========================
   MOTION / REVEAL
=========================== */

.r {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .55s ease, transform .55s ease;
}

.r.on {
	opacity: 1;
	transform: none;
}

@keyframes fadeUp {
	0% { opacity: 0; transform: translateY(22px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes twinkle {
	0%, 100% { opacity: .15; }
	50% { opacity: .9; }
}
