.info,
.buy,
.utility,
.vpn,
.calc,
.stats,
.roadmap,
.dev,
.community,
.treasury {
	padding: 100px 0;
	position: relative;
}

.shapes {
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 5;
	pointer-events: none;
}

.shape {
	position: fixed;
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent);
	animation: liquid-morph 10s ease-in-out infinite;
	pointer-events: none;
}

@keyframes liquid-morph {
	0%,
	100% {
		border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
		transform: rotate(0deg) scale(1);
	}

	25% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
		transform: rotate(90deg) scale(1.1);
	}
	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
		transform: rotate(180deg) scale(0.9);
	}
	75% {
		border-radius: 70% 30% 40% 60% / 40% 70% 50% 30%;
		transform: rotate(270deg) scale(1.05);
	}
}

.shape--1 {
	width: 400px;
	height: 400px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.shape--2 {
	width: 300px;
	height: 300px;
	bottom: 20%;
	right: 15%;
	animation-delay: 3s;
}

.scanline-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 9999;
	background: repeating-linear-gradient(
		0deg,
		rgba(255, 255, 255, 0.01) 0px,
		rgba(255, 255, 255, 0.01) 1px,
		transparent 1px,
		transparent 2px
	);
	animation: scanline 8s linear infinite;
	opacity: 0.3;
}

#particleCanvas {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
}

/* ===== MAIN ===== */
.main {
	min-height: 100vh;
	padding: 80px 0 120px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.063) 0%,
		rgb(10, 10, 10) 50%,
		rgba(255, 255, 255, 0.04) 100%
	);
}

.main__container {
	display: flex;
	justify-content: center;
}

.main__image {
	position: relative;
	width: 200px;
	height: 200px;
	margin: 0 auto 30px;
	transition: transform 0.3s var(--ease-smooth);
	z-index: 10;
}

.main__image-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	animation: avatar-rotate 20s linear infinite;
}

.main__image-shadow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.3) 0%,
		transparent 70%
	);
	animation: pulse-shadow 3s ease-in-out infinite;
	border-radius: 50%;
}

.main__image-wrapper img {
	width: 95%;
	height: 95%;
	filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
	border-radius: 50%;
	object-fit: cover;
}

@keyframes pulse-shadow {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.5;
	}

	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.8;
	}
}

@keyframes avatar-rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.main__title {
	display: block;
	color: var(--color-text);
	font-size: 70px;
	font-weight: 900;
	margin-bottom: calc(20 / 60 * 1em);
	position: relative;
	text-align: center;
}

.main__title .glitch {
	display: block;
}

.main__text {
	display: block;
	font-size: 25px;
	max-width: calc(800 / 25 * 1em);
	text-align: center;
	margin-bottom: calc(40 / 25 * 1em);
}

.main__button {
	display: block;
	margin: 0 auto;
}

.main__arrow-wrapper {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.main__arrow {
	animation: scroll-bounce 2s ease-in-out infinite;
}

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

.main__shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.main__shape {
	position: absolute;
	border: 2px solid rgba(255, 255, 255, 0.1);
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-30px) rotate(10deg);
	}
}

.main__shape:nth-child(1) {
	min-width: 250px;
	min-height: 250px;
	width: 25%;
	aspect-ratio: 1;
	top: 10%;
	left: 10%;
	transform: rotate(45deg);
	animation-delay: 0s;
}

.main__shape:nth-child(2) {
	min-width: 180px;
	min-height: 180px;
	width: 17%;
	aspect-ratio: 1;
	top: 60%;
	right: 15%;
	border-radius: 50%;
	animation-delay: 2s;
	animation-duration: 5s;
}

.main__shape:nth-child(3) {
	width: 10%;
	min-width: 80px;
	aspect-ratio: 1;
	bottom: 10%;
	left: 25%;
	animation-delay: 4s;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* ===== INFO ===== */

.info__list {
	display: flex;
	justify-content: center;
	gap: 25px;
	flex-wrap: wrap;
}

.info__card {
	max-width: 400px;
	flex: 1 0 270px;
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.info__card.visible {
	opacity: 1;
	transform: translateY(0);
}

.card {
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	transition: all 0.4s var(--ease-smooth);
}

.card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
	border-color: var(--color-text);
}

.card__border {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid var(--color-text);
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.4s var(--ease-smooth);
	pointer-events: none;
}

.card:hover .card__border {
	opacity: 1;
	animation: border-draw 0.6s ease-out;
}

@keyframes border-draw {
	0% {
		clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	}

	25% {
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	50% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
	}
	75% {
		clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
	}
	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}

.card__subtitle {
	font-size: 13px;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 15px;
}

.card__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
}

.card__title--elipsis {
	font-size: 20px !important;
}

.info__copy-button {
	margin-top: 15px;
	padding: 8px 20px;
	font-size: 13px;
	line-height: 1.1;
}

.info__copy-button.copied {
	background: var(--color-text);
	color: var(--color-bg);
}

/* ===== BUY ===== */
.buy {
	background: var(--color-surface);
}

