:root {
	--navy: #0d2461;
	--navy-dark: #081640;
	--navy-mid: #122d73;
	--gold: #f5a623;
	--gold-lt: #ffc14d;
	--gold-dk: #d48a10;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Barlow', sans-serif;
	background: var(--navy-dark);
	color: #fff;
	overflow-x: hidden;
}

body::after {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 9999;
	opacity: .4;
}

.font-cond {
	font-family: 'Barlow Condensed', sans-serif;
}

.c-gold {
	color: var(--gold);
}

.bg-gold-c {
	background: var(--gold);
}

#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	background: rgba(8, 22, 64, .85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(245, 166, 35, .18);
	transition: background .3s, box-shadow .3s;
}

#navbar.scrolled {
	background: rgba(8, 22, 64, .98);
	box-shadow: 0 4px 40px rgba(0, 0, 0, .4);
}

.logo-box {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 22px;
	color: var(--navy-dark);
	flex-shrink: 0;
}

.nav-a {
	color: rgba(255, 255, 255, .7);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .8px;
	text-transform: uppercase;
	transition: color .2s;
}

.nav-a:hover {
	color: var(--gold);
}

.nav-dl {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gold);
	color: var(--navy-dark);
	padding: 9px 20px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .5px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .25s;
}

.nav-dl:hover {
	background: var(--gold-lt);
	transform: translateY(-1px);
}

.hbg {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
}

.hbg span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
	transition: .3s;
}

.mob-nav {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	background: rgba(8, 22, 64, .98);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(245, 166, 35, .15);
	z-index: 899;
	flex-direction: column;
	padding: 8px 0;
}

.mob-nav.open {
	display: flex;
}

.mob-nav a {
	padding: 15px 5%;
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
	transition: color .2s;
}

.mob-nav a:hover,
.mob-nav a.hl {
	color: var(--gold);
}

.mob-nav a:last-child {
	border: none;
}


.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 110px 5% 80px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-dark) 100%);
}

.hero-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 75% 70% at 68% 50%, rgba(245, 166, 35, .09) 0%, transparent 60%);
}

.hero-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(245, 166, 35, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 166, 35, .04) 1px, transparent 1px);
	background-size: 64px 64px;
	animation: gridScroll 22s linear infinite;
}

@keyframes gridScroll {
	to {
		transform: translateY(64px);
	}
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(245, 166, 35, .1);
	border: 1px solid rgba(245, 166, 35, .3);
	border-radius: 100px;
	padding: 8px 18px;
	font-size: 12px;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	animation: fadeUp .6s ease both;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .4;
		transform: scale(.6)
	}
}

.hero-h1 {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(54px, 9vw, 100px);
	line-height: .93;
	letter-spacing: -1.5px;
	text-transform: uppercase;
	animation: fadeUp .6s .1s ease both;
}

.hero-h1 .hl {
	color: var(--gold);
	position: relative;
	display: inline-block;
}

.hero-h1 .hl::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gold);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left;
	animation: lineRev .8s .9s ease forwards;
}

@keyframes lineRev {
	to {
		transform: scaleX(1);
	}
}

.perk-chip {
	display: flex;
	align-items: center;
	gap: 9px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 8px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 500;
}

.btn-p {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gold);
	color: var(--navy-dark);
	padding: 16px 34px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 8px 32px rgba(245, 166, 35, .35);
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

.btn-p::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .18));
	opacity: 0;
	transition: .3s;
}

.btn-p:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 48px rgba(245, 166, 35, .5);
	color: var(--navy-dark);
}

.btn-p:hover::after {
	opacity: 1;
}

.btn-o {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .2);
	color: #fff;
	padding: 16px 28px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	backdrop-filter: blur(10px);
	transition: all .3s;
}

.btn-o:hover {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .4);
	transform: translateY(-2px);
	color: #fff;
}


.hero-card {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(245, 166, 35, .2);
	border-radius: 22px;
	padding: 32px;
	backdrop-filter: blur(20px);
	position: relative;
	animation: fadeRight .8s .3s ease both;
}

.hero-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(245, 166, 35, .06), transparent);
	pointer-events: none;
}

@keyframes fadeRight {
	from {
		opacity: 0;
		transform: translate(30px, -50%)
	}

	to {
		opacity: 1;
		transform: translate(0, -50%)
	}
}

.float-badge {
	position: absolute;
	background: var(--gold);
	color: var(--navy-dark);
	border-radius: 100px;
	padding: 9px 16px;
	font-weight: 700;
	font-size: 12px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 7px;
	box-shadow: 0 8px 24px rgba(245, 166, 35, .45);
	animation: floatY 3s ease-in-out infinite;
}

.float-badge-b {
	animation-delay: 1.5s;
}

@keyframes floatY {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-9px)
	}
}


.ticker-outer {
	overflow: hidden;
}

.ticker-inner {
	display: flex;
	gap: 56px;
	white-space: nowrap;
	animation: tickerAnim 26s linear infinite;
}

.ticker-it {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, .6);
	flex-shrink: 0;
}

.ticker-it i {
	color: var(--gold);
	font-size: 14px;
}

@keyframes tickerAnim {
	to {
		transform: translateX(-50%);
	}
}


