/* ════════════════════════════════════════════════════════════════════════════════
   ORIZN — MAIN STYLESHEET
   Структура:
   1. Reset
   2. Tokens / Variables
   3. Global
   4. Animations / Keyframes
   5. Shared components (blob, ticker, avatar, btn)
   6. Hero
   7. Testimonials
   (адаптив — в adaptive.css)
════════════════════════════════════════════════════════════════════════════════ */

/* ─── 1. RESET ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img,
svg {
	display: block;
	max-width: 100%;
}
input,
button {
	font: inherit;
	border: none;
	background: none;
	outline: none;
}
button {
	cursor: pointer;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}

/* ─── 2. TOKENS / VARIABLES ─────────────────────────────────────────────────── */
:root {
	/* Colors */
	--clr-bg: #100c2a;
	--clr-surface: rgba(255, 255, 255, 0.07);
	--clr-surface-2: rgba(255, 255, 255, 0.11);
	--clr-border: rgba(255, 255, 255, 0.14);

	--clr-primary: #c94eff;
	--clr-accent: #7c4dff;

	--clr-text: #ffffff;
	--clr-text-muted: rgba(255, 255, 255, 0.6);

	--clr-up: #29f08a;

	/* Gradients */
	--grad-btn: linear-gradient(90deg, #d44cff 0%, #8a55ff 100%);
	--grad-hero: radial-gradient(ellipse 90% 80% at 25% 55%, #3a0e72 0%, #1a0848 45%, #100c2a 75%);

	/* Typography */
	--font-display: 'Barlow Condensed', sans-serif;
	--font-body: 'Barlow', sans-serif;

	/* Border radius */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;

	/* Transitions */
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--dur-fast: 150ms;
	--dur-med: 300ms;
}

/* ─── 3. GLOBAL ──────────────────────────────────────────────────────────────── */
html {
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	background-color: var(--clr-bg);
	color: var(--clr-text);
}

.bxo-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ─── 4. ANIMATIONS / KEYFRAMES ─────────────────────────────────────────────── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes blobPulse {
	0%,
	100% {
		transform: scale(1) translate(0, 0);
	}
	50% {
		transform: scale(1.06) translate(10px, -10px);
	}
}

@keyframes orbFloatLeft {
	0%,
	100% {
		transform: translateY(-80%);
	}
	50% {
		transform: translateY(calc(-80% - 14px));
	}
}

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

/* ─── 5. SHARED COMPONENTS ───────────────────────────────────────────────────── */

/* Blob */
.bxo-blob {
	position: absolute;
	border-radius: 50%;
	/* blur(90px) + infinite animation = heavy GPU jank; keep a lighter static glow */
	filter: blur(48px);
	pointer-events: none;
	z-index: 0;
	contain: paint;
	transform: translateZ(0);
}

/* Ticker */
.bxo-ticker {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius-md);
	padding: 10px 14px;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: background var(--dur-fast);
}
.bxo-ticker:hover {
	background: rgba(255, 255, 255, 0.11);
}

.bxo-ticker__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.bxo-ticker__icon--xrp {
	background: rgba(35, 153, 255, 0.22);
}
.bxo-ticker__icon--btc {
	background: rgba(247, 147, 26, 0.22);
}
.bxo-ticker__icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.bxo-ticker__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.bxo-ticker__name {
	font-size: 14px;
	font-weight: 700;
}
.bxo-ticker__name small {
	font-size: 11px;
	font-weight: 400;
	color: var(--clr-text-muted);
	margin-left: 4px;
}
.bxo-ticker__change {
	font-size: 13px;
	font-weight: 700;
}
.bxo-ticker__change--up {
	color: var(--clr-up);
}

/* Avatars */
.bxo-avatars {
	display: flex;
	align-items: center;
}

.bxo-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;

	overflow: hidden;
	flex-shrink: 0;
}
.bxo-avatar + .bxo-avatar {
	margin-left: -12px;
}
.bxo-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Stars */
.bxo-stars {
	color: #fbbf24;
	font-size: 16px;
	letter-spacing: 1px;
}