.buy__title .glitch {
	display: inline-block;
}

.buy__text {
	text-align: center;
	margin: 0 auto 2em;
}

.buy__list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.buy__dex-card {
	flex: 1 0 340px;
	max-width: 380px;
}

.dex-card,
.utility-card {
	background: var(--color-bg);
	border: 3px solid var(--color-border);
	border-radius: 30px;
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s var(--ease-smooth);
	text-align: center;
	display: flex;
	flex-direction: column;
}

.dex-card:hover,
.utility-card:hover {
	box-shadow: 0 25px 70px rgba(255, 255, 255, 0.35);
}

.dex-card::before,
.utility-card::before {
	width: 200%;
	height: 200%;
	pointer-events: none;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	background: linear-gradient(135deg, #fff, transparent, #fff);
	border-radius: 30px;
	opacity: 0;
	transition: opacity 0.5s var(--ease-smooth);
	z-index: 0;
	animation: dex-border-glow 3s linear infinite;
	animation-play-state: paused;
}

.dex-card:hover::before,
.utility-card:hover::before {
	opacity: 0.4;
	animation-play-state: running;
}

.dex-card:hover::before {
	opacity: 0.4;
	animation-play-state: running;
}

@keyframes dex-border-glow {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.dex-card__badge {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 8px 25px;
	color: var(--color-text-secondary);
	background: linear-gradient(135deg, #555, #333);
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
	animation: badge-float 3s ease-in-out infinite;
}

.dex-card__badge--recommended {
	color: var(--color-bg);
	background: var(--color-text);
}

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

.dex-card__header {
	margin: 30px 0 25px;
}

.dex-card__title {
	font-size: 32px;
	font-weight: 900;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-text);
}

.dex-card__status {
	font-size: 0.9rem;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.dex-card__slippage {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 25px 20px;
	margin: 25px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: all 0.3s var(--ease-smooth);
}

.dex-card__slippage-label {
	font-size: 14px;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}

.dex-card__slippage-value {
	font-size: 40px;
	font-weight: 900;
	letter-spacing: 0.05em;
}

.dex-card__slippage-value--green {
	color: #4caf50;
	text-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.dex-card__slippage-value--yellow {
	color: #ffc107;
	text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.dex-card__text {
	font-size: 16px;
	color: var(--color-text-secondary);
	margin: 20px auto 30px;
	line-height: 1.6;
	text-align: center;
	line-height: 1.3;
	max-width: 290px;
}

.dex-card__button {
	display: block;
	font-size: 16px;
	width: 100%;
	text-decoration: none;
	animation: recommended-pulse 2s ease-in-out infinite;
	margin-top: auto;
}

.dex-card__button:hover {
	color: var(--color-primary-hover);
}

@keyframes recommended-pulse {
	0%,
	100% {
		box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
	}

	50% {
		box-shadow: 0 7px 30px rgba(255, 255, 255, 0.6);
	}
}

/* ===== UTILITY =====  */

.utility__title span {
	display: inline-block;
}

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

.utility__card {
	max-width: 400px;
	flex: 1 0 250px;
}

.utility-card {
	padding: 50px 30px;
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.utility-card:hover {
	border-color: var(--color-text);
	box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
}

.utility-card__image {
	width: 60px;
	height: auto;
	animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-10px) rotate(5deg);
	}
}

.utility-card__image svg {
	width: inherit;
	height: inherit;
}

.utility-card__image svg,
.utility-card__image svg path {
	fill: var(--color-text);
}

.utility-card__title {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-text);
}

.utility-card__text {
	font-size: 15px;
}

/* ===== VPN ===== */
.vpn {
	overflow: hidden;
	background: linear-gradient(
		135deg,
		var(--color-surface) 0%,
		var(--color-bg) 100%
	);
}

.vpn::before,
.vpn::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	border: 2px solid rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	animation: vpn-scale 4s linear infinite;
	z-index: -1;
}

.vpn::before {
	top: -200px;
	left: -200px;
}

.vpn::after {
	bottom: -200px;
	right: -200px;
}

@keyframes vpn-scale {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.vpn__container {
	display: flex;
	align-items: center;
	gap: 60px;
}

.vpn__content {
	flex: 1;
}

.vpn__title {
	display: block;
	font-size: clamp(2.5rem, 3vw, 4rem);
	font-weight: 800;
	margin-bottom: 60px;
	letter-spacing: 0.05em;
	position: relative;
	color: var(--color-text);
	margin-bottom: 20px;
}

.vpn__text {
	font-size: 18px;
	color: var(--color-text-secondary);
	margin-bottom: 2em;
}

.vpn__features {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

.vpn__features-item {
	flex: 1 0 250px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 0.5s var(--ease-smooth);
}

.vpn__features-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.3);
}

.vpn__features-icon {
	font-size: 24px;
}

.vpn__features-text {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-text);
}

.vpn__prices {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.vpn__prices-item {
	flex: 0 1 250px;
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 20px;
	padding: 25px 20px;
	text-align: center;
	transition: all 0.3s var(--ease-bounce);
	position: relative;
}

.vpn__prices-item:hover {
	transform: translateY(-10px) scale(1.08);
	box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.vpn__prices-title {
	font-size: 14px;
	color: var(--color-text-secondary);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.vpn__prices-text {
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 8px;
	color: var(--color-text);
}

.vpn__prices-save {
	font-size: 14px;
	color: #4caf50;
	font-weight: 600;
}

.vpn__button {
	font-size: 18px;
	padding: 20px 50px;
	font-weight: 700;
	margin-bottom: 40px;
	animation: mega-pulse 2s ease-in-out infinite;
}

/* .vpn__button.visible,
.vpn__prices-item.visible,
.vpn__work.visible {
	opacity: 0.5;
} */

.vpn__button:hover {
	color: var(--color-primary-hover);
	transform: scale(1.05);
}

@keyframes mega-pulse {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
	}

	50% {
		box-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
			0 0 60px rgba(255, 255, 255, 0.4);
	}
}

.vpn__work {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	color: var(--color-text);
}

.vpn__work-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.vpn__steps {
	text-align: left;
	list-style: none;
	counter-reset: step-counter;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.vpn__step {
	counter-increment: step-counter;
	position: relative;
	padding-left: 40px;
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.1;
}

.vpn__step::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 50%;
	width: 28px;
	height: 28px;
	background: var(--color-text);
	color: var(--color-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 12px;
	transform: translateY(-50%);
}

.vpn__demo {
	flex: 1;
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: demo-float 6s ease-in-out infinite;
}

@keyframes demo-float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(2deg);
	}
}

.demo__header {
	background: rgba(255, 255, 255, 0.05);
	padding: 15px;
	display: flex;
	gap: 8px;
	border-bottom: 1px solid var(--color-border);
}

.demo__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.demo__dot:nth-child(1) {
	background: #ff5f56;
}

.demo__dot:nth-child(2) {
	background: #ffbd2e;
}

.demo__dot:nth-child(3) {
	background: #27c93f;
}

.demo__content {
	padding: 30px;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.demo__message {
	max-width: 80%;
	padding: 12px 18px;
	border-radius: 18px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-text);
}

@keyframes message-appear {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.demo__message--left {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-right: auto;
}

.demo__message--right {
	background: var(--color-text);
	color: var(--color-bg);
	margin-left: auto;
}

/* ===== CALC ===== */

.calc__form {
	max-width: 600px;
	margin: 0 auto;
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 30px;
	padding: 50px;
}

.calc__label {
	display: block;
	margin-bottom: 40px;
}

.calc__label label {
	display: block;
	font-size: 16px;
	margin-bottom: 15px;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.calc__input {
	width: 100%;
	padding: 20px;
	font-size: 24px;
	background: var(--color-bg);
	border: 2px solid var(--color-border);
	border-radius: 15px;
	color: var(--color-text);
	font-family: inherit;
	transition: all 0.3s var(--ease-smooth);
	line-height: 1;
}

.calc__input:focus {
	outline: none;
	border-color: var(--color-text);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.calc__result {
	text-align: center;
	padding: 30px;
	background: var(--color-bg);
	border-radius: 20px;
}

.calc__result-title {
	font-size: 16px;
	color: var(--color-text-secondary);
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.calc__result-text {
	font-size: 48px;
	font-weight: 900;
	animation: result-pop 0.4s var(--ease-bounce);
	color: var(--color-text);
}

@keyframes result-pop {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* ===== STATS ===== */

.stats__title .glitch {
	display: inline-block;
}

.stats__list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.stats__item {
	min-width: max-content;
	flex: 1 0 300px;
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 25px;
	padding: 50px 30px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.stats__item:hover {
	border-color: var(--color-text);
	box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

.stats__item::before {
	pointer-events: none;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at center,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s var(--ease-smooth);
}

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

.stats__item-text {
	display: block;
	font-size: 50px;
	font-weight: 900;
	margin-bottom: 15px;
	color: var(--color-text);
}

.stats__item-title {
	font-size: 16px;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
}

.stats__item--green {
	color: #4caf50;
	text-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

/* ===== TREASURY ===== */

.treasury {
	position: relative;
	overflow: hidden;
}

.treasury::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 20% 50%,
		rgba(255, 255, 255, 0.05) 0%,
		transparent 50%
	);
	pointer-events: none;
}

.treasury::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: radial-gradient(
		circle at 80% 50%,
		rgba(255, 255, 255, 0.05) 0%,
		transparent 50%
	);
	pointer-events: none;
}

.treasury__wrapper {
	position: relative;
	z-index: 2;
}

.treasury__inner {
	border-radius: 32px;
	padding: 80px 60px;
	position: relative;
	transition: all 0.5s var(--ease-smooth);
}

.treasury__inner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	animation: shift 20s ease-in-out infinite;
}

@keyframes shift {
	0%,
	100% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(50px, 50px);
	}
}

.treasury__inner:hover {
	box-shadow: 0 30px 80px rgba(255, 255, 255, 0.15),
		inset 0 0 40px rgba(255, 255, 255, 0.02);
}

.treasury__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.treasury__left {
	width: fit-content;
	display: flex;
	flex-direction: column;
	animation: tr-float 6s ease-in-out infinite;
	text-align: center;
}

.treasury__icon-box {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 32px;
	overflow: hidden;
	margin: 0 auto 16px;
}

.treasury__icon-box img {
	width: 100%;
	height: 100%;
}

@keyframes tr-float {
	0%,
	100% {
		transform: translateY(0) rotate(-0.5deg);
	}
	50% {
		transform: translateY(-20px) rotate(0.5deg);
	}
}

.treasury__title {
	font-weight: 900;
	color: var(--color-text);
	line-height: 1.2;
	text-align: left;
	margin-bottom: 12px;
	text-align: center;
}

.treasury__subtitle {
	color: var(--color-text-secondary);
	line-height: 1.6;
	margin: 0;
}

.treasury__description {
	font-size: 16px;
	color: var(--color-text-secondary);
	line-height: 1.9;
	margin: 0 0 25px;
}

.treasury__description strong {
	color: var(--color-text);
	font-weight: 600;
	background: rgba(255, 255, 255, 0.08);
	padding: 2px 8px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.treasury__description strong:hover {
	background: rgba(255, 255, 255, 0.12);
}

.treasury__mechanics {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.03);
	border-left: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	margin-bottom: 30px;
	transition: all 0.4s var(--ease-smooth);
}

.treasury__mechanics:hover {
	background: rgba(255, 255, 255, 0.06);
	border-left-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 10px 40px rgba(255, 255, 255, 0.08),
		inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.treasury__mechanic-item {
	display: flex;
	align-items: center;
	gap: 15px;
	transition: all 0.3s var(--ease-smooth);
}

.treasury__mechanic-item:hover {
	transform: translateX(7px);
}

.treasury__mechanic-icon {
	flex-shrink: 0;
}

.treasury__mechanic-icon img {
	width: 24px;
	height: 24px;
}

.treasury__mechanic-text {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.treasury__mechanic-text strong {
	color: var(--color-text);
	background: none;
	padding: 0;
	border-radius: 0;
}

.treasury__cta {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.treasury__cta-text {
	font-size: 16px;
	color: var(--color-text);
	font-weight: 600;
	margin: 0;
	text-align: center;
}

.treasury .button {
	padding: 18px 48px;
	font-size: 16px;
	text-align: center;
	letter-spacing: 0.05em;
	animation: tr-pulse 2.5s ease-in-out infinite;
	transition: all 0.3s var(--ease-smooth);
	border: none;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

@keyframes tr-pulse {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(255, 255, 255, 0.2),
			inset 0 0 20px rgba(255, 255, 255, 0.05);
	}
	50% {
		box-shadow: 0 0 40px rgba(255, 255, 255, 0.5),
			inset 0 0 20px rgba(255, 255, 255, 0.1), 0 15px 40px rgba(0, 0, 0, 0.3);
	}
}

.treasury .button:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 0 50px rgba(255, 255, 255, 0.6), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.treasury__footer {
	font-size: 13px;
	color: var(--color-text-secondary);
	opacity: 0.6;
	text-align: center;
}

@media (max-width: 1200px) {
	.treasury__inner {
		padding: 60px 50px;
	}

	.treasury__content {
		gap: 60px;
	}

	.treasury__description {
		font-size: 15px;
	}
}

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

	.treasury__inner {
		padding: 80px 40px;
	}

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

	.treasury__left {
		width: 100%;
		text-align: center;
	}

	.treasury__icon-box {
		width: 110px;
		height: 110px;
		margin: 0 auto 16px;
		border-radius: 28px;
	}

	.treasury__title {
		text-align: center;
		margin-bottom: 12px;
	}

	.treasury__subtitle {
		text-align: center;
	}

	.treasury__description {
		font-size: 15px;
		line-height: 1.8;
		margin-bottom: 22px;
	}

	.treasury__mechanics {
		padding: 22px;
		gap: 16px;
		margin-bottom: 28px;
	}

	.treasury__mechanic-text {
		font-size: 13.5px;
	}

	.treasury .button {
		padding: 17px 45px;
	}
}

@media (max-width: 850px) {
	.treasury__content {
		gap: 35px;
	}

	.treasury__mechanics {
		padding: 20px;
		gap: 14px;
	}
}

@media (max-width: 767px) {
	.treasury__inner {
		padding: 60px 32px;
		border-radius: 24px;
	}

	.treasury__content {
		gap: 30px;
	}

	.treasury__icon-box {
		width: 90px;
		height: 90px;
		margin-bottom: 12px;
		border-radius: 24px;
	}

	.treasury__title {
		margin-bottom: 10px;
	}

	.treasury__description {
		margin-bottom: 22px;
	}

	.treasury__mechanics {
		margin-bottom: 25px;
		border-radius: 10px;
	}

	.treasury__mechanic-icon img {
		width: 21px;
		height: 21px;
	}

	.treasury__mechanic-text {
		font-size: 14px;
		line-height: 1.5;
	}

	.treasury__cta {
		gap: 13px;
	}

	.treasury__cta-text {
		font-size: 15px;
	}

	.treasury__footer {
		font-size: 14px;
		margin-top: 12px;
	}
}

@media (max-width: 544px) {
	.treasury__inner {
		padding: 40px 24px;
		border-radius: 20px;
	}

	.treasury__content {
		gap: 25px;
	}

	.treasury__icon-box {
		margin-bottom: 10px;
	}

	.treasury__title {
		margin-bottom: 8px;
	}

	.treasury__description {
		line-height: 1.6;
	}

	.treasury__mechanics {
		padding: 16px;
		border-radius: 8px;
	}

	.treasury__mechanic-item {
		font-size: 14px;
	}

	.treasury__mechanic-text {
		line-height: 1.4;
	}

	.treasury__cta {
		gap: 11px;
	}

	.treasury__cta-text {
		font-size: 14px;
	}

	.treasury .button {
		padding: 12px 30px;
		font-size: 14px;
	}

	.treasury__footer {
		font-size: 13px;
		margin-top: 5px;
	}
}

@media (max-width: 380px) {
	.treasury__inner {
		padding: 40px 16px;
	}

	.treasury .button {
		padding: 12px 30px;
		font-size: 13px;
	}
}

/* ===== DEV ===== */

.dev__content {
	max-width: 700px;
	margin: 0 auto;
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 30px;
	padding: 60px;
	text-align: center;
}

.dev__image {
	width: 120px;
	height: 120px;
	margin: 0 auto 30px;
	position: relative;
	animation: avatar-rotate 10s linear infinite;
}

.dev__image img {
	border-radius: 50%;
	animation: mega-pulse 2s ease-in-out infinite;
	pointer-events: none;
}

.dev__channel-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--color-text);
}

.dev__text {
	color: var(--color-text-secondary);
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.2;
}

.dev__text a {
	text-decoration: none;
	color: var(--color-text);
}

.dev__button {
	padding: 15px 40px;
	font-weight: 600;
	font-size: 14px;
}

/* ===== COMMUNITY ===== */
.community {
	background: var(--color-surface);
}

.community__text {
	font-size: 18px;
	max-width: 800px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
}

.community__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 50px;
}

.community__item {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--color-text);
	border-radius: 50%;
	color: var(--color-text);
	transition: all 0.3s var(--ease-bounce);
}

.community__item:hover {
	background: var(--color-text);
	color: var(--color-bg);
	transform: scale(1.2) !important;
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.community__item svg {
	width: 30px;
	height: 30px;
	transition: all 0.5s var(--ease-bounce);
}

.community__item:hover svg {
	transform: rotate(360deg) scale(1.2) !important;
}

.community__button {
	display: block;
	padding: calc(18 / 16 * 1em) 3em;
	font-size: 16px;
	animation: mega-pulse 2s ease-in-out infinite;
	width: fit-content;
	margin: 0 auto;
}

.community__button:hover {
	transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
	padding: 60px 0 40px;
	text-align: center;
	position: relative;
	border-top: 1px solid var(--color-border);
}

.footer__text {
	font-size: 16px;
	color: var(--color-text-secondary);
}

.footer__text:first-child {
	margin-bottom: 10px;
}

.footer__text:last-child {
	font-size: 14px;
	opacity: 0.6;
}

@media (max-width: 992px) {
	.vpn__container {
		flex-direction: column-reverse;
	}
	.vpn__content {
		text-align: center;
	}
	.vpn__demo {
		width: 80%;
	}
	.vpn__features {
		justify-content: center;
		max-width: 700px;
	}
	.vpn__features-item {
		flex: 1;
		min-width: max-content;
	}
	.vpn__prices {
		justify-content: center;
	}
	.vpn__work {
		margin-left: auto;
		margin-right: auto;
	}
	.vpn__step {
		display: inline;
		width: fit-content;
		text-align: center;
	}

	.stats__item-text {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.main__title {
		font-size: 52px;
	}

	.main__text {
		font-size: 18px;
	}

	.info__list {
		gap: 20px;
	}

	.info__card {
		max-width: 400px;
	}

	.utility-card {
		padding: 40px 25px;
		gap: 15px;
	}

	.utility-card__image {
		width: 50px;
	}

	.card__subtitle {
		margin-bottom: 12px;
	}

	.card__title {
		font-size: 28px;
	}

	.buy__list {
		gap: 25px;
	}

	.vpn__features {
		max-width: none;
	}

	.vpn__demo {
		width: 100%;
	}

	.calc__form {
		padding: 40px;
	}

	.stats__list {
		gap: 20px;
	}

	.stats__item {
		padding: 40px 25px;
	}

	.community__list {
		gap: 20px;
		margin-bottom: 40px;
	}

	.footer {
		padding: 30px 0;
	}

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

@media (max-width: 544px) {
	.info,
	.buy,
	.utility,
	.vpn,
	.calc,
	.stats,
	.roadmap,
	.dev,
	.community,
	.treasury {
		padding: 80px 0;
	}

	.main__title {
		line-height: 1.2;
		margin-bottom: 30px;
	}

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

	.main__shape:nth-child(1) {
		top: 20%;
		min-width: 200px;
		min-height: 200px;
	}

	.main__shape:nth-child(2) {
		min-width: 150px;
		min-height: 150px;
	}

	.main__shape:nth-child(3) {
		min-width: 100px;
	}

	.info__card {
		max-width: none;
	}

	.dev__content {
		padding: 40px;
	}

	.buy__list {
		gap: 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.buy__dex-card {
		flex: 1;
		width: 100%;
	}

	.card__title {
		font-size: 24px;
	}

	.dex-card {
		padding: 40px 25px;
	}

	.dex-card__badge {
		font-size: 13px;
	}

	.dex-card__title {
		font-size: 30px;
	}

	.dex-card__header {
		margin: 20px 0;
	}

	.dex-card__status {
		font-size: 13px;
	}

	.dex-card__slippage {
		padding: 20px 15px;
		margin: 15px 0;
	}

	.dex-card__button {
		font-size: 14px;
	}

	.utility-card {
		padding: 35px 20px;
		gap: 12px;
	}

	.utility-card__title {
		font-size: 22px;
	}

	.demo__content {
		padding: 25px;
	}

	.vpn__container {
		gap: 40px;
	}

	.vpn__title {
		font-size: 32px;
	}

	.vpn__button {
		font-size: 16px;
	}

	.stats__list {
		flex-direction: column;
	}

	.stats__item {
		flex: 1;
		min-width: initial;
	}

	.stats__item-text {
		font-size: 36px;
	}

	.stats__item-title {
		font-size: 14px;
	}

	.dev__content {
		padding: 40px 25px;
	}

	.dev__channel-title {
		font-size: 26px;
	}
}

/* ===== ROADMAP ===== */
.roadmap {
	background: linear-gradient(
		135deg,
		var(--color-surface) 0%,
		rgba(17, 17, 17, 0.8) 100%
	);
	position: relative;
	overflow: hidden;
}

.roadmap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 0%,
		rgba(255, 255, 255, 0.03) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.roadmap__title {
	position: relative;
	z-index: 2;
}

.roadmap__text {
	text-align: center;
	margin: 0 auto 2em;
}

.roadmap__timeline {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	z-index: 2;
}

/* ===== PHASE STRUCTURE ===== */

.roadmap__phase {
	position: relative;
	margin-bottom: 0;
	opacity: 0;
	transform: translateY(50px);
}

.roadmap__phase.visible {
	opacity: 1;
	transform: translateY(0);
	transition: 0.6s var(--ease-smooth);
}

.roadmap__phase-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	position: relative;
	z-index: 3;
}

/* ===== BADGES ===== */

.roadmap__phase-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	border: 2px solid;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(10px);
	transition: all 0.4s var(--ease-smooth);
	animation: badge-glow 2s ease-in-out infinite;
	line-height: 1.4;
}

.roadmap__badge-number {
	font-size: 1.1rem;
	font-weight: 900;
	letter-spacing: 0.15em;
}

.roadmap__badge-text {
	font-size: 0.85rem;
	letter-spacing: 0.1em;
}

.roadmap__badge--completed {
	border-color: rgba(76, 175, 80, 0.3);
	color: #4caf50;
	box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
}

.roadmap__badge--completed:hover {
	box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
	transform: translateY(-2px);
}

.roadmap__badge--in-progress {
	border-color: rgba(255, 193, 7, 0.6);
	color: #ffc107;
	box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.roadmap__badge--in-progress:hover {
	box-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
	transform: translateY(-2px);
}

.roadmap__badge--upcoming {
	opacity: 1;
	border-color: rgba(33, 150, 243, 0.6);
	color: #2196f3;
	box-shadow: 0 0 20px rgba(33, 150, 243, 0.2);
}

.roadmap__badge--upcoming:hover {
	box-shadow: 0 0 30px rgba(33, 150, 243, 0.4);
	transform: translateY(-2px);
}

@keyframes badge-glow {
	0%,
	100% {
		box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
	}
	50% {
		box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
	}
}

/* ===== PHASE INDICATOR ===== */

.roadmap__phase-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.15);
	margin-right: 6px;
}

.roadmap__indicator-dot {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transition: all 0.4s var(--ease-smooth);
}

.roadmap__indicator-dot--active {
	background: #4caf50;
	box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
	animation: pulse-active--green 2s ease-in-out infinite;
}

.roadmap__indicator-dot--in-progress {
	background: #ffc107;
	box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
	animation: pulse-active--yellow 2s ease-in-out infinite;
}

.roadmap__indicator-dot--upcoming {
	background: #2196f3;
	box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
	animation: pulse-active--blue 2s ease-in-out infinite;
}

@keyframes pulse-active--green {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
	}
	50% {
		box-shadow: 0 0 40px rgba(76, 175, 80, 1);
	}
}

@keyframes pulse-active--yellow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
	}
	50% {
		box-shadow: 0 0 20px rgba(255, 193, 7, 1);
	}
}

@keyframes pulse-active--blue {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
	}
	50% {
		box-shadow: 0 0 20px rgba(33, 150, 243, 1);
	}
}

