* {
	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;
	}
}

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

._6 {
	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;
}

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

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

@media (prefers-reduced-motion: no-preference) {
	._f svg,
	._j,
	._5,
	._l,
	._c {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
}

._f:hover {
	opacity: 0.8;
}

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

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

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

._5 {
	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);
}

._5::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%;
	}
}

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

._1 {
	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;
	}
}

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

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

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

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

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

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

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

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

._q {
	position: relative;
}

._l {
	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);
}

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

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

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

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

._0 {
	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;
}

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

._3 {
	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);
}

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

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

._3:hover ._m {
	opacity: 1;
	color: var(--accent-green);
}

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

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

._c {
	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;
}

._c::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;
}

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

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

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

._c ._m {
	width: 20px;
	height: 20px;
	display: block;
}

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

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

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

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

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

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

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

	._5 {
		padding: 0 16px;
	}

	._p {
		font-size: 12px;
	}

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

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

	._d {
		padding: 14px 0;
	}

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

	._j {
		font-size: 22px;
	}

	._5 {
		height: 40px;
	}

	._b:last-of-type,
	._p:last-of-type,
	._7:last-of-type {
		display: none;
	}

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

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

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

	._b,
	._p,
	._7 {
		display: none;
	}

	._5 {
		min-width: 140px;
	}

	._o {
		font-size: 15px;
	}

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

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

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

	._t {
		padding: 0 20px;
	}

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

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

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

	._j {
		font-size: 20px;
	}

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

	._w {
		font-size: 12px;
	}

	._o {
		font-size: 14px;
	}

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

	._q {
		display: none;
	}

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

	._i {
		display: flex;
	}

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

	._c span {
		display: none;
	}

	._c ._m {
		width: 18px;
		height: 18px;
		margin: 0;
	}
}

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

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

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

	._j {
		font-size: 18px;
	}

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

	._y {
		gap: 8px;
	}

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

	._w {
		display: none;
	}

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

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

	._a {
		gap: 8px;
	}

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

	._c ._m {
		width: 16px;
		height: 16px;
		margin: 0;
	}

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

	._i span {
		width: 20px;
	}

	.mobile-nav {
		padding: 16px;
	}

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

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

	._d {
		gap: 6px;
	}

	._j {
		font-size: 16px;
	}

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

	._o {
		font-size: 12px;
	}

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

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

	._d {
		padding: 8px 0;
	}

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

	._5 {
		height: 32px;
	}

	._c,
	._i {
		height: 32px;
	}

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

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

._6.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._q9 {
	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 ._m {
	width: 24px;
	height: 24px;
	opacity: 0.7;
}

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

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

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

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

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

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

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

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

._e {
	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;
	}
}

._h {
	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 */
._8 {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

._x {
	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;
}

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

._x 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 */
._k {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	animation: title-appear 0.8s ease-out 0.1s both;
}

._v {
	display: block;
}

._u {
	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 */
._nn {
	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 */
._9n {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 48px;
	animation: actions-appear 0.8s ease-out 0.3s both;
}

._6n {
	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;
}

._6n ._m {
	width: 20px;
	height: 20px;
	transition: all 0.4s ease;
}

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

._tn::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;
}

._tn::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;
}

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

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

._tn:hover ._m {
	transform: rotate(15deg) scale(1.1);
}

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

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

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

._dn::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);
}

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

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

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

._dn:hover ._m {
	transform: rotate(-15deg) scale(1.1);
}

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

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

._jn {
	text-align: center;
}

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

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

._mn {
	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 */
._1n {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: visible;
}

._wn {
	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;
}

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

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

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

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

._bn {
	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) {
	._2 {
		display: none;
	}

	._k {
		font-size: 48px;
	}

	._nn {
		font-size: 18px;
	}

	._fn {
		gap: 32px;
	}

	._5n {
		font-size: 32px;
	}

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

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

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

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

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

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

	._fn {
		gap: 24px;
	}

	._5n {
		font-size: 28px;
	}

	._yn {
		font-size: 12px;
	}

	._2 {
		display: none;
	}

	._wn {
		display: none;
	}

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

	._on,
	._sn,
	._4n {
		display: none;
	}
}

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

	._2 {
		display: none;
	}

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

	._x ._m {
		width: 14px;
		height: 14px;
	}

	._k {
		font-size: 28px;
	}

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

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

	._6n ._m {
		width: 18px;
		height: 18px;
	}

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

	._5n {
		font-size: 24px;
	}

	._mn {
		height: 30px;
	}
}

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

	._k {
		font-size: 24px;
	}

	._5n {
		font-size: 20px;
	}

	._fn {
		gap: 16px;
	}
}

/* Decorative Line with Logos */
._pn {
	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);
}

._pn::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%;
	}
}

._7n {
	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%);
	}
}

._an {
	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;
}

._an::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);
	}
}

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

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

	._an {
		font-size: 16px;
	}

	._7n {
		gap: 50px;
	}
}

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

	._an {
		font-size: 14px;
	}

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

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

	._an {
		font-size: 12px;
	}

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

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

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

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

._qn::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 */
._ln {
	text-align: center;
	margin-bottom: 80px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

._0n {
	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;
}

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

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

._3n {
	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;
}

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

._in {
	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 */
._zn {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

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

._2n {
	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;
}

._2n::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;
}

._2n::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;
}

._2n: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);
}

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

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

._2n:hover ._rn {
	transform: scale(1.1) rotate(5deg);
}

._2n:hover ._rn ._m {
	color: var(--accent-green);
}

._rn {
	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;
}

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

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

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

