@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;800;900&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
	--ink: #12141c;
	--ink-2: #171a24;
	--ink-3: #1d212c;
	--line: rgba(255, 255, 255, 0.09);
	--line-2: rgba(255, 255, 255, 0.16);
	--fog: rgba(255, 255, 255, 0.045);
	--text: #e9ebf2;
	--muted: rgba(233, 235, 242, 0.58);
	--lime: #63d9a4;
	--lime-deep: #34b17d;
	--magenta: #e4849c;
	--violet: #6f76c4;
	--cyan: #6cb6d6;
	--gold: #e9be7a;
	--gold-2: #d3a052;
	--gold-3: #9c7333;
	--r-s: 12px;
	--r-m: 18px;
	--r-l: 26px;
	--r-xl: 34px;
	--maxw: 1180px;
	--display: "Unbounded", "Manrope", system-ui, sans-serif;
	--body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--body);
	background: var(--ink);
	color: var(--text);
	line-height: 1.55;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

::selection {
	background: var(--lime);
	color: #0a0a0a;
}

a {
	color: inherit;
	text-decoration: none;
}

img,
svg {
	display: block;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

.aurora {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.aurora span {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.3;
}

.aurora span:nth-child(1) {
	width: 620px;
	height: 620px;
	top: -220px;
	left: -160px;
	background: radial-gradient(circle, rgba(111, 118, 196, 0.65), transparent 70%);
	animation: drift 22s ease-in-out infinite;
}

.aurora span:nth-child(2) {
	width: 540px;
	height: 540px;
	top: 8%;
	right: -180px;
	background: radial-gradient(circle, rgba(99, 217, 164, 0.28), transparent 70%);
	animation: drift 26s ease-in-out infinite reverse;
}

.aurora span:nth-child(3) {
	width: 700px;
	height: 700px;
	bottom: -320px;
	left: 32%;
	background: radial-gradient(circle, rgba(228, 132, 156, 0.3), transparent 70%);
	animation: drift 30s ease-in-out infinite;
}

@keyframes drift {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(60px, 50px, 0) scale(1.12);
	}
}

.grain {
	position: fixed;
	inset: -50%;
	z-index: 1;
	pointer-events: none;
	opacity: 0.05;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: grain 8s steps(6) infinite;
}

@keyframes grain {
	0% { transform: translate(0, 0); }
	20% { transform: translate(-6%, 4%); }
	40% { transform: translate(4%, -6%); }
	60% { transform: translate(-4%, -4%); }
	80% { transform: translate(6%, 6%); }
	100% { transform: translate(0, 0); }
}

.mesh {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
	background-size: 78px 78px;
	mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 78%);
}

.progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 2px;
	width: 100%;
	z-index: 90;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: linear-gradient(90deg, var(--lime), var(--cyan) 45%, var(--magenta));
}

.wrap {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 26px;
}

.section {
	position: relative;
	z-index: 5;
	padding: clamp(54px, 6.4vw, 92px) 0;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(233, 235, 242, 0.42);
}

.kicker i {
	width: 26px;
	height: 1px;
	border-radius: 0;
	background: linear-gradient(90deg, var(--lime), transparent);
}

.ord.is-new {
	animation: ordIn 0.5s ease both;
}

@keyframes ordIn {
	from { opacity: 0; transform: translateY(-8px); background: rgba(99, 217, 164, 0.08); }
	to { opacity: 1; transform: none; }
}

@keyframes ping {
	70% { box-shadow: 0 0 0 10px rgba(99, 217, 164, 0); }
	100% { box-shadow: 0 0 0 0 rgba(99, 217, 164, 0); }
}

h1,
h2,
h3,
.dsp {
	font-family: var(--display);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.02;
}

.sec-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: clamp(32px, 4vw, 52px);
}

.sec-head h2 {
	font-size: clamp(30px, 4.4vw, 52px);
}

.sec-head p {
	color: var(--muted);
	max-width: 460px;
	font-size: 15.5px;
	margin-top: 14px;
}

.grad {
	background: linear-gradient(100deg, var(--lime) 0%, var(--cyan) 48%, var(--magenta) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.outline {
	color: transparent;
	-webkit-text-stroke: 1.6px rgba(233, 235, 242, 0.5);
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	white-space: nowrap;
	background: none;
	transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease,
		background 0.25s ease, border-color 0.25s ease;
}

.btn:active {
	transform: scale(0.97) !important;
}

.btn-main {
	background: var(--lime);
	color: #0b0e02;
	box-shadow: 0 12px 34px -12px rgba(99, 217, 164, 0.75);
}

.btn-main:hover {
	background: #d9ff5c;
	box-shadow: 0 18px 46px -14px rgba(99, 217, 164, 0.9);
}

.btn-ghost {
	border-color: var(--line-2);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text);
	backdrop-filter: blur(8px);
}

.btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--line);
	color: var(--text);
}