/* Secure badge */
.bxo-secure-badge {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 600;
	color: var(--clr-text-muted);
	border: 1px solid var(--clr-border);
	border-radius: 100px;
	padding: 4px 9px;
}
.bxo-secure-badge svg {
	color: var(--clr-up);
	flex-shrink: 0;
}

/* ─── 6. HERO ────────────────────────────────────────────────────────────────── */
.bxo-hero {
	position: relative;
	min-height: 100vh;
	background: var(--grad-hero);
	background-color: var(--clr-bg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* Grid overlay */
.bxo-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
	z-index: 0;
}

/* Hero blobs — only hero keeps a soft pulse; other sections stay static */
.bxo-blob--left {
	width: 600px;
	height: 600px;
	top: -140px;
	left: -120px;
	background: radial-gradient(circle, rgba(130, 60, 255, 0.55) 0%, transparent 65%);
	animation: blobPulse 12s ease-in-out infinite;
}
.bxo-blob--right {
	width: 480px;
	height: 480px;
	bottom: -100px;
	right: -80px;
	background: radial-gradient(circle, rgba(210, 60, 255, 0.42) 0%, transparent 65%);
	animation: blobPulse 14s ease-in-out infinite reverse;
}

/* ETH orbs */
.bxo-eth-orb {
	position: absolute;
	z-index: 6;
	pointer-events: none;
}

.bxo-eth-orb--left {
	left: 0;
	top: 53%;
	animation: orbFloatLeft 6s ease-in-out infinite;
}
.bxo-eth-orb--right {
	right: 0;
	bottom: 60px;
	animation: orbFloatRight 7s ease-in-out infinite;
}

.bxo-eth-orb__inner {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: radial-gradient(
		circle at 38% 35%,
		rgba(160, 80, 255, 0.95) 0%,
		rgba(80, 20, 180, 0.9) 60%,
		rgba(40, 10, 120, 0.85) 100%
	);
	box-shadow:
		0 0 0 1px rgba(200, 130, 255, 0.35),
		0 0 28px rgba(170, 70, 255, 0.7),
		0 0 60px rgba(140, 50, 255, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Nav */
.bxo-hero__nav {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 52px;
}

.bxo-logo__text {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: lowercase;
	color: #fff;
}

.bxo-crypto-nav-icons {
	display: flex;
	align-items: center;
	gap: 7px;
}

.bxo-crypto-badge {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.bxo-crypto-badge--btc {
	background: rgba(247, 147, 26, 0.22);
}
.bxo-crypto-badge--usdt {
	background: rgba(38, 200, 130, 0.22);
}
.bxo-crypto-badge--eth {
	background: rgba(130, 80, 255, 0.25);
}
.bxo-crypto-badge img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.bxo-arrow-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1.5px solid rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--clr-text);
	transition:
		background var(--dur-fast),
		border-color var(--dur-fast);
}
.bxo-arrow-btn:hover {
	background: var(--clr-primary);
	border-color: var(--clr-primary);
}

/* Inner 3-col grid */
.bxo-hero__inner {
	position: relative;
	z-index: 5;
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 200px 400px;
	gap: 24px;
	align-items: center;
	padding: 24px 52px 60px;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}

/* Left column */
.bxo-hero__left {
	display: flex;
	flex-direction: column;
	gap: 22px;
	animation: fadeUp 0.65s var(--ease) both;
}

.bxo-hero__badge {
	display: inline-flex;
	width: fit-content;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 100px;
	padding: 6px 18px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.bxo-hero__title {
	font-family: var(--font-display);
	font-size: clamp(40px, 5.5vw, 70px);
	font-weight: 900;
	line-height: 1.03;
	text-transform: uppercase;
}
.bxo-hero__title em {
	font-style: normal;
	color: #fff;
}

.bxo-hero__subtitle {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: -10px;
}
.bxo-hero__subtitle strong {
	font-weight: 700;
}

.bxo-hero__note {
	font-size: 13px;
	color: var(--clr-text-muted);
}

.bxo-hero__proof {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bxo-proof__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.bxo-proof__text span {
	font-size: 12px;
	color: var(--clr-text-muted);
}

/* Middle column — tickers */
.bxo-hero__tickers {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-self: flex-end;
	padding-bottom: 12px;
	animation: fadeUp 0.65s 0.1s var(--ease) both;
}
.bxo-hero__tickers .bxo-ticker {
	min-width: 180px;
}

/* Right column — form card */
.bxo-hero__right {
	animation: fadeUp 0.65s 0.18s var(--ease) both;
}

.bxo-reg-card {
	background: rgba(140, 80, 255, 0.13);
	border: 1px solid rgba(200, 140, 255, 0.22);
	border-radius: var(--radius-xl);
	padding: 34px 30px 26px;
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06) inset,
		0 24px 60px rgba(0, 0, 0, 0.5),
		0 0 80px rgba(160, 60, 255, 0.18);
}

.bxo-reg-card__title {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 22px;
	color: #fff;
}

.reg-form {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.form-group input {
	width: 100%;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-md);
	padding: 13px 16px;
	font-size: 14px;
	color: var(--clr-text);
	transition:
		border-color var(--dur-fast),
		background var(--dur-fast),
		box-shadow var(--dur-fast);
}
.form-group input::placeholder {
	color: rgba(255, 255, 255, 0.38);
}
.form-group input:focus {
	border-color: rgba(210, 90, 255, 0.8);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 3px rgba(200, 80, 255, 0.22);
	outline: none;
}

.btn-register {
	width: 100%;
	padding: 14px;
	border-radius: var(--radius-md);
	background: var(--grad-btn);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.05em;
	color: #fff;
	margin-top: 6px;
	position: relative;
	overflow: hidden;
	transition:
		opacity var(--dur-fast),
		transform var(--dur-fast),
		box-shadow var(--dur-fast);
	box-shadow:
		0 4px 20px rgba(200, 70, 255, 0.55),
		0 0 60px rgba(200, 70, 255, 0.2);
}
.btn-register::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
	pointer-events: none;
}
.btn-register:hover {
	opacity: 0.92;
	transform: translateY(-1px);
	box-shadow: 0 8px 30px rgba(200, 70, 255, 0.65);
}
.btn-register:active {
	transform: translateY(0);
}

.bxo-payment-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.bxo-payment-icons img {
	object-fit: contain;

	transition: filter var(--dur-fast);
}

/* ─── 7. TESTIMONIALS ────────────────────────────────────────────────────────── */
.bxo-testimonials {
	position: relative;
	background-color: var(--clr-bg);
	padding: 72px 52px 80px;
	overflow: visible;
}

.bxo-blob--testi-left {
	width: 460px;
	height: 460px;
	top: -80px;
	left: -100px;
	background: radial-gradient(circle, rgba(110, 50, 240, 0.4) 0%, transparent 65%);
	animation: blobPulse 9s ease-in-out infinite;
}
.bxo-blob--testi-right {
	width: 400px;
	height: 400px;
	bottom: -60px;
	right: -80px;
	background: radial-gradient(circle, rgba(190, 50, 255, 0.32) 0%, transparent 65%);
	animation: blobPulse 12s ease-in-out infinite reverse;
}

.bxo-testimonials__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 1180px;
	margin: 0 auto;
}

/* ── Card ── */
.bxo-testi-card {
	position: relative;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	overflow: visible;
	transition:
		border-color var(--dur-med),
		box-shadow var(--dur-med);
}
.bxo-testi-card:hover {
	border-color: rgba(180, 80, 255, 0.3);
	box-shadow: 0 8px 40px rgba(150, 50, 255, 0.18);
}
.bxo-testi-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(140, 60, 255, 0.08) 0%, transparent 55%);
	pointer-events: none;
	border-radius: inherit;
}