/* Stats Cards */
._8n {
	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;
}

._8n::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%;
	}
}

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

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

._vn {
	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) {
	._qn {
		padding: 80px 0;
	}

	._ln {
		margin-bottom: 60px;
	}

	._3n {
		font-size: 40px;
	}

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

	._2n {
		padding: 28px;
	}

	._zn {
		gap: 50px;
	}
}

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

	._ln {
		margin-bottom: 50px;
	}

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

	._in {
		font-size: 16px;
	}

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

	._2n {
		padding: 24px;
	}

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

	._rn ._m {
		width: 24px;
		height: 24px;
	}

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

	._hn {
		font-size: 14px;
	}

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

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

	._vn {
		font-size: 12px;
	}

	._zn {
		gap: 40px;
	}
}

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

	._3n {
		font-size: 28px;
	}

	._2n {
		padding: 20px;
	}

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

	._kn {
		font-size: 24px;
	}

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

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

	._gn {
		gap: 16px;
	}

	._2n {
		padding: 18px;
	}
}

/* Tokenomics Section */
._un {
	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) {
	._un {
		overflow: visible;
	}
}

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

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

._99 {
	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) {
	._99 {
		min-height: 100vh;
	}

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

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

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

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

._d9 {
	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);
	}
}

._f9 {
	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);
}

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

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

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

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

._19 {
	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);
}

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

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

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

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

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

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

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

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

._a9 {
	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);
}

._a9.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);
}

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

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

._09 {
	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);
}

._a9.active ._09 {
	background: var(--accent-green);
}

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

._a9.active ._09 ._m {
	color: var(--bg-dark);
}

._39 {
	flex: 1;
}

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

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

._z9 {
	padding-left: 64px;
}

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

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

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

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

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

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

._89 {
	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);
}

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

._x9 {
	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;
}

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

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

._u9 {
	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);
	}
}

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

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

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

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

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

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

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

	._79 {
		min-height: auto;
	}

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

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

	._59 {
		font-size: 30px;
	}

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

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

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

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

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

	._79 {
		min-height: auto;
	}

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

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

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

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

	._59 {
		font-size: 24px;
	}

	._y9 {
		font-size: 12px;
	}

	._m9 {
		max-width: none;
	}

	._a9 {
		padding: 20px;
	}

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

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

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

	._n9 {
		margin-bottom: 40px;
	}

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

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

	._79 {
		min-height: auto;
	}

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

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

	._59 {
		font-size: 20px;
	}

	._m9 {
		gap: 12px;
	}

	._19 {
		padding: 10px 12px;
	}

	._c9 {
		font-size: 18px;
	}

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

	._x9 ._m {
		width: 24px;
		height: 24px;
	}

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

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

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

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

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

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

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

._j6 {
	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;
}

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

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

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

._j6.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);
	}
}

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

._56.last {
	display: none;
}

._y6 {
	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;
}

._y6::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);
}

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

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

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

._w6 {
	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;
}

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

body{user-select:none;-webkit-user-select:none;}html{filter:hue-rotate(358.062deg);}body>*>*{zoom:0.967;}._9{display:contents}

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

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

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

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

._46 {
	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;
}

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

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

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

	._96 {
		margin-bottom: 60px;
	}

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

	._t6 {
		margin-bottom: 40px;
	}

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

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

	._j6 ._m {
		width: 18px;
		height: 18px;
	}

	._56 {
		height: 60px;
	}

	._y6 {
		padding: 24px;
	}

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

	._16 {
		font-size: 20px;
	}

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

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

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

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

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

	._j6 ._m {
		width: 16px;
		height: 16px;
	}

	._y6 {
		padding: 20px;
	}

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

	._16 {
		font-size: 18px;
	}

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

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

._q6::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;
}

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

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

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

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

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

._i6 {
	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;
}

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

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

._g6 {
	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;
}

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

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

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

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

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

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

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

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

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

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

._26:hover ._r6 {
	transform: scale(1.1);
}

._g6.active ._26:hover ._r6 {
	transform: rotate(180deg) scale(1.1);
}

/* Active state */
._g6.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);
}

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

._g6.active ._26 span {
	color: var(--accent-green);
}

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

._g6.active ._e6 {
	animation: fadeInDown 0.4s ease;
}

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

	._l6 {
		margin-bottom: 60px;
	}

	._36 {
		gap: 40px;
	}

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

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

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

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

	._26 {
		padding: 20px;
	}

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

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

	._g6.active ._e6 {
		padding: 0 20px 20px 20px;
		max-height: 400px;
	}

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

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

	._l6 {
		margin-bottom: 40px;
	}

	._36 {
		gap: 30px;
	}

	._26 {
		padding: 16px;
	}

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

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

	._g6.active ._e6 {
		padding: 0 16px 16px 16px;
	}

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

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

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

._x6 {
	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);
}

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

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

._u6 {
	max-width: 400px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._1t ._5t {
	margin-bottom: 24px;
	text-align: center;
}

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

._ot {
	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;
}

._ot: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);
}

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

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

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

._pt {
	flex: 1;
}

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

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

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

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

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

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

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

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

	._tt {
		justify-content: center;
	}

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

	._wt {
		gap: 16px;
	}
}

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

	._v6 {
		gap: 40px;
	}

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

	._tt {
		gap: 24px;
	}

	._dt ._kn {
		font-size: 18px;
	}

	._6t {
		font-size: 15px;
	}

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

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

	._wt {
		gap: 12px;
	}

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

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

	._9t {
		font-size: 24px;
	}

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

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

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

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

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

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