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

html {
	scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 6px;
	background: transparent;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 3px;
	transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.25);
}

::-webkit-scrollbar-thumb:active {
	background: rgba(255, 255, 255, 0.3);
}

/* Firefox Scrollbar */
* {
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.03);
}

:root {
	--bg-dark: #15161b;
	--bg-darker: #0f1014;
	--text-white: #ffffff;
	--text-gray: #a8a9ad;
	--accent-green: #83efaa;
	--accent-green-hover: #6cd798;
	--border-color: rgba(255, 255, 255, 0.08);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-white);
	line-height: 1.6;
	overflow-x: hidden;
}

main {
	padding-top: 72px;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

._f {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

._9 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 16, 20, 0.7);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	transition: var(--transition);

	animation: slideDown 0.6s ease-out;
}

._6 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	gap: 24px;
}

._e {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: var(--transition);
}

@media (prefers-reduced-motion: no-preference) {
	._e svg,
	._z,
	._x,
	._p,
	._4 {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
}

._e:hover {
	opacity: 0.8;
}

._e svg {
	width: 40px;
	height: 42px;
	transition: var(--transition);
}

._e:hover svg {
	transform: rotate(-5deg) scale(1.05);
}

._z {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-white);
	letter-spacing: -0.02em;
}

._x {
	background: rgba(131, 239, 170, 0.05);
	border: 1px solid rgba(131, 239, 170, 0.2);
	border-radius: 12px;
	padding: 0 20px;
	height: 44px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

._x::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.1),
		transparent
	);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

._g {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
}

._i {
	width: 18px;
	height: 18px;
	color: var(--accent-green);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

._b {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

._7 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-white);
	font-variant-numeric: tabular-nums;
	transition: transform 0.2s ease;
}

._m {
	font-size: 14px;
	font-weight: 500;
	padding: 4px 8px;
	border-radius: 6px;
}

._m.positive {
	color: var(--accent-green);
	background: rgba(131, 239, 170, 0.1);
}

._m.negative {
	color: #ef4444;
	background: rgba(239, 68, 68, 0.1);
}

._v {
	width: 1px;
	height: 20px;
	background: var(--border-color);
	margin: 0 16px;
}

._3 {
	font-size: 13px;
	color: var(--text-gray);
	font-weight: 500;
}

._u {
	font-size: 14px;
	color: var(--text-white);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

._n {
	position: relative;
}

._p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 20px;
	height: 44px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	cursor: pointer;
	transition: var(--transition);
	font-size: 15px;
	font-weight: 500;
	color: var(--text-gray);
}

._p:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(131, 239, 170, 0.3);
	color: var(--text-white);
}

._p.active {
	background: rgba(131, 239, 170, 0.1);
	border-color: var(--accent-green);
	color: var(--accent-green);
}

._p ._w {
	width: 20px;
	height: 20px;
	color: var(--text-white);
	transition: var(--transition);
}

._p.active ._w {
	transform: rotate(180deg);
	color: var(--accent-green);
}

._j {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 200px;
	background: rgba(21, 22, 27, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: var(--transition);

	z-index: 1001;
}

._j.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

._5 {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: var(--text-gray);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	transition: var(--transition);
}

._5 ._w {
	width: 18px;
	height: 18px;
	opacity: 0.7;
	transition: var(--transition);
}

._5:hover {
	color: var(--text-white);
	background: rgba(131, 239, 170, 0.1);
}

._5:hover ._w {
	opacity: 1;
	color: var(--accent-green);
}

._5:active {
	transform: scale(0.98);
}

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

._4 {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--accent-green), #6cd798);
	color: var(--bg-dark);
	border: none;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

._4::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

._4:hover::before {
	left: 100%;
}

._4:hover {
	background: var(--accent-green-hover);
	transform: translateY(-2px);
}

._4:active {
	transform: translateY(0);
}

._4 ._w {
	width: 20px;
	height: 20px;
	display: block;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.animate-spin {
	animation: spin 1s linear infinite;
}

._k {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	align-items: center;
	justify-content: center;
}

._k span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text-white);
	transition: var(--transition);
	transform-origin: center;
}

._k:hover span {
	background: var(--accent-green);
}

/* Large screens */
@media (max-width: 1400px) {
	._f {
		max-width: 100%;
		padding: 0 40px;
	}
}

/* Desktop to tablet transition */
@media (max-width: 1200px) {
	._6 {
		gap: 20px;
	}

	._x {
		padding: 0 16px;
	}

	._3 {
		font-size: 12px;
	}

	._u {
		font-size: 13px;
	}
}

/* Tablet landscape */
@media (max-width: 1024px) {
	._f {
		padding: 0 30px;
	}

	._6 {
		padding: 14px 0;
	}

	._e svg {
		width: 36px;
		height: 38px;
	}

	._z {
		font-size: 22px;
	}

	._x {
		height: 40px;
	}

	._v:last-of-type,
	._3:last-of-type,
	._u:last-of-type {
		display: none;
	}

	._p {
		padding: 0 16px;
		height: 40px;
		font-size: 14px;
	}

	._4 {
		padding: 10px 20px;
		height: 40px;
		font-size: 14px;
	}
}

/* Tablet portrait */
@media (max-width: 850px) {
	._6 {
		flex-wrap: nowrap;
	}

	._v,
	._3,
	._u {
		display: none;
	}

	._x {
		min-width: 140px;
	}

	._7 {
		font-size: 15px;
	}

	._m {
		font-size: 13px;
	}
}