.btn-dark:hover {
	background: rgba(255, 255, 255, 0.12);
}

.btn-wide {
	width: 100%;
}

.btn-sm {
	padding: 11px 18px;
	font-size: 14px;
}

.dock {
	position: fixed;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 80;
	width: min(1140px, calc(100% - 32px));
}

.dock-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 10px 10px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(9, 8, 15, 0.62);
	backdrop-filter: blur(18px) saturate(160%);
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dock.is-stuck .dock-inner {
	background: rgba(9, 8, 15, 0.9);
	border-color: var(--line-2);
	box-shadow: 0 20px 50px -26px rgba(0, 0, 0, 1);
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--display);
	font-weight: 800;
	font-size: 17px;
	letter-spacing: -0.02em;
}

.brand svg {
	width: 30px;
	height: 30px;
	flex: none;
}

.brand b {
	color: var(--lime);
	font-weight: 800;
}

.menu {
	display: flex;
	align-items: center;
	gap: 2px;
}

.menu a {
	position: relative;
	padding: 9px 15px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--muted);
	transition: color 0.2s ease, background 0.2s ease;
}

.menu a:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.06);
}

.menu a.on {
	color: #0b0e02;
	background: var(--lime);
}

.dock-cta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.burger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	background: rgba(255, 255, 255, 0.05);
	cursor: pointer;
	position: relative;
	flex: none;
}

.burger span {
	position: absolute;
	left: 12px;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--text);
	transition: transform 0.3s ease, opacity 0.2s ease;
}

.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }

.burger.on span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.hero {
	position: relative;
	z-index: 5;
	padding: clamp(120px, 15vw, 172px) 0 clamp(48px, 6vw, 78px);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 44px;
	align-items: center;
}

.hero h1 {
	font-size: clamp(42px, 6.6vw, 82px);
	margin: 20px 0 22px;
}

.hero h1 em {
	font-style: normal;
	display: inline-block;
}

.hero p.lead {
	color: var(--muted);
	font-size: clamp(15px, 1.5vw, 17.5px);
	max-width: 480px;
	margin-bottom: 30px;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 38px;
}

.hero-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.faces {
	display: flex;
}

.faces span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	margin-left: -10px;
	border: 2px solid var(--ink);
	display: grid;
	place-items: center;
	font-size: 12px;
	font-weight: 800;
	color: #0b0e02;
}