/* ===== PHASE CARD ===== */

.roadmap__phase-card {
	background: linear-gradient(
		135deg,
		rgba(10, 10, 10, 0.6) 0%,
		rgba(17, 17, 17, 0.8) 100%
	);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	padding: 50px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s var(--ease-smooth);
	backdrop-filter: blur(10px);
	margin-bottom: 0;
	max-width: 700px;
	width: 100%;
}

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

.roadmap__phase-card:hover {
	transform: translateY(-15px);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1);
	background: linear-gradient(
		135deg,
		rgba(10, 10, 10, 0.8) 0%,
		rgba(17, 17, 17, 0.95) 100%
	);
}

.roadmap__phase-content {
	position: relative;
	z-index: 2;
}

/* ===== PHASE TITLE & SUBTITLE ===== */

.roadmap__phase-title {
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 900;
	margin-bottom: 12px;
	color: var(--color-text);
	letter-spacing: 0.03em;
	line-height: 1.3;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
		sans-serif;
}

.roadmap__phase-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 35px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== PHASE LIST & ITEMS ===== */

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

.roadmap__phase-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	transition: all 0.4s var(--ease-smooth);
	position: relative;
	overflow: hidden;
}

.roadmap__phase-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
}

.roadmap__phase-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateX(8px);
}