.stag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
}

.stag::before {
	content: '';
	display: block;
	width: 22px;
	height: 2px;
	background: var(--gold);
	border-radius: 1px;
}

.sh2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(36px, 5vw, 64px);
	line-height: .97;
	text-transform: uppercase;
	letter-spacing: -.5px;
}

.sh2 span {
	color: var(--gold);
}


.fc {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 20px;
	padding: 36px 30px;
	transition: all .4s;
	position: relative;
	overflow: hidden;
}

.fc::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(245, 166, 35, .06), transparent);
	opacity: 0;
	transition: .4s;
}

.fc:hover {
	background: rgba(245, 166, 35, .05);
	border-color: rgba(245, 166, 35, .2);
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.fc:hover::before {
	opacity: 1;
}

.fi {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: rgba(245, 166, 35, .12);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 22px;
	transition: .3s;
}

.fc:hover .fi {
	background: rgba(245, 166, 35, .22);
	transform: scale(1.06);
}

.ftag {
	display: inline-block;
	margin-top: 16px;
	padding: 4px 12px;
	background: rgba(245, 166, 35, .1);
	color: var(--gold);
	border-radius: 100px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}


.steps-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	position: relative;
	max-width: 960px;
	margin: 64px auto 0;
}

.steps-wrap::before {
	content: '';
	position: absolute;
	top: 39px;
	left: calc(16.66% + 20px);
	right: calc(16.66% + 20px);
	height: 2px;
	background: linear-gradient(90deg, var(--gold), var(--gold-dk));
}

.step-c {
	padding: 0 24px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.step-n {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy-dark);
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 26px;
	box-shadow: 0 0 0 10px rgba(245, 166, 35, .1), 0 8px 32px rgba(245, 166, 35, .3);
}

.ec {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 16px;
	padding: 24px 20px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

.ec::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: .3s;
}

.ec:hover {
	border-color: rgba(245, 166, 35, .25);
	transform: translateY(-4px);
}

.ec:hover::before {
	transform: scaleX(1);
}

.ec.feat {
	background: rgba(245, 166, 35, .08);
	border-color: rgba(245, 166, 35, .3);
}

.ec.feat::before {
	transform: scaleX(1);
}


.cbar {
	flex: 1;
	border-radius: 6px 6px 0 0;
	position: relative;
	background: linear-gradient(180deg, var(--gold-lt) 0%, var(--gold-dk) 100%);
	transition: height 1.3s cubic-bezier(.34, 1.56, .64, 1);
}

.cbar::after {
	content: attr(data-val);
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	font-weight: 700;
	color: var(--gold);
	white-space: nowrap;
}

.cbar.peak {
	background: linear-gradient(180deg, #ffd166, var(--gold));
}

.tc {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 20px;
	padding: 32px 28px;
	transition: all .3s;
}

.tc:hover {
	border-color: rgba(245, 166, 35, .2);
	transform: translateY(-4px);
	background: rgba(245, 166, 35, .03);
}

.av {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold), var(--gold-dk));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 18px;
	color: var(--navy-dark);
	flex-shrink: 0;
}

.sr {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .65s ease, transform .65s ease;
}

.sr.in {
	opacity: 1;
	transform: translateY(0);
}

.d1 {
	transition-delay: .1s
}

.d2 {
	transition-delay: .2s
}

.d3 {
	transition-delay: .3s
}

.d4 {
	transition-delay: .4s
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@media(max-width:1024px) {
	.hero-right-wrap {
		display: none !important;
	}

	.hero-left {
		max-width: 100% !important;
	}
}

@media(max-width:768px) {
	.nav-desk {
		display: none !important;
	}

	.hbg {
		display: flex !important;
	}

	.steps-wrap {
		grid-template-columns: 1fr !important;
		gap: 40px !important;
	}

	.steps-wrap::before {
		display: none !important;
	}

	.test-grid {
		grid-template-columns: 1fr !important;
	}

	.earn-grid {
		grid-template-columns: 1fr !important;
	}

	.chart-panel {
		display: none !important;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr !important;
	}

	.earn-cols-g {
		grid-template-columns: 1fr !important;
	}
}

@media(max-width:480px) {
	.hero-h1 {
		font-size: 46px !important;
	}

	.hero-perks-wrap {
		flex-direction: column !important;
		gap: 10px !important;
	}

	.hero-btns-wrap {
		flex-direction: column !important;
	}

	.btn-p,
	.btn-o {
		justify-content: center !important;
	}

	.footer-grid {
		grid-template-columns: 1fr !important;
	}

	.cta-stats-g {
		grid-template-columns: 1fr 1fr !important;
	}

	.nav-dl-wrap {
		display: none !important;
	}
}

.footer-h {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold);
	margin-bottom: 18px;
}

.footer-a {
	display: block;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	font-size: 14px;
	margin-bottom: 12px;
	transition: color .2s;
}

.footer-a:hover {
	color: #fff;
}

.footer-social {
	color: rgba(255, 255, 255, .35);
	text-decoration: none;
	font-size: 18px;
	transition: color .2s;
}

.footer-social:hover {
	color: var(--gold);
}