/* Quote icon */
.bxo-testi-card__quote-icon {
	color: var(--clr-primary);
	padding: 28px 28px 0;
	flex-shrink: 0;
}

/* Quote text */
.bxo-testi-card__text {
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.8);
	flex: 1;
	padding: 14px 28px 48px;
}

/* ── Author bar — фиолетовая полоска снизу ── */
.bxo-testi-card__author {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100px;
	padding: 16px 24px 16px 136px; /* слева — место под фото */
	background: linear-gradient(90deg, #6a1fff 0%, #9b3fff 50%, #bf60ff 100%);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	overflow: visible;
}

/* ── Фото — прямоугольник, выезжает вверх из полоски ── */
.bxo-testi-card__avatar {
	position: absolute;
	left: 16px;
	bottom: -21px; /* прижато к низу полоски */
	width: 108px;
	height: 148px; /* высокий прямоугольник */
	border-radius: 10px 10px 0 0; /* скругление только сверху */
	overflow: hidden;
	background: #2a0a5e;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.45);
	z-index: 5;
	transform: translateY(0); /* не сдвигаем, просто растём вверх */
}
.bxo-testi-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

/* ── Author info ── */
.bxo-testi-card__author-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.bxo-testi-card__author-info strong {
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.02em;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--font-display);
}
.bxo-testi-card__author-info span {
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
}
/* ─── 8. AI PHONES ───────────────────────────────────────────────────────────── */
.bxo-ai-phones {
	position: relative;
	background-color: #0a0718; /* чуть темнее, чтобы секция читалась отдельно */
	overflow: hidden;
}