/* Mobile landscape */
@media (max-width: 768px) {
	._9 {
		border-bottom-width: 0.5px;
	}

	._9.scrolled {
		padding-top: env(safe-area-inset-top);
	}

	._f {
		padding: 0 20px;
	}

	._6 {
		padding: 12px 0;
		gap: 16px;
		justify-content: space-between;
	}

	._e {
		gap: 10px;
		flex-shrink: 0;
	}

	._e svg {
		width: 32px;
		height: 34px;
	}

	._z {
		font-size: 20px;
	}

	._x {
		flex: 1;
		padding: 0 12px;
		height: 36px;
		margin: 0 8px;
		max-width: 160px;
		background: rgba(131, 239, 170, 0.05);
	}

	._b {
		font-size: 12px;
	}

	._7 {
		font-size: 14px;
	}

	._m {
		font-size: 12px;
		padding: 3px 6px;
	}

	._n {
		display: none;
	}

	._2 {
		display: flex;
		flex-shrink: 0;
	}

	._k {
		display: flex;
	}

	._4 {
		padding: 0;
		width: 36px;
		font-size: 13px;
		height: 36px;
		border-radius: 8px;
		justify-content: center;
	}

	._4 span {
		display: none;
	}

	._4 ._w {
		width: 18px;
		height: 18px;
		margin: 0;
	}
}

/* Mobile portrait */
@media (max-width: 480px) {
	._f {
		padding: 0 16px;
	}

	._6 {
		padding: 10px 0;
		gap: 8px;
	}

	._e svg {
		width: 28px;
		height: 30px;
	}

	._z {
		font-size: 18px;
	}

	._x {
		flex: 1;
		height: 32px;
		padding: 0 10px;
		min-width: auto;
		margin: 0 4px;
		background: rgba(131, 239, 170, 0.03);
	}

	._g {
		gap: 8px;
	}

	._i {
		width: 16px;
		height: 16px;
		display: none;
	}

	._b {
		display: none;
	}

	._7 {
		font-size: 13px;
		font-weight: 600;
	}

	._m {
		font-size: 11px;
		padding: 2px 4px;
	}

	._2 {
		gap: 8px;
	}

	._4 {
		width: 32px;
		height: 32px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	._4 ._w {
		width: 16px;
		height: 16px;
		margin: 0;
	}

	._k {
		padding: 6px;
		width: 32px;
		height: 32px;
	}

	._k span {
		width: 20px;
	}

	.mobile-nav {
		padding: 16px;
	}

	.mobile-nav-link {
		font-size: 16px;
		padding: 16px;
	}
}

/* Very small mobile */
@media (max-width: 360px) {
	._f {
		padding: 0 12px;
	}

	._6 {
		gap: 6px;
	}

	._z {
		font-size: 16px;
	}

	._x {
		padding: 0 8px;
		margin: 0 2px;
	}

	._7 {
		font-size: 12px;
	}

	._m {
		font-size: 10px;
		padding: 1px 3px;
	}
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
	._9 {
		padding: 8px 0;
	}

	._6 {
		padding: 8px 0;
	}

	._e svg {
		width: 28px;
		height: 30px;
	}

	._x {
		height: 32px;
	}

	._4,
	._k {
		height: 32px;
	}

	.mobile-menu {
		padding-top: 60px;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

._9.scrolled {
	background: rgba(15, 16, 20, 0.98);

	border-bottom-color: rgba(131, 239, 170, 0.1);
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 16, 20, 0.98);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
	padding-top: 80px;
}

.mobile-menu._nr {
	opacity: 1;
	visibility: visible;
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	padding: 20px;
	max-width: 400px;
	margin: 0 auto;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--text-gray);
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	padding: 20px;
	margin-bottom: 8px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid transparent;
	transition: var(--transition);
}

.mobile-nav-link:hover {
	color: var(--text-white);
	background: rgba(131, 239, 170, 0.1);
	border-color: rgba(131, 239, 170, 0.2);
}

.mobile-nav-link ._w {
	width: 24px;
	height: 24px;
	opacity: 0.7;
}

.mobile-nav-link:hover ._w {
	opacity: 1;
	color: var(--accent-green);
}

._k.active span:nth-child(1) {
	transform: rotate(45deg);
	position: relative;
	top: 6px;
}

._k.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

._k.active span:nth-child(3) {
	transform: rotate(-45deg);
	position: relative;
	top: -6px;
}

/* Hero Section */
._d {
	position: relative;
	padding: 80px 0 100px;
	overflow: visible;
}

/* Hero Background */
._a {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

._s {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.3;
}

._l {
	background: var(--accent-green);
	top: -150px;
	right: -150px;
	animation: glow-pulse 8s ease-in-out infinite;
}

._h {
	background: var(--accent-green);
	bottom: -150px;
	left: -150px;
	animation: glow-pulse 8s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
	0%,
	100% {
		transform: scale(1) translate(0, 0);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.2) translate(20px, -20px);
		opacity: 0.2;
	}
}

._o {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
			circle at 20% 50%,
			rgba(131, 239, 170, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(131, 239, 170, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(131, 239, 170, 0.08) 0%,
			transparent 50%
		);
}

/* Hero Content */
._q {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

._0 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(131, 239, 170, 0.1);
	border: 1px solid rgba(131, 239, 170, 0.2);
	border-radius: 100px;
	padding: 8px 20px;
	margin-bottom: 24px;
	animation: badge-appear 0.6s ease-out;
}

._0 ._w {
	width: 16px;
	height: 16px;
	color: var(--accent-green);
}

._0 span {
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-green);
	letter-spacing: 0.5px;
}

@keyframes badge-appear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Title */
._c {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	animation: title-appear 0.8s ease-out 0.1s both;
}

._8 {
	display: block;
}

._y {
	color: var(--accent-green);
	text-shadow: 0 0 40px rgba(131, 239, 170, 0.5);
}

@keyframes title-appear {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Description */
._11 {
	font-size: 20px;
	line-height: 1.6;
	color: var(--text-gray);
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: desc-appear 0.8s ease-out 0.2s both;
}

@keyframes desc-appear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Actions */
._r1 {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 48px;
	animation: actions-appear 0.8s ease-out 0.3s both;
}

._91 {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 40px;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

._91 ._w {
	width: 20px;
	height: 20px;
	transition: all 0.4s ease;
}

._f1 {
	background: linear-gradient(135deg, #83efaa 0%, #5fd88a 100%);
	color: #0f1014;
	position: relative;
	z-index: 1;
	border: 2px solid transparent;
	background-clip: padding-box;
}

._f1::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #5fd88a 0%, #4bc276 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	border-radius: 100px;
}

._f1::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

._f1:hover {
	transform: scale(1.05) translateY(-2px);
}

._f1:hover::before {
	opacity: 1;
}

._f1:hover ._w {
	transform: rotate(15deg) scale(1.1);
}

._f1:active {
	transform: scale(0.98);
}

._f1:active::after {
	width: 300px;
	height: 300px;
}

._61 {
	background: transparent;
	color: var(--text-white);
	border: 2px solid rgba(131, 239, 170, 0.3);
	position: relative;
	overflow: hidden;
}

._61::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		45deg,
		var(--accent-green),
		transparent,
		var(--accent-green)
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	filter: blur(5px);
}

._61::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--bg-dark);
	z-index: -1;
}

