:root {
	--c-primary: #0ea5e9;
	--c-primary-bright: #38bdf8;
	--c-accent: #06b6d4;
	--c-bg-deep: #050a14;
	--c-bg: #0a0f1e;
	--c-bg-card: rgba(10, 18, 35, 0.82);
	--c-text: #e2e8f0;
	--c-text-muted: #7dd3fc;
	--c-border: rgba(14, 165, 233, 0.28);
	--c-glow: rgba(14, 165, 233, 0.35);
	--c-danger: #ef4444;
	--c-warning: #f59e0b;
	--c-success: #22c55e;
	--font-display: 'Tektur', sans-serif;
	--font-body: 'Tektur', sans-serif;
	color: var(--c-text);
	background-color: var(--c-bg);
}
html {
	scroll-behavior: smooth;
	scrollbar-width: none;
	overflow-y: scroll;
}
html::-webkit-scrollbar {
	display: none;
}
*,
*:before,
*:after {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 500;
	background: var(--c-bg);
	color: var(--c-text);
	min-height: 100vh;
	font-size: 16px;
}
#root {
	min-height: 100vh;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
.app-shell {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background:
		radial-gradient(
			ellipse 90% 45% at 30% -5%,
			rgba(14, 165, 233, 0.18),
			transparent 55%
		),
		radial-gradient(
			ellipse 50% 50% at 90% 80%,
			rgba(6, 182, 212, 0.1),
			transparent 50%
		),
		var(--c-bg-deep);
	color: var(--c-text);
	overflow-x: hidden;
}
.main-content {
	position: relative;
	z-index: 10;
	padding: 0 1.5rem 4rem;
	display: flex;
	flex-direction: column;
	gap: 5rem;
	flex: 1;
}
.hero {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 9rem 1rem 0;
	scroll-margin-top: 80px;
}
.hero-inner {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 3rem;
	align-items: center;
}
.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	margin: 0;
	text-shadow:
		0 0 30px rgba(14, 165, 233, 0.25),
		0 0 60px rgba(14, 165, 233, 0.1);
}
.hero-desc {
	font-size: 1.08rem;
	line-height: 1.7;
	color: var(--c-text-muted);
	max-width: 520px;
	margin: 0;
}
.hero-stats {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin-top: 0.5rem;
	padding: 1rem 0;
	border-top: 1px solid var(--c-border);
}
.hero-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
}
.hero-stat-value {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
.hero-stat-label {
	font-size: 0.78rem;
	color: var(--c-text-muted);
	text-align: center;
	flex: 1;
}
.hero-stat-divider {
	width: 1px;
	height: 36px;
	background: var(--c-border);
	flex-shrink: 0;
}
.hero-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
}
.section {
	text-align: center;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1rem;
	scroll-margin-top: 120px;
}
.section-label {
	text-transform: uppercase;
	letter-spacing: 0.45em;
	font-size: 0.8rem;
	font-family: var(--font-display);
	color: var(--c-primary-bright);
	margin-bottom: 1rem;
	display: inline-block;
}
.example-label {
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	font-family: var(--font-display);
}
.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color: #fff;
	letter-spacing: 0.02em;
}
.section-description {
	color: var(--c-text-muted);
	max-width: 640px;
	margin: 0 auto 2rem;
	line-height: 1.7;
	font-size: 1.05rem;
}
.glow {
	text-shadow:
		0 0 12px rgba(14, 165, 233, 0.7),
		0 0 30px rgba(14, 165, 233, 0.25);
}
.exchange-form {
	max-width: 420px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.field {
	background: #050c19b3;
	border: 1px solid var(--c-border);
	padding: 0.85rem 1rem;
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	transition:
		border-color 0.25s,
		box-shadow 0.25s;
}
.field::placeholder {
	color: #7dd3fc73;
}
.field:focus {
	outline: none;
	border-color: var(--c-primary);
	box-shadow:
		0 0 0 3px #0ea5e91f,
		0 0 24px #0ea5e914;
}
.primary-btn {
	background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
	color: #fff;
	border: none;
	padding: 0.9rem 1.1rem;
	font-size: 1.05rem;
	font-weight: 700;
	font-family: var(--font-display);
	letter-spacing: 0.06em;
	cursor: pointer;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 24px #0ea5e94d;
}
.primary-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px #0ea5e973;
}
.primary-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}
.btn-loader {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.page-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
}
.btn-loader-emoji {
	display: inline-block;
	font-size: 4.8rem;
	animation: loaderSpin 1s linear infinite;
}
@keyframes loaderSpin {
	0% {
		transform: rotate(0) scale(1);
	}
	25% {
		transform: rotate(90deg) scale(1.15);
	}
	50% {
		transform: rotate(180deg) scale(1);
	}
	75% {
		transform: rotate(270deg) scale(0.9);
	}
	to {
		transform: rotate(360deg) scale(1);
	}
}
.dots-loader:after {
	content: '.';
	animation: dotsAnim 1.2s steps(1) infinite;
}
@keyframes dotsAnim {
	0% {
		content: '.';
	}
	33.33% {
		content: '..';
	}
	66.66% {
		content: '...';
	}
}
.ghost-btn {
	border: 1px dashed rgba(14, 165, 233, 0.35);
	padding: 0.85rem 1rem;
	background: transparent;
	color: var(--c-primary-bright);
	font-size: 0.92rem;
	font-family: var(--font-body);
	font-weight: 600;
	cursor: pointer;
	transition:
		border-color 0.2s,
		color 0.2s,
		background 0.2s;
}
.ghost-btn:hover {
	border-color: var(--c-primary);
	color: #fff;
	background: #0ea5e90f;
}
.split-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.55rem 0.75rem;
	border: none;
	border-bottom: 1px solid rgba(14, 165, 233, 0.12);
	background: transparent;
	color: #7dd3fc80;
	font-size: 0.8rem;
	font-family: var(--font-body);
	font-weight: 500;
	cursor: pointer;
	transition:
		color 0.2s,
		border-color 0.2s;
}
.split-btn svg {
	width: 14px;
	height: 14px;
	opacity: 0.6;
	transition: opacity 0.2s;
}
.split-btn:hover {
	color: var(--c-primary-bright);
	border-color: #0ea5e94d;
}
.split-btn:hover svg {
	opacity: 1;
}
.form-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	font-size: 0.75rem;
	font-weight: 500;
	color: #7dd3fc;
	padding-top: 0.5rem;
	animation: formInfoFadeIn 0.8s ease-out both;
}
.form-info span {
	animation: formInfoPulse 4s ease-in-out infinite;
}
.form-info span:nth-child(3) {
	animation-delay: 2s;
}
@keyframes formInfoFadeIn {
	0% {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes formInfoPulse {
	0%,
	to {
		opacity: 1;
	}
	50% {
		opacity: 0.55;
	}
}
.form-info-dot {
	width: 3px;
	height: 3px;
	background: #7dd3fc73;
	flex-shrink: 0;
	animation: dotGlow 3s ease-in-out infinite;
}
@keyframes dotGlow {
	0%,
	to {
		box-shadow: 0 0 #7dd3fc00;
	}
	50% {
		box-shadow: 0 0 6px #7dd3fc66;
	}
}
.error-card {
	border: 1px solid rgba(239, 68, 68, 0.4);
	background: #ef444412;
	color: #fca5a5;
	padding: 0.75rem 0.9rem;
	font-size: 0.92rem;
}
.alert-orange {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.75rem 0.9rem;
	margin-bottom: 0.85rem;
	border: 1px solid rgba(245, 158, 11, 0.35);
	background: #f59e0b0d;
	color: #fbbf24;
	font-size: 0.85rem;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}
.how-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-top: 2rem;
	text-align: left;
}
.how-card {
	padding: 1.5rem 1.75rem;
	border: 1px solid var(--c-border);
	background: var(--c-bg-card);
	position: relative;
	overflow: hidden;
	transition:
		border-color 0.3s,
		box-shadow 0.3s;
}
.how-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
	opacity: 0.4;
	transition: opacity 0.3s;
}
.how-card:hover {
	border-color: #0ea5e966;
	box-shadow: 0 8px 32px #0ea5e91a;
}
.how-card:hover:before {
	opacity: 1;
}
.how-number {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	color: #0ea5e926;
	line-height: 1;
	margin-bottom: 0.5rem;
}
.how-card:hover .how-number {
	color: #0ea5e959;
}
.how-card-title {
	margin: 0 0 0.4rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
}
.how-card-desc {
	margin: 0;
	color: var(--c-text-muted);
	line-height: 1.65;
	font-size: 0.92rem;
}
.form-card {
	padding: 0;
	border: none;
	background: #080e1ceb;
	box-shadow:
		0 20px 60px #0006,
		0 0 0 1px #0ea5e91f;
	position: relative;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	overflow: hidden;
}
.form-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.65rem 1.25rem;
	background: #0ea5e90f;
	border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}
.form-card-title {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-primary-bright);
}
.form-card-robot {
	font-size: 1.3rem;
	display: inline-block;
	animation: robotFloat 3s ease-in-out infinite;
	cursor: default;
}
@keyframes robotFloat {
	0%,
	to {
		transform: translateY(0) rotate(0);
	}
	25% {
		transform: translateY(-3px) rotate(5deg);
	}
	75% {
		transform: translateY(2px) rotate(-3deg);
	}
}
.form-card-body {
	padding: 1.25rem 1.5rem 1.5rem;
	position: relative;
}
.form-card .exchange-form {
	max-width: none;
}
.tor-card {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 2rem 2.5rem;
	border: 1px solid var(--c-border);
	background: var(--c-bg-card);
	text-align: left;
	position: relative;
	overflow: hidden;
}
.tor-card:before {
	content: '';
	position: absolute;
	top: -1px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--c-primary),
		var(--c-accent),
		transparent
	);
}
.tor-card-icon {
	width: 72px;
	height: 72px;
	background: #0ea5e90f;
	border: 1px solid rgba(14, 165, 233, 0.2);
	display: grid;
	place-items: center;
	color: var(--c-primary-bright);
	flex-shrink: 0;
}
.tor-card-icon svg {
	width: 38px;
	height: 38px;
}
.tor-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.tor-card-title {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	font-weight: 700;
	margin: 0;
	color: #fff;
}
.tor-card-desc {
	margin: 0;
	color: var(--c-text-muted);
	line-height: 1.65;
	font-size: 0.95rem;
}
.tor-card-link {
	display: inline-block;
	padding: 0.65rem 1rem;
	background: #0ea5e90f;
	border: 1px solid rgba(14, 165, 233, 0.2);
	color: var(--c-primary-bright);
	font-family: var(--font-body);
	font-size: 0.88rem;
	word-break: break-all;
	transition:
		background 0.2s,
		border-color 0.2s;
}
.tor-card-link:hover {
	background: #0ea5e91f;
	border-color: #0ea5e973;
}
@media (max-width: 700px) {
	.how-grid {
		grid-template-columns: 1fr;
	}
	.tor-card {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
		gap: 1.25rem;
	}
	.tor-card-desc {
		max-width: none;
	}
	.tor-card-link {
		width: 100%;
		text-align: center;
	}
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
	text-align: left;
	width: 100%;
}
.faq-item {
	width: 100%;
	border: 1px solid var(--c-border);
	background: var(--c-bg-card);
	overflow: hidden;
	transition:
		border-color 0.25s,
		box-shadow 0.25s;
	position: relative;
}
.faq-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
	opacity: 0;
	transition: opacity 0.3s;
}
.faq-item.open {
	border-color: #0ea5e959;
	box-shadow: 0 4px 20px #0ea5e914;
}
.faq-item.open:before {
	opacity: 1;
}
.faq-toggle {
	width: 100%;
	border: none;
	background: transparent;
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 600;
	text-align: left;
	padding: 1rem 1.2rem;
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 0.85rem;
}
.faq-num {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	color: #0ea5e94d;
	flex-shrink: 0;
	min-width: 1.5rem;
}
.faq-question {
	flex: 1;
}
.faq-chevron {
	width: 18px;
	height: 18px;
	color: var(--c-primary-bright);
	flex-shrink: 0;
	transition: transform 0.3s;
}
.faq-item.open .faq-chevron {
	transform: rotate(180deg);
}
.faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-body-inner {
	padding: 0 1.2rem 1rem 3.55rem;
	color: var(--c-text-muted);
}
.faq-body-inner p {
	margin: 0;
	line-height: 1.65;
}
.contact-panel {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	align-items: center;
}
.contact-row {
	margin: 0;
	font-size: 1.05rem;
	color: var(--c-text);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	align-items: center;
}
.contact-main {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}
.contact-inline {
	border: none;
	background: transparent;
	color: inherit;
	font: inherit;
	padding: 0;
	cursor: pointer;
}
.contact-inline:focus-visible {
	outline: 2px solid rgba(14, 165, 233, 0.5);
	outline-offset: 3px;
}
.contact-inline:hover .contact-value,
.contact-inline:focus-visible .contact-value {
	color: var(--c-primary-bright);
	text-decoration: underline;
}
.contact-label {
	color: var(--c-text-muted);
}
.contact-value {
	font-weight: 600;
	word-break: break-all;
}
.contact-copied {
	min-height: 1rem;
	font-size: 0.85rem;
	color: var(--c-primary-bright);
	opacity: 0;
	transform: translateY(-4px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}
.contact-copied.visible {
	opacity: 1;
	transform: translateY(0);
}
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	background: #050a1499;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	transition:
		background 0.35s,
		box-shadow 0.35s;
}
.site-header:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--c-primary),
		var(--c-accent),
		transparent
	);
	opacity: 0.4;
}
.site-header.scrolled {
	background: #050a14eb;
	box-shadow: 0 4px 30px #0ea5e914;
}
.nav {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0.75rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
	color: #fff;
	flex-shrink: 0;
}
.header-logo-icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #0ea5e926, #06b6d41a);
	border: 1px solid rgba(14, 165, 233, 0.3);
	display: grid;
	place-items: center;
	color: var(--c-primary-bright);
	transition:
		border-color 0.3s,
		box-shadow 0.3s;
}
.header-logo-icon svg {
	width: 32px;
	height: 32px;
}
.header-logo:hover .header-logo-icon {
	border-color: var(--c-primary);
	box-shadow: 0 0 16px #0ea5e94d;
}
.header-logo-text {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	background: linear-gradient(135deg, #fff 40%, var(--c-primary-bright));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.header-right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 28px;
	height: 20px;
	position: relative;
	z-index: 25;
	padding: 0;
}
.burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--c-text);
	position: absolute;
	left: 0;
	transition:
		transform 0.3s,
		opacity 0.3s;
}
.burger span:nth-child(1) {
	top: 0;
}
.burger span:nth-child(2) {
	top: 9px;
}
.burger span:nth-child(3) {
	top: 18px;
}
.burger.open span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}
.burger.open span:nth-child(2) {
	opacity: 0;
}
.burger.open span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}
.lang-toggle {
	position: relative;
	display: flex;
	align-items: center;
	width: 58px;
	height: 28px;
	border: 1px solid rgba(14, 165, 233, 0.25);
	background: #0a122399;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}
.lang-toggle-label {
	flex: 1;
	text-align: center;
	font-family: var(--font-display);
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--c-text-muted);
	position: relative;
	z-index: 1;
	transition: color 0.25s;
	pointer-events: none;
}
.lang-toggle-thumb {
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(50% - 2px);
	height: calc(100% - 4px);
	background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
	transition: left 0.25s ease;
}
.lang-toggle.lang-en .lang-toggle-thumb {
	left: 50%;
}
.lang-toggle.lang-ru .lang-toggle-label:first-child,
.lang-toggle.lang-en .lang-toggle-label:last-child {
	color: #fff;
}
.support-dropdown {
	position: relative;
}
.support-trigger {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.35rem 0.75rem;
	border: 1px solid rgba(14, 165, 233, 0.2);
	background: transparent;
	color: #e2e8f0bf;
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition:
		color 0.2s,
		background 0.2s,
		border-color 0.2s;
}
.support-trigger:hover,
.support-trigger.open {
	color: #fff;
	background: #0ea5e91a;
	border-color: #0ea5e966;
}
.support-chevron {
	width: 14px;
	height: 14px;
	transition: transform 0.2s;
}
.support-trigger.open .support-chevron {
	transform: rotate(180deg);
}
.support-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	min-width: 230px;
	padding: 0.4rem;
	border: 1px solid rgba(14, 165, 233, 0.2);
	background: #080e1cf2;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0 8px 32px #0006;
	z-index: 30;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.support-menu-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 0.75rem;
	border: none;
	background: transparent;
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 0.85rem;
	cursor: pointer;
	transition: background 0.2s;
	text-decoration: none;
	width: 100%;
	text-align: left;
}
.support-menu-item:hover {
	background: #0ea5e914;
}
.support-menu-item svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--c-primary-bright);
}
.nav-links {
	list-style: none;
	display: flex;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	font-size: 0.82rem;
	font-weight: 600;
}
.nav-links a {
	display: block;
	padding: 0.35rem 0.75rem;
	transition:
		color 0.2s,
		background 0.2s;
	color: #e2e8f0bf;
}
.nav-links a:hover {
	color: #fff;
	background: #0ea5e91a;
}
.site-footer {
	position: relative;
	z-index: 10;
	padding: 2rem 1.5rem;
	margin-top: 4rem;
}
.site-footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--c-primary),
		var(--c-accent),
		transparent
	);
	opacity: 0.5;
}
.footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}
.footer-left {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}
.footer-logo {
	font-size: 1.2rem;
}
.footer-copy {
	margin: 0;
	color: var(--c-text-muted);
	font-size: 0.82rem;
}
.footer-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.footer-pgp-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: #e2e8f080;
	white-space: nowrap;
}
.footer-pgp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(14, 165, 233, 0.3);
	background: #0ea5e90a;
	color: var(--c-primary-bright);
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition:
		border-color 0.25s,
		background 0.25s,
		box-shadow 0.25s;
	text-decoration: none;
}
.footer-pgp-btn:hover {
	border-color: #0ea5e999;
	background: #0ea5e914;
	box-shadow: 0 0 20px #0ea5e91a;
}
.footer-pgp-btn svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	opacity: 0.7;
}
.anim-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.anim-grid {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	opacity: 0.09;
}
.anim-loader {
	position: relative;
}
.anim-lines {
	position: absolute;
	inset: 0;
}
.anim-lines > span {
	position: absolute;
	width: 20px;
	height: 2px;
	background-color: var(--c-primary-bright);
	animation: animShiftColor 6s infinite cubic-bezier(1, 0.5, 0.25, 0.5);
}
.anim-lines > span:before {
	content: '';
	position: absolute;
	background-color: inherit;
	height: 20px;
	width: 2px;
}
.anim-lines > span:nth-child(1),
.anim-lines > span:nth-child(4),
.anim-lines > span:nth-child(1):before,
.anim-lines > span:nth-child(4):before {
	left: 0;
}
.anim-lines > span:nth-child(2),
.anim-lines > span:nth-child(3),
.anim-lines > span:nth-child(2):before,
.anim-lines > span:nth-child(3):before {
	right: 0;
}
.anim-lines > span:nth-child(1),
.anim-lines > span:nth-child(2),
.anim-lines > span:nth-child(1):before,
.anim-lines > span:nth-child(2):before {
	top: 0;
}
.anim-lines > span:nth-child(3),
.anim-lines > span:nth-child(4),
.anim-lines > span:nth-child(3):before,
.anim-lines > span:nth-child(4):before {
	bottom: 0;
}
.anim-loader:nth-child(odd) > .anim-lines {
	animation: animRotateRight 6s infinite cubic-bezier(1, 0.5, 0.25, 0.5);
}
.anim-loader:nth-child(2n) > .anim-lines {
	animation: animRotateLeft 6s infinite cubic-bezier(1, 0.5, 0.25, 0.5);
}
@keyframes animRotateRight {
	0% {
		transform: rotate(0);
	}
	25% {
		transform: rotate(45deg);
	}
	50% {
		transform: rotate(90deg);
	}
	75% {
		transform: rotate(135deg);
	}
	to {
		transform: rotate(180deg);
	}
}
@keyframes animRotateLeft {
	0% {
		transform: rotate(0);
	}
	25% {
		transform: rotate(-45deg);
	}
	50% {
		transform: rotate(-90deg);
	}
	75% {
		transform: rotate(-135deg);
	}
	to {
		transform: rotate(-180deg);
	}
}
@keyframes animShiftColor {
	0%,
	to {
		background-color: var(--c-primary);
	}
	25% {
		background-color: var(--c-accent);
	}
	50% {
		background-color: var(--c-primary-bright);
	}
	75% {
		background-color: var(--c-primary);
	}
}
.anim-cubes {
	position: absolute;
	inset: 0;
	opacity: 0.06;
}
.anim-cube {
	position: absolute;
	width: 10px;
	height: 10px;
	border: 1px solid var(--c-primary);
	transform-origin: top left;
	transform: scale(0) rotate(0);
	animation: cubeExpand 18s ease-in forwards infinite;
}
.anim-cube:nth-child(1) {
	top: 80vh;
	left: 45vw;
	animation-delay: 0s;
}
.anim-cube:nth-child(2) {
	top: 40vh;
	left: 25vw;
	animation-delay: 3s;
}
.anim-cube:nth-child(3) {
	top: 50vh;
	left: 75vw;
	animation-delay: 6s;
}
.anim-cube:nth-child(4) {
	top: 10vh;
	left: 90vw;
	animation-delay: 9s;
}
.anim-cube:nth-child(5) {
	top: 85vh;
	left: 10vw;
	animation-delay: 12s;
}
.anim-cube:nth-child(6) {
	top: 10vh;
	left: 50vw;
	animation-delay: 15s;
}
.anim-cube:nth-child(2n) {
	border-color: var(--c-accent);
}
@keyframes cubeExpand {
	0% {
		transform: scale(0) rotate(0);
		opacity: 1;
	}
	to {
		transform: scale(20) rotate(960deg);
		opacity: 0;
	}
}
.anim-shapes {
	position: absolute;
	inset: 0;
	opacity: 0.05;
}
.anim-shape {
	position: absolute;
	width: 28px;
	height: 28px;
	animation: shapeFloat 8s ease-in-out infinite;
}
.anim-shape--circle {
	border: 1.5px solid var(--c-primary-bright);
}
.anim-shape--square {
	border: 1.5px solid var(--c-accent);
}
.anim-shape--tri {
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-bottom: 24px solid var(--c-primary);
	opacity: 0.7;
}
.anim-shape--cross {
	background:
		linear-gradient(var(--c-primary-bright), var(--c-primary-bright)) center/2px
			100% no-repeat,
		linear-gradient(var(--c-primary-bright), var(--c-primary-bright))
			center/100% 2px no-repeat;
}
@keyframes shapeFloat {
	0%,
	to {
		transform: translateY(0) rotate(-30deg);
	}
	50% {
		transform: translateY(200%) rotate(30deg);
	}
}
.fade-in {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.7s ease-out,
		transform 0.7s ease-out;
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}
@keyframes fadeInScale {
	0% {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes pulse-ring {
	0% {
		box-shadow: 0 0 #0ea5e959;
	}
	70% {
		box-shadow: 0 0 0 10px #0ea5e900;
	}
	to {
		box-shadow: 0 0 #0ea5e900;
	}
}
.mix-result {
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}
.mix-copy-hint {
	color: var(--c-text-muted);
	margin-bottom: 0.75rem;
}
.support-panel {
	margin: 1.1rem auto 1.6rem;
	padding: 0.9rem 1rem;
	border: 1px solid var(--c-border);
	background: var(--c-bg-card);
	box-shadow: 0 4px 20px #0ea5e90f;
	text-align: left;
	display: grid;
	gap: 0.75rem;
}
.support-header {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-wrap: wrap;
}
.support-badge {
	width: 1.6rem;
	height: 1.6rem;
	border: 1px solid rgba(14, 165, 233, 0.4);
	background: #0ea5e91a;
	display: grid;
	place-items: center;
	font-weight: 700;
	color: var(--c-primary-bright);
	flex-shrink: 0;
	font-family: var(--font-display);
	font-size: 0.7rem;
}
.address-display {
	width: 100%;
	border: 1px solid var(--c-border);
	padding: 0.85rem 1rem;
	background: #050c1980;
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 1rem;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	transition: border-color 0.2s;
}
.address-display:hover {
	border-color: var(--c-primary);
}
.address-display span:first-child {
	flex: 1;
	min-width: 0;
	word-break: break-all;
}
.copy-status {
	font-size: 0.85rem;
	color: var(--c-primary-bright);
	flex-shrink: 0;
}
.support-panel .address-display {
	padding: 0.7rem 0.85rem;
	font-size: 0.95rem;
	background: #050c1966;
}
.support-panel .copy-status {
	font-size: 0.75rem;
}
.qr-wrapper {
	margin: 0 auto 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}
.qr-caption {
	font-size: 0.85rem;
	color: var(--c-text-muted);
}
.support-note {
	margin: 0;
	color: var(--c-text-muted);
	line-height: 1.4;
	font-size: 0.95rem;
}
.session-id-block {
	margin: 0;
	text-align: left;
}
.session-id-block label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
	color: var(--c-text-muted);
}
.session-field {
	width: 100%;
}
.support-details {
	border-top: 1px solid var(--c-border);
	padding-top: 0.55rem;
}
.support-summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--c-primary-bright);
	padding: 0.35rem 0;
}
.support-summary:focus-visible {
	outline: 2px solid rgba(14, 165, 233, 0.5);
	outline-offset: 3px;
}
.support-summary::-webkit-details-marker {
	display: none;
}
.support-summary:after {
	content: '▾';
	margin-left: auto;
	font-size: 1rem;
	color: var(--c-text-muted);
	transition: transform 0.2s ease;
}
.support-details[open] .support-summary:after {
	transform: rotate(180deg);
}
.support-contacts {
	margin-top: 0.75rem;
}
.support-panel .fade-in {
	opacity: 1;
	transform: none;
	transition: none;
}
.support-panel .section {
	margin: 0;
	padding: 0;
	max-width: none;
	text-align: left;
}
.support-panel .section-title {
	font-size: 1.1rem;
	margin-bottom: 0.35rem;
}
.support-panel .section-description {
	margin: 0 0 0.75rem;
	font-size: 0.85rem;
}
.support-panel .contact-panel {
	margin-top: 0.5rem;
	gap: 0.6rem;
	align-items: flex-start;
}
.support-panel .contact-row {
	font-size: 0.9rem;
	align-items: flex-start;
}
.support-panel .contact-main {
	justify-content: flex-start;
	text-align: left;
}
.steps {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	color: var(--c-text-muted);
	text-align: left;
	font-size: 1.1rem;
	line-height: 1.7;
}
.steps li + li {
	margin-top: 1rem;
}
.steps.detailed li {
	border: 1px solid var(--c-border);
	padding: 1rem 1.2rem;
	background: var(--c-bg-card);
}
.step-headline {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
}
.step-title {
	flex: 1;
}
.steps.detailed p {
	margin: 0.45rem 0 0;
	font-size: 0.95rem;
	color: var(--c-text-muted);
	line-height: 1.6;
}
.mix-page {
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
	padding: 6rem 1rem 2rem;
}
.mix-title {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 3.5vw, 2.2rem);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
	margin: 0 0 2.5rem;
}
.mix-stepper {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	justify-content: center;
}
.mix-step {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(14, 165, 233, 0.1);
	background: #0a122380;
	transition: all 0.35s ease;
	cursor: default;
}
.mix-step-num {
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-size: 0.65rem;
	font-weight: 700;
	color: #7dd3fc40;
	border: 1.5px solid rgba(14, 165, 233, 0.12);
	background: transparent;
	flex-shrink: 0;
	transition: all 0.35s ease;
}
.mix-step-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #7dd3fc40;
	white-space: nowrap;
	transition: color 0.35s ease;
}
.mix-step.active {
	border-color: var(--c-primary);
	background: #0ea5e914;
	box-shadow:
		0 0 20px #0ea5e926,
		inset 0 0 12px #0ea5e90d;
	animation: stepPulse 2.5s ease-in-out infinite;
}
.mix-step.active .mix-step-num {
	border-color: var(--c-primary);
	background: var(--c-primary);
	color: #fff;
	box-shadow: 0 0 8px #0ea5e966;
}
.mix-step.active .mix-step-label {
	color: var(--c-primary-bright);
}
.mix-step.done {
	border-color: #0ea5e940;
	background: #0ea5e90a;
}
.mix-step.done .mix-step-num {
	border-color: var(--c-primary);
	background: #0ea5e91f;
	color: var(--c-primary-bright);
}
.mix-step.done .mix-step-num svg {
	width: 12px;
	height: 12px;
	color: var(--c-primary-bright);
}
.mix-step.done .mix-step-label {
	color: var(--c-text-muted);
}
@keyframes stepPulse {
	0%,
	to {
		box-shadow:
			0 0 20px #0ea5e926,
			inset 0 0 12px #0ea5e90d;
	}
	50% {
		box-shadow:
			0 0 28px #0ea5e940,
			inset 0 0 16px #0ea5e914;
	}
}
.mix-card {
	border: 1px solid rgba(14, 165, 233, 0.12);
	background: #0a1223b3;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	padding: 1.25rem;
}
.mix-layout {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.5rem;
	text-align: left;
}
.mix-qr-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	align-self: start;
}
.mix-qr-wrap {
	padding: 10px;
	background: #fff;
	line-height: 0;
}
.mix-wallet-label {
	font-size: 0.82rem;
	color: var(--c-text-muted);
	font-weight: 600;
}
.mix-address {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #0ea5e90a;
	border: 1px solid rgba(14, 165, 233, 0.15);
	padding: 0.55rem 0.75rem;
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 0.78rem;
	cursor: pointer;
	transition:
		border-color 0.2s,
		background 0.2s;
	word-break: break-all;
	text-align: left;
	width: 100%;
}
.mix-address:hover {
	border-color: #0ea5e966;
	background: #0ea5e914;
}
.mix-copy-icon {
	flex-shrink: 0;
	color: var(--c-primary-bright);
	display: flex;
}
.mix-info-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.mix-alert {
	border-color: #0ea5e933;
	background: #0ea5e90d;
	color: #7dd3fc;
	font-size: 0.75rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	animation: formInfoFadeIn 0.8s ease-out both;
}
.mix-alert span {
	animation: formInfoPulse 4s ease-in-out infinite;
}
.mix-alert span:nth-child(2) {
	animation-delay: 2s;
}
.mix-guarantee-btn {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	cursor: pointer;
	color: var(--c-primary-bright);
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 600;
	border-color: #0ea5e940;
	transition:
		background 0.2s,
		border-color 0.2s,
		box-shadow 0.2s;
}
.mix-guarantee-btn:hover {
	background: #0ea5e914;
	border-color: #0ea5e980;
	box-shadow: 0 0 16px #0ea5e91a;
}
.mix-guarantee-btn svg {
	flex-shrink: 0;
}
.mix-hint {
	color: var(--c-text-muted);
	font-size: 0.82rem;
	line-height: 1.6;
}
.mix-contacts-wrap {
	border-top: 1px solid rgba(14, 165, 233, 0.08);
	padding-top: 0.75rem;
}
.mix-contacts-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 100%;
	background: none;
	border: none;
	color: var(--c-primary-bright);
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	padding: 0.5rem;
	transition: opacity 0.2s;
}
.mix-contacts-trigger:hover {
	opacity: 0.8;
}
.toggle-arrow {
	font-size: 0.7rem;
	transition: transform 0.25s;
	display: inline-block;
}
.toggle-arrow.open {
	transform: rotate(180deg);
}
.card-contacts-body {
	margin-top: 0.75rem;
}
.card-contacts-body .fade-in {
	opacity: 1;
	transform: none;
	transition: none;
}
.card-contacts-body .section {
	margin: 0;
	padding: 0;
	max-width: none;
	text-align: left;
}
.card-contacts-body .section-title {
	display: none;
}
.card-contacts-body .section-description {
	margin: 0 0 0.5rem;
	font-size: 0.8rem;
}
.card-contacts-body .contact-panel {
	margin-top: 0.4rem;
	gap: 0.5rem;
	align-items: flex-start;
}
.card-contacts-body .contact-row {
	font-size: 0.85rem;
	align-items: flex-start;
}
.card-contacts-body .contact-main {
	justify-content: flex-start;
	text-align: left;
}
.mix-completed {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
	padding: 3rem 2rem;
}
.mix-completed-icon {
	color: var(--c-success);
	animation: fadeInScale 0.5s ease-out;
}
.mix-completed h2 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--c-success);
	margin: 0;
}
.mix-completed p {
	font-size: 1rem;
	color: var(--c-text-muted);
	margin: 0;
}
.guarantee-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 2rem;
}
.guarantee-row {
	display: grid;
	grid-template-columns: 48px auto 1px 1fr;
	align-items: center;
	gap: 1.25rem;
	padding: 1.35rem 1.5rem;
	border: 1px solid var(--c-border);
	border-bottom: none;
	background: var(--c-bg-card);
	transition: background 0.25s;
}
.guarantee-row:last-child {
	border-bottom: 1px solid var(--c-border);
}
.guarantee-row:hover {
	background: #0ea5e90a;
}
.guarantee-icon {
	width: 48px;
	height: 48px;
	background: #0ea5e90f;
	border: 1px solid rgba(14, 165, 233, 0.15);
	display: grid;
	place-items: center;
	color: var(--c-primary-bright);
	flex-shrink: 0;
}
.guarantee-icon svg {
	width: 24px;
	height: 24px;
}
.guarantee-value {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 800;
	color: #fff;
	white-space: nowrap;
	min-width: 80px;
	text-align: center;
}
.guarantee-divider {
	width: 1px;
	height: 36px;
	background: var(--c-border);
}
.guarantee-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	text-align: left;
}
.guarantee-label {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
}
.guarantee-desc {
	font-size: 0.88rem;
	color: var(--c-text-muted);
	line-height: 1.5;
}
@media (max-width: 600px) {
	.guarantee-row {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		text-align: center;
		padding: 1.25rem 1rem;
	}
	.guarantee-icon {
		margin: 0 auto;
	}
	.guarantee-divider {
		width: 40px;
		height: 1px;
		margin: 0 auto;
	}
	.guarantee-text {
		text-align: center;
	}
}
@media (max-width: 860px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.hero {
		padding-top: 6rem;
	}
	.hero-content {
		text-align: center;
		align-items: center;
	}
	.hero-desc {
		text-align: center;
	}
	.hero-form-wrapper {
		max-width: 460px;
		margin: 0 auto;
		width: 100%;
	}
	.hero-stats {
		justify-content: center;
	}
}
.mobile-pgp-link {
	display: none;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 0.75rem;
	width: 100%;
	border: 1px solid rgba(14, 165, 233, 0.25);
	background: #0ea5e90a;
	color: var(--c-primary-bright);
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition:
		background 0.2s,
		border-color 0.2s;
	text-decoration: none;
	margin-top: auto;
}
.mobile-pgp-link:hover {
	background: #0ea5e914;
	border-color: #0ea5e980;
}
.mobile-pgp-link svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
@media (max-width: 720px) {
	.burger {
		display: block;
	}
	.header-right {
		position: fixed;
		top: 0;
		right: 0;
		width: min(300px, 80vw);
		height: 100vh;
		background: #050a14f5;
		-webkit-backdrop-filter: blur(20px);
		backdrop-filter: blur(20px);
		flex-direction: column;
		align-items: flex-start;
		padding: 4.5rem 1.5rem 2rem;
		gap: 1.5rem;
		transform: translate(100%);
		transition: transform 0.35s ease;
		z-index: 22;
		border-left: 1px solid rgba(14, 165, 233, 0.15);
	}
	.header-right.mobile-open {
		transform: translate(0);
	}
	.header-right .lang-toggle {
		position: absolute;
		top: 0.85rem;
		left: 1.5rem;
	}
	.nav-links {
		flex-direction: column;
		gap: 0.25rem;
		width: 100%;
	}
	.nav-links a {
		padding: 0.65rem 0.75rem;
		font-size: 0.95rem;
	}
	.support-dropdown {
		width: 100%;
	}
	.support-trigger {
		width: 100%;
		justify-content: center;
		padding: 0.65rem 0.75rem;
		font-size: 0.95rem;
	}
	.support-menu {
		position: static;
		min-width: 0;
		width: 100%;
		margin-top: 0.5rem;
		box-shadow: none;
		background: #0ea5e90a;
		border-color: #0ea5e91f;
	}
	.steps {
		text-align: center;
	}
	.site-header {
		position: fixed;
	}
	.hero {
		padding-top: 5rem;
	}
	.main-content {
		padding-top: 0;
	}
	.address-display {
		flex-direction: column;
		gap: 0.5rem;
	}
	.copy-status {
		align-self: flex-end;
	}
	.mix-result {
		padding: 0 0.5rem;
	}
	.qr-wrapper {
		margin-top: 1.5rem;
	}
	.mix-layout {
		grid-template-columns: 1fr;
	}
	.mix-qr-card {
		order: -1;
	}
	.mix-stepper {
		gap: 0.35rem;
	}
	.mix-step {
		padding: 0.4rem 0.75rem;
		gap: 0.35rem;
	}
	.mix-step-num {
		width: 18px;
		height: 18px;
		font-size: 0.6rem;
	}
	.mix-step-label {
		font-size: 0.65rem;
	}
	.mix-page {
		padding: 5rem 0.75rem 2rem;
	}
	.form-card {
		padding: 1rem;
	}
	.hero-stat-value {
		font-size: 1.1rem;
	}
	.hero-stat-label {
		font-size: 0.68rem;
	}
	.hero-stat-divider {
		height: 28px;
	}
	.footer-inner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	.footer-right {
		flex-direction: column;
		align-items: center;
		gap: 0.4rem;
	}
	.footer-pgp-btn {
		font-size: 0.6rem;
		padding: 0.45rem 0.75rem;
		letter-spacing: 0.06em;
	}
	.mobile-pgp-link {
		display: flex;
	}
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
#tor {
	width: 100%;
}