.faces span:first-child { margin-left: 0; }
.faces span:nth-child(1) { background: linear-gradient(140deg, #63d9a4, #2f9d70); }
.faces span:nth-child(2) { background: linear-gradient(140deg, #6cb6d6, #5b87c9); }
.faces span:nth-child(3) { background: linear-gradient(140deg, #e4849c, #7b5ea8); color: #fff; }
.faces span:nth-child(4) { background: linear-gradient(140deg, #e9be7a, #d3a052); }

.hero-meta small {
	color: var(--muted);
	font-size: 13.5px;
	line-height: 1.35;
	display: block;
}

.hero-meta b {
	color: var(--text);
	font-size: 14px;
}

.stars {
	color: var(--gold);
	letter-spacing: 2px;
	font-size: 13px;
}

.stage {
	position: relative;
	height: 430px;
	display: grid;
	place-items: center;
	perspective: 1100px;
}

.halo {
	position: absolute;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 209, 102, 0.28), transparent 62%);
	filter: blur(6px);
}

.ring {
	position: absolute;
	border-radius: 50%;
	border: 1px dashed rgba(255, 255, 255, 0.12);
	animation: spinz 26s linear infinite;
}

.ring.r1 { width: 320px; height: 320px; }
.ring.r2 { width: 420px; height: 420px; animation-duration: 40s; animation-direction: reverse; border-style: solid; border-color: rgba(255, 255, 255, 0.07); }

.ring i {
	position: absolute;
	top: -5px;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 16px rgba(99, 217, 164, 0.9);
}

.ring.r2 i {
	background: var(--magenta);
	box-shadow: 0 0 16px rgba(228, 132, 156, 0.9);
	top: auto;
	bottom: -5px;
}

@keyframes spinz {
	to { transform: rotate(360deg); }
}

.stack {
	position: relative;
	width: 200px;
	height: 200px;
	transform-style: preserve-3d;
	transform: rotateX(64deg) rotateZ(0deg);
	animation: turn 18s linear infinite;
}

@keyframes turn {
	to { transform: rotateX(64deg) rotateZ(360deg); }
}

.disc {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle at 34% 30%, #ffe9a8, var(--gold) 42%, var(--gold-2) 72%, var(--gold-3));
	box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.22), 0 0 40px rgba(255, 190, 60, 0.35);
	transform-style: preserve-3d;
}

.disc::after {
	content: "";
	position: absolute;
	inset: 16px;
	border-radius: 50%;
	border: 2px dashed rgba(160, 96, 10, 0.4);
}

.disc.d1 { transform: translateZ(0px); }
.disc.d2 { transform: translateZ(16px) scale(0.985); }
.disc.d3 { transform: translateZ(32px) scale(0.97); }
.disc.d4 { transform: translateZ(48px) scale(0.955); }

.disc.top {
	transform: translateZ(64px);
	display: grid;
	place-items: center;
}

.disc.top b {
	font-family: var(--display);
	font-size: 54px;
	font-weight: 900;
	color: rgba(120, 68, 6, 0.9);
	text-shadow: 0 2px 0 rgba(255, 255, 255, 0.45);
	transform: rotate(0deg);
}

.spark {
	position: absolute;
	border-radius: 50%;
	background: #fff;
	opacity: 0.85;
	animation: floaty 6s ease-in-out infinite;
}

.spark.s1 { width: 6px; height: 6px; top: 18%; left: 22%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.spark.s2 { width: 5px; height: 5px; top: 70%; right: 18%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation-delay: 1.4s; }
.spark.s3 { width: 4px; height: 4px; bottom: 16%; left: 34%; background: var(--magenta); box-shadow: 0 0 12px var(--magenta); animation-delay: 2.6s; }

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

.price-tag {
	position: absolute;
	right: 2%;
	top: 16%;
	padding: 12px 16px;
	border-radius: var(--r-m);
	border: 1px solid var(--line-2);
	background: rgba(12, 10, 22, 0.86);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow);
	animation: floaty 7s ease-in-out infinite;
}

.price-tag small {
	display: block;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.price-tag b {
	font-family: var(--display);
	font-size: 20px;
}

.chip-live {
	position: absolute;
	left: 0;
	bottom: 12%;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 10px 15px;
	border-radius: 999px;
	border: 1px solid var(--line-2);
	background: rgba(12, 10, 22, 0.86);
	backdrop-filter: blur(10px);
	font-size: 13px;
	font-weight: 600;
	animation: floaty 8s ease-in-out infinite 1s;
}

.chip-live i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--lime);
	animation: ping 2s infinite;
}

.marquee {
	position: relative;
	z-index: 5;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.02);
	overflow: hidden;
	padding: 15px 0;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: slide 34s linear infinite;
}

.marquee-track span {
	display: inline-flex;
	align-items: center;
	gap: 26px;
	padding-right: 26px;
	font-family: var(--display);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: rgba(233, 235, 242, 0.62);
	white-space: nowrap;
}

.marquee-track span::after {
	content: "◆";
	color: var(--lime);
	font-size: 10px;
}

@keyframes slide {
	to { transform: translateX(-50%); }
}

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

.tile {
	position: relative;
	overflow: hidden;
	padding: 26px;
	border-radius: var(--r-l);
	border: 1px solid var(--line);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}

.tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(99, 217, 164, 0.14), transparent 60%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.tile:hover {
	transform: translateY(-4px);
	border-color: var(--line-2);
}

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

.tile h3 {
	font-size: 19px;
	margin-bottom: 10px;
	font-weight: 700;
}

.tile p {
	color: var(--muted);
	font-size: 14.5px;
}

.tile .ico {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	margin-bottom: 18px;
	border: 1px solid var(--line-2);
	background: rgba(255, 255, 255, 0.05);
}

.tile .ico svg {
	width: 22px;
	height: 22px;
}

.t-6 { grid-column: span 6; }
.t-4 { grid-column: span 4; }
.t-3 { grid-column: span 3; }
.t-8 { grid-column: span 8; }
.t-5 { grid-column: span 5; }
.t-7 { grid-column: span 7; }

.tile-hero {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 230px;
	background: linear-gradient(150deg, rgba(111, 118, 196, 0.24), rgba(108, 182, 214, 0.08) 60%, transparent);
}

.tile-hero .big {
	font-family: var(--display);
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 900;
	line-height: 1;
	margin-bottom: 8px;
}

.tile-stat .big {
	font-family: var(--display);
	font-size: 34px;
	font-weight: 900;
	margin-bottom: 4px;
}

.tile-stat small {
	color: var(--muted);
	font-size: 13.5px;
}

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

.pack {
	position: relative;
	padding: 26px 24px 24px;
	border-radius: var(--r-l);
	border: 1px solid var(--line);
	background: linear-gradient(170deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease,
		box-shadow 0.35s ease;
}

.pack:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 255, 255, 0.26);
	box-shadow: var(--shadow);
}

.pack.hit {
	border-color: rgba(99, 217, 164, 0.5);
	background: linear-gradient(170deg, rgba(99, 217, 164, 0.13), rgba(111, 118, 196, 0.08) 55%, rgba(255, 255, 255, 0.015));
}

.pack.hit::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(120deg, var(--lime), transparent 35%, transparent 65%, var(--magenta));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.ribbon {
	position: absolute;
	top: 16px;
	right: -34px;
	transform: rotate(38deg);
	background: var(--lime);
	color: #0b0e02;
	font-size: 10.5px;
	font-weight: 900;
	letter-spacing: 0.16em;
	padding: 5px 40px;
	text-transform: uppercase;
}

.pack-coin {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: var(--display);
	font-weight: 900;
	font-size: 17px;
	color: rgba(110, 62, 4, 0.95);
	background: radial-gradient(circle at 34% 30%, #ffe9a8, var(--gold) 45%, var(--gold-2) 78%);
	box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.25), 0 10px 26px -10px rgba(255, 190, 60, 0.7);
	margin-bottom: 18px;
}

.pack-amount {
	font-family: var(--display);
	font-size: 29px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.pack-note {
	color: var(--muted);
	font-size: 13.5px;
	margin: 6px 0 18px;
}

.pack-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 20px;
}

.pack-price b {
	font-family: var(--display);
	font-size: 26px;
	font-weight: 800;
}

.pack-price s {
	color: rgba(233, 235, 242, 0.34);
	font-size: 14px;
}

.save {
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 800;
	color: var(--lime);
	background: rgba(99, 217, 164, 0.12);
	border: 1px solid rgba(99, 217, 164, 0.3);
}

.pack-rate {
	display: flex;
	justify-content: space-between;
	font-size: 12.5px;
	color: var(--muted);
	padding-top: 14px;
	margin-top: 16px;
	border-top: 1px solid var(--line);
}

.calc {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 0;
	border-radius: var(--r-xl);
	border: 1px solid var(--line);
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
	overflow: hidden;
}

.calc-left {
	padding: clamp(24px, 3vw, 38px);
}

.calc-right {
	padding: clamp(24px, 3vw, 38px);
	border-left: 1px solid var(--line);
	background: linear-gradient(165deg, rgba(111, 118, 196, 0.2), rgba(228, 132, 156, 0.08) 55%, transparent);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lbl {
	display: block;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 12px;
}

.calc-value {
	font-family: var(--display);
	font-size: clamp(34px, 4.6vw, 52px);
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	margin-bottom: 22px;
}

.calc-value span {
	font-size: 0.44em;
	color: var(--muted);
	margin-left: 8px;
}

.range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--lime) 0%, var(--lime) var(--fill, 30%), rgba(255, 255, 255, 0.1) var(--fill, 30%));
	outline: none;
	margin-bottom: 22px;
}