/* Completed Items */
.roadmap__item--completed {
	border-color: rgba(76, 175, 80, 0.3);
	background: linear-gradient(
		135deg,
		rgba(76, 175, 80, 0.05) 0%,
		transparent 100%
	);
}

.roadmap__item--completed:hover {
	border-color: rgba(76, 175, 80, 0.5);
	background: linear-gradient(
		135deg,
		rgba(76, 175, 80, 0.1) 0%,
		transparent 100%
	);
}

/* In Progress Items */
.roadmap__item--in-progress {
	border-color: rgba(255, 193, 7, 0.3);
	background: linear-gradient(
		135deg,
		rgba(255, 193, 7, 0.05) 0%,
		transparent 100%
	);
}

.roadmap__item--in-progress:hover {
	border-color: rgba(255, 193, 7, 0.5);
	background: linear-gradient(
		135deg,
		rgba(255, 193, 7, 0.1) 0%,
		transparent 100%
	);
}

/* Upcoming Items */
.roadmap__item--upcoming {
	border-color: rgba(33, 150, 243, 0.2);
	background: linear-gradient(
		135deg,
		rgba(33, 150, 243, 0.03) 0%,
		transparent 100%
	);
}

.roadmap__item--upcoming.visible {
	opacity: 0.8 !important;
}