._61:hover {
	color: var(--accent-green);
	border-color: var(--accent-green);
	transform: scale(1.05) translateY(-2px);
}

._61:hover::before {
	opacity: 0.3;
}

._61:hover ._w {
	transform: rotate(-15deg) scale(1.1);
}

@keyframes actions-appear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Stats */
._e1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 0;
	animation: stats-appear 0.8s ease-out 0.4s both;
}

._z1 {
	text-align: center;
}

._x1 {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 4px;
}

._g1 {
	font-size: 14px;
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

._w1 {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
}

@keyframes stats-appear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Floating Elements */
._i1 {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: visible;
}

._b1 {
	position: absolute;
	width: 120px;
	height: 120px;
	background: rgba(131, 239, 170, 0.1);
	border-radius: 24px;
	padding: 24px;
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
}

._b1 ._w {
	width: 48px;
	height: 48px;
	color: var(--accent-green);
}

._71 {
	top: 20%;
	left: 10%;
	animation: float-1 20s ease-in-out infinite;
}

._m1 {
	top: 60%;
	right: 15%;
	animation: float-2 25s ease-in-out infinite;
}

._t1 {
	bottom: 20%;
	left: 20%;
	animation: float-3 18s ease-in-out infinite;
}

._v1 {
	top: 15%;
	right: 5%;
	animation: float-4 22s ease-in-out infinite;
}

.floating-element-5 {
	bottom: 10%;
	right: 25%;
	animation: float-5 16s ease-in-out infinite;
}

.floating-element-6 {
	top: 70%;
	left: 5%;
	animation: float-6 20s ease-in-out infinite;
}

@keyframes float-1 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -30px) rotate(45deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(-20deg);
	}
}

@keyframes float-2 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(-40px, 20px) rotate(-30deg);
	}
	66% {
		transform: translate(20px, -40px) rotate(60deg);
	}
}

@keyframes float-3 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(40px, 30px) rotate(90deg);
	}
	66% {
		transform: translate(-30px, -20px) rotate(-45deg);
	}
}

@keyframes float-4 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(-25px, 35px) rotate(75deg);
	}
	50% {
		transform: translate(35px, -15px) rotate(-30deg);
	}
	75% {
		transform: translate(-15px, -25px) rotate(45deg);
	}
}

@keyframes float-5 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	40% {
		transform: translate(30px, -35px) rotate(-60deg);
	}
	80% {
		transform: translate(-25px, 25px) rotate(120deg);
	}
}

@keyframes float-6 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	30% {
		transform: translate(45px, -20px) rotate(80deg);
	}
	60% {
		transform: translate(-20px, 40px) rotate(-40deg);
	}
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
	._s {
		display: none;
	}

	._c {
		font-size: 48px;
	}

	._11 {
		font-size: 18px;
	}

	._e1 {
		gap: 32px;
	}

	._x1 {
		font-size: 32px;
	}

	.floating-element-5,
	.floating-element-6 {
		display: none;
	}
}