.range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
	border: 5px solid var(--lime);
	cursor: pointer;
	box-shadow: 0 6px 18px -4px rgba(99, 217, 164, 0.8);
	transition: transform 0.2s ease;
}

.range::-webkit-slider-thumb:hover {
	transform: scale(1.12);
}

.range::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	border: 5px solid var(--lime);
	cursor: pointer;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.chip {
	padding: 9px 16px;
	border-radius: 999px;
	border: 1px solid var(--line-2);
	background: rgba(255, 255, 255, 0.03);
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.22s ease;
}

.chip:hover {
	border-color: rgba(255, 255, 255, 0.34);
}

.chip.on {
	background: var(--lime);
	border-color: var(--lime);
	color: #0b0e02;
}

.total {
	font-family: var(--display);
	font-size: clamp(38px, 5vw, 56px);
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	margin-bottom: 8px;
}

.total-note {
	color: var(--muted);
	font-size: 13.5px;
	margin-bottom: 22px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	position: relative;
}

.steps::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 6%;
	right: 6%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--line-2), var(--line-2), transparent);
}

.step {
	position: relative;
	padding-top: 62px;
}

.step i {
	position: absolute;
	top: 0;
	left: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: var(--display);
	font-weight: 900;
	font-size: 15px;
	font-style: normal;
	color: #0b0e02;
	background: var(--lime);
	box-shadow: 0 0 0 6px var(--ink), 0 10px 26px -10px rgba(99, 217, 164, 0.8);
}

.step h3 {
	font-size: 17.5px;
	margin-bottom: 8px;
	font-weight: 700;
}

.step p {
	color: var(--muted);
	font-size: 14.5px;
}

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