.roadmap__item--upcoming:hover {
	border-color: rgba(33, 150, 243, 0.4);
	background: linear-gradient(
		135deg,
		rgba(33, 150, 243, 0.08) 0%,
		transparent 100%
	);
	opacity: 1;
}

/* ===== ITEM CHECK ICON ===== */

.roadmap__item-check {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	transition: all 0.3s var(--ease-bounce);
}

.roadmap__item-check svg {
	width: 16px;
	height: 16px;
}

.roadmap__item--completed .roadmap__item-check {
	background: rgba(76, 175, 80, 0.2);
	border: 2px solid #4caf50;
	color: #4caf50;
}

.roadmap__item--completed:hover .roadmap__item-check {
	background: #4caf50;
	color: var(--color-bg);
	transform: scale(1.15);
	box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}

.roadmap__item-check--progress {
	background: rgba(255, 193, 7, 0.2);
	border: 2px solid #ffc107;
	color: #ffc107;
	animation: spinner-rotate 2s linear infinite;
}

.roadmap__item--in-progress:hover .roadmap__item-check--progress {
	background: #ffc107;
	color: var(--color-bg);
	transform: scale(1.15);
	box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.roadmap__item-check--upcoming {
	background: rgba(33, 150, 243, 0.15);
	border: 2px solid rgba(33, 150, 243, 0.6);
	color: #2196f3;
}

.roadmap__item--upcoming:hover .roadmap__item-check--upcoming {
	background: rgba(33, 150, 243, 0.3);
	border-color: #2196f3;
	transform: scale(1.15);
}

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

/* ===== ITEM TEXT ===== */

.roadmap__item-text {
	flex: 1;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	transition: color 0.3s var(--ease-smooth);
}

.roadmap__phase-item:hover .roadmap__item-text {
	color: var(--color-text);
}

/* ===== ITEM STATUS ===== */

.roadmap__item-status {
	flex-shrink: 0;
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	white-space: nowrap;
	transition: all 0.3s var(--ease-smooth);
}

.roadmap__item--completed .roadmap__item-status {
	background: rgba(76, 175, 80, 0.15);
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.roadmap__item--completed:hover .roadmap__item-status {
	background: rgba(76, 175, 80, 0.25);
	border-color: rgba(76, 175, 80, 0.5);
}

.roadmap__item-status--progress {
	background: rgba(255, 193, 7, 0.15);
	color: #ffc107;
	border: 1px solid rgba(255, 193, 7, 0.3);
}

.roadmap__item--in-progress:hover .roadmap__item-status--progress {
	background: rgba(255, 193, 7, 0.25);
	border-color: rgba(255, 193, 7, 0.5);
}

.roadmap__item-status--upcoming {
	background: rgba(33, 150, 243, 0.1);
	color: #2196f3;
	border: 1px solid rgba(33, 150, 243, 0.2);
}

.roadmap__item--upcoming:hover .roadmap__item-status--upcoming {
	background: rgba(33, 150, 243, 0.15);
	border-color: rgba(33, 150, 243, 0.4);
}

/* ===== CUSTOM ARROWS ===== */

.roadmap__arrow-wrapper {
	display: block;
	height: 100px;
	margin: 50px 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.roadmap__arrow {
	position: absolute;
	height: 100%;
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
	background: var(--color-text);
	animation: arrow-flow 2s ease-in-out infinite;
}

@keyframes arrow-flow {
	0%,
	100% {
		opacity: 0.5;
		stroke-dasharray: 50;
		stroke-dashoffset: 0;
	}
	50% {
		opacity: 1;
		stroke-dasharray: 50;
		stroke-dashoffset: -10;
	}
}

/* ===== FOOTER ===== */

.roadmap__footer {
	text-align: center;
	margin-top: 70px;
	padding: 40px 50px;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.04) 0%,
		rgba(255, 255, 255, 0.02) 100%
	);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	animation: footer-glow 3s ease-in-out infinite;
}

.roadmap__footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
}