@media (max-width: 768px) {
	._d {
		padding: 60px 0 60px;
		overflow-x: hidden;
	}

	._c {
		font-size: 36px;
		margin-bottom: 16px;
	}

	._11 {
		font-size: 16px;
		margin-bottom: 32px;
	}

	._r1 {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}

	._91 {
		width: 100%;
		justify-content: center;
	}

	._e1 {
		gap: 24px;
	}

	._x1 {
		font-size: 28px;
	}

	._g1 {
		font-size: 12px;
	}

	._s {
		display: none;
	}

	._b1 {
		display: none;
	}

	._v1,
	.floating-element-5,
	.floating-element-6 {
		display: none;
	}

	._71,
	._m1,
	._t1 {
		display: none;
	}
}

@media (max-width: 480px) {
	._d {
		padding: 40px 0 50px;
		overflow-x: hidden;
	}

	._s {
		display: none;
	}

	._0 {
		font-size: 12px;
		padding: 6px 16px;
		margin-bottom: 24px;
	}

	._0 ._w {
		width: 14px;
		height: 14px;
	}

	._c {
		font-size: 28px;
	}

	._11 {
		font-size: 15px;
		line-height: 1.5;
	}

	._91 {
		font-size: 14px;
		padding: 16px 32px;
		letter-spacing: 0.3px;
	}

	._91 ._w {
		width: 18px;
		height: 18px;
	}

	._e1 {
		gap: 20px;
		margin-bottom: 0;
	}

	._x1 {
		font-size: 24px;
	}

	._w1 {
		height: 30px;
	}
}

@media (max-width: 360px) {
	._s {
		display: none;
	}

	._c {
		font-size: 24px;
	}

	._x1 {
		font-size: 20px;
	}

	._e1 {
		gap: 16px;
	}
}

/* Decorative Line with Logos */
._31 {
	position: absolute;
	bottom: -15px;
	left: -5%;
	right: -5%;
	height: 60px;
	background: linear-gradient(
		135deg,
		rgba(131, 239, 170, 0.08) 0%,
		rgba(131, 239, 170, 0.15) 50%,
		rgba(131, 239, 170, 0.08) 100%
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(131, 239, 170, 0.2);
	border-radius: 20px;
	transform: rotate(-1deg);
	overflow: hidden;
	z-index: 100;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 40px rgba(131, 239, 170, 0.05),
		inset 0 1px 5px rgba(255, 255, 255, 0.05);
}

._31::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.2),
		transparent
	);
	animation: lineShimmer 4s infinite;
}

@keyframes lineShimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

._u1 {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 20px;
	gap: 60px;
	white-space: nowrap;
	animation: scrollLogos 30s linear infinite;
}

@keyframes scrollLogos {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

._21 {
	font-size: 18px;
	font-weight: 700;
	color: var(--accent-green);
	text-shadow: 0 1px 10px rgba(131, 239, 170, 0.4),
		0 0 20px rgba(131, 239, 170, 0.2);
	letter-spacing: -0.02em;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	position: relative;
}

._21::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -12px;
	width: 8px;
	height: 8px;
	background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
	border-radius: 50%;
	transform: translateY(-50%);
	animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
	0% {
		opacity: 0.5;
		transform: translateY(-50%) scale(0.8);
	}
	100% {
		opacity: 1;
		transform: translateY(-50%) scale(1.2);
	}
}

._21:hover {
	opacity: 1;
	transform: scale(1.05);
}

/* Responsive Decorative Line */
@media (max-width: 1024px) {
	._31 {
		bottom: -12px;
		height: 50px;
		transform: rotate(1.5deg);
		left: -2%;
		right: -2%;
	}

	._21 {
		font-size: 16px;
	}

	._u1 {
		gap: 50px;
	}
}

@media (max-width: 768px) {
	._31 {
		bottom: -10px;
		height: 40px;
		transform: rotate(-3deg);
		border-radius: 15px;
		left: 0;
		right: 0;
	}

	._21 {
		font-size: 14px;
	}

	._u1 {
		gap: 40px;
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	._31 {
		bottom: -8px;
		height: 35px;
		transform: rotate(-2deg);
		border-radius: 12px;
		left: 0;
		right: 0;
		margin: 0 10px;
	}

	._21 {
		font-size: 12px;
	}

	._u1 {
		gap: 30px;
		padding: 0 10px;
	}

	._21::before {
		width: 6px;
		height: 6px;
		left: -8px;
	}
}

/* Extra small screens */
@media (max-width: 360px) {
	._31 {
		left: 0;
		right: 0;
		margin: 0 5px;
	}
}

/* About Section */
._n1 {
	position: relative;
	padding: 100px 0;
	background: var(--background);
	overflow: hidden;
}

._n1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.3),
		transparent
	);
}

/* Section Header */
._p1 {
	text-align: center;
	margin-bottom: 80px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

._j1 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(131, 239, 170, 0.1);
	border: 1px solid rgba(131, 239, 170, 0.2);
	border-radius: 100px;
	padding: 8px 20px;
	margin-bottom: 24px;
	animation: fadeInUp 0.6s ease-out;
}

._j1 ._w {
	width: 16px;
	height: 16px;
	color: var(--accent-green);
}

._j1 span {
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-green);
	letter-spacing: 0.5px;
}

._51 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--text-white);
	animation: fadeInUp 0.8s ease-out 0.1s both;
}

._41 {
	color: var(--accent-green);
	text-shadow: 0 0 30px rgba(131, 239, 170, 0.4);
}

._k1 {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-gray);
	margin-bottom: 0;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* About Content */
._d1 {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* Feature Cards */
._a1 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 0;
}