.review {
	padding: 26px;
	border-radius: var(--r-l);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.035);
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.review:hover {
	transform: translateY(-4px);
	border-color: var(--line-2);
}

.review p {
	font-size: 15px;
	color: rgba(233, 235, 242, 0.86);
}

.review-who {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.review-who span {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 14px;
	color: #0b0e02;
	background: linear-gradient(140deg, #63d9a4, #2f9d70);
}

.review-who b {
	display: block;
	font-size: 14.5px;
}

.review-who small {
	color: var(--muted);
	font-size: 12.5px;
}

.band {
	position: relative;
	overflow: hidden;
	border-radius: var(--r-xl);
	border: 1px solid var(--line-2);
	padding: clamp(38px, 6vw, 68px) clamp(24px, 5vw, 56px);
	text-align: center;
	background: linear-gradient(130deg, rgba(111, 118, 196, 0.3), rgba(228, 132, 156, 0.18) 45%, rgba(99, 217, 164, 0.16));
}

.band::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: radial-gradient(ellipse at center, #000, transparent 72%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 72%);
	pointer-events: none;
}

.band h2 {
	position: relative;
	z-index: 2;
	font-size: clamp(28px, 4.6vw, 50px);
	margin-bottom: 14px;
}

.band p {
	position: relative;
	z-index: 2;
	color: rgba(233, 235, 242, 0.78);
	margin-bottom: 28px;
}

.band .btn {
	position: relative;
	z-index: 2;
}

.faq {
	display: grid;
	gap: 12px;
}

.qa {
	border-radius: var(--r-m);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.035);
	overflow: hidden;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.qa.on {
	border-color: rgba(99, 217, 164, 0.34);
	background: rgba(99, 217, 164, 0.05);
}

.qa button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 22px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--display);
	letter-spacing: -0.01em;
}

.qa .pm::before {
	content: "+";
	line-height: 1;
	display: block;
}

.qa .pm {
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	display: grid;
	place-items: center;
	font-size: 17px;
	font-weight: 400;
	font-family: var(--body);
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.qa.on .pm {
	transform: rotate(135deg);
	background: var(--lime);
	color: #0b0e02;
	border-color: var(--lime);
}

.qa-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.qa.on .qa-body {
	grid-template-rows: 1fr;
}

.qa-body > div {
	overflow: hidden;
}

.qa-body p {
	padding: 0 22px 22px;
	color: var(--muted);
	font-size: 15px;
	max-width: 720px;
}

.phero {
	position: relative;
	z-index: 5;
	padding: clamp(124px, 14vw, 168px) 0 clamp(20px, 3vw, 34px);
}

.phero h1 {
	font-size: clamp(36px, 6vw, 68px);
	margin: 18px 0 16px;
}

.phero p {
	color: var(--muted);
	max-width: 560px;
	font-size: 16px;
}

.tbl {
	border-radius: var(--r-l);
	border: 1px solid var(--line);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
}

.tbl table {
	width: 100%;
	border-collapse: collapse;
}

.tbl th {
	text-align: left;
	padding: 16px 22px;
	font-size: 11.5px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid var(--line);
}

.tbl td {
	padding: 16px 22px;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	font-variant-numeric: tabular-nums;
}

.tbl tr:last-child td {
	border-bottom: 0;
}

.tbl tbody tr {
	transition: background 0.2s ease;
}

.tbl tbody tr:hover {
	background: rgba(255, 255, 255, 0.04);
}

.tbl td:first-child {
	font-weight: 700;
	font-family: var(--display);
}

.best {
	color: var(--lime);
	font-weight: 800;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 18px;
	align-items: start;
}

.clist {
	display: grid;
	gap: 12px;
}

.crow {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 20px;
	border-radius: var(--r-m);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.035);
	transition: transform 0.28s ease, border-color 0.28s ease;
}

.crow:hover {
	transform: translateX(5px);
	border-color: var(--line-2);
}

.crow .ico {
	width: 44px;
	height: 44px;
	flex: none;
	border-radius: 13px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line-2);
	background: rgba(255, 255, 255, 0.05);
}

.crow .ico svg {
	width: 20px;
	height: 20px;
}

.crow b {
	display: block;
	font-size: 15px;
	margin-bottom: 2px;
}

.crow small {
	color: var(--muted);
	font-size: 13.5px;
}