.roadmap__footer-text {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	letter-spacing: 0.03em;
	margin: 0;
	line-height: 1.6;
}

@keyframes footer-glow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
		border-color: rgba(255, 255, 255, 0.1);
	}
	50% {
		box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
		border-color: rgba(255, 255, 255, 0.15);
	}
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
	.roadmap__phase-card {
		padding: 40px;
	}

	.roadmap__phase-title {
		font-size: 32px;
	}

	.roadmap__phase-list {
		gap: 16px;
	}

	.roadmap__phase-item {
		padding: 18px;
	}

	.roadmap__item-status {
		align-self: flex-start;
	}
}

@media (max-width: 850px) {
	.roadmap__timeline {
		justify-content: center;
	}
	.roadmap__phase-card {
		margin: 0 auto !important;
	}
}

@media (max-width: 767px) {
	.roadmap__phase-header {
		margin-bottom: 20px;
		justify-content: center;
	}

	.roadmap__phase-card {
		border-radius: 24px;
	}

	.roadmap__phase-title {
		display: block;
		font-size: 28px;
		margin-bottom: 10px;
		text-align: center;
	}

	.roadmap__phase-subtitle {
		text-align: center;
		font-size: 14px;
		margin-bottom: 25px;
	}

	.roadmap__phase-list {
		gap: 14px;
	}

	.roadmap__phase-item {
		flex-direction: column;
		align-items: center;
		padding: 16px;
		gap: 14px;
		border-radius: 14px;
	}

	.roadmap__item-text {
		text-align: center;
		font-size: 14px;
		text-align: center;
	}

	.roadmap__item-status {
		margin-left: auto;
		margin-right: auto;
	}

	.roadmap__arrow {
		height: 80px;
		margin: 15px 0;
	}

	.roadmap__footer {
		padding: 30px 25px;
		margin-top: 50px;
	}

	.roadmap__footer-text {
		font-size: 16px;
	}
}

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

	.roadmap__badge-text {
		font-size: 12px;
	}

	.roadmap .title {
		font-size: 32px;
		margin-bottom: 50px;
	}

	.roadmap__phase-badge {
		padding: 8px 16px;
		font-size: 0.8rem;
	}

	.roadmap__badge-number {
		font-size: 1rem;
	}

	.roadmap__phase-card {
		padding: 40px 20px;
		border-radius: 20px;
	}

	.roadmap__phase-title {
		font-size: 24px;
	}

	.roadmap__phase-subtitle {
		font-size: 13px;
	}

	.roadmap__phase-item {
		padding: 14px;
		gap: 12px;
	}

	.roadmap__item-check {
		width: 24px;
		height: 24px;
	}

	.roadmap__item-text {
		font-size: 13px;
	}

	.roadmap__item-status {
		padding: 5px 10px;
		font-size: 0.7rem;
	}

	.roadmap__arrow {
		height: 60px;
	}

	.roadmap__footer {
		padding: 25px 20px;
		margin-top: 40px;
	}

	.roadmap__footer-text {
		font-size: 15px;
	}

	.roadmap__arrow-wrapper {
		margin: 30px 0;
	}
}