/* blobs */
.bxo-blob--ai-left {
	width: 550px;
	height: 550px;
	top: -60px;
	left: -140px;
	background: radial-gradient(circle, rgba(120, 50, 255, 0.55) 0%, transparent 65%);
	animation: blobPulse 9s ease-in-out infinite;
}
.bxo-blob--ai-right {
	width: 380px;
	height: 380px;
	bottom: -60px;
	right: -80px;
	background: radial-gradient(circle, rgba(180, 40, 255, 0.35) 0%, transparent 65%);
	animation: blobPulse 12s ease-in-out infinite reverse;
}

/* inner layout */
.bxo-ai-phones__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 52px 0; /* нет padding-bottom — телефоны «выходят» снизу */
	gap: 40px;
}

/* ── Left: text ── */
.bxo-ai-phones__left {
	display: flex;
	flex-direction: column;
	gap: 36px;
	padding-bottom: 80px;
}

.bxo-ai-phones__title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 50px);
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: #fff;
}

/* CTA button — фиолетовый с border-radius pill */
.bxo-btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 14px 34px;
	border-radius: 100px;
	background: var(--grad-btn);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #fff;
	box-shadow: 0 4px 24px rgba(180, 60, 255, 0.5);
	transition:
		opacity var(--dur-fast),
		transform var(--dur-fast),
		box-shadow var(--dur-fast);
	position: relative;
	overflow: hidden;
}
.bxo-btn-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 55%);
	pointer-events: none;
}
.bxo-btn-cta:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(180, 60, 255, 0.65);
}
.bxo-btn-cta:active {
	transform: translateY(0);
}