.panel {
	padding: clamp(24px, 3vw, 34px);
	border-radius: var(--r-l);
	border: 1px solid var(--line);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.panel h3 {
	font-size: 22px;
	margin-bottom: 8px;
}

.panel > p {
	color: var(--muted);
	font-size: 14.5px;
	margin-bottom: 22px;
}

.field {
	margin-bottom: 16px;
}

.field label {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 8px;
	font-weight: 600;
}

.inp {
	width: 100%;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid var(--line-2);
	background: rgba(255, 255, 255, 0.04);
	font-size: 15px;
	transition: border-color 0.22s ease, background 0.22s ease;
}

.inp::placeholder {
	color: rgba(233, 235, 242, 0.32);
}

.inp:focus {
	outline: none;
	border-color: var(--lime);
	background: rgba(99, 217, 164, 0.06);
}

textarea.inp {
	min-height: 118px;
	resize: vertical;
}

select.inp {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4f2ff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px;
	padding-right: 42px;
}

select.inp option {
	background: var(--ink-2);
}

.msg {
	margin-top: 14px;
	padding: 12px 15px;
	border-radius: 12px;
	font-size: 14px;
	display: none;
}

.msg.show {
	display: block;
}

.msg.ok {
	background: rgba(99, 217, 164, 0.1);
	border: 1px solid rgba(99, 217, 164, 0.34);
	color: var(--lime);
}

.msg.err {
	background: rgba(228, 132, 156, 0.1);
	border: 1px solid rgba(228, 132, 156, 0.34);
	color: #ff8fb4;
}

.warn {
	display: flex;
	gap: 16px;
	padding: 22px;
	border-radius: var(--r-m);
	border: 1px solid rgba(228, 132, 156, 0.32);
	background: rgba(228, 132, 156, 0.08);
}

.warn b {
	display: block;
	margin-bottom: 6px;
}

.warn p {
	color: rgba(233, 235, 242, 0.76);
	font-size: 14.5px;
}

.foot {
	position: relative;
	z-index: 5;
	border-top: 1px solid var(--line);
	padding-top: 54px;
	margin-top: 20px;
}

.foot-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 30px;
	padding-bottom: 44px;
}

.foot h4 {
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 16px;
	font-weight: 800;
}

.foot ul {
	list-style: none;
	display: grid;
	gap: 10px;
}

.foot li a {
	color: var(--muted);
	font-size: 14.5px;
	transition: color 0.2s ease;
}

.foot li a:hover {
	color: var(--lime);
}

.foot-about p {
	color: var(--muted);
	font-size: 14px;
	max-width: 320px;
	margin-top: 14px;
}

.wordmark {
	font-family: var(--display);
	font-weight: 900;
	font-size: clamp(48px, 13vw, 168px);
	line-height: 0.86;
	letter-spacing: -0.045em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
	text-align: center;
	user-select: none;
	padding-bottom: 12px;
	overflow: hidden;
}

.foot-bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 22px 0 28px;
	border-top: 1px solid var(--line);
	color: rgba(233, 235, 242, 0.4);
	font-size: 13px;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal.open {
	display: flex;
}

.modal-bg {
	position: absolute;
	inset: 0;
	background: rgba(4, 3, 8, 0.78);
	backdrop-filter: blur(8px);
}

.modal-card {
	position: relative;
	width: min(520px, 100%);
	max-height: 90vh;
	overflow-y: auto;
	padding: 30px;
	border-radius: var(--r-xl);
	border: 1px solid var(--line-2);
	background: linear-gradient(165deg, #14111f, #0a0810);
	box-shadow: 0 40px 100px -30px #000;
	animation: pop 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes pop {
	from { opacity: 0; transform: translateY(18px) scale(0.97); }
	to { opacity: 1; transform: none; }
}

.modal-x {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	background: rgba(255, 255, 255, 0.05);
	cursor: pointer;
	font-size: 17px;
	line-height: 1;
}

.modal-card h3 {
	font-size: 22px;
	margin-bottom: 20px;
}

.sum {
	border-radius: var(--r-m);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.04);
	padding: 16px 18px;
	margin-bottom: 22px;
}

.sum div {
	display: flex;
	justify-content: space-between;
	padding: 7px 0;
	font-size: 14.5px;
	color: var(--muted);
}

.sum div.tot {
	border-top: 1px solid var(--line);
	margin-top: 8px;
	padding-top: 14px;
	color: var(--text);
	font-weight: 800;
	font-size: 18px;
	font-family: var(--display);
}

.pays {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 18px;
}

.pay {
	padding: 13px 8px;
	border-radius: 14px;
	border: 1px solid var(--line-2);
	background: rgba(255, 255, 255, 0.03);
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
}

.pay:hover {
	border-color: rgba(255, 255, 255, 0.34);
}

.pay.on {
	border-color: var(--lime);
	background: rgba(99, 217, 164, 0.12);
	color: var(--lime);
}

.fine {
	color: rgba(233, 235, 242, 0.42);
	font-size: 12.5px;
	margin-top: 14px;
	text-align: center;
}

.rv {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rv.in {
	opacity: 1;
	transform: none;
}

@media (max-width: 1000px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}
	.stage {
		height: 350px;
		order: 2;
	}
	.price-tag { right: 6%; }
	.chip-live { left: 4%; }
	.packs,
	.reviews {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 26px 18px;
	}
	.steps::before { display: none; }
	.calc,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.calc-right {
		border-left: 0;
		border-top: 1px solid var(--line);
	}
	.t-6, .t-4, .t-3, .t-8, .t-5, .t-7 {
		grid-column: span 6;
	}
	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 760px) {
	.menu {
		position: fixed;
		inset: 78px 16px auto;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 14px;
		border-radius: var(--r-l);
		border: 1px solid var(--line-2);
		background: rgba(9, 8, 15, 0.97);
		backdrop-filter: blur(18px);
		transform: translateY(-16px);
		opacity: 0;
		visibility: hidden;
		transition: all 0.28s ease;
	}
	.menu.open {
		transform: none;
		opacity: 1;
		visibility: visible;
	}
	.menu a {
		padding: 13px 16px;
		font-size: 16px;
		text-align: center;
	}
	.burger {
		display: block;
	}
	.dock-inner {
		padding: 9px 9px 9px 16px;
	}
	.dock-cta .btn {
		padding: 11px 16px;
		font-size: 14px;
	}
	.sec-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.packs,
	.reviews,
	.steps,
	.foot-grid {
		grid-template-columns: 1fr;
	}
	.t-6, .t-4, .t-3, .t-8, .t-5, .t-7 {
		grid-column: span 12;
	}
	.pays {
		grid-template-columns: 1fr;
	}
	.stage {
		height: 300px;
	}
	.stack {
		width: 160px;
		height: 160px;
	}
	.disc.top b { font-size: 42px; }
	.ring.r1 { width: 250px; height: 250px; }
	.ring.r2 { width: 320px; height: 320px; }
	.halo { width: 260px; height: 260px; }
	.wordmark { -webkit-text-stroke-width: 0.7px; }
}

@media (max-width: 420px) {
	.dock-cta .btn-main {
		display: none;
	}
	.price-tag {
		top: 6%;
		right: 0;
		padding: 10px 13px;
	}
	.wrap {
		padding: 0 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
	.rv {
		opacity: 1;
		transform: none;
	}
	.marquee-track {
		animation: none;
	}
}

.feed {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	gap: 18px;
	align-items: start;
}

.feed-list {
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
	padding: 10px;
	max-height: 520px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(99, 217, 164, 0.35) transparent;
	-webkit-overflow-scrolling: touch;
}

.feed-list::-webkit-scrollbar {
	width: 6px;
}

.feed-list::-webkit-scrollbar-thumb {
	background: rgba(99, 217, 164, 0.3);
	border-radius: 99px;
}

.ord {
	display: grid;
	grid-template-columns: 42px 1fr auto;
	gap: 13px;
	align-items: center;
	padding: 13px 14px;
	border-radius: var(--r-m);
	border: 1px solid transparent;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.ord + .ord {
	margin-top: 4px;
}

.ord:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--line);
}

.ord-av {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #0b0e02;
	background: linear-gradient(140deg, var(--lime), var(--lime-deep));
}

.ord-top {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
}

.ord-top b {
	font-size: 14.5px;
}

.ord-num {
	font-size: 11.5px;
	letter-spacing: 0.06em;
	color: var(--muted);
	border: 1px solid var(--line);
	border-radius: 99px;
	padding: 2px 8px;
}

.ord-sub {
	margin-top: 4px;
	font-size: 13px;
	color: var(--muted);
}

.ord-side {
	text-align: right;
	display: grid;
	gap: 5px;
	justify-items: end;
}

.ord-status {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 99px;
	border: 1px solid var(--line-2);
	color: var(--muted);
}

.ord-status.ok {
	color: var(--lime);
	border-color: rgba(99, 217, 164, 0.4);
	background: rgba(99, 217, 164, 0.09);
}

.ord-time {
	font-size: 11.5px;
	color: rgba(233, 235, 242, 0.42);
}

.feed-side {
	display: grid;
	gap: 14px;
	position: sticky;
	top: 96px;
}

.feed-card {
	padding: 22px;
	border-radius: var(--r-l);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.035);
}

.feed-card h4 {
	font-family: "Unbounded", sans-serif;
	font-size: 15px;
	margin-bottom: 8px;
}

.feed-card p {
	font-size: 13.5px;
	color: var(--muted);
}

.feed-big {
	font-family: "Unbounded", sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(120deg, var(--lime), var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lookup {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.lookup input {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border-radius: var(--r-s);
	border: 1px solid var(--line-2);
	background: rgba(0, 0, 0, 0.35);
	color: var(--text);
	font: inherit;
	font-size: 14px;
}

.lookup input:focus {
	outline: none;
	border-color: rgba(99, 217, 164, 0.55);
}

.slider {
	position: relative;
}

.slider-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 36px) / 3);
	column-gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding: 0;
	padding-bottom: 6px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.slider-track::-webkit-scrollbar {
	display: none;
}

.slider-track > * {
	scroll-snap-align: start;
}

.slider-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	justify-content: center;
}

.slider-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	font-size: 18px;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: all 0.25s ease;
}

.slider-btn:hover:not(:disabled) {
	border-color: rgba(99, 217, 164, 0.55);
	color: var(--lime);
	transform: translateY(-2px);
}

.slider-btn:disabled {
	opacity: 0.32;
	cursor: default;
}

.slider-dots {
	display: flex;
	gap: 7px;
	align-items: center;
}

.slider-dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 99px;
	border: none;
	background: rgba(255, 255, 255, 0.22);
	cursor: pointer;
	transition: all 0.25s ease;
}

.slider-dots button.on {
	width: 24px;
	background: var(--lime);
}

.review-rate {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 12.5px;
	color: var(--muted);
}

.review-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--lime);
	border: 1px solid rgba(99, 217, 164, 0.32);
	background: rgba(99, 217, 164, 0.08);
	border-radius: 99px;
	padding: 3px 9px;
}

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

.trust-item {
	padding: 20px;
	border-radius: var(--r-l);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.03);
	display: grid;
	gap: 8px;
}

.trust-item .ico {
	margin-bottom: 2px;
}

.trust-item b {
	font-family: "Unbounded", sans-serif;
	font-size: 14.5px;
}

.trust-item span {
	font-size: 13px;
	color: var(--muted);
}

.modal[data-step="form"] .step-wait,
.modal[data-step="form"] .step-done,
.modal[data-step="wait"] .step-form,
.modal[data-step="wait"] .step-done,
.modal[data-step="done"] .step-form,
.modal[data-step="done"] .step-wait {
	display: none;
}

.wait-box {
	text-align: center;
	display: grid;
	gap: 14px;
	justify-items: center;
	padding: 8px 0 4px;
}

.spinner {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.12);
	border-top-color: var(--lime);
	animation: spin 0.9s linear infinite;
}

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

.wait-num {
	font-family: "Unbounded", sans-serif;
	font-size: 20px;
	color: var(--lime);
}

.wait-status {
	font-size: 13px;
	color: var(--muted);
}

.done-mark {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 30px;
	color: #0b0e02;
	background: linear-gradient(140deg, var(--lime), var(--lime-deep));
}

.btn.loading {
	opacity: 0.65;
	pointer-events: none;
}

@media (max-width: 1000px) {
	.feed {
		grid-template-columns: 1fr;
	}
	.feed-side {
		position: static;
		grid-template-columns: 1fr 1fr;
	}
	.slider-track {
		grid-auto-columns: calc((100% - 18px) / 2);
	}
	.trust {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 760px) {
	.slider-track {
		grid-auto-columns: 86%;
		column-gap: 14px;
	}
	.feed-side {
		grid-template-columns: 1fr;
	}
	.feed-list {
		max-height: 460px;
		padding: 6px;
	}
	.ord {
		grid-template-columns: 36px 1fr;
		gap: 11px;
		padding: 12px;
	}
	.ord-av {
		width: 36px;
		height: 36px;
		border-radius: 12px;
		font-size: 14px;
	}
	.ord-side {
		grid-column: 2;
		justify-items: start;
		text-align: left;
		grid-auto-flow: column;
		align-items: center;
		gap: 10px;
		margin-top: 2px;
	}
	.lookup {
		flex-direction: column;
	}
	.lookup .btn {
		width: 100%;
	}
	.btn,
	.chip,
	.pay,
	.qa button {
		min-height: 44px;
	}
	.inp,
	.lookup input {
		font-size: 16px;
	}
	.modal-card {
		max-height: 92dvh;
		overflow-y: auto;
	}
	.marquee {
		font-size: 13px;
	}
}

@media (max-width: 420px) {
	.trust {
		grid-template-columns: 1fr;
	}
	.slider-track {
		grid-auto-columns: 92%;
	}
	.ord-num {
		display: none;
	}
}

@media (hover: none) {
	.review:hover,
	.ord:hover {
		transform: none;
	}
}

.review-when { margin-left: auto; font-size: 12px; color: rgba(233, 235, 242, .42); font-weight: 600 }

html, body { overflow-x: hidden; max-width: 100% }

.done-lead { margin: 6px 0 2px; font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.5 }
.step-done .btn + .btn { margin-top: 10px }