._s1 {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 32px;
	position: relative;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	overflow: hidden;
}

._s1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-green),
		transparent
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

._s1::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(131, 239, 170, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

._s1:hover {
	transform: translateY(-8px);
	border-color: rgba(131, 239, 170, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(131, 239, 170, 0.1);
}

._s1:hover::before {
	opacity: 1;
}

._s1:hover::after {
	opacity: 1;
}

._s1:hover ._l1 {
	transform: scale(1.1) rotate(5deg);
}

._s1:hover ._l1 ._w {
	color: var(--accent-green);
}

._l1 {
	width: 60px;
	height: 60px;
	background: rgba(131, 239, 170, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

._l1 ._w {
	width: 28px;
	height: 28px;
	color: rgba(131, 239, 170, 0.8);
	transition: all 0.4s ease;
}

._h1 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

._o1 {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-gray);
	margin: 0;
	position: relative;
	z-index: 1;
}

/* Stats Cards */
._q1 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

._q1::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.1),
		transparent
	);
	animation: statsShimmer 6s infinite;
}

@keyframes statsShimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

._01 {
	text-align: center;
	position: relative;
	z-index: 1;
}

._c1 {
	font-size: 36px;
	font-weight: 700;
	color: var(--accent-green);
	margin-bottom: 8px;
	text-shadow: 0 0 20px rgba(131, 239, 170, 0.3);
}

._81 {
	font-size: 14px;
	color: var(--text-gray);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	._n1 {
		padding: 80px 0;
	}

	._p1 {
		margin-bottom: 60px;
	}

	._51 {
		font-size: 40px;
	}

	._a1 {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 24px;
	}

	._s1 {
		padding: 28px;
	}

	._d1 {
		gap: 50px;
	}
}

@media (max-width: 768px) {
	._n1 {
		padding: 60px 0;
	}

	._p1 {
		margin-bottom: 50px;
	}

	._51 {
		font-size: 32px;
		margin-bottom: 16px;
	}

	._k1 {
		font-size: 16px;
	}

	._a1 {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	._s1 {
		padding: 24px;
	}

	._l1 {
		width: 50px;
		height: 50px;
		margin-bottom: 16px;
	}

	._l1 ._w {
		width: 24px;
		height: 24px;
	}

	._h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	._o1 {
		font-size: 14px;
	}

	._q1 {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		padding: 32px;
		gap: 20px;
	}

	._c1 {
		font-size: 28px;
		margin-bottom: 6px;
	}

	._81 {
		font-size: 12px;
	}

	._d1 {
		gap: 40px;
	}
}

@media (max-width: 480px) {
	._n1 {
		padding: 50px 0;
	}

	._51 {
		font-size: 28px;
	}

	._s1 {
		padding: 20px;
	}

	._q1 {
		grid-template-columns: repeat(2, 1fr);
		padding: 24px;
		gap: 16px;
	}

	._c1 {
		font-size: 24px;
	}

	._81 {
		font-size: 11px;
	}
}

@media (max-width: 360px) {
	._51 {
		font-size: 24px;
	}

	._a1 {
		gap: 16px;
	}

	._s1 {
		padding: 18px;
	}
}

/* Tokenomics Section */
._y1 {
	position: relative;
	padding: 120px 0;
	background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
	overflow: hidden;
}

/* Allow sticky overflow only on desktop */
@media (min-width: 1025px) {
	._y1 {
		overflow: visible;
	}
}

._y1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.3),
		transparent
	);
}