/* ── Right: phones image ── */
.bxo-ai-phones__right {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.bxo-ai-phones__img {
	width: 100%;
	max-width: 620px;
	height: auto;
	object-fit: contain;
	object-position: bottom;
	display: block;
	/* картинка «выходит» снизу за пределы секции */
	margin-bottom: -40px;
	filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
}

/* ─── 9. CALCULATOR ──────────────────────────────────────────────────────────── */
.bxo-calc-section {
	position: relative;
	background-color: #0a0718;
	overflow: hidden;
	padding: 80px 52px;
}

.bxo-blob--calc-left {
	width: 500px;
	height: 500px;
	top: -80px;
	left: -120px;
	background: radial-gradient(circle, rgba(110, 40, 240, 0.5) 0%, transparent 65%);
	animation: blobPulse 10s ease-in-out infinite;
}
.bxo-blob--calc-right {
	width: 360px;
	height: 360px;
	bottom: -60px;
	right: -60px;
	background: radial-gradient(circle, rgba(180, 40, 255, 0.3) 0%, transparent 65%);
	animation: blobPulse 13s ease-in-out infinite reverse;
}

.bxo-calc-section__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
}

/* Left */
.bxo-calc-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.bxo-calc-left__title {
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	color: #fff;
}

.bxo-calc-left__text {
	font-size: 15px;
	line-height: 1.75;
	color: var(--clr-text-muted);
	max-width: 480px;
}

/* Right: card */
.bxo-calc-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: var(--radius-xl);
	padding: 36px 32px 32px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.bxo-calc-card__title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.3;
	letter-spacing: 0.02em;
	color: #fff;
}

.bxo-calc-card__sub {
	font-size: 13px;
	color: var(--clr-text-muted);
	margin-top: -10px;
}

/* Input row */
.bxo-calc-input-row {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius-md);
	overflow: hidden;
	height: 52px;
}

.bxo-calc-currency {
	padding: 0 14px;
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.55);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	white-space: nowrap;
	height: 100%;
	display: flex;
	align-items: center;
}

.bxo-calc-input {
	flex: 1;
	background: none;
	border: none;
	padding: 0 14px;
	font-size: 14px;
	color: #fff;
	height: 100%;
}
.bxo-calc-input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}
.bxo-calc-input:focus {
	outline: none;
}
/* hide number spinners */
.bxo-calc-input::-webkit-outer-spin-button,
.bxo-calc-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
.bxo-calc-input[type='number'] {
	-moz-appearance: textfield;
}

.bxo-calc-btn {
	padding: 0 22px;
	height: 100%;
	background: var(--grad-btn);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.03em;
	white-space: nowrap;
	transition: opacity var(--dur-fast);
	flex-shrink: 0;
}
.bxo-calc-btn:hover {
	opacity: 0.88;
}

/* Result */
.bxo-calc-result {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 8px;
}

.bxo-calc-result__label {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
}

.bxo-calc-result__value {
	font-family: var(--font-display);
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 900;
	color: #fff;
	line-height: 1;
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.bxo-calc-result__value em {
	font-style: normal;
	font-size: 0.65em;
	color: var(--clr-primary);
}

/* ─── 10. STEPS BANNER ───────────────────────────────────────────────────────── */
.bxo-steps-banner {
	position: relative;
	background:
		#d9d9d9,
		linear-gradient(
			153deg,
			rgba(79, 37, 157, 0.5) 0%,
			#261c57 13.47%,
			#1d1345 39.41%,
			rgba(117, 43, 227, 0.4) 100%
		);
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding: 52px 52px;
	text-align: center;
}

.bxo-steps-banner__inner {
	max-width: 900px;
	margin: 0 auto;
}

.bxo-steps-banner__text {
	font-family: var(--font-display);
	font-size: clamp(20px, 2.8vw, 34px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.35;
	letter-spacing: 0.03em;
	color: #fff;
}

/* ─── 11. STEPS CARDS ────────────────────────────────────────────────────────── */
.bxo-steps-cards {
	position: relative;
	background-color: #0a0718;
	padding: 72px 52px 80px;
	overflow: hidden;
}

.bxo-blob--steps-left {
	width: 420px;
	height: 420px;
	top: -60px;
	left: -100px;
	background: radial-gradient(circle, rgba(120, 40, 255, 0.42) 0%, transparent 65%);
	animation: blobPulse 9s ease-in-out infinite;
}
.bxo-blob--steps-right {
	width: 360px;
	height: 360px;
	bottom: -60px;
	right: -80px;
	background: radial-gradient(circle, rgba(180, 40, 255, 0.28) 0%, transparent 65%);
	animation: blobPulse 12s ease-in-out infinite reverse;
}

.bxo-steps-cards__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1180px;
	margin: 0 auto;
}

/* Card */
.bxo-step-card {
	position: relative;
	background: rgba(60, 20, 120, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--radius-xl);
	padding: 36px 32px 36px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition:
		border-color var(--dur-med),
		box-shadow var(--dur-med);
	overflow: hidden;
}
.bxo-step-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(150, 60, 255, 0.1) 0%, transparent 60%);
	pointer-events: none;
	border-radius: inherit;
}
.bxo-step-card:hover {
	border-color: rgba(180, 80, 255, 0.3);
	box-shadow: 0 8px 40px rgba(130, 40, 255, 0.2);
}

