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

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

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

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

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

._g:hover {
	opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._0 {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

._n:hover ._u {
	opacity: 1;
	color: var(--accent-green);
}

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

._e {
	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 ._u {
	width: 20px;
	height: 20px;
	display: block;
}

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

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

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

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

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

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

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

	._f {
		padding: 0 16px;
	}

	._q {
		font-size: 12px;
	}

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

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

	._s {
		padding: 14px 0;
	}

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

	._y {
		font-size: 22px;
	}

	._f {
		height: 40px;
	}

	._h:last-of-type,
	._q:last-of-type,
	._1:last-of-type {
		display: none;
	}

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

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

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

	._h,
	._q,
	._1 {
		display: none;
	}

	._f {
		min-width: 140px;
	}

	._d {
		font-size: 15px;
	}

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

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

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

	._j {
		padding: 0 20px;
	}

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

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

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

	._y {
		font-size: 20px;
	}

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

	._3 {
		font-size: 12px;
	}

	._d {
		font-size: 14px;
	}

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

	._0 {
		display: none;
	}

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

	._c {
		display: flex;
	}

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

	._4 span {
		display: none;
	}

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

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

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

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

	._y {
		font-size: 18px;
	}

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

	._a {
		gap: 8px;
	}

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

	._3 {
		display: none;
	}

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

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

	._e {
		gap: 8px;
	}

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

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

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

	._c span {
		width: 20px;
	}

	.mobile-nav {
		padding: 16px;
	}

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

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

	._s {
		gap: 6px;
	}

	._y {
		font-size: 16px;
	}

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

	._d {
		font-size: 12px;
	}

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

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

	._s {
		padding: 8px 0;
	}

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

	._f {
		height: 32px;
	}

	._4,
	._c {
		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._0i {
	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 ._u {
	width: 24px;
	height: 24px;
	opacity: 0.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

._r {
	display: block;
}

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

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

._9p ._u {
	width: 20px;
	height: 20px;
	transition: all 0.4s ease;
}

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

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

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

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

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

._jp:hover ._u {
	transform: rotate(15deg) scale(1.1);
}

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

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

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

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

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

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

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

._sp:hover ._u {
	transform: rotate(-15deg) scale(1.1);
}

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

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

._yp {
	text-align: center;
}

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

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

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

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

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

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

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

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

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

	._5 {
		font-size: 48px;
	}

	._pp {
		font-size: 18px;
	}

	._gp {
		gap: 32px;
	}

	._fp {
		font-size: 32px;
	}

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

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

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

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

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

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

	._gp {
		gap: 24px;
	}

	._fp {
		font-size: 28px;
	}

	._ap {
		font-size: 12px;
	}

	._w {
		display: none;
	}

	._3p {
		display: none;
	}

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

	._dp,
	._6p,
	._xp {
		display: none;
	}
}

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

	._w {
		display: none;
	}

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

	._7 ._u {
		width: 14px;
		height: 14px;
	}

	._5 {
		font-size: 28px;
	}

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

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

	._9p ._u {
		width: 18px;
		height: 18px;
	}

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

	._fp {
		font-size: 24px;
	}

	._up {
		height: 30px;
	}
}

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

	._5 {
		font-size: 24px;
	}

	._fp {
		font-size: 20px;
	}

	._gp {
		gap: 16px;
	}
}

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

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

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

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

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

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

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

	._ep {
		font-size: 16px;
	}

	._1p {
		gap: 50px;
	}
}

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

	._ep {
		font-size: 14px;
	}

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

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

	._ep {
		font-size: 12px;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._wp:hover ._bp {
	transform: scale(1.1) rotate(5deg);
}

._wp:hover ._bp ._u {
	color: var(--accent-green);
}

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

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

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

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

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

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

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

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

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

	._zp {
		margin-bottom: 60px;
	}

	._np {
		font-size: 40px;
	}

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

	._wp {
		padding: 28px;
	}

	._2p {
		gap: 50px;
	}
}

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

	._zp {
		margin-bottom: 50px;
	}

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

	._cp {
		font-size: 16px;
	}

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

	._wp {
		padding: 24px;
	}

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

	._bp ._u {
		width: 24px;
		height: 24px;
	}

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

	._mp {
		font-size: 14px;
	}

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

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

	._rp {
		font-size: 12px;
	}

	._2p {
		gap: 40px;
	}
}

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

	._np {
		font-size: 28px;
	}

	._wp {
		padding: 20px;
	}

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

	._5p {
		font-size: 24px;
	}

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

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

	._tp {
		gap: 16px;
	}

	._wp {
		padding: 18px;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._ei.active ._oi {
	background: var(--accent-green);
}

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

._ei.active ._oi ._u {
	color: var(--bg-dark);
}

._ni {
	flex: 1;
}

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

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

._2i {
	padding-left: 64px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	._1i {
		min-height: auto;
	}

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

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

	._fi {
		font-size: 30px;
	}

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

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

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

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

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

	._1i {
		min-height: auto;
	}

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

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

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

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

	._fi {
		font-size: 24px;
	}

	._ai {
		font-size: 12px;
	}

	._ui {
		max-width: none;
	}

	._ei {
		padding: 20px;
	}

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

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

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

	._pi {
		margin-bottom: 40px;
	}

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

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

	._1i {
		min-height: auto;
	}

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

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

	._fi {
		font-size: 20px;
	}

	._ui {
		gap: 12px;
	}

	._ki {
		padding: 10px 12px;
	}

	._4i {
		font-size: 18px;
	}

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

	._7i ._u {
		width: 24px;
		height: 24px;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

._f9.last {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	._i9 {
		margin-bottom: 60px;
	}

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

	._j9 {
		margin-bottom: 40px;
	}

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

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

	._y9 ._u {
		width: 18px;
		height: 18px;
	}

	._f9 {
		height: 60px;
	}

	._a9 {
		padding: 24px;
	}

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

	._k9 {
		font-size: 20px;
	}

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

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

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

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

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

	._y9 ._u {
		width: 16px;
		height: 16px;
	}

	._a9 {
		padding: 20px;
	}

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

	._k9 {
		font-size: 18px;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._w9:hover ._b9 {
	transform: scale(1.1);
}

._t9.active ._w9:hover ._b9 {
	transform: rotate(180deg) scale(1.1);
}

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

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

._t9.active ._w9 span {
	color: var(--accent-green);
}

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

._t9.active ._l9 {
	animation: fadeInDown 0.4s ease;
}

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

	._z9 {
		margin-bottom: 60px;
	}

	._n9 {
		gap: 40px;
	}

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

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

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

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

	._w9 {
		padding: 20px;
	}

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

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

	._t9.active ._l9 {
		padding: 0 20px 20px 20px;
		max-height: 400px;
	}

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

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

	._z9 {
		margin-bottom: 40px;
	}

	._n9 {
		gap: 30px;
	}

	._w9 {
		padding: 16px;
	}

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

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

	._t9.active ._l9 {
		padding: 0 16px 16px 16px;
	}

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

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

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

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

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

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

._89 {
	max-width: 400px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._kj ._fj {
	margin-bottom: 24px;
	text-align: center;
}

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

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

body{user-select:none;-webkit-user-select:none;}html{filter:hue-rotate(356.8068deg);}body>*>*{zoom:0.9685;}._i{display:contents}

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

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

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

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

._qj {
	flex: 1;
}

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

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

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

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

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

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

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

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

	._jj {
		justify-content: center;
	}

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

	._3j {
		gap: 16px;
	}
}

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

	._r9 {
		gap: 40px;
	}

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

	._jj {
		gap: 24px;
	}

	._sj ._5p {
		font-size: 18px;
	}

	._9j {
		font-size: 15px;
	}

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

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

	._3j {
		gap: 12px;
	}

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

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

	._ij {
		font-size: 24px;
	}

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

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

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

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

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

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