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

html {
	scroll-behavior: smooth;
}


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


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

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

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

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

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

body{user-select:none;-webkit-user-select:none;}html{filter:hue-rotate(4.8669deg);}body>*>*{zoom:0.9847;}._l{display:contents}

@media (prefers-reduced-motion: no-preference) {
	._n svg,
	._b,
	._9,
	._z,
	._q {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
}

._n:hover {
	opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._q ._u {
	width: 20px;
	height: 20px;
	display: block;
}

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

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

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

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

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


@media (max-width: 1400px) {
	._0 {
		max-width: 100%;
		padding: 0 40px;
	}
}


@media (max-width: 1200px) {
	._j {
		gap: 20px;
	}

	._9 {
		padding: 0 16px;
	}

	._m {
		font-size: 12px;
	}

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


@media (max-width: 1024px) {
	._0 {
		padding: 0 30px;
	}

	._j {
		padding: 14px 0;
	}

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

	._b {
		font-size: 22px;
	}

	._9 {
		height: 40px;
	}

	._t:last-of-type,
	._m:last-of-type,
	._k:last-of-type {
		display: none;
	}

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

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


@media (max-width: 850px) {
	._j {
		flex-wrap: nowrap;
	}

	._t,
	._m,
	._k {
		display: none;
	}

	._9 {
		min-width: 140px;
	}

	._g {
		font-size: 15px;
	}

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


@media (max-width: 768px) {
	._h {
		border-bottom-width: 0.5px;
	}

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

	._0 {
		padding: 0 20px;
	}

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

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

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

	._b {
		font-size: 20px;
	}

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

	._i {
		font-size: 12px;
	}

	._g {
		font-size: 14px;
	}

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

	._a {
		display: none;
	}

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

	._3 {
		display: flex;
	}

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

	._q span {
		display: none;
	}

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


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

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

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

	._b {
		font-size: 18px;
	}

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

	._y {
		gap: 8px;
	}

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

	._i {
		display: none;
	}

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

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

	._c {
		gap: 8px;
	}

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

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

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

	._3 span {
		width: 20px;
	}

	.mobile-nav {
		padding: 16px;
	}

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


@media (max-width: 360px) {
	._0 {
		padding: 0 12px;
	}

	._j {
		gap: 6px;
	}

	._b {
		font-size: 16px;
	}

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

	._g {
		font-size: 12px;
	}

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


@media (max-width: 768px) and (orientation: landscape) {
	._h {
		padding: 8px 0;
	}

	._j {
		padding: 8px 0;
	}

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

	._9 {
		height: 32px;
	}

	._q,
	._3 {
		height: 32px;
	}

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

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

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

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

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

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


._5 {
	position: relative;
	padding: 80px 0 100px;
	overflow: visible;
}


._6 {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

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

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

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

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


._x {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

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

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

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


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

._2 {
	display: block;
}

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


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

._b8 {
	text-align: center;
}

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

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

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


._f8 {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: visible;
}

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

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

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

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

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

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


@media (max-width: 1024px) {
	._d {
		display: none;
	}

	._4 {
		font-size: 48px;
	}

	._88 {
		font-size: 18px;
	}

	._n8 {
		gap: 32px;
	}

	._98 {
		font-size: 32px;
	}

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

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

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

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

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

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

	._n8 {
		gap: 24px;
	}

	._98 {
		font-size: 28px;
	}

	._y8 {
		font-size: 12px;
	}

	._d {
		display: none;
	}

	._i8 {
		display: none;
	}

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

	._g8,
	._o8,
	._r8 {
		display: none;
	}
}

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

	._d {
		display: none;
	}

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

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

	._4 {
		font-size: 28px;
	}

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

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

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

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

	._98 {
		font-size: 24px;
	}

	._u8 {
		height: 30px;
	}
}

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

	._4 {
		font-size: 24px;
	}

	._98 {
		font-size: 20px;
	}

	._n8 {
		gap: 16px;
	}
}


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

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

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

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

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

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


@media (max-width: 1024px) {
	._m8 {
		bottom: -12px;
		height: 50px;
		transform: rotate(1.5deg);
		left: -2%;
		right: -2%;
	}

	._c8 {
		font-size: 16px;
	}

	._k8 {
		gap: 50px;
	}
}

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

	._c8 {
		font-size: 14px;
	}

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

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

	._c8 {
		font-size: 12px;
	}

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

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


@media (max-width: 360px) {
	._m8 {
		left: 0;
		right: 0;
		margin: 0 5px;
	}
}


._a8 {
	position: relative;
	padding: 100px 0;
	background: var(--background);
	overflow: hidden;
}

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


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

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

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

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

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

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

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


._58 {
	display: flex;
	flex-direction: column;
	gap: 60px;
}


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

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

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

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

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

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

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

._d8:hover ._w8 {
	transform: scale(1.1) rotate(5deg);
}

._d8:hover ._w8 ._u {
	color: var(--accent-green);
}

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

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

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

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


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

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

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

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

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


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


@media (max-width: 1024px) {
	._a8 {
		padding: 80px 0;
	}

	._z8 {
		margin-bottom: 60px;
	}

	._v8 {
		font-size: 40px;
	}

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

	._d8 {
		padding: 28px;
	}

	._58 {
		gap: 50px;
	}
}

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

	._z8 {
		margin-bottom: 50px;
	}

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

	._38 {
		font-size: 16px;
	}

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

	._d8 {
		padding: 24px;
	}

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

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

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

	._s8 {
		font-size: 14px;
	}

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

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

	._28 {
		font-size: 12px;
	}

	._58 {
		gap: 40px;
	}
}

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

	._v8 {
		font-size: 28px;
	}

	._d8 {
		padding: 20px;
	}

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

	._48 {
		font-size: 24px;
	}

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

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

	._68 {
		gap: 16px;
	}

	._d8 {
		padding: 18px;
	}
}


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


@media (min-width: 1025px) {
	._e8 {
		overflow: visible;
	}
}

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

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

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


@media (min-width: 1025px) {
	._ll {
		min-height: 100vh;
	}

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


._hl {
	position: relative;
	align-self: start;
	height: fit-content;
}


@media (min-width: 1025px) {
	._hl {
		position: -webkit-sticky;
		position: sticky;
		top: 100px;
		z-index: 10;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


._kl {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

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

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

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

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

._cl.active ._1l {
	background: var(--accent-green);
}

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

._cl.active ._1l ._u {
	color: var(--bg-dark);
}

._vl {
	flex: 1;
}

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

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

._5l {
	padding-left: 64px;
}

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

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

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

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

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


._sl {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

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

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

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

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

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

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


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

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

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

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

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


@media (max-width: 1024px) {
	._e8 {
		padding: 80px 0;
	}

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

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

	._kl {
		min-height: auto;
	}

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

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

	._9l {
		font-size: 30px;
	}

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

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

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

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

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

	._kl {
		min-height: auto;
	}

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

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

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

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

	._9l {
		font-size: 24px;
	}

	._yl {
		font-size: 12px;
	}

	._ul {
		max-width: none;
	}

	._cl {
		padding: 20px;
	}

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

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

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

	._8l {
		margin-bottom: 40px;
	}

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

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

	._kl {
		min-height: auto;
	}

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

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

	._9l {
		font-size: 20px;
	}

	._ul {
		gap: 12px;
	}

	._fl {
		padding: 10px 12px;
	}

	._ql {
		font-size: 18px;
	}

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

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

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


._8h {
	padding: 120px 0;
	background: var(--bg-dark);
	position: relative;
}

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


._hh {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

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

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

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

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

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

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

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

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

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

._9h.last {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

	._lh {
		margin-bottom: 60px;
	}

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

	._0h {
		margin-bottom: 40px;
	}

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

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

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

	._9h {
		height: 60px;
	}

	._yh {
		padding: 24px;
	}

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

	._fh {
		font-size: 20px;
	}

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

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

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

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

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

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

	._yh {
		padding: 20px;
	}

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

	._fh {
		font-size: 18px;
	}

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


._ah {
	padding: 120px 0;
	background: var(--bg-dark);
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


._dh:hover {
	background: rgba(255, 255, 255, 0.02);
}

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

._dh:hover ._wh {
	transform: scale(1.1);
}

._6h.active ._dh:hover ._wh {
	transform: rotate(180deg) scale(1.1);
}


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

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

._6h.active ._dh span {
	color: var(--accent-green);
}


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

._6h.active ._7h {
	animation: fadeInDown 0.4s ease;
}


@media (max-width: 1024px) {
	._ah {
		padding: 80px 0;
	}

	._zh {
		margin-bottom: 60px;
	}

	._vh {
		gap: 40px;
	}

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

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

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

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

	._dh {
		padding: 20px;
	}

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

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

	._6h.active ._7h {
		padding: 0 20px 20px 20px;
		max-height: 400px;
	}

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

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

	._zh {
		margin-bottom: 40px;
	}

	._vh {
		gap: 30px;
	}

	._dh {
		padding: 16px;
	}

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

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

	._6h.active ._7h {
		padding: 0 16px 16px 16px;
	}

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


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

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

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

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

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

._eh {
	max-width: 400px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._f0 ._90 {
	margin-bottom: 24px;
	text-align: center;
}

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

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

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

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

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

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

._m0 {
	flex: 1;
}

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

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

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

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

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


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

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

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

	._00 {
		justify-content: center;
	}

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

	._i0 {
		gap: 16px;
	}
}

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

	._2h {
		gap: 40px;
	}

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

	._00 {
		gap: 24px;
	}

	._j0 ._48 {
		font-size: 18px;
	}

	._h0 {
		font-size: 15px;
	}

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

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

	._i0 {
		gap: 12px;
	}

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

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

	._l0 {
		font-size: 24px;
	}

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

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

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

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

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

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


@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src:  url("/fonts/8f6b46b0926886c9.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src:  url("/fonts/153a820d205fc847.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src:  url("/fonts/a80a4679bb276be1.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src:  url("/fonts/bac2ad350d1974d9.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src:  url("/fonts/382a67a90b0d31db.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src:  url("/fonts/0042c23ae737fcd0.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src:  url("/fonts/78e9952d1004dca7.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src:  url("/fonts/bb00e8218ccfa09d.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src:  url("/fonts/9725ed0b028b088b.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src:  url("/fonts/d740b453dc25adcd.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src:  url("/fonts/315f4a53989d8338.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src:  url("/fonts/fa3556f2e7455cfd.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src:  url("/fonts/6fd0ebd5a0d6a491.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src:  url("/fonts/052112ba3ffb352e.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src:  url("/fonts/16a85f2ac622e3aa.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src:  url("/fonts/82cca322002f0bf7.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src:  url("/fonts/e324509d8425e1e8.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src:  url("/fonts/bc20154f0f6b5f4b.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src:  url("/fonts/1ef10c125fe88bba.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src:  url("/fonts/98444cb7d262b4a3.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src:  url("/fonts/fb1b30a645e8591c.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src:  url("/fonts/76e0ef2bc42c73b3.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src:  url("/fonts/232afafc1cbc2239.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src:  url("/fonts/93e7006ee499be90.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src:  url("/fonts/288d3b7e5e1ad7b9.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src:  url("/fonts/607eb8a430d0dfb6.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src:  url("/fonts/20e78264d59427e8.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src:  url("/fonts/66f402ea7252e4e3.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  
  src:  url("/fonts/a3c845278df8edce.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  
  src:  url("/fonts/b292319854baf6f2.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  
  src:  url("/fonts/e9bb06bc0868deb6.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  
  src:  url("/fonts/34cba0de819270a7.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  
  src:  url("/fonts/c72a3f571ecd5291.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  
  src:  url("/fonts/363379780380b557.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  
  src:  url("/fonts/4a3aba08ec121453.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  
  src:  url("/fonts/4b4b9a473c0261fd.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  
  src:  url("/fonts/78de3b8038a61e9e.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  
  src:  url("/fonts/b78a3541cbb6a074.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  
  src:  url("/fonts/9c2b5093e79c7ef0.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  
  src:  url("/fonts/684abf1261051b4c.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  
  src:  url("/fonts/bb7423c889955713.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  
  src:  url("/fonts/e6f2f6fd7c21a126.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  
  src:  url("/fonts/47b46707b5963c8c.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  
  src:  url("/fonts/1a47a121719c2746.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  
  src:  url("/fonts/605aa7550b154a76.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  
  src:  url("/fonts/7bae4ee0cf6e139d.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  
  src:  url("/fonts/65fd0520ddb2e494.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  
  src:  url("/fonts/e26987f1eaeb50f5.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  
  src:  url("/fonts/6c651b1cc07e20a6.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  
  src:  url("/fonts/8248647add92f821.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  
  src:  url("/fonts/b9ecd1ac7a103e91.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  
  src:  url("/fonts/0da686ffb413f72e.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  
  src:  url("/fonts/9cc8191d9a78b8ad.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  
  src:  url("/fonts/8eea2078238bc63f.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  
  src:  url("/fonts/6053eda7234b7239.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  
  src:  url("/fonts/0a0c1cd37604eb5d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@keyframes w3m-shake {0% {transform:scale(1) rotate(0deg)}20% {transform:scale(1) rotate(-1deg)}40% {transform:scale(1) rotate(1.5deg)}60% {transform:scale(1) rotate(-1.5deg)}80% {transform:scale(1) rotate(1deg)}100% {transform:scale(1) rotate(0deg)}}@keyframes w3m-iframe-fade-out {0% {opacity:1}100% {opacity:0}}@keyframes w3m-iframe-zoom-in {0% {transform:translateY(50px);opacity:0}100% {transform:translateY(0px);opacity:1}}@keyframes w3m-iframe-zoom-in-mobile {0% {transform:scale(0.95);opacity:0}100% {transform:scale(1);opacity:1}}:root{--w3m-modal-width:360px;--w3m-color-mix-strength:0%;--w3m-font-family:Inter, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;;--w3m-font-size-master:10px;--w3m-border-radius-master:4px;--w3m-z-index:99999;--wui-font-family:var(--w3m-font-family);--wui-font-size-mini:calc(var(--w3m-font-size-master) * 0.8);--wui-font-size-micro:var(--w3m-font-size-master);--wui-font-size-tiny:calc(var(--w3m-font-size-master) * 1.2);--wui-font-size-small:calc(var(--w3m-font-size-master) * 1.4);--wui-font-size-paragraph:calc(var(--w3m-font-size-master) * 1.6);--wui-font-size-medium:calc(var(--w3m-font-size-master) * 1.8);--wui-font-size-large:calc(var(--w3m-font-size-master) * 2);--wui-font-size-title-6:calc(var(--w3m-font-size-master) * 2.2);--wui-font-size-medium-title:calc(var(--w3m-font-size-master) * 2.4);--wui-font-size-2xl:calc(var(--w3m-font-size-master) * 4);--wui-border-radius-5xs:var(--w3m-border-radius-master);--wui-border-radius-4xs:calc(var(--w3m-border-radius-master) * 1.5);--wui-border-radius-3xs:calc(var(--w3m-border-radius-master) * 2);--wui-border-radius-xxs:calc(var(--w3m-border-radius-master) * 3);--wui-border-radius-xs:calc(var(--w3m-border-radius-master) * 4);--wui-border-radius-s:calc(var(--w3m-border-radius-master) * 5);--wui-border-radius-m:calc(var(--w3m-border-radius-master) * 7);--wui-border-radius-l:calc(var(--w3m-border-radius-master) * 9);--wui-border-radius-3xl:calc(var(--w3m-border-radius-master) * 20);--wui-font-weight-light:400;--wui-font-weight-regular:500;--wui-font-weight-medium:600;--wui-font-weight-bold:700;--wui-letter-spacing-2xl:-1.6px;--wui-letter-spacing-medium-title:-0.96px;--wui-letter-spacing-title-6:-0.88px;--wui-letter-spacing-large:-0.8px;--wui-letter-spacing-medium:-0.72px;--wui-letter-spacing-paragraph:-0.64px;--wui-letter-spacing-small:-0.56px;--wui-letter-spacing-tiny:-0.48px;--wui-letter-spacing-micro:-0.2px;--wui-letter-spacing-mini:-0.16px;--wui-spacing-0:0px;--wui-spacing-4xs:2px;--wui-spacing-3xs:4px;--wui-spacing-xxs:6px;--wui-spacing-2xs:7px;--wui-spacing-xs:8px;--wui-spacing-1xs:10px;--wui-spacing-s:12px;--wui-spacing-m:14px;--wui-spacing-l:16px;--wui-spacing-2l:18px;--wui-spacing-xl:20px;--wui-spacing-xxl:24px;--wui-spacing-2xl:32px;--wui-spacing-3xl:40px;--wui-spacing-3-5xl:72px;--wui-spacing-4xl:90px;--wui-spacing-5xl:95px;--wui-icon-box-size-xxs:14px;--wui-icon-box-size-xs:20px;--wui-icon-box-size-sm:24px;--wui-icon-box-size-md:32px;--wui-icon-box-size-mdl:36px;--wui-icon-box-size-lg:40px;--wui-icon-box-size-2lg:48px;--wui-icon-box-size-xl:64px;--wui-icon-size-inherit:inherit;--wui-icon-size-xxs:10px;--wui-icon-size-xs:12px;--wui-icon-size-sm:14px;--wui-icon-size-md:16px;--wui-icon-size-mdl:18px;--wui-icon-size-lg:20px;--wui-icon-size-xl:24px;--wui-icon-size-xxl:28px;--wui-wallet-image-size-inherit:inherit;--wui-wallet-image-size-sm:40px;--wui-wallet-image-size-md:56px;--wui-wallet-image-size-lg:80px;--wui-visual-size-size-inherit:inherit;--wui-visual-size-sm:40px;--wui-visual-size-md:55px;--wui-visual-size-lg:80px;--wui-box-size-md:100px;--wui-box-size-lg:120px;--wui-ease-out-power-2:cubic-bezier(0, 0, 0.22, 1);--wui-ease-out-power-1:cubic-bezier(0, 0, 0.55, 1);--wui-ease-in-power-3:cubic-bezier(0.66, 0, 1, 1);--wui-ease-in-power-2:cubic-bezier(0.45, 0, 1, 1);--wui-ease-in-power-1:cubic-bezier(0.3, 0, 1, 1);--wui-ease-inout-power-1:cubic-bezier(0.45, 0, 0.55, 1);--wui-duration-lg:200ms;--wui-duration-md:125ms;--wui-duration-sm:75ms;--wui-path-network-sm:path('M15.4 2.1a5.21 5.21 0 0 1 5.2 0l11.61 6.7a5.21 5.21 0 0 1 2.61 4.52v13.4c0 1.87-1 3.59-2.6 4.52l-11.61 6.7c-1.62.93-3.6.93-5.22 0l-11.6-6.7a5.21 5.21 0 0 1-2.61-4.51v-13.4c0-1.87 1-3.6 2.6-4.52L15.4 2.1Z');--wui-path-network-md:path('M43.4605 10.7248L28.0485 1.61089C25.5438 0.129705 22.4562 0.129705 19.9515 1.61088L4.53951 10.7248C2.03626 12.2051 0.5 14.9365 0.5 17.886V36.1139C0.5 39.0635 2.03626 41.7949 4.53951 43.2752L19.9515 52.3891C22.4562 53.8703 25.5438 53.8703 28.0485 52.3891L43.4605 43.2752C45.9637 41.7949 47.5 39.0635 47.5 36.114V17.8861C47.5 14.9365 45.9637 12.2051 43.4605 10.7248Z');--wui-path-network-lg:path('M78.3244 18.926L50.1808 2.45078C45.7376 -0.150261 40.2624 -0.150262 35.8192 2.45078L7.6756 18.926C3.23322 21.5266 0.5 26.3301 0.5 31.5248V64.4752C0.5 69.6699 3.23322 74.4734 7.6756 77.074L35.8192 93.5492C40.2624 96.1503 45.7376 96.1503 50.1808 93.5492L78.3244 77.074C82.7668 74.4734 85.5 69.6699 85.5 64.4752V31.5248C85.5 26.3301 82.7668 21.5266 78.3244 18.926Z');--wui-width-network-sm:36px;--wui-width-network-md:48px;--wui-width-network-lg:86px;--wui-height-network-sm:40px;--wui-height-network-md:54px;--wui-height-network-lg:96px;--wui-icon-size-network-xs:12px;--wui-icon-size-network-sm:16px;--wui-icon-size-network-md:24px;--wui-icon-size-network-lg:42px;--wui-color-inherit:inherit;--wui-color-inverse-100:#fff;--wui-color-inverse-000:#000;--wui-cover:rgba(20, 20, 20, 0.8);--wui-color-modal-bg:var(--wui-color-modal-bg-base);--wui-color-accent-100:var(--wui-color-accent-base-100);--wui-color-accent-090:var(--wui-color-accent-base-090);--wui-color-accent-080:var(--wui-color-accent-base-080);--wui-color-success-100:var(--wui-color-success-base-100);--wui-color-success-125:var(--wui-color-success-base-125);--wui-color-warning-100:var(--wui-color-warning-base-100);--wui-color-error-100:var(--wui-color-error-base-100);--wui-color-error-110:#f05142;--wui-color-error-125:var(--wui-color-error-base-125);--wui-color-blue-100:var(--wui-color-blue-base-100);--wui-color-blue-90:var(--wui-color-blue-base-90);--wui-icon-box-bg-error-100:var(--wui-icon-box-bg-error-base-100);--wui-icon-box-bg-blue-100:var(--wui-icon-box-bg-blue-base-100);--wui-icon-box-bg-success-100:var(--wui-icon-box-bg-success-base-100);--wui-icon-box-bg-inverse-100:var(--wui-icon-box-bg-inverse-base-100);--wui-all-wallets-bg-100:var(--wui-all-wallets-bg-100);--wui-avatar-border:var(--wui-avatar-border-base);--wui-thumbnail-border:var(--wui-thumbnail-border-base);--wui-wallet-button-bg:var(--wui-wallet-button-bg-base);--wui-box-shadow-blue:var(--wui-color-accent-glass-020)}@supports (background:color-mix(in srgb, white 50%, black)) {:root{--wui-color-modal-bg:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-modal-bg-base));--wui-box-shadow-blue:color-mix(in srgb,var(--wui-color-accent-100) 20%,transparent);--wui-color-accent-100:color-mix(in srgb,var(--wui-color-accent-base-100) 100%,transparent);--wui-color-accent-090:color-mix(in srgb,var(--wui-color-accent-base-100) 90%,transparent);--wui-color-accent-080:color-mix(in srgb,var(--wui-color-accent-base-100) 80%,transparent);--wui-color-accent-glass-090:color-mix(in srgb,var(--wui-color-accent-base-100) 90%,transparent);--wui-color-accent-glass-080:color-mix(in srgb,var(--wui-color-accent-base-100) 80%,transparent);--wui-color-accent-glass-020:color-mix(in srgb,var(--wui-color-accent-base-100) 20%,transparent);--wui-color-accent-glass-015:color-mix(in srgb,var(--wui-color-accent-base-100) 15%,transparent);--wui-color-accent-glass-010:color-mix(in srgb,var(--wui-color-accent-base-100) 10%,transparent);--wui-color-accent-glass-005:color-mix(in srgb,var(--wui-color-accent-base-100) 5%,transparent);--wui-color-accent-002:color-mix(in srgb,var(--wui-color-accent-base-100) 2%,transparent);--wui-color-fg-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-100));--wui-color-fg-125:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-125));--wui-color-fg-150:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-150));--wui-color-fg-175:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-175));--wui-color-fg-200:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-200));--wui-color-fg-225:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-225));--wui-color-fg-250:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-250));--wui-color-fg-275:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-275));--wui-color-fg-300:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-300));--wui-color-fg-325:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-325));--wui-color-fg-350:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-fg-350));--wui-color-bg-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-100));--wui-color-bg-125:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-125));--wui-color-bg-150:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-150));--wui-color-bg-175:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-175));--wui-color-bg-200:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-200));--wui-color-bg-225:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-225));--wui-color-bg-250:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-250));--wui-color-bg-275:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-275));--wui-color-bg-300:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-300));--wui-color-bg-325:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-325));--wui-color-bg-350:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-bg-350));--wui-color-success-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-success-base-100));--wui-color-success-125:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-success-base-125));--wui-color-warning-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-warning-base-100));--wui-color-error-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-error-base-100));--wui-color-blue-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-blue-base-100));--wui-color-blue-90:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-blue-base-90));--wui-color-error-125:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-color-error-base-125));--wui-icon-box-bg-error-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-icon-box-bg-error-base-100));--wui-icon-box-bg-accent-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-icon-box-bg-blue-base-100));--wui-icon-box-bg-success-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-icon-box-bg-success-base-100));--wui-icon-box-bg-inverse-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-icon-box-bg-inverse-base-100));--wui-all-wallets-bg-100:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-all-wallets-bg-100));--wui-avatar-border:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-avatar-border-base));--wui-thumbnail-border:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-thumbnail-border-base));--wui-wallet-button-bg:color-mix(in srgb,var(--w3m-color-mix) var(--w3m-color-mix-strength),var(--wui-wallet-button-bg-base))}}body {margin:0;padding:0}
:root{--w3m-color-mix:#fff;--w3m-accent:hsla(231, 100%, 70%, 1);--w3m-default:#fff;--wui-color-modal-bg-base:#121313;--wui-color-accent-base-100:var(--w3m-accent);--wui-color-blueberry-100:hsla(230, 100%, 67%, 1);--wui-color-blueberry-090:hsla(231, 76%, 61%, 1);--wui-color-blueberry-080:hsla(230, 59%, 55%, 1);--wui-color-blueberry-050:hsla(231, 100%, 70%, 0.1);--wui-color-fg-100:#e4e7e7;--wui-color-fg-125:#d0d5d5;--wui-color-fg-150:#a8b1b1;--wui-color-fg-175:#a8b0b0;--wui-color-fg-200:#949e9e;--wui-color-fg-225:#868f8f;--wui-color-fg-250:#788080;--wui-color-fg-275:#788181;--wui-color-fg-300:#6e7777;--wui-color-fg-325:#9a9a9a;--wui-color-fg-350:#363636;--w3m-embedded-background:#131313;--wui-color-bg-100:#141414;--wui-color-bg-125:#191a1a;--wui-color-bg-150:#1e1f1f;--wui-color-bg-175:#222525;--wui-color-bg-200:#272a2a;--wui-color-bg-225:#2c3030;--wui-color-bg-250:#313535;--wui-color-bg-275:#363b3b;--wui-color-bg-300:#3b4040;--wui-color-bg-325:#252525;--wui-color-bg-350:#ffffff;--wui-color-success-base-100:#26d962;--wui-color-success-base-125:#30a46b;--wui-color-warning-base-100:#f3a13f;--wui-color-error-base-100:#f25a67;--wui-color-error-base-125:#df4a34;--wui-color-blue-base-100:rgba(102, 125, 255, 1);--wui-color-blue-base-90:rgba(102, 125, 255, 0.9);--wui-color-success-glass-001:rgba(38, 217, 98, 0.01);--wui-color-success-glass-002:rgba(38, 217, 98, 0.02);--wui-color-success-glass-005:rgba(38, 217, 98, 0.05);--wui-color-success-glass-010:rgba(38, 217, 98, 0.1);--wui-color-success-glass-015:rgba(38, 217, 98, 0.15);--wui-color-success-glass-020:rgba(38, 217, 98, 0.2);--wui-color-success-glass-025:rgba(38, 217, 98, 0.25);--wui-color-success-glass-030:rgba(38, 217, 98, 0.3);--wui-color-success-glass-060:rgba(38, 217, 98, 0.6);--wui-color-success-glass-080:rgba(38, 217, 98, 0.8);--wui-color-success-glass-reown-020:rgba(48, 164, 107, 0.2);--wui-color-warning-glass-reown-020:rgba(243, 161, 63, 0.2);--wui-color-error-glass-001:rgba(242, 90, 103, 0.01);--wui-color-error-glass-002:rgba(242, 90, 103, 0.02);--wui-color-error-glass-005:rgba(242, 90, 103, 0.05);--wui-color-error-glass-010:rgba(242, 90, 103, 0.1);--wui-color-error-glass-015:rgba(242, 90, 103, 0.15);--wui-color-error-glass-020:rgba(242, 90, 103, 0.2);--wui-color-error-glass-025:rgba(242, 90, 103, 0.25);--wui-color-error-glass-030:rgba(242, 90, 103, 0.3);--wui-color-error-glass-060:rgba(242, 90, 103, 0.6);--wui-color-error-glass-080:rgba(242, 90, 103, 0.8);--wui-color-error-glass-reown-020:rgba(223, 74, 52, 0.2);--wui-color-gray-glass-001:rgba(255, 255, 255, 0.01);--wui-color-gray-glass-002:rgba(255, 255, 255, 0.02);--wui-color-gray-glass-005:rgba(255, 255, 255, 0.05);--wui-color-gray-glass-010:rgba(255, 255, 255, 0.1);--wui-color-gray-glass-015:rgba(255, 255, 255, 0.15);--wui-color-gray-glass-020:rgba(255, 255, 255, 0.2);--wui-color-gray-glass-025:rgba(255, 255, 255, 0.25);--wui-color-gray-glass-030:rgba(255, 255, 255, 0.3);--wui-color-gray-glass-060:rgba(255, 255, 255, 0.6);--wui-color-gray-glass-080:rgba(255, 255, 255, 0.8);--wui-color-gray-glass-090:rgba(255, 255, 255, 0.9);--wui-color-dark-glass-100:rgba(42, 42, 42, 1);--wui-icon-box-bg-error-base-100:#3c2426;--wui-icon-box-bg-blue-base-100:#20303f;--wui-icon-box-bg-success-base-100:#1f3a28;--wui-icon-box-bg-inverse-base-100:#243240;--wui-all-wallets-bg-100:#222b35;--wui-avatar-border-base:#252525;--wui-thumbnail-border-base:#252525;--wui-wallet-button-bg-base:var(--wui-color-bg-125);--w3m-card-embedded-shadow-color:rgb(17 17 18 / 25%)}

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .animate-spin {
            animation: spin 1s linear infinite;
        }
        @keyframes pulse-dot {
            0% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1.2); }
            100% { opacity: 0; transform: scale(0.8); }
        }
    
@keyframes slide-in-one-tap {
  from {
    transform: translateY(80px);
  }
  to {
    transform: translateY(0px);
  }
}

.trust-hide-gracefully {
  opacity: 0;
}

.trust-wallet-one-tap .hidden {
    display: none;
  }

.trust-wallet-one-tap .semibold {
    font-weight: 500;
  }

.trust-wallet-one-tap .binance-plex {
    font-family: 'Binance';
  }

.trust-wallet-one-tap .rounded-full {
    border-radius: 50%;
  }

.trust-wallet-one-tap .flex {
    display: flex;
  }

.trust-wallet-one-tap .flex-col {
    flex-direction: column;
  }

.trust-wallet-one-tap .items-center {
    align-items: center;
  }

.trust-wallet-one-tap .space-between {
    justify-content: space-between;
  }

.trust-wallet-one-tap .justify-center {
    justify-content: center;
  }

.trust-wallet-one-tap .w-full {
    width: 100%;
  }

.trust-wallet-one-tap .box {
    transition: all 0.5s cubic-bezier(0, 0, 0, 1.43);
    animation: slide-in-one-tap 0.5s cubic-bezier(0, 0, 0, 1.43);
    width: 384px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1020;
  }

.trust-wallet-one-tap .header {
    gap: 15px;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 18px;
  }

.trust-wallet-one-tap .header .left-items {
      gap: 15px;
    }

.trust-wallet-one-tap .header .title {
      color: #1e2329;
      font-size: 18px;
      font-weight: 600;
      line-height: 28px;
    }

.trust-wallet-one-tap .header .subtitle {
      color: #474d57;
      font-size: 14px;
      line-height: 20px;
    }

.trust-wallet-one-tap .header .close {
      color: #1e2329;
      cursor: pointer;
    }

.trust-wallet-one-tap .body {
    padding: 9px 18px;
    gap: 10px;
  }

.trust-wallet-one-tap .body .right-items {
      gap: 10px;
      width: 100%;
    }

.trust-wallet-one-tap .body .right-items .wallet-title {
        color: #1e2329;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
      }

.trust-wallet-one-tap .body .right-items .wallet-subtitle {
        color: #474d57;
        font-size: 14px;
        line-height: 20px;
      }

.trust-wallet-one-tap .connect-indicator {
    gap: 15px;
    padding: 8px 0;
  }

.trust-wallet-one-tap .connect-indicator .flow-icon {
      color: #474d57;
    }

.trust-wallet-one-tap .loading-color {
    color: #fff;
  }

.trust-wallet-one-tap .button {
    border-radius: 50px;
    outline: 2px solid transparent;
    outline-offset: 2px;
    background-color: rgb(5, 0, 255);
    border-color: rgb(229, 231, 235);
    cursor: pointer;
    text-align: center;
    height: 45px;
  }

.trust-wallet-one-tap .button .button-text {
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      line-height: 20px;
    }

.trust-wallet-one-tap .footer {
    margin: 20px 30px;
  }

.trust-wallet-one-tap .check-icon {
    color: #fff;
  }

@font-face {
  font-family: 'Binance';
  src:   format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Binance';
  src:   format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Binance';
  src:   format('opentype');
  font-weight: 600;
  font-style: normal;
}



  :root{
  }


/*__SWIPER_HEIGHT_FIX__*/
html .swiper:not(.swiper-vertical):not([class*="full"]):not([class*="vh"]) {
  align-self: start !important;
  height: auto !important;
}
html .swiper:not(.swiper-vertical):not([class*="full"]):not([class*="vh"]) > .swiper-wrapper,
html .swiper:not(.swiper-vertical):not([class*="full"]):not([class*="vh"]) .swiper-slide {
  height: auto !important;
}