/* Arrow top-right */
.bxo-step-card__arrow {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.55);
	transition:
		background var(--dur-fast),
		color var(--dur-fast);
}
.bxo-step-card__arrow:hover {
	background: var(--clr-primary);
	color: #fff;
}

/* Icon circle */
.bxo-step-card__icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(180, 60, 255, 0.22);
	border: 1px solid rgba(200, 100, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--clr-primary);
	flex-shrink: 0;
	box-shadow: 0 0 20px rgba(180, 60, 255, 0.25);
}

.bxo-step-card__title {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
}

.bxo-step-card__text {
	font-size: 14px;
	line-height: 1.65;
	color: var(--clr-text-muted);
	max-width: 280px;
}

/* CTA inside card — только на первой */
.bxo-step-card__cta {
	margin-top: 8px;
	width: fit-content;
	font-size: 14px;
	padding: 12px 26px;
}

/* ─── 12. FEATURES ───────────────────────────────────────────────────────────── */
.bxo-features {
	position: relative;
	background-color: #06040f;
	padding: 80px 52px 88px;
	overflow: hidden;
}

.bxo-blob--feat-left {
	width: 380px;
	height: 380px;
	top: 30px;
	left: -100px;
	background: radial-gradient(circle, rgba(100, 30, 220, 0.38) 0%, transparent 65%);
	animation: blobPulse 10s ease-in-out infinite;
}
.bxo-blob--feat-right {
	width: 340px;
	height: 340px;
	bottom: 20px;
	right: -80px;
	background: radial-gradient(circle, rgba(160, 40, 255, 0.28) 0%, transparent 65%);
	animation: blobPulse 13s ease-in-out infinite reverse;
}

/* ETH orbs — позиционируются по краям секции */
.bxo-eth-orb--feat-left {
	left: 43px;
	top: 50%;
	transform: translateY(-60%);
	animation: orbFloatLeft 7s ease-in-out infinite;
}
.bxo-eth-orb--feat-right {
	right: 25px;
	bottom: 83px;
	animation: orbFloatRight 8s ease-in-out infinite;
}

/* Большой орб справа */
.bxo-eth-orb__inner--lg {
	width: 100px;
	height: 100px;
}
.bxo-eth-orb__inner--lg svg {
	width: 42px;
	height: 42px;
}

/* Inner */
.bxo-features__inner {
	position: relative;
	z-index: 2;
	max-width: 680px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 52px;
	text-align: center;
}

/* Title */
.bxo-features__title {
	font-family: var(--font-body);
	font-size: clamp(20px, 2.6vw, 32px);
	font-weight: 700;
	line-height: 1.45;
	color: #fff;
}

/* Feature list */
.bxo-features__list {
	display: flex;
	flex-direction: column;
	gap: 36px;
	text-align: left;
	width: 100%;
}