._1r {
	text-align: center;
	margin-bottom: 80px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

._rr {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-bottom: 80px;
}

/* Min-height only for desktop sticky effect */
@media (min-width: 1025px) {
	._rr {
		min-height: 100vh;
	}

	._ur {
		min-height: 80vh;
	}
}

/* Chart Section */
._9r {
	position: relative;
	align-self: start;
	height: fit-content;
}

/* Sticky only on desktop */
@media (min-width: 1025px) {
	._9r {
		position: -webkit-sticky;
		position: sticky;
		top: 100px;
		z-index: 10;
	}
}

._fr {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

._6r {
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		var(--accent-green) 0deg 180deg,
		#4ade80 180deg 270deg,
		#22d3ee 270deg 324deg,
		#fb7185 324deg 360deg
	);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: chartRotate 20s linear infinite;
	box-shadow: 0 0 50px rgba(131, 239, 170, 0.2),
		inset 0 0 100px rgba(0, 0, 0, 0.3);
}

@keyframes chartRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

._er {
	width: 140px;
	height: 140px;
	background: var(--bg-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(131, 239, 170, 0.3);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

._zr {
	text-align: center;
	animation: chartRotate 20s linear infinite reverse;
}

._xr {
	display: block;
	font-size: 36px;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 4px;
}

._gr {
	display: block;
	font-size: 14px;
	color: var(--text-gray);
	font-weight: 500;
}

._wr {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 300px;
}

._ir {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	cursor: pointer;
	transition: var(--transition);
}

._ir:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(131, 239, 170, 0.3);
	transform: translateX(8px);
}

._br {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	flex-shrink: 0;
}

._7r {
	background: var(--accent-green);
	box-shadow: 0 0 10px rgba(131, 239, 170, 0.5);
}

._tr {
	background: #4ade80;
	box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

._vr {
	background: #22d3ee;
	box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

._3r {
	background: #fb7185;
	box-shadow: 0 0 10px rgba(251, 113, 133, 0.5);
}

._mr {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-white);
}

/* Details Section */
._ur {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

._2r {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 24px;
	cursor: pointer;
	transition: var(--transition);
	opacity: 0.6;
	transform: scale(0.98);
}

._2r.active {
	opacity: 1;
	transform: scale(1);
	background: rgba(131, 239, 170, 0.05);
	border-color: rgba(131, 239, 170, 0.2);
	box-shadow: 0 8px 32px rgba(131, 239, 170, 0.1);
}

._2r:hover {
	opacity: 1;
	transform: scale(1);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

._pr {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

._jr {
	width: 48px;
	height: 48px;
	background: rgba(131, 239, 170, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

._2r.active ._jr {
	background: var(--accent-green);
}

._jr ._w {
	width: 24px;
	height: 24px;
	color: var(--accent-green);
	transition: var(--transition);
}

._2r.active ._jr ._w {
	color: var(--bg-dark);
}

._5r {
	flex: 1;
}

._4r {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 8px;
}

._kr {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-green);
}

._dr {
	padding-left: 64px;
}

._ar {
	font-size: 16px;
	color: var(--text-gray);
	line-height: 1.6;
	margin-bottom: 20px;
}

._sr {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

._lr {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

._81 {
	font-size: 13px;
	color: var(--text-gray);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

._hr {
	font-size: 16px;
	color: var(--text-white);
	font-weight: 600;
}

/* Features Section */
._or {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

._qr {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	transition: var(--transition);
}

._qr:hover {
	background: rgba(131, 239, 170, 0.05);
	border-color: rgba(131, 239, 170, 0.2);
	transform: translateY(-4px);
}

._0r {
	width: 56px;
	height: 56px;
	background: rgba(131, 239, 170, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

._0r ._w {
	width: 28px;
	height: 28px;
	color: var(--accent-green);
}

._8r {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 8px;
}

._yr {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.5;
}

/* Animations */
@keyframes tokenomicsAppear {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

._1r {
	animation: tokenomicsAppear 0.8s ease-out;
}

._9r {
	animation: tokenomicsAppear 0.8s ease-out 0.2s both;
}

._ur {
	animation: tokenomicsAppear 0.8s ease-out 0.4s both;
}

._or {
	animation: tokenomicsAppear 0.8s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
	._y1 {
		padding: 80px 0;
	}

	._rr {
		gap: 60px;
		min-height: auto;
	}

	._9r {
		position: relative;
		top: auto;
		z-index: auto;
	}

	._ur {
		min-height: auto;
	}

	._6r {
		width: 250px;
		height: 250px;
	}

	._er {
		width: 120px;
		height: 120px;
	}

	._xr {
		font-size: 30px;
	}

	._dr {
		padding-left: 0;
		margin-top: 16px;
	}

	._sr {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

@media (max-width: 768px) {
	._y1 {
		padding: 60px 0;
	}

	._rr {
		grid-template-columns: 1fr;
		gap: 50px;
		min-height: auto;
	}

	._9r {
		position: relative;
		top: auto;
		z-index: auto;
	}

	._ur {
		min-height: auto;
	}

	._or {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	._qr {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	._6r {
		width: 200px;
		height: 200px;
	}

	._er {
		width: 100px;
		height: 100px;
	}

	._xr {
		font-size: 24px;
	}

	._gr {
		font-size: 12px;
	}

	._wr {
		max-width: none;
	}

	._2r {
		padding: 20px;
	}

	._pr {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	._kr {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	._y1 {
		padding: 40px 0;
	}

	._1r {
		margin-bottom: 40px;
	}

	._rr {
		gap: 40px;
		margin-bottom: 40px;
		min-height: auto;
	}

	._9r {
		position: relative;
		top: auto;
		z-index: auto;
	}

	._ur {
		min-height: auto;
	}

	._6r {
		width: 180px;
		height: 180px;
	}

	._er {
		width: 80px;
		height: 80px;
	}

	._xr {
		font-size: 20px;
	}

	._wr {
		gap: 12px;
	}

	._ir {
		padding: 10px 12px;
	}

	._4r {
		font-size: 18px;
	}

	._0r {
		width: 48px;
		height: 48px;
	}

	._0r ._w {
		width: 24px;
		height: 24px;
	}

	._8r {
		font-size: 16px;
	}
}

/* Roadmap Section */
._19 {
	padding: 120px 0;
	background: var(--bg-dark);
	position: relative;
}

._r9 {
	text-align: center;
	margin-bottom: 80px;
}

/* Roadmap Timeline */
._99 {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

._f9 {
	display: flex;
	margin-bottom: 60px;
	position: relative;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

._f9:nth-child(1) {
	animation-delay: 0.1s;
}
._f9:nth-child(2) {
	animation-delay: 0.2s;
}
._f9:nth-child(3) {
	animation-delay: 0.3s;
}
._f9:nth-child(4) {
	animation-delay: 0.4s;
}
._f9:nth-child(5) {
	animation-delay: 0.5s;
}
._f9:nth-child(6) {
	animation-delay: 0.6s;
}

._e9 {
	flex-shrink: 0;
	width: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 40px;
}

._z9 {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

._f9.completed ._z9 {
	background: linear-gradient(135deg, var(--accent-green), #4ade80);
	color: var(--bg-dark);
}

._f9.current ._z9 {
	background: linear-gradient(135deg, #f59e0b, #f97316);
	color: white;
}

._f9.upcoming ._z9 {
	background: linear-gradient(135deg, #6b7280, #9ca3af);
	color: white;
}

._z9.pulsing {
	animation: pulse-roadmap 2s infinite;
}

@keyframes pulse-roadmap {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
	}
}

._x9 {
	width: 2px;
	height: 80px;
	background: linear-gradient(
		to bottom,
		rgba(107, 114, 128, 0.3),
		rgba(107, 114, 128, 0.1)
	);
	margin-top: 10px;
}

._x9.last {
	display: none;
}

._g9 {
	flex: 1;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 32px;
	position: relative;
	transition: all 0.3s ease;
}

._g9::before {
	content: '';
	position: absolute;
	left: -20px;
	top: 20px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 20px solid rgba(255, 255, 255, 0.03);
}

._g9:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

._w9 {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-green);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

._i9 {
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin-bottom: 12px;
	line-height: 1.2;
}

._b9 {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

._b9.completed {
	background: rgba(131, 239, 170, 0.2);
	color: var(--accent-green);
	border: 1px solid rgba(131, 239, 170, 0.3);
}

._b9.current {
	background: rgba(245, 158, 11, 0.2);
	color: #f59e0b;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

._b9.upcoming {
	background: rgba(107, 114, 128, 0.2);
	color: #9ca3af;
	border: 1px solid rgba(107, 114, 128, 0.3);
}

._79 {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 24px;
}

._m9 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

._t9 {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

._t9:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

._t9 ._w {
	width: 16px;
	height: 16px;
	color: var(--accent-green);
	flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	._19 {
		padding: 80px 0;
	}

	._r9 {
		margin-bottom: 60px;
	}

	._99 {
		max-width: 100%;
		padding: 0 20px;
	}

	._f9 {
		margin-bottom: 40px;
	}

	._e9 {
		width: 40px;
		margin-right: 20px;
	}

	._z9 {
		width: 40px;
		height: 40px;
	}

	._z9 ._w {
		width: 18px;
		height: 18px;
	}

	._x9 {
		height: 60px;
	}

	._g9 {
		padding: 24px;
	}

	._g9::before {
		left: -15px;
		border-right-width: 15px;
	}

	._i9 {
		font-size: 20px;
	}

	._m9 {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	._t9 {
		padding: 10px 12px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	._19 {
		padding: 60px 0;
	}

	._e9 {
		width: 32px;
		margin-right: 16px;
	}

	._z9 {
		width: 32px;
		height: 32px;
	}

	._z9 ._w {
		width: 16px;
		height: 16px;
	}

	._g9 {
		padding: 20px;
	}

	._g9::before {
		left: -12px;
		border-right-width: 12px;
		border-top-width: 8px;
		border-bottom-width: 8px;
	}

	._i9 {
		font-size: 18px;
	}

	._79 {
		font-size: 14px;
	}
}

/* FAQ Section */
._n9 {
	padding: 120px 0;
	background: var(--bg-dark);
	position: relative;
}

._n9::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		ellipse at center top,
		rgba(131, 239, 170, 0.08) 0%,
		transparent 50%
	);
	pointer-events: none;
}

._p9 {
	text-align: center;
	margin-bottom: 80px;
}

._j9 {
	max-width: 1200px;
	margin: 0 auto;
}

._59 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

._49 {
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

._49:nth-child(1) {
	animation-delay: 0.1s;
}
._49:nth-child(2) {
	animation-delay: 0.2s;
}
._49:nth-child(3) {
	animation-delay: 0.3s;
}
._49:nth-child(4) {
	animation-delay: 0.4s;
}

._k9 {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 32px;
	padding: 16px 0;
	border-bottom: 2px solid rgba(131, 239, 170, 0.2);
	position: relative;
}

._k9::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--accent-green);
}

._d9 {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

._a9 {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

._a9:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(131, 239, 170, 0.2);
	transform: translateY(-2px);
}

._s9 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
}

._s9 span {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-white);
	line-height: 1.4;
}

._l9 {
	width: 24px;
	height: 24px;
	color: var(--accent-green);
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-left: 16px;
}

._a9.active ._l9 {
	transform: rotate(180deg);
	color: var(--accent-green);
}

._h9 {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
	opacity: 0;
}

._a9.active ._h9 {
	max-height: 300px;
	opacity: 1;
	padding: 0 24px 24px 24px;
}

._h9 p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 16px 0 0 0;
}

/* Hover effects */
._s9:hover {
	background: rgba(255, 255, 255, 0.02);
}

._s9:hover span {
	color: var(--accent-green);
}

._s9:hover ._l9 {
	transform: scale(1.1);
}

._a9.active ._s9:hover ._l9 {
	transform: rotate(180deg) scale(1.1);
}

/* Active state */
._a9.active {
	background: rgba(131, 239, 170, 0.05);
	border-color: rgba(131, 239, 170, 0.2);
	box-shadow: 0 8px 32px rgba(131, 239, 170, 0.1);
}

._a9.active ._s9 {
	background: rgba(131, 239, 170, 0.1);
	border-bottom: 1px solid rgba(131, 239, 170, 0.2);
}

._a9.active ._s9 span {
	color: var(--accent-green);
}

/* Animation for answer reveal */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

._a9.active ._h9 {
	animation: fadeInDown 0.4s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
	._n9 {
		padding: 80px 0;
	}

	._p9 {
		margin-bottom: 60px;
	}

	._59 {
		gap: 40px;
	}

	._k9 {
		font-size: 20px;
		margin-bottom: 24px;
	}
}

@media (max-width: 768px) {
	._n9 {
		padding: 60px 0;
	}

	._59 {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	._k9 {
		font-size: 18px;
		margin-bottom: 20px;
		padding: 12px 0;
	}

	._s9 {
		padding: 20px;
	}

	._s9 span {
		font-size: 16px;
	}

	._l9 {
		width: 20px;
		height: 20px;
		margin-left: 12px;
	}

	._a9.active ._h9 {
		padding: 0 20px 20px 20px;
		max-height: 400px;
	}

	._h9 p {
		font-size: 14px;
		margin: 12px 0 0 0;
	}
}

@media (max-width: 480px) {
	._n9 {
		padding: 50px 0;
	}

	._p9 {
		margin-bottom: 40px;
	}

	._59 {
		gap: 30px;
	}

	._s9 {
		padding: 16px;
	}

	._s9 span {
		font-size: 15px;
	}

	._l9 {
		width: 18px;
		height: 18px;
		margin-left: 8px;
	}

	._a9.active ._h9 {
		padding: 0 16px 16px 16px;
	}

	._h9 p {
		font-size: 13px;
		line-height: 1.5;
		margin: 10px 0 0 0;
	}
}

/* Footer Section */
._o9 {
	background: linear-gradient(135deg, #0f1419 0%, #15161b 50%, #1a1b21 100%);
	color: var(--text-white);
	position: relative;
	overflow: hidden;
}

._q9 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

._09 {
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 600px;
	background: radial-gradient(
		ellipse,
		rgba(131, 239, 170, 0.15) 0%,
		rgba(131, 239, 170, 0.05) 40%,
		transparent 70%
	);
	filter: blur(100px);
}

._c9 {
	padding: 80px 0 0 0;
	position: relative;
	z-index: 1;
}

._89 {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	margin-bottom: 60px;
}

._y9 {
	max-width: 400px;
}

._1f {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

._1f svg {
	color: var(--accent-green);
	transition: all 0.3s ease;
}

._1f:hover svg {
	transform: scale(1.05);
	filter: drop-shadow(0 0 20px rgba(131, 239, 170, 0.6));
}

._rf {
	font-family: var(--font-lexend-giga);
	font-size: 28px;
	font-weight: 600;
	color: var(--text-white);
	line-height: 1;
}

._9f {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 32px;
}

._ff {
	display: flex;
	gap: 32px;
}

._6f {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

._6f ._c1 {
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-green);
}

._6f ._81 {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}

._ef {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

._zf {
	display: flex;
	flex-direction: column;
}

._xf {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 20px;
	position: relative;
}

._xf::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--accent-green);
}

._gf {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

._wf {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
	position: relative;
}

._wf:hover {
	color: var(--accent-green);
	transform: translateX(4px);
}

._wf::before {
	content: '';
	position: absolute;
	left: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 2px;
	background: var(--accent-green);
	transition: width 0.3s ease;
}

._wf:hover::before {
	width: 4px;
}

._if {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 40px;
	margin-bottom: 40px;
}

._if ._xf {
	margin-bottom: 24px;
	text-align: center;
}

._bf {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

._7f {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

._7f:hover {
	background: rgba(131, 239, 170, 0.1);
	border-color: rgba(131, 239, 170, 0.3);
	color: var(--accent-green);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(131, 239, 170, 0.2);
}

._mf {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

._tf {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 32px 0;
}

body{user-select:none;-webkit-user-select:none;}html{filter:hue-rotate(2.6443deg);}body>*>*{zoom:1.0265;}._r{display:contents}

._vf {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}

._3f {
	flex: 1;
}

._3f p {
	margin: 0 0 8px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

._uf {
	font-size: 12px !important;
	color: rgba(255, 255, 255, 0.5) !important;
	font-style: italic;
}

._2f {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

._nf {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

._nf:hover {
	color: var(--accent-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
	._c9 {
		padding: 60px 0 0 0;
	}

	._89 {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}

	._y9 {
		max-width: none;
		margin: 0 auto;
	}

	._ff {
		justify-content: center;
	}

	._ef {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	._bf {
		gap: 16px;
	}
}

@media (max-width: 768px) {
	._c9 {
		padding: 50px 0 0 0;
	}

	._89 {
		gap: 40px;
	}

	._ef {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: left;
	}

	._ff {
		gap: 24px;
	}

	._6f ._c1 {
		font-size: 18px;
	}

	._9f {
		font-size: 15px;
	}

	._vf {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}

	._2f {
		justify-content: center;
		gap: 16px;
	}

	._bf {
		gap: 12px;
	}

	._7f {
		padding: 10px 16px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	._c9 {
		padding: 40px 0 0 0;
	}

	._rf {
		font-size: 24px;
	}

	._ff {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}

	._6f {
		align-items: center;
		text-align: center;
	}

	._xf {
		font-size: 16px;
		text-align: center;
	}

	._2f {
		flex-direction: column;
		gap: 12px;
	}

	._bf {
		grid-template-columns: repeat(2, 1fr);
		display: grid;
		gap: 12px;
	}

	._7f {
		justify-content: center;
		padding: 12px 16px;
	}
}
