/* ==== Section-specific styles ==== */

/* === Nav === */
.nav {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	background: color-mix(in oklch, var(--bg) 78%, transparent);
	border-bottom: 0.5px solid var(--line);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 24px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	letter-spacing: -0.01em;
	font-size: 16px;
}
.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	overflow: hidden;
	background: transparent !important;
	border-radius: 0;
}
.brand-mark img {
	width: 32px;
	height: 32px;
	max-width: 32px;
	max-height: 32px;
	object-fit: contain;
	display: block;
	background: transparent;
}
.nav-links {
	display: flex;
	gap: 24px;
}
.nav-links a {
	font-size: 13.5px;
	color: var(--ink-2);
	transition: color 0.15s;
	white-space: nowrap;
}
.nav-links a:hover {
	color: var(--accent);
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 12px;
}
.lang-switch {
	display: inline-flex;
	padding: 3px;
	border: 0.5px solid var(--line-2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.6);
}
.lang-switch button {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 4px 7px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 500;
	color: var(--ink-3);
	font-family: var(--font-mono);
	letter-spacing: 0.04em;
}
.lang-switch button.on {
	background: var(--grad-brand);
	color: white;
}
@media (max-width: 880px) {
	.nav-links {
		display: none;
	}
}

/* === Hero === */
.hero {
	padding-bottom: 0;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
			circle at 20% 80%,
			rgba(139, 92, 246, 0.08) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 80% 10%,
			rgba(80, 97, 245, 0.1) 0%,
			transparent 45%
		);
	pointer-events: none;
}
.hero > * {
	position: relative;
}
.hero-inner {
	display: grid;
	grid-template-columns: 1.55fr 0.95fr;
	gap: 48px;
	padding: clamp(48px, 7vw, 96px) 20px clamp(48px, 6vw, 80px);
	align-items: center;
}
.hero-art {
	width: 100%;
	height: auto;
	display: block;
}
@media (max-width: 980px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 56px;
	}
	.hero-art {
		display: none;
	}
}
@media (max-width: 680px) {
	.hero-text {
		padding-inline: 8px;
	}
	.hero-inner {
		gap: 36px;
	}
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px 6px 10px;
	border: 0.5px solid rgba(80, 97, 245, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
	color: var(--ink-2);
}
.dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	display: inline-block;
	box-shadow: 0 0 0 4px rgba(80, 97, 245, 0.18);
	animation: pulse 2.6s infinite;
}
.dot-acc {
	background: var(--accent);
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}
.h-display {
	margin-top: 22px;
	word-break: normal;
	overflow-wrap: break-word;
}
.hero-lede {
	margin-top: 22px;
	max-width: 520px;
}
.hero-cta {
	margin-top: 32px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;

	a {
		flex: 1;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.hero-meta {
	margin-top: 56px;
	display: flex;
	align-items: stretch;
	gap: 28px;
	flex-wrap: wrap;
}
.hm-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.hm-num {
	font-size: 18px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.01em;
}
.hm-cap {
	font-size: 12.5px;
	color: var(--ink-3);
}
.hm-divider {
	width: 1px;
	background: var(--line);
	align-self: stretch;
}

/* === Flow diagram === */
.flow {
	display: grid;
	grid-template-rows: auto auto auto;
	gap: 22px;
	padding: 28px;
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(20px);
	border: 0.5px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--radius-lg);
	position: relative;
	box-shadow: 0 30px 80px -30px rgba(80, 97, 245, 0.25),
		0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.flow-card {
	background: rgba(255, 255, 255, 0.85);
	border: 0.5px solid var(--line);
	border-radius: var(--radius);
	padding: 18px 20px;
}
.fc-eyebrow {
	font-size: 10.5px;
	color: var(--ink-3);
	letter-spacing: 0.1em;
}
.fc-title {
	font-size: 52px;
	font-weight: 500;
	margin-top: 4px;
}
.fc-rows {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.fc-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--ink-2);
}
.fc-flag {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 0.5px dashed var(--line-2);
	font-size: 12px;
	color: var(--ink-3);
}
.flow-mid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0;
	position: relative;
	min-height: 80px;
}
.flow-via {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	grid-column: 2;
}
.via-ring {
	position: relative;
}
.via-ring svg {
	animation: spin 22s linear infinite;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
.via-label {
	font-size: 13px;
	font-weight: 500;
}
.flow-wire {
	position: relative;
	height: 60px;
	overflow: hidden;
}
.flow-wire-l {
	grid-column: 1;
}
.flow-wire-r {
	grid-column: 3;
}
.packet {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--grad-brand);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-family: var(--font-mono);
	transition: left 0.08s linear;
	box-shadow: 0 4px 10px -2px rgba(80, 97, 245, 0.5);
}
.packet-rub {
	background: linear-gradient(135deg, #8b5cf6, #5061f5);
}

/* === Marquee === */
.hero-marquee {
	padding: 18px 0;
	border-top: 0.5px solid var(--line);
	border-bottom: 0.5px solid var(--line);
	overflow: hidden;
	mask-image: linear-gradient(
		to right,
		transparent,
		black 8%,
		black 92%,
		transparent
	);
}
.marquee-track {
	display: flex;
	gap: 48px;
	white-space: nowrap;
	animation: scroll 30s linear infinite;
}
.mq-item {
	font-family: var(--font-mono);
	font-size: 12.5px;
	color: var(--ink-3);
	letter-spacing: 0.04em;
	flex-shrink: 0;
}
@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* === Problem === */
.problem-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}
@media (max-width: 880px) {
	.problem-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
.problem-left .eyebrow {
	margin-bottom: 18px;
}
.problem-right {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.problem-point {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	padding: 28px 0;
	border-top: 0.5px solid var(--line);
}
.problem-point:first-child {
	border-top: 0;
	padding-top: 0;
}
.pp-num {
	font-size: 13px;
	color: var(--ink-3);
	padding-top: 4px;
}
.pp-title {
	font-size: 19px;
	font-weight: 500;
	letter-spacing: -0.015em;
	margin-bottom: 6px;
}
.pp-desc {
	font-size: 15px;
	color: var(--ink-2);
	line-height: 1.55;
}

.solution {
	margin-top: 96px;
	padding: 56px;
	background: linear-gradient(135deg, #1a1f4d 0%, #0f1535 50%, #2a1a5e 100%);
	color: white;
	border-radius: var(--radius-lg);
	position: relative;
	overflow: hidden;
}
.solution::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 80% 0%,
			rgba(139, 92, 246, 0.35),
			transparent 55%
		),
		radial-gradient(circle at 0% 100%, rgba(80, 97, 245, 0.3), transparent 55%);
	pointer-events: none;
}
.solution-eyebrow {
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.solution-title {
	color: white;
	margin-top: 18px;
	max-width: 16ch;
}
.solution-title em {
	background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.solution-lede {
	color: rgba(255, 255, 255, 0.72);
	margin-top: 22px;
	max-width: 56ch;
}
@media (max-width: 680px) {
	.solution {
		padding: 36px 28px;
	}
}

/* === Calculator === */
.calc {
	background: transparent;
}
.calc-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	border: 0.5px solid rgba(255, 255, 255, 0.8);
	border-radius: var(--radius-lg);
	padding: 36px;
	box-shadow: 0 40px 80px -40px rgba(80, 97, 245, 0.3),
		0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.calc-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 28px;
	align-items: end;
	padding-bottom: 32px;
	border-bottom: 0.5px solid var(--line);
}
@media (max-width: 880px) {
	.calc-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.calc-equals {
		display: none;
	}
}
.calc-lbl {
	font-size: 12.5px;
	color: var(--ink-3);
	margin-bottom: 10px;
	font-family: var(--font-mono);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.ci-amount {
	width: 100%;
	appearance: none;
	border: 0;
	background: transparent;
	outline: none;
	font-size: clamp(36px, 4.5vw, 56px);
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--ink);
	padding: 0;
	font-variant-numeric: tabular-nums;
}
.ci-cur {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	margin-top: 14px;
}
.ci-cur button {
	appearance: none;
	border: 0.5px solid var(--line-2);
	background: rgba(255, 255, 255, 0.6);
	padding: 6px 10px;
	border-radius: 7px;
	font-size: 12.5px;
	font-family: var(--font-mono);
	color: var(--ink-2);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.ci-cur button.on {
	background: var(--grad-brand);
	color: white;
	border-color: transparent;
	box-shadow: 0 4px 10px -2px rgba(80, 97, 245, 0.4);
}
.cur-sym {
	font-size: 13px;
	opacity: 0.7;
}
.calc-equals {
	padding-bottom: 12px;
	opacity: 0.5;
}
.calc-col-out {
	text-align: right;
}
@media (max-width: 880px) {
	.calc-col-out {
		text-align: left;
	}
}
.calc-output {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}
.co-sym {
	font-size: 28px;
	color: var(--ink-3);
}
.co-num {
	font-size: clamp(36px, 4.5vw, 56px);
	font-weight: 500;
	letter-spacing: -0.025em;
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-variant-numeric: tabular-nums;
}
.co-bank {
	font-size: 12.5px;
	color: var(--ink-3);
	margin-top: 10px;
}

.calc-breakdown {
	padding: 24px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-bottom: 0.5px solid var(--line);
}
.cb-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}
.cb-lbl {
	color: var(--ink-3);
}
.cb-row-acc {
	color: var(--accent-deep);
}
.cb-row-acc .cb-lbl {
	color: var(--accent-deep);
}

.calc-vs {
	padding: 24px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.vs-pill {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.vs-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}
.vs-tag {
	font-weight: 600;
	color: var(--ink);
}
.vs-pill-muted .vs-tag {
	color: var(--ink-3);
}
.vs-val {
	color: var(--ink-3);
}
.vs-bar {
	height: 6px;
	background: var(--bg-warm);
	border-radius: 3px;
	overflow: hidden;
}
.vs-bar-fill {
	height: 100%;
	border-radius: 3px;
	transition: width 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vs-bar-fill.alma {
	background: var(--grad-brand);
}
.vs-bar-fill.swift {
	background: var(--ink-4);
}

.calc-hint {
	padding-top: 24px;
	font-size: 12.5px;
	color: var(--ink-3);
	text-align: center;
	border-top: 0.5px dashed var(--line);
}

.how {
	background: transparent;
}
.how-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}
@media (max-width: 980px) {
	.how-grid {
		grid-template-columns: 1fr;
	}
}
.how-steps {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.how-step {
	all: unset;
	cursor: default;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	padding: 22px;
	border-radius: var(--radius);
	border: 0.5px solid transparent;
	transition: background 0.2s, border-color 0.2s;
}
.how-step:hover {
	background: var(--bg-warm);
}
.how-step.on {
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(80, 97, 245, 0.2);
	box-shadow: 0 8px 24px -12px rgba(80, 97, 245, 0.25);
}
.how-step.done .hs-num {
	color: var(--accent);
}
.hs-num {
	font-size: 13px;
	color: var(--ink-3);
	padding-top: 4px;
}
.how-step.on .hs-num {
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hs-title {
	font-size: 19px;
	font-weight: 500;
	letter-spacing: -0.015em;
}
.hs-desc {
	font-size: 14.5px;
	color: var(--ink-2);
	margin-top: 6px;
	line-height: 1.55;
}
.hs-progress {
	margin-top: 14px;
	height: 2px;
	background: var(--line);
	border-radius: 1px;
	overflow: hidden;
}
.hs-progress-bar {
	height: 100%;
	background: var(--grad-brand);
	width: 0;
	animation: progress 2.8s linear forwards;
}
@keyframes progress {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

.how-visual {
	position: sticky;
	top: 96px;
}
.hv-frame {
	background: linear-gradient(160deg, #1a1f4d 0%, #0f1535 100%);
	border-radius: var(--radius-lg);
	padding: 14px;
	box-shadow: 0 30px 70px -25px rgba(80, 97, 245, 0.4);
}
.hv-chrome {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px 12px;
}
.hv-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
}
.hv-chrome-title {
	margin-left: auto;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
}
.hv-content {
	background: var(--bg);
	border-radius: 12px;
	min-height: 320px;
	padding: 28px;
	animation: hvfade 0.4s;
}
@keyframes hvfade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.hv-screen {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.hv-row {
	display: flex;
	gap: 8px;
	align-items: baseline;
	padding: 12px 0;
	border-bottom: 0.5px solid var(--line);
	font-size: 18px;
}
.hv-prefix {
	color: var(--ink-3);
}
.hv-typing {
	letter-spacing: 0.05em;
}
.hv-otp {
	display: flex;
	gap: 10px;
}
.hv-otp-cell {
	width: 44px;
	height: 52px;
	border: 0.5px solid var(--line-2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--ink);
	font-family: var(--font-mono);
}
.hv-otp-cell.filled {
	border-color: var(--ink);
	background: var(--bg-warm);
}
.hv-cap {
	font-size: 11.5px;
	color: var(--ink-3);
}
.hv-passport {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: var(--bg-warm);
	border: 0.5px solid var(--line);
	border-radius: 10px;
}
.hv-pp-photo {
	width: 56px;
	height: 72px;
	border-radius: 4px;
	background: var(--bg);
	border: 0.5px solid var(--line);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}
.hv-pp-data {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.hv-pp-line {
	display: flex;
	justify-content: space-between;
	font-size: 12.5px;
}
.hv-pp-line span {
	color: var(--ink-3);
}
.hv-pp-line b {
	font-weight: 500;
}
.hv-check,
.hv-success {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--accent-deep);
}
.check-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	position: relative;
}
.check-dot::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--accent);
	animation: ping 1.4s infinite;
	opacity: 0.4;
}
@keyframes ping {
	0% {
		transform: scale(1);
		opacity: 0.4;
	}
	100% {
		transform: scale(2.4);
		opacity: 0;
	}
}
.hv-iban {
	padding: 16px;
	background: var(--bg-warm);
	border: 0.5px solid var(--line);
	border-radius: 10px;
}
.hv-iban-lbl {
	font-size: 10.5px;
	color: var(--ink-3);
	letter-spacing: 0.1em;
}
.hv-iban-num {
	font-size: 14px;
	margin-top: 6px;
	letter-spacing: 0.05em;
}
.hv-methods {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}
.hv-method {
	padding: 8px 6px;
	text-align: center;
	border: 0.5px solid var(--line-2);
	border-radius: 6px;
	font-size: 11.5px;
	font-family: var(--font-mono);
	color: var(--ink-3);
}
.hv-method.on {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}
.hv-payout {
	background: var(--bg-warm);
	border: 0.5px solid var(--line);
	border-radius: 10px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.hv-pay-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
}
.hv-pay-row span {
	color: var(--ink-3);
}

.methods {
	background: transparent;
}
.section-head-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	max-width: none;
	align-items: end;
}
@media (max-width: 880px) {
	.section-head-row {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
.methods-lede {
	margin: 0;
}
.methods-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
@media (max-width: 980px) {
	.methods-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 560px) {
	.methods-grid {
		grid-template-columns: 1fr;
	}
}
.method-card {
	padding: 28px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
	border: 0.5px solid rgba(255, 255, 255, 0.8);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 260px;
	transition: all 0.25s;
	cursor: default;
	box-shadow: 0 1px 3px rgba(80, 97, 245, 0.04);
}
.method-card:hover {
	background: white;
	border-color: rgba(80, 97, 245, 0.3);
	transform: translateY(-3px);
	box-shadow: 0 20px 40px -16px rgba(80, 97, 245, 0.25);
}
.mc-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mc-icon {
	color: var(--accent);
}
.mc-tag {
	font-size: 11px;
	color: var(--ink-3);
	padding: 4px 8px;
	background: var(--bg);
	border: 0.5px solid var(--line);
	border-radius: 6px;
}
.method-card:hover .mc-tag {
	background: var(--bg-warm);
}
.mc-title {
	font-size: 19px;
	font-weight: 500;
	letter-spacing: -0.015em;
	margin-top: auto;
}
.mc-desc {
	font-size: 13.5px;
	color: var(--ink-2);
	line-height: 1.5;
}
.mc-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	border-top: 0.5px dashed var(--line-2);
	font-size: 12.5px;
}
.mc-time {
	color: var(--accent-deep);
}
.mc-arrow {
	color: var(--ink-3);
	transition: transform 0.2s;
}
.method-card:hover .mc-arrow {
	transform: translateX(4px);
	color: var(--ink);
}

/* === App demo === */
.app-demo {
	background: transparent;
}
.ad-grid {
	display: grid;
	grid-template-columns: 2fr 0.85fr;
	gap: 64px;
	align-items: center;
}
@media (max-width: 980px) {
	.ad-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
.ad-text .lede {
	margin-top: 20px;
}
.ad-tabs {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ad-tab {
	all: unset;
	cursor: default;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 15px;
	color: var(--ink-2);
	border: 0.5px solid transparent;
	transition: background 0.18s;
}
.ad-tab span {
	font-size: 11.5px;
	color: var(--ink-3);
	letter-spacing: 0.06em;
}
.ad-tab.on {
	background: var(--bg);
	border-color: var(--line);
	color: var(--ink);
	font-weight: 500;
}
.ad-tab.on span {
	color: var(--accent-deep);
}
.ad-nav {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.ad-nav button {
	all: unset;
	cursor: default;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 0.5px solid var(--line-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ink-2);
	font-size: 16px;
}
.ad-nav button:hover {
	background: var(--bg);
	color: var(--ink);
}
.ad-dots {
	display: flex;
	gap: 8px;
}
.ad-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--line-2);
	transition: background 0.2s, width 0.2s;
}
.ad-dots span.on {
	background: var(--ink);
	width: 22px;
	border-radius: 4px;
}

.ad-phone-wrap {
	display: flex;
	justify-content: center;
}
.ad-phone {
	width: 320px;
}
.ph-bezel {
	position: relative;
	width: 100%;
	aspect-ratio: 320 / 660;
	background: linear-gradient(160deg, #1a1f4d 0%, #0f1535 100%);
	border-radius: 44px;
	padding: 14px;
	box-shadow: 0 50px 100px -30px rgba(80, 97, 245, 0.45),
		0 0 0 0.5px rgba(255, 255, 255, 0.1) inset;
}
.ph-notch {
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 26px;
	background: black;
	border-radius: 0 0 14px 14px;
	z-index: 4;
}
.ph-statbar {
	position: absolute;
	top: 18px;
	left: 28px;
	right: 28px;
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: var(--bg);
	z-index: 3;
}
.ph-screen-stack {
	position: relative;
	width: 100%;
	height: 100%;
	background: var(--bg);
	border-radius: 30px;
	overflow: hidden;
}
.ph-screen {
	position: absolute;
	inset: 0;
	padding: 50px 18px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
}
.ph-home {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 110px;
	height: 5px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	z-index: 3;
}
.ph-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ph-greet {
	font-size: 16px;
	font-weight: 500;
}
.ph-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--grad-brand);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 500;
}
.ph-balance {
	padding: 18px;
	background: var(--bg-warm);
	border: 0.5px solid var(--line);
	border-radius: 14px;
}
.ph-bal-lbl {
	font-size: 11.5px;
	color: var(--ink-3);
	font-family: var(--font-mono);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.ph-bal-num {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin-top: 4px;
}
.ph-bal-fr {
	color: var(--ink-3);
	font-weight: 400;
}
.ph-bal-sub {
	font-size: 11px;
	color: var(--ink-3);
	margin-top: 4px;
}
.ph-actions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}
.ph-actions button {
	appearance: none;
	border: 0.5px solid var(--line);
	background: var(--bg-warm);
	padding: 10px 4px;
	border-radius: 10px;
	font-size: 11.5px;
	color: var(--ink);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.ph-actions button span {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}
.ph-list-title {
	font-size: 11.5px;
	color: var(--ink-3);
	font-family: var(--font-mono);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding-top: 6px;
}
.ph-tx {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 8px 0;
	border-top: 0.5px solid var(--line);
	font-size: 12.5px;
}
.ph-tx > span {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--bg-warm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: var(--ink-3);
}
.ph-tx b {
	font-size: 13px;
	font-weight: 500;
}
.ph-tx .mono {
	font-size: 10.5px;
	color: var(--ink-3);
	margin-top: 2px;
}
.ph-tx > b {
	font-size: 12.5px;
}
.ph-page-title {
	font-size: 17px;
	font-weight: 500;
}
.ph-method-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ph-method {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	border: 0.5px solid var(--line);
	border-radius: 10px;
	font-size: 13px;
}
.ph-method.on {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}
.ph-method.on .mono {
	color: rgba(255, 255, 255, 0.7);
}
.ph-method .mono {
	font-size: 11px;
	color: var(--ink-3);
}
.ph-iban-card {
	padding: 16px;
	background: var(--bg-warm);
	border: 0.5px solid var(--line);
	border-radius: 12px;
}
.ph-iban-lbl {
	font-size: 10px;
	color: var(--ink-3);
	letter-spacing: 0.1em;
}
.ph-iban-num {
	font-size: 12.5px;
	margin-top: 6px;
	letter-spacing: 0.04em;
}
.ph-iban-name {
	font-size: 11.5px;
	color: var(--ink-3);
	margin-top: 4px;
}
.ph-copy {
	margin-top: 10px;
	appearance: none;
	border: 0.5px solid var(--line-2);
	background: var(--bg);
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 11px;
	color: var(--ink-2);
	width: 100%;
}
.ph-amt {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 6px;
	padding: 24px 0;
}
.ph-amt-cur {
	font-size: 22px;
	color: var(--ink-3);
}
.ph-amt-num {
	font-size: 44px;
	font-weight: 500;
	letter-spacing: -0.025em;
}
.ph-bank-pick {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ph-bank {
	padding: 11px 14px;
	border: 0.5px solid var(--line);
	border-radius: 10px;
	font-size: 13px;
}
.ph-bank.on {
	background: var(--accent-soft);
	border-color: rgba(80, 97, 245, 0.4);
	color: var(--accent-deep);
	font-weight: 500;
}
.ph-rail {
	display: flex;
	justify-content: space-between;
	padding: 10px 14px;
	font-size: 12.5px;
	border: 0.5px solid var(--line);
	border-radius: 10px;
}
.ph-rail span {
	color: var(--ink-3);
}
.ph-btn {
	margin-top: auto;
	appearance: none;
	border: 0;
	background: var(--grad-brand);
	color: white;
	padding: 14px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 8px 20px -6px rgba(80, 97, 245, 0.5);
}
.ph-sponsor {
	display: grid;
	grid-template-columns: 36px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 11px 12px;
	border: 0.5px solid var(--line);
	border-radius: 10px;
}
.ph-sponsor.ph-sp-add {
	border-style: dashed;
}
.ph-sp-av {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 500;
}
.ph-sp-add-av {
	background: var(--bg-warm);
	color: var(--ink-3);
}
.ph-sponsor b {
	font-size: 13px;
	font-weight: 500;
}
.ph-sponsor .mono {
	font-size: 10.5px;
	color: var(--ink-3);
	margin-top: 2px;
}
.ph-sp-st {
	font-size: 10.5px;
	padding: 3px 8px;
	border-radius: 6px;
	background: var(--accent-soft);
	color: var(--accent-deep);
	font-family: var(--font-mono);
}
.ph-tip {
	font-size: 11.5px;
	color: var(--ink-3);
	padding-top: 8px;
	line-height: 1.5;
}

/* === Benefits === */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 0.5px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(20px);
}
@media (max-width: 880px) {
	.benefits-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 560px) {
	.benefits-grid {
		grid-template-columns: 1fr;
	}
}
.bn-card {
	padding: 32px 28px;
	border-right: 0.5px solid var(--line);
	border-bottom: 0.5px solid var(--line);
	background: rgba(255, 255, 255, 0.5);
	transition: background 0.2s;
	min-height: 200px;
}
.bn-card:hover {
	background: rgba(231, 234, 255, 0.6);
}
.bn-card:nth-child(3n) {
	border-right: 0;
}
.bn-card:nth-last-child(-n + 3) {
	border-bottom: 0;
}
@media (max-width: 880px) {
	.bn-card {
		border-right: 0;
		border-bottom: 0.5px solid var(--line);
	}
	.bn-card:nth-child(2n) {
		border-right: 0;
	}
	.bn-card:nth-child(odd) {
		border-right: 0.5px solid var(--line);
	}
	.bn-card:nth-last-child(-n + 2) {
		border-bottom: 0;
	}
}
.bn-num {
	font-size: 12.5px;
	color: var(--ink-3);
	margin-bottom: 14px;
}
.bn-title {
	font-size: 19px;
	font-weight: 500;
	letter-spacing: -0.015em;
	margin-bottom: 8px;
}
.bn-desc {
	font-size: 14.5px;
	color: var(--ink-2);
	line-height: 1.55;
}

/* === FAQ === */
.faq-list {
	border-top: 0.5px solid var(--line);
}
.faq-item {
	border-bottom: 0.5px solid var(--line);
}
.faq-q {
	all: unset;
	cursor: default;
	display: grid;
	grid-template-columns: 56px 1fr 32px;
	gap: 16px;
	padding: 24px 0;
	align-items: center;
	width: 100%;
}
.faq-num {
	font-size: 12.5px;
	color: var(--ink-3);
}
.faq-q-text {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.015em;
}
.faq-icon {
	font-size: 22px;
	color: var(--ink-3);
	text-align: right;
	transition: transform 0.2s, color 0.2s;
}
.faq-item.on .faq-icon {
	color: var(--ink);
	transform: rotate(180deg);
}
.faq-item.on .faq-num {
	color: var(--accent-deep);
}
.faq-a-wrap {
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-a {
	padding: 0 0 24px 72px;
	max-width: 70ch;
	font-size: 15px;
	line-height: 1.6;
	color: var(--ink-2);
}
@media (max-width: 680px) {
	.faq-q {
		grid-template-columns: 36px 1fr 24px;
		gap: 12px;
	}
	.faq-q-text {
		font-size: 15px;
	}
	.faq-a {
		padding-left: 48px;
	}
}

/* === Final CTA === */
.fc-card {
	background: linear-gradient(135deg, #1a1f4d 0%, #0f1535 45%, #2a1a5e 100%);
	border-radius: var(--radius-lg);
	padding: 80px 56px;
	text-align: center;
	position: relative;
	overflow: hidden;
	color: white;
}
.fc-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
			circle at 80% 20%,
			rgba(139, 92, 246, 0.4),
			transparent 50%
		),
		radial-gradient(circle at 10% 80%, rgba(80, 97, 245, 0.35), transparent 50%);
}
.fc-inner {
	position: relative;
}
.fc-title {
	color: white;
	margin: 0 auto;
	max-width: 14ch;
}
.fc-title em {
	background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.fc-lede {
	color: rgba(255, 255, 255, 0.7);
	font-size: 17px;
	margin: 24px auto 0;
	max-width: 48ch;
	line-height: 1.5;
}
.fc-btn {
	margin-top: 36px;
	background: white;
	color: var(--accent-deep);
}
.fc-btn:hover {
	background: white;
	box-shadow: 0 12px 30px -8px rgba(255, 255, 255, 0.4);
	transform: translateY(-1px);
}
@media (max-width: 680px) {
	.fc-card {
		padding: 56px 28px;
	}
}

/* === Footer === */
.foot {
	padding: 32px 0 32px;
	border-top: 0.5px solid var(--line);
}
.foot-top {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 64px;
	padding-bottom: 56px;
	border-bottom: 0.5px solid var(--line);
}
@media (max-width: 880px) {
	.foot-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
.foot-tag {
	font-size: 14.5px;
	color: var(--ink-2);
	margin: 18px 0 0;
	max-width: 36ch;
}
.foot-langs {
	font-size: 12px;
	color: var(--ink-3);
	margin-top: 24px;
}
.foot-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 680px) {
	.foot-cols {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}
.foot-h {
	font-size: 12.5px;
	font-family: var(--font-mono);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: 18px;
}
.foot-cols a {
	display: block;
	font-size: 14px;
	color: var(--ink);
	padding: 6px 0;
	transition: color 0.15s;
	cursor: default;
}
.foot-cols a:hover {
	color: var(--accent-deep);
}
.foot-bot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	font-size: 12px;
	color: var(--ink-3);
}
.foot-bot .mono {
	display: flex;
	align-items: center;
	gap: 5px;
}
.foot-legal {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 14px;
}
.foot-legal-link {
	font-size: 12px;
	color: var(--ink-3);
	transition: color 0.15s;
}
.foot-legal-link:hover {
	color: var(--accent-deep);
}
.foot-legal-sep {
	color: var(--ink-4);
	user-select: none;
}
@media (max-width: 680px) {
	.foot-bot {
		flex-direction: column;
		gap: 18px;
		text-align: center;
	}
	.foot-legal {
		order: 1;
	}
	.foot-bot > .mono:last-child {
		order: 2;
	}
}