/* Feature item */
.bxo-feat-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

/* Icon circle */
.bxo-feat-item__icon {
	width: 100px;
	height: 83px;
	flex-shrink: 0;

	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

/* Text */
.bxo-feat-item__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 4px;
}

.bxo-feat-item__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--clr-primary);
}

.bxo-feat-item__text {
	font-size: 14px;
	line-height: 1.7;
	color: var(--clr-text-muted);
	max-width: 440px;
}
/* ─── 13. EXCHANGES ──────────────────────────────────────────────────────────── */
.bxo-exchanges {
	position: relative;
	background-color: #06040f;
	padding: 48px 52px 72px;
	overflow: hidden;
}

.bxo-blob--exch-left {
	width: 500px;
	height: 500px;
	top: -80px;
	left: -120px;
	background: radial-gradient(circle, rgba(110, 30, 240, 0.45) 0%, transparent 65%);
	animation: blobPulse 9s ease-in-out infinite;
}
.bxo-blob--exch-right {
	width: 380px;
	height: 380px;
	bottom: -60px;
	right: -80px;
	background: radial-gradient(circle, rgba(180, 40, 255, 0.3) 0%, transparent 65%);
	animation: blobPulse 12s ease-in-out infinite reverse;
}

.bxo-exchanges__inner {
	position: relative;
	z-index: 2;
	max-width: 1180px;
	margin: 0 auto;
}

/* Card — закруглённый контейнер с градиентом */
.bxo-exch-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	border-radius: 28px;
	overflow: hidden;
	background: linear-gradient(125deg, #2a0e6e 0%, #3d1490 35%, #1e0a52 70%, #120740 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
	min-height: 360px;
	position: relative;
}

/* subtle dot-grid texture поверх фона */
.bxo-exch-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 18px 18px;
	pointer-events: none;
	border-radius: inherit;
	opacity: 0.6;
}

/* Left */
.bxo-exch-card__left {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 52px 44px 52px 52px;
}

.bxo-exch-card__title {
	font-family: var(--font-display);
	font-size: clamp(24px, 3vw, 40px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.12;
	color: #fff;
}

.bxo-exch-card__text {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
}

.bxo-exch-card__quote {
	font-size: 13px;
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.55);
	font-style: italic;
}

/* Right: image fills the column, bleeds out top/bottom */
.bxo-exch-card__right {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	overflow: visible;
	padding-right: 0;
}

.bxo-exch-card__img {
	width: 115%; /* немного выезжает за правый край */
	max-width: 620px;
	height: auto;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
	transform: translateX(4%); /* прижать к правому краю */
}

/* ─── 14. USER REVIEWS ───────────────────────────────────────────────────────── */
.bxo-reviews {
	position: relative;
	background-color: #0a0718;
	padding: 72px 52px 80px;
	overflow: hidden;
}

.bxo-blob--rev-left {
	width: 440px;
	height: 440px;
	top: -60px;
	left: -100px;
	background: radial-gradient(circle, rgba(110, 30, 240, 0.4) 0%, transparent 65%);
	animation: blobPulse 9s ease-in-out infinite;
}
.bxo-blob--rev-right {
	width: 360px;
	height: 360px;
	bottom: -60px;
	right: -80px;
	background: radial-gradient(circle, rgba(180, 40, 255, 0.28) 0%, transparent 65%);
	animation: blobPulse 12s ease-in-out infinite reverse;
}

.bxo-reviews__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
	align-items: start;
}

/* Card */
.bxo-review-card {
	background: rgba(50, 18, 110, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--radius-xl);
	padding: 30px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition:
		border-color var(--dur-med),
		box-shadow var(--dur-med);
}
.bxo-review-card:hover {
	border-color: rgba(180, 80, 255, 0.28);
	box-shadow: 0 8px 36px rgba(120, 40, 255, 0.18);
}

/* Highlighted middle card — чуть ярче */
.bxo-review-card--highlight {
	background: rgba(70, 22, 140, 0.62);
	border-color: rgba(200, 100, 255, 0.18);
}

/* Header row */
.bxo-review-card__header {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Avatar */
.bxo-review-card__avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(135deg, #5c2d9e, #2a0a5e);
}
.bxo-review-card__avatar--highlight {
	border-color: rgba(220, 100, 255, 0.45);
	box-shadow: 0 0 16px rgba(200, 70, 255, 0.4);
}
.bxo-review-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

/* Meta */
.bxo-review-card__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bxo-review-card__name {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
}

.bxo-review-card__stars {
	height: 16px;
	width: auto;
	object-fit: contain;
}

/* Review text */
.bxo-review-card__text {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	flex: 1;
}

/* Earned amount — pill кнопка */
.bxo-review-card__earned {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px;
	border-radius: 100px;
	background: var(--grad-btn);
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0.06em;
	color: #fff;
	box-shadow: 0 4px 20px rgba(180, 60, 255, 0.45);
	margin-top: 4px;
}
/* ─── 15. FOOTER CTA ─────────────────────────────────────────────────────────── */

.bxo-footer-cta {
	position: relative;
	background: #07051a;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.bxo-footer-cta__inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 36px;
	text-align: center;
	padding: 100px 52px 80px;
	/* градиент именно здесь — по центру этого блока */
	background: radial-gradient(
		ellipse 65% 80% at 50% 50%,
		rgba(140, 40, 255, 0.52) 0%,
		transparent 70%
	);
}

.bxo-footer-cta__title {
	font-family: var(--font-display);
	font-size: clamp(24px, 3.2vw, 46px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: #fff;
}

/* Footer links bar */
.bxo-site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding: 24px 52px;
}

.bxo-site-footer__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.bxo-site-footer__links a {
	font-size: 13px;
	color: #fff;
	transition: color var(--dur-fast);
}
.bxo-site-footer__links a:hover {
	color: #fff;
}

/* ─── 16. DISCLAIMER ─────────────────────────────────────────────────────────── */
.bxo-disclaimer {
	background: #04030f;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bxo-disclaimer__inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 48px 52px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.bxo-disclaimer__text {
	font-size: 12px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.28);
	text-align: left;
}

.bxo-disclaimer__copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.22);
	text-align: center;
}


/* ─── PERFORMANCE OVERRIDES ─────────────────────────────────────────────────── */
/* ~14 section blobs were pulsing with blur — main cause of page jank */
.bxo-blob--testi-left,
.bxo-blob--testi-right,
.bxo-blob--ai-left,
.bxo-blob--ai-right,
.bxo-blob--calc-left,
.bxo-blob--calc-right,
.bxo-blob--steps-left,
.bxo-blob--steps-right,
.bxo-blob--feat-left,
.bxo-blob--feat-right,
.bxo-blob--exch-left,
.bxo-blob--exch-right,
.bxo-blob--rev-left,
.bxo-blob--rev-right {
	animation: none !important;
}

/* Soften glassmorphism — backdrop-filter is expensive while scrolling */
.bxo-ticker,
.bxo-testi-card,
.bxo-calc-card,
.bxo-step-card,
.bxo-review-card,
.bxo-reg-card {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* Orbs: slower / cheaper on desktop; off on small screens */
@media (max-width: 900px) {
	.bxo-blob--left,
	.bxo-blob--right,
	.bxo-eth-orb--left,
	.bxo-eth-orb--right,
	.bxo-eth-orb--feat-left,
	.bxo-eth-orb--feat-right {
		animation: none !important;
	}
	.bxo-blob {
		filter: blur(32px);
	}
	.bxo-ticker,
	.bxo-testi-card,
	.bxo-calc-card,
	.bxo-step-card,
	.bxo-review-card,
	.bxo-reg-card {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
