/* ===================== TOKENS ===================== */
:root {
	--bg-light: #eef4fb;
	--bg-light-2: #f7fafd;
	--ink: #0c1116;
	--ink-soft: #3a444e;
	--muted: #8a97a4;
	--line: #e4eaf1;
	--tg: #2ea6e8;
	--tg-2: #1f93d8;
	--tg-deep: #0f7fc4;
	--red: #ef2b2b;
	--dark: #0a0b0d;
	--dark-2: #121316;
	--dark-card: #161719;
	--radius: 28px;
	--section-width: 1120px;

	--f-display: "Unbounded", system-ui, sans-serif;
	--f-body: "Onest", system-ui, sans-serif;
	--f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--f-body);
	color: var(--ink);
	background: var(--bg-light-2);
	overflow-x: hidden;
	line-height: 1.45;
}
a {
	color: inherit;
	text-decoration: none;
}
::selection {
	background: var(--tg);
	color: #fff;
}

/* ===================== BUTTONS ===================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55em;
	font-family: var(--f-body);
	font-weight: 600;
	font-size: 17px;
	padding: 16px 30px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition:
		transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 0.35s,
		background 0.25s;
	white-space: nowrap;
}
.btn:hover {
	transform: translateY(-2px);
}
.btn__tg {
	display: inline-block;
	width: 19px;
	height: 19px;
	font-size: 0;
	line-height: 0;
	flex: none;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 3 1.5 11.2c-.8.3-.8 1.2.1 1.5l5.2 1.6 2 6.1c.2.6.7.7 1.1.3l2.7-2.7 5.3 3.9c.5.4 1.2.1 1.4-.6L23.9 4.2c.2-1-.6-1.6-1.9-1.2Zm-3.6 4.2-8.5 7.6-.3 4.1-1.5-4.6 10-7.6c.4-.3.1-.6-.5-.2L7 14.3l-3.7-1.2L20.7 5.2c.7-.3 1.3.2 1.1 1L18.4 7.2Z'/%3E%3C/svg%3E")
		center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 3 1.5 11.2c-.8.3-.8 1.2.1 1.5l5.2 1.6 2 6.1c.2.6.7.7 1.1.3l2.7-2.7 5.3 3.9c.5.4 1.2.1 1.4-.6L23.9 4.2c.2-1-.6-1.6-1.9-1.2Z'/%3E%3C/svg%3E")
		center/contain no-repeat;
	transform: translateY(-1px);
}
.btn--light {
	background: #fff;
	color: #0c1116;
	font-size: 15px;
	padding: 11px 20px;
}
.btn--light:hover {
	box-shadow: 0 8px 26px rgba(255, 255, 255, 0.25);
}
.btn--tg {
	background: linear-gradient(180deg, #41b3ef, #1f93d8);
	color: #fff;
	box-shadow: 0 12px 30px rgba(31, 147, 216, 0.4);
}
.btn--tg:hover {
	box-shadow: 0 18px 40px rgba(31, 147, 216, 0.55);
}
.btn--lg {
	font-size: 19px;
	padding: 19px 38px;
}
.btn--dark {
	background: var(--dark-2);
	color: #fff;
	border: 1px solid #2a2c30;
}
.btn--dark:hover {
	background: #1c1e22;
}
.btn--ghost {
	background: #1d1e21;
	color: #fff;
	border: 1px solid #34373c;
}
.btn--ghost:hover {
	background: #26282c;
}

/* ===================== NAV ===================== */
.nav {
	position: fixed;
	top: 22px;
	left: 0;
	right: 0;
	z-index: 80;
	display: flex;
	justify-content: center;
	pointer-events: none;
}
.nav__pill {
	pointer-events: auto;
	display: flex;
	align-items: center;
	gap: 42px;
	background: #0b0c0e;
	color: #fff;
	border-radius: 999px;
	padding: 12px 12px 12px 32px;
	box-shadow: 0 18px 50px rgba(7, 10, 14, 0.28);
	transition:
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		padding 0.72s cubic-bezier(0.16, 1, 0.3, 1),
		gap 0.72s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.72s ease;
	max-width: calc(100vw - 32px);
}
.nav__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--f-display);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.2px;
	transition: font-size 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__brand-logo {
	display: block;
	width: 34px;
	height: 34px;
	flex: none;
}
.nav__links {
	display: flex;
	gap: 30px;
	font-size: 15px;
	color: #c7ccd2;
	max-width: 420px;
	opacity: 1;
	transform: translateX(0) scale(1);
	transform-origin: right center;
	transition:
		opacity 0.46s ease,
		max-width 0.72s cubic-bezier(0.16, 1, 0.3, 1),
		gap 0.72s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__cta {
	transition:
		padding 0.72s cubic-bezier(0.16, 1, 0.3, 1),
		font-size 0.72s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a {
	transition: color 0.2s;
}
.nav__links a:hover {
	color: #fff;
}
.nav.is-shrunk .nav__pill {
	gap: 26px;
	padding: 8px 8px 8px 24px;
	transform: translateY(-2px) scale(0.98);
	box-shadow: 0 14px 42px rgba(7, 10, 14, 0.24);
}
.nav.is-shrunk .nav__brand {
	font-size: 18px;
}
.nav.is-shrunk .nav__brand-logo {
	width: 22px;
	height: 22px;
}
.nav.is-shrunk .nav__links {
	gap: 22px;
	font-size: 14px;
	max-width: 360px;
	transform: translateX(0) scale(1);
}
.nav.is-shrunk .nav__cta {
	padding: 10px 16px;
	font-size: 14px;
}

/* ===================== HERO ===================== */
.hero {
	position: relative;
	min-height: 100vh;
	padding: 155px 44px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background: radial-gradient(120% 80% at 50% 40%, #eaf3ff 0%, #e3eefb 45%, #dbe8f7 100%);
	overflow: hidden;
}
.hero__glow {
	position: absolute;
	top: 18%;
	left: 50%;
	width: 900px;
	height: 900px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(141, 200, 255, 0.55), rgba(141, 200, 255, 0) 62%);
	filter: blur(20px);
	pointer-events: none;
	z-index: 0;
	will-change: transform;
}
.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 34px;
	width: 100%;
}
.hero__copy {
	will-change: transform;
}
.hero__title {
	font-family: var(--f-display);
	font-weight: 300;
	font-size: clamp(30px, 6.2vw, 70px);
	line-height: 1.04;
	text-align: center;
	letter-spacing: -1px;
	color: #0d141b;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.02em;
}
.hero__title .r {
	display: block;
}
.hero__tg-line {
	display: inline-flex;
	align-items: center;
	gap: 0.22em;
}
.tg-logo {
	display: inline-flex;
	vertical-align: middle;
	filter: drop-shadow(0 10px 22px rgba(40, 168, 232, 0.45));
}
.tg-logo svg {
	display: block;
}

.hero__phone {
	position: relative;
	z-index: 2;
	width: min(42vw, 390px);
	min-width: 300px;
	will-change: transform;
}
.hero__phone::before {
	content: "";
	position: absolute;
	inset: 8% -26% 14%;
	z-index: 0;
	border-radius: 38%;
	background:
		radial-gradient(
			circle at 50% 42%,
			rgba(126, 204, 255, 0.34),
			rgba(75, 165, 238, 0.16) 34%,
			rgba(43, 119, 202, 0.04) 62%,
			transparent 78%
		),
		linear-gradient(180deg, rgba(20, 105, 190, 0.06), rgba(13, 34, 78, 0.01));
	filter: blur(24px);
	pointer-events: none;
}
.hero__phone::after {
	content: "";
	position: absolute;
	inset: 12% -8% 18%;
	z-index: 2;
	border-radius: 34%;
	background: radial-gradient(
		ellipse at center,
		rgba(159, 220, 255, 0.18) 0%,
		rgba(116, 198, 255, 0.12) 28%,
		rgba(116, 198, 255, 0.04) 46%,
		transparent 68%
	);
	filter: blur(14px);
	pointer-events: none;
}
.hero__device {
	position: relative;
	z-index: 3;
	aspect-ratio: 1015/2048;
	filter: drop-shadow(0 38px 80px rgba(20, 32, 48, 0.34));
}
.hero__device-screen {
	position: absolute;
	inset: 2.6% 5.9% 3%;
	border-radius: 10.5% / 5.2%;
	overflow: hidden;
	background: #fff;
	z-index: 1;
}
.hero__device-screen img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.hero__device-frame {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
}
.hero__messages {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.hero__message {
	position: absolute;
	width: clamp(230px, 26vw, 340px);
	opacity: 0;
	filter: drop-shadow(0 18px 34px rgba(20, 40, 70, 0.18))
		drop-shadow(0 0 24px rgba(99, 188, 255, 0.2));
	will-change: transform, opacity;
}
.hero__message--left {
	left: 50%;
	transform: translate3d(-50%, -4px, 0) scale(0.94);
}
.hero__message--right {
	right: 50%;
	transform: translate3d(50%, -4px, 0) scale(0.94);
}
.hero__message--left-1 {
	top: 21%;
	--message-rotate: -5deg;
	--message-delay: 0;
}
.hero__message--left-2 {
	top: 43%;
	--message-rotate: 0deg;
	--message-delay: 0.2;
}
.hero__message--left-3 {
	top: 60%;
	--message-rotate: 4deg;
	--message-delay: 0.36;
}
.hero__message--right-1 {
	top: 25%;
	--message-rotate: 4deg;
	--message-delay: 0.12;
}
.hero__message--right-2 {
	top: 46%;
	--message-rotate: 0deg;
	--message-delay: 0.28;
}
.hero__message--right-3 {
	top: 65%;
	--message-rotate: -5deg;
	--message-delay: 0.44;
}
.hero__lead {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 10px;
}

/* ===================== PHONE BASE ===================== */
.phone {
	position: relative;
	width: 300px;
	background: linear-gradient(145deg, #3a3d42, #0c0d0f);
	border-radius: 46px;
	padding: 11px;
	box-shadow:
		0 40px 90px rgba(20, 32, 48, 0.32),
		inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.phone__notch {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 96px;
	height: 28px;
	background: #000;
	border-radius: 18px;
	z-index: 5;
}
.phone__screen {
	background: #fff;
	border-radius: 36px;
	overflow: hidden;
	min-height: 430px;
	padding: 14px 14px 0;
	display: flex;
	flex-direction: column;
}
.phone__screen--flush {
	padding: 0;
}
.phone--hero {
	margin-bottom: -220px;
}
.phone--hero .phone__screen {
	min-height: 540px;
}
.phone--mini {
	width: 230px;
	border-radius: 38px;
	padding: 8px;
}
.phone--mini .phone__screen {
	border-radius: 30px;
	min-height: 330px;
}
.phone--tilt {
	transform: perspective(1400px) rotateX(8deg) rotateY(-14deg) rotateZ(2deg);
}

/* status bar */
.sb {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 12px 12px;
	font-weight: 600;
	font-size: 14px;
}
.sb__icons {
	display: flex;
	gap: 5px;
	align-items: center;
}
.ic-signal,
.ic-wifi,
.ic-batt {
	display: inline-block;
	background: #0c1116;
}
.ic-signal {
	width: 16px;
	height: 11px;
	clip-path: polygon(
		0 70%,
		15% 70%,
		15% 100%,
		0 100%,
		0 70%,
		30% 45%,
		45% 45%,
		45% 100%,
		30% 100%,
		60% 22%,
		75% 22%,
		75% 100%,
		60% 100%,
		90% 0,
		100% 0,
		100% 100%,
		90% 100%
	);
}
.ic-wifi {
	width: 15px;
	height: 11px;
	clip-path: polygon(50% 100%, 0 45%, 12% 33%, 50% 70%, 88% 33%, 100% 45%);
}
.ic-batt {
	width: 23px;
	height: 12px;
	border-radius: 3px;
}

/* telegram shop header */
.tgbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 4px 10px;
}
.tgbar__back {
	background: #eef0f3;
	border-radius: 14px;
	padding: 6px 12px;
	font-weight: 600;
	font-size: 14px;
}
.tgbar__right {
	display: flex;
	gap: 6px;
}
.chip-round {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #eef0f3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}
.shop-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 4px 10px;
}
.shop-ava {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #0b0c0e;
	color: #39a0ff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Times New Roman", serif;
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 700;
}
.shop-ava.sm {
	width: 40px;
	height: 40px;
	font-size: 10px;
}
.shop-name {
	font-weight: 700;
	font-size: 21px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.verified {
	display: inline-flex;
	width: 18px;
	height: 18px;
	background: #2ea6e8;
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	align-items: center;
	justify-content: center;
	clip-path: polygon(
		50% 0,
		61% 9%,
		75% 6%,
		82% 18%,
		96% 22%,
		95% 37%,
		104% 50%,
		95% 63%,
		96% 78%,
		82% 82%,
		75% 94%,
		61% 91%,
		50% 100%,
		39% 91%,
		25% 94%,
		18% 82%,
		4% 78%,
		5% 63%,
		-4% 50%,
		5% 37%,
		4% 22%,
		18% 18%,
		25% 6%,
		39% 9%
	);
	background: #2ea6e8;
}
.shop-desc {
	padding: 0 4px 12px;
}
.shop-desc__t {
	font-size: 12px;
	letter-spacing: 0.5px;
	color: #0c1116;
	font-weight: 600;
	margin-bottom: 2px;
}
.shop-desc__d {
	font-size: 13px;
	color: #8a97a4;
}
.more {
	color: #9aa6b2;
}
.search {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f0f2f5;
	border-radius: 16px;
	padding: 14px 16px;
	color: #9aa6b2;
	font-size: 15px;
	margin: 0 4px 12px;
}
.search.sm {
	padding: 8px 10px;
	font-size: 11px;
	border-radius: 10px;
	margin: 6px;
}
.search__ic {
	font-size: 17px;
}
.filters {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 4px 14px;
	overflow: hidden;
}
.filters.sm {
	gap: 4px;
	padding: 0 6px 8px;
}
.f-ic {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f0f2f5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex: none;
}
.f-tab {
	padding: 8px 14px;
	border-radius: 18px;
	background: #f7f8fa;
	font-size: 14px;
	color: #3a444e;
	white-space: nowrap;
}
.f-tab--on {
	border: 1.5px solid #0c1116;
	background: #fff;
	font-weight: 600;
}
.filters.sm .f-tab {
	padding: 4px 9px;
	font-size: 10px;
	border-radius: 10px;
}

/* ===================== LEADS ===================== */
.leads {
	position: relative;
	background: linear-gradient(180deg, #dbe8f7, #e8f1fc 55%, #eef4fb);
	padding: 0 24px 110px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.leads:empty {
	display: none;
}
.leads__stage {
	position: relative;
	width: 100%;
	max-width: 920px;
	display: flex;
	justify-content: center;
	padding-top: 40px;
}
.phone--catalog {
	width: 300px;
	z-index: 2;
}
.phone--catalog .phone__screen {
	min-height: 380px;
}
.grid2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding: 10px;
}
.grid2--tight {
	gap: 6px;
	padding: 7px;
}
.pcard {
	display: flex;
	flex-direction: column;
}
.pcard__img {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 1/1.15;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 8px;
}
.pcard__price {
	font-size: 14px;
	font-weight: 600;
	margin-top: 6px;
}
.pcard__price s {
	color: #9aa6b2;
	font-weight: 500;
}
.pcard__price b {
	color: var(--red);
}
.pcard__price.sm {
	font-size: 11px;
}
.pcard__name {
	font-size: 13px;
	color: #0c1116;
	line-height: 1.2;
	margin-top: 2px;
}
.pcard__name.sm {
	font-size: 10px;
}
.badge-disc {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 7px;
	border-radius: 8px;
}
.dots {
	background: rgba(255, 255, 255, 0.85);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #444;
}
.like {
	background: rgba(255, 255, 255, 0.85);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #444;
}
.mini-buy {
	margin-top: 5px;
	text-align: center;
	font-size: 10px;
	background: #f0f2f5;
	border-radius: 8px;
	padding: 4px;
	color: #3a444e;
}
.tabbar {
	margin-top: auto;
	display: flex;
	justify-content: space-around;
	padding: 10px 6px 16px;
	border-top: 1px solid #eef0f3;
	background: #fff;
}
.tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	font-size: 10px;
	color: #9aa6b2;
	position: relative;
}
.tab--on {
	color: #0c1116;
}
.tab--on .tab__ic {
	background: #eef0f3;
	border-radius: 10px;
}
.tab__ic {
	font-size: 16px;
	width: 38px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.badge2::after {
	content: "2";
	position: absolute;
	top: -4px;
	right: 6px;
	background: var(--red);
	color: #fff;
	font-size: 9px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* notifications */
.notif {
	position: absolute;
	z-index: 5;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border-radius: 18px;
	padding: 12px 16px;
	font-size: 13px;
	line-height: 1.35;
	box-shadow: 0 16px 40px rgba(20, 40, 70, 0.14);
	display: flex;
	gap: 10px;
	align-items: center;
	will-change: transform;
}
.notif b {
	font-weight: 700;
}
.notif__ico,
.lock-notif__ico {
	width: 34px;
	height: 34px;
	border-radius: 11px;
	background: #2ea6e8;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transform: rotate(-45deg);
	flex: none;
}
.notif__ico.tg span,
.tg {
}
.notif--left {
	left: 0;
	top: 60px;
}
.notif--right {
	right: 0;
	top: 30px;
	flex-direction: row;
}
.notif__time {
	color: #9aa6b2;
	font-size: 11px;
	align-self: flex-start;
}

.leads__text {
	font-family: var(--f-display);
	font-weight: 300;
	text-align: center;
	font-size: clamp(20px, 2.6vw, 32px);
	line-height: 1.35;
	color: #1a222b;
	margin: 60px 0 36px;
	max-width: 880px;
}
.hero__lead .leads__text {
	margin: 10px 0 26px;
}

/* ===================== WHY (dark) ===================== */
.why {
	background: var(--dark);
	color: #fff;
	padding: 20px 44px 80px;
	margin: 96px 18px 0;
	border-radius: 42px;
	overflow: hidden;
}
.why__head {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	padding: 60px 0 70px;
}
.why__title {
	font-family: var(--f-display);
	font-weight: 300;
	font-size: clamp(28px, 3.6vw, 50px);
	line-height: 1.08;
	letter-spacing: -0.5px;
}
.why__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 26px;
	text-align: right;
	color: #8b9096;
	font-size: 16px;
}
.why__grid {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.fcard {
	background: #0e0f11;
	border: 1px solid #1b1c1f;
	border-radius: 30px;
	padding: 34px;
	position: relative;
	overflow: hidden;
}
.fcard__media {
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	position: relative;
}
.fcard__media--image {
	height: 330px;
	margin: -8px -8px 30px;
	overflow: hidden;
	border-radius: 24px 24px 18px 18px;
	background:
		radial-gradient(80% 70% at 50% 18%, rgba(46, 166, 232, 0.14), transparent 68%), #101113;
	perspective: 1200px;
}
.fcard__media--image::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42%;
	background: linear-gradient(180deg, rgba(14, 15, 17, 0), #0e0f11 84%);
	pointer-events: none;
}
.fcard__image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	will-change: transform;
}
.fcard__image--1 {
	transform: translate3d(8px, 60px, 0) perspective(1000px) rotateY(-20deg) scale(1.1);
	transform-origin: center bottom;
}
.fcard__image--2 {
	transform: translate3d(18px, -30px, 0) perspective(1200px) rotateX(9deg) rotateY(-7deg)
		rotateZ(3deg) scale(2.2);
	transform-origin: center bottom;
}
.fcard__image--3 {
	object-position: center bottom;
	transform: translate3d(0, -50px, 0) perspective(1000px) rotateX(20deg) rotateY(-20deg) scale(2.2);
	transform-origin: center bottom;
}
.fcard__image--4 {
	object-position: center bottom;
	transform: translate3d(0, 140px, 0) perspective(1200px) rotateX(4deg) rotateY(3deg) scale(1.72);
	transform-origin: center bottom;
}
.fcard__ic {
	width: 34px;
	height: 34px;
	margin-bottom: 16px;
	color: #e7e9ec;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.fcard__ic svg {
	width: 20px;
	height: 20px;
	stroke-width: 1.8;
}
.fcard h3 {
	font-family: var(--f-display);
	font-weight: 400;
	font-size: 25px;
	margin-bottom: 14px;
	letter-spacing: -0.3px;
}
.fcard p {
	color: #8b9096;
	font-size: 16px;
	line-height: 1.5;
	max-width: 430px;
}

/* lock screen */
.phone__screen--lock {
	background: linear-gradient(160deg, #2a6b8f, #1b3c63 60%, #0e2038);
	min-height: 330px;
	padding: 18px 12px;
	color: #fff;
	position: relative;
}
.lock-time {
	text-align: center;
	font-size: 40px;
	font-weight: 300;
	margin: 30px 0 18px;
}
.lock-notif {
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
	border-radius: 16px;
	padding: 11px;
	display: flex;
	gap: 10px;
	font-size: 11px;
	line-height: 1.35;
}
.lock-notif span {
	opacity: 0.85;
}
.lock-bottom {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	padding: 0 28px;
	font-size: 18px;
}
.lock-bottom span {
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* home screen */
.phone__screen--home {
	background: linear-gradient(165deg, #1f6f8f, #274b86);
	min-height: 330px;
	padding: 20px 16px;
	justify-content: space-between;
}
.ios-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.app {
	aspect-ratio: 1;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.85);
	position: relative;
}
.app.a1 {
	background: #fff;
}
.app.a2 {
	background: #1c1c1e;
}
.app.a3 {
	background: #e8344e;
}
.app.a4 {
	background: #fff;
}
.app.a5 {
	background: #34c759;
}
.app.a6 {
	background: #0a84ff;
}
.app.a7 {
	background: #34c759;
}
.tg-app {
	background: linear-gradient(160deg, #41b3ef, #1f93d8);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transform: none;
}
.tg-app span {
	transform: rotate(-45deg);
}
.badge20 {
	position: absolute;
	top: -5px;
	right: -5px;
	background: var(--red);
	color: #fff;
	font-size: 10px;
	font-style: normal;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ios-dock {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	padding: 10px;
}

/* orders panel */
.panel {
	background: #f2f3f5;
	border-radius: 22px;
	padding: 16px;
	width: 280px;
	color: #0c1116;
	box-shadow: 0 30px 60px rgba(10, 20, 40, 0.3);
}
.panel--orders {
	background: #eceef1;
}
.panel__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}
.panel__head.sm {
	font-size: 13px;
}
.panel__filters {
	display: flex;
	gap: 6px;
	font-size: 11px;
	align-items: center;
	margin-bottom: 14px;
}
.panel__filters span {
	background: #fff;
	border-radius: 10px;
	padding: 5px 9px;
	color: #3a444e;
}
.panel__filters .on {
	background: #0c1116;
	color: #fff;
}
.order {
	background: #fff;
	border-radius: 16px;
	padding: 14px;
}
.order__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}
.order__top b {
	font-size: 24px;
}
.order__addr {
	font-size: 9px;
	color: #8a97a4;
	text-align: right;
	line-height: 1.4;
}
.order__row {
	display: flex;
	align-items: center;
	gap: 8px;
}
.thumb {
	width: 40px;
	height: 48px;
	border-radius: 8px;
	flex: none;
}
.tagpair {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 9px;
}
.tg-green {
	background: #34c759;
	color: #fff;
	padding: 3px 8px;
	border-radius: 8px;
	text-align: center;
}
.tg-blue {
	background: #0a84ff;
	color: #fff;
	padding: 3px 8px;
	border-radius: 8px;
	text-align: center;
}
.tg-dark {
	background: #0c1116;
	color: #fff;
	padding: 3px 8px;
	border-radius: 8px;
	text-align: center;
}
.order__sum {
	font-size: 9px;
	color: #3a444e;
	margin-left: auto;
	font-weight: 600;
}

/* ===================== STEPS ===================== */
.steps {
	background: linear-gradient(180deg, #eef4fb, #f6fafe);
	padding: 130px 90px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin: 0 auto;
}
.steps__copy h2 {
	font-family: var(--f-display);
	font-weight: 300;
	font-size: clamp(34px, 4.4vw, 58px);
	letter-spacing: -0.5px;
}
.steps__sub {
	color: #8a97a4;
	font-size: 20px;
	margin: 14px 0 40px;
}
.steps-tabs {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 440px;
}
.steps-tab {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	padding: 22px 28px;
	background: #e9eef3;
	border: none;
	border-radius: 22px;
	text-align: left;
	cursor: pointer;
	color: #4b5258;
	transition:
		transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
		background 0.38s ease,
		color 0.38s ease;
}
.steps-tab:hover {
	transform: translateY(-3px);
}
.steps-tab.is-active {
	color: #0c1116;
}
.steps-tab__progress {
	position: absolute;
	inset: 0 auto 0 0;
	width: 100%;
	height: 100%;
	background: #d0d5da;
	transform-origin: left center;
	transform: scaleX(var(--progress, 0));
	opacity: 1;
}
.steps-tab__icon {
	position: relative;
	z-index: 1;
	width: 28px;
	height: 28px;
	color: currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.steps-tab__icon svg {
	width: 26px;
	height: 26px;
	stroke-width: 2;
}
.steps-tab__copy {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}
.steps-tab__title {
	font-family: var(--f-display);
	font-size: 22px;
	line-height: 1.12;
	color: currentColor;
}
.steps__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 540px;
	overflow: visible;
}
.steps-showcase {
	position: relative;
	width: min(100%, 640px);
	min-height: 540px;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform;
}
.steps-showcase__glow {
	position: absolute;
	inset: 11% 12% 8%;
	border-radius: 38px;
	background:
		radial-gradient(70% 80% at 50% 24%, rgba(88, 177, 236, 0.26), rgba(88, 177, 236, 0) 74%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(219, 232, 244, 0.1));
	filter: blur(18px);
}
.steps-showcase__frame {
	position: relative;
	width: 100%;
	min-height: 540px;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1600px;
}
.steps-showcase__image {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.55s ease,
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform, opacity;
}
.steps-showcase__image.is-active {
	opacity: 1;
}
.steps-showcase__image--profile {
	width: min(560px, 100%);
	transform: translate3d(0, 30px, 0) perspective(1600px) rotateY(-12deg) rotateX(4deg) scale(0.96);
	transform-origin: center center;
}
.steps-showcase__image--profile.is-active {
	transform: translate3d(0, 12px, 0) perspective(1600px) rotateY(-12deg) rotateX(4deg) scale(1);
}
.steps-showcase__image--catalog {
	width: min(450px, 82%);
	transform: translate3d(4px, 36px, 0) perspective(1600px) rotateY(-10deg) rotateX(6deg) scale(0.94);
	transform-origin: center center;
}
.steps-showcase__image--catalog.is-active {
	transform: translate3d(4px, 18px, 0) perspective(1600px) rotateY(-10deg) rotateX(6deg) scale(0.98);
}
.steps-showcase__image--launch {
	width: min(316px, 58%);
	transform: translate3d(0, 58px, 0) perspective(1600px) rotateY(-8deg) rotateX(8deg) scale(0.94);
	transform-origin: center bottom;
}
.steps-showcase__image--launch.is-active {
	transform: translate3d(0, 34px, 0) perspective(1600px) rotateY(-20deg) rotateX(10deg) scale(0.98);
	border-radius: 13px;
}

/* ===================== LIVING ===================== */
.living {
	background: linear-gradient(180deg, #f6fafe, #eaf2fb);
	padding: 50px 44px 130px;
	overflow: hidden;
}
.living__title {
	font-family: var(--f-display);
	font-weight: 300;
	text-align: center;
	font-size: clamp(24px, 4.2vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.5px;
	margin-bottom: 80px;
}
.scatter {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 86px;
	min-height: 340px;
	flex-wrap: wrap;
	perspective: 1400px;
}
.scat {
	will-change: transform;
}
.living-shot {
	display: block;
	width: clamp(150px, 18vw, 240px);
	height: auto;
	filter: drop-shadow(0 28px 58px rgba(20, 40, 70, 0.2));
	transform-origin: center center;
}
.living-shot--top-left {
	width: clamp(170px, 20vw, 265px);
	transform: perspective(1400px) rotateY(9deg) rotateX(-3deg) rotateZ(-3deg);
}
.living-shot--top-center {
	width: clamp(130px, 14vw, 190px);
	transform: perspective(1400px) rotateX(-4deg) rotateZ(1deg);
}
.living-shot--top-right {
	width: clamp(185px, 23vw, 300px);
	transform: perspective(1400px) rotateY(-9deg) rotateX(-3deg) rotateZ(3deg);
}
.living-shot--bottom-left {
	width: clamp(110px, 12vw, 150px);
	transform: perspective(1400px) rotateY(10deg) rotateX(5deg) rotateZ(4deg);
}
.living-shot--bottom-center {
	width: clamp(130px, 14vw, 190px);
	transform: perspective(1400px) rotateX(5deg) rotateZ(-1deg);
}
.living-shot--bottom-right {
	width: clamp(136px, 15vw, 205px);
	transform: perspective(1400px) rotateY(-10deg) rotateX(5deg) rotateZ(-4deg);
}
.closeup {
	background: #fff;
	border-radius: 20px;
	padding: 8px;
	width: 280px;
	box-shadow: 0 30px 60px rgba(10, 20, 40, 0.22);
}
.closeup__actions {
	display: flex;
	justify-content: space-around;
	padding: 10px 0 4px;
}
.closeup__actions span {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #0c1116;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}
.mission {
	font-family: var(--f-mono);
	text-align: center;
	font-size: clamp(14px, 1.35vw, 18px);
	line-height: 1.9;
	color: #1a222b;
	margin: 104px auto;
	max-width: 820px;
}

/* dark setting panels */
.panel--dark {
	background: #101113;
	color: #fff;
}
.panel--dark .panel__title,
.panel--date .panel__title {
	font-size: 18px;
	display: block;
	margin-bottom: 14px;
}
.panel--dark .panel__head {
	color: #fff;
	font-size: 13px;
}
.dark-checks {
	color: #34c759;
}
.darkrow {
	background: #1c1d20;
	border-radius: 14px;
	padding: 13px 16px;
	margin-bottom: 8px;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.darkrow.light {
	background: #fff;
	color: #0c1116;
	justify-content: space-between;
}
.panel--date {
	background: #fff;
}
.dategrid {
	margin-bottom: 12px;
}
.dategrid .on {
	background: #eef4fb;
	border: 1px solid #2ea6e8;
	border-radius: 10px;
	padding: 8px 12px;
	font-size: 12px;
	display: inline-block;
}
.datepick {
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 13px;
	padding: 10px 0;
	color: #3a444e;
}
.datepick b {
	font-size: 20px;
	color: #0c1116;
}

/* ===================== PRICING ===================== */
.pricing {
	background: linear-gradient(180deg, #eaf2fb, #eef4fb);
	padding: 60px 44px 140px;
}
.pricing__title {
	font-family: var(--f-display);
	font-weight: 400;
	text-align: center;
	font-size: clamp(40px, 5vw, 68px);
	margin-bottom: 36px;
}
.toggle {
	display: flex;
	gap: 6px;
	background: #fff;
	border-radius: 999px;
	padding: 6px;
	width: max-content;
	margin: 0 auto 56px;
	box-shadow: 0 12px 34px rgba(20, 40, 70, 0.08);
}
.toggle__opt {
	border: none;
	background: transparent;
	font-family: var(--f-body);
	font-size: 17px;
	padding: 12px 26px;
	border-radius: 999px;
	cursor: pointer;
	color: #3a444e;
	display: flex;
	align-items: center;
	gap: 8px;
	transition:
		background 0.25s,
		color 0.25s;
}
.toggle__opt.is-active {
	background: #eef1f4;
	color: #0c1116;
	font-weight: 600;
}
.toggle__off {
	background: #0c1116;
	color: #fff;
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 999px;
}
.toggle__opt.is-active .toggle__off {
	background: #dfe3e8;
	color: #0c1116;
}
.plans {
	--plans-overlap: 28px;
	max-width: var(--section-width);
	margin: 0 auto;
	display: flex;
	align-items: stretch;
}
.plan {
	position: relative;
	width: calc((100% + var(--plans-overlap)) / 2);
	background: #fff;
	border-radius: 36px 0 0 36px;
	padding: 48px;
	box-shadow: 0 30px 70px rgba(20, 40, 70, 0.08);
}
.plan + .plan {
	margin-left: calc(var(--plans-overlap) * -1);
}
.plan__name {
	font-size: 21px;
	color: #0c1116;
	margin-bottom: 20px;
}
.plan__price {
	font-family: var(--f-display);
	font-weight: 600;
	font-size: 48px;
	color: #0c1116;
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 30px;
}
.plan__num {
	font-size: 56px;
}
.plan__per {
	font-family: var(--f-body);
	font-size: 18px;
	font-weight: 400;
	color: #8a97a4;
}
.plan__price--big {
	font-size: 52px;
}
.plan__cta {
	width: 100%;
	margin-bottom: 30px;
}
.plan__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
	border-top: 1px dashed #d6dde5;
	padding-top: 30px;
}
.plan__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 18px;
	color: #3a444e;
	position: relative;
}
.plan__list li::before {
	content: "";
	width: 17px;
	height: 17px;
	margin-top: 3px;
	border-radius: 50%;
	flex: none;
	background: linear-gradient(180deg, #42b8f1, #1f93d8);
}
.plan__list li::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	width: 4px;
	height: 8px;
	border-right: 1.7px solid #fff;
	border-bottom: 1.7px solid #fff;
	transform: rotate(45deg);
}
.plan--dark {
	background: #0c0d0f;
	color: #fff;
	z-index: 2;
	border-radius: 36px;
}
.plan--dark .plan__name {
	color: #c7ccd2;
}
.plan--dark .plan__price {
	color: #fff;
}
.plan--dark .plan__list {
	border-color: #2a2c30;
}
.plan--dark .plan__list li {
	color: #c7ccd2;
}
.plan__note {
	color: #9aa6b2;
	font-size: 16px;
	line-height: 1.55;
	margin-bottom: 26px;
}

/* ===================== CTA ===================== */
.cta {
	position: relative;
	background: radial-gradient(120% 90% at 50% 120%, #1f6fb8 0%, #0a2745 35%, #05080d 75%);
	min-height: 760px;
	overflow: hidden;
	margin: 96px 18px 18px;
	border-radius: 42px;
	display: flex;
	flex-direction: column;
}
.cta__stars {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.cta__beam {
	position: absolute;
	bottom: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	height: 80%;
	background: radial-gradient(
		ellipse at center,
		rgba(70, 170, 255, 0.5),
		rgba(70, 170, 255, 0) 60%
	);
	filter: blur(30px);
	z-index: 1;
	will-change: transform;
}
.cta__inner {
	position: relative;
	z-index: 3;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 170px 44px 50px;
}
.cta__title {
	font-family: var(--f-display);
	font-weight: 300;
	text-align: center;
	color: #fff;
	font-size: clamp(30px, 4.6vw, 58px);
	line-height: 1.08;
	letter-spacing: -0.5px;
	margin-bottom: 44px;
}
.foot {
	margin-top: auto;
	width: 100%;
	max-width: var(--section-width);
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	color: #7f8a98;
	font-size: 15px;
	padding-top: 90px;
}
.foot__col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.foot__col a:hover {
	color: #cfd6df;
}
.foot__col--center {
	text-align: center;
	align-items: center;
}
.foot__col--right {
	text-align: right;
	align-items: flex-end;
}
.foot__note {
	width: 100%;
	max-width: var(--section-width);
	margin: 34px auto 0;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(207, 214, 223, 0.88);
	font-size: 14px;
	line-height: 1.6;
}
.foot__note p + p {
	margin-top: 14px;
}
.pay {
	display: flex;
	justify-content: center;
	padding: 50px 0 10px;
	width: 100%;
	max-width: var(--section-width);
	margin: 0 auto;
}
.pay__logos {
	display: block;
	width: min(100%, 760px);
	height: auto;
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 8px;
	border-radius: 12px;
}

/* ===================== INFO PAGE ===================== */
.info-page {
	background: #eef5fa;
	color: #f2f5f8;
}
.info-page .nav {
	position: absolute;
}
.info-page .nav__pill {
	gap: 72px;
	padding: 8px 8px 8px 30px;
}
.info-page .nav__brand {
	font-size: 19px;
}
.info-hero {
	min-height: 640px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 130px 24px 120px;
	background:
		linear-gradient(rgba(207, 219, 229, 0.38) 1px, transparent 1px),
		linear-gradient(90deg, rgba(207, 219, 229, 0.38) 1px, transparent 1px),
		linear-gradient(180deg, #f5f9fc 0%, #edf5fa 100%);
	background-size:
		32px 32px,
		32px 32px,
		auto;
}
.info-hero__title {
	font-family: var(--f-display);
	font-weight: 300;
	font-size: clamp(40px, 5.6vw, 72px);
	line-height: 1.08;
	text-align: center;
	color: rgba(12, 17, 22, 0.68);
}
.info-legal {
	position: relative;
	margin-top: -28px;
	background: #0a0b0d;
	border-radius: 42px 42px 0 0;
	padding: 116px 24px 120px;
}
.info-legal__inner {
	width: min(100%, 1080px);
	margin: 0 auto;
}
.info-legal__text {
	margin: 0;
	font-family: var(--f-body);
	font-size: clamp(18px, 1.75vw, 28px);
	font-weight: 400;
	line-height: 1.42;
	white-space: pre-wrap;
	color: rgba(255, 255, 255, 0.9);
}
.info-doc {
	color: rgba(255, 255, 255, 0.9);
}
.info-doc__lead {
	font-family: var(--f-display);
	font-size: clamp(24px, 2.6vw, 34px);
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
}
.info-doc h2,
.info-doc h3 {
	margin: 36px 0 16px;
	color: #fff;
}
.info-doc h2 {
	font-family: var(--f-display);
	font-size: clamp(24px, 2.6vw, 34px);
	font-weight: 400;
	line-height: 1.2;
}
.info-doc h3 {
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 500;
}
.info-doc p,
.info-doc li {
	font-family: var(--f-body);
	font-size: clamp(18px, 1.75vw, 28px);
	font-weight: 400;
	line-height: 1.42;
}
.info-doc p + p {
	margin-top: 16px;
}
.info-doc ul {
	margin: 16px 0 0;
	padding-left: 24px;
}
.info-doc li + li {
	margin-top: 10px;
}
.info-docs-list {
	display: grid;
	gap: 18px;
}
.info-docs-list__item {
	display: block;
	padding: 24px 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.03);
	font-family: var(--f-display);
	font-size: clamp(20px, 2.2vw, 30px);
	line-height: 1.25;
	color: #fff;
	text-decoration: none;
	transition:
		border-color 0.25s ease,
		background-color 0.25s ease,
		transform 0.25s ease;
}
.info-docs-list__item:hover {
	border-color: rgba(92, 182, 255, 0.48);
	background: rgba(92, 182, 255, 0.08);
	transform: translateY(-2px);
}

/* ===================== REVEAL ===================== */
[data-reveal] {
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-in {
	opacity: 1;
	transform: none;
}
.r {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-in .r {
	opacity: 1;
	transform: none;
}
[data-reveal].is-in .r:nth-child(2) {
	transition-delay: 0.1s;
}
[data-reveal].is-in .r:nth-child(3) {
	transition-delay: 0.2s;
}

/* placeholders */
.ph {
	background:
		repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.035) 0 8px, transparent 8px 16px),
		linear-gradient(160deg, #d9dee6, #c2cad6);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ph--dress {
	background:
		linear-gradient(160deg, #6b4a3a, #3c281f),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 16px);
}
.ph--tee {
	background:
		linear-gradient(160deg, #d6c290, #b89a5c),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 8px, transparent 8px 16px);
}
.ph--glasses,
.ph--glasses2 {
	background:
		linear-gradient(160deg, #c9b8a6, #9b8775),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 8px, transparent 8px 16px);
}
.ph__tag {
	position: absolute;
	bottom: 8px;
	left: 8px;
	font-family: var(--f-mono);
	font-size: 9px;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(0, 0, 0, 0.25);
	padding: 2px 6px;
	border-radius: 6px;
	letter-spacing: 0.3px;
}
.pcard__img.ph {
	align-items: flex-start;
}
.thumb.ph::after,
.thumb.ph .ph__tag {
	display: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 880px) {
	.hero {
		overflow: hidden;
	}
	.hero__glow {
		width: min(720px, 120vw);
		height: min(720px, 120vw);
		top: 14%;
	}
	.nav {
		top: 14px;
		padding: 0 8px;
	}
	.nav__pill {
		width: 100%;
		max-width: none;
		justify-content: space-between;
		gap: 18px;
		padding: 10px 10px 10px 18px;
	}
	.nav__brand {
		font-size: 17px;
		min-width: 0;
	}
	.nav__brand-logo {
		width: 28px;
		height: 28px;
	}
	.nav__cta {
		font-size: 14px;
		padding: 12px 18px;
	}
	.nav.is-shrunk .nav__pill {
		gap: 14px;
		padding: 8px 8px 8px 16px;
		transform: translateY(0) scale(1);
	}
	.nav.is-shrunk .nav__brand {
		font-size: 16px;
	}
	.nav.is-shrunk .nav__brand-logo {
		width: 24px;
		height: 24px;
	}
	.nav.is-shrunk .nav__cta {
		font-size: 13px;
		padding: 10px 14px;
	}
	.nav__links {
		display: none;
	}
	.why__grid,
	.steps {
		grid-template-columns: 1fr;
	}
	.plans {
		flex-direction: column;
		gap: 18px;
	}
	.plan {
		width: 100%;
		border-radius: 30px;
	}
	.plan + .plan {
		margin-left: 0;
	}
	.toggle {
		width: min(100%, 420px);
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.toggle__opt {
		justify-content: center;
		min-width: 0;
		padding: 12px 14px;
		font-size: 15px;
	}
	.why__head {
		flex-direction: column;
	}
	.why__aside {
		align-items: flex-start;
		text-align: left;
	}
	.foot {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.foot__col,
	.foot__col--center,
	.foot__col--right {
		align-items: center;
		text-align: center;
	}
	.foot__note {
		text-align: center;
	}
	.scatter {
		gap: 30px;
	}
	.phone--tilt {
		transform: none;
	}
	.hero__title {
		font-size: clamp(32px, 9vw, 54px);
	}
	.hero__phone {
		width: min(70vw, 350px);
		min-width: 0;
	}
	.hero__message {
		width: clamp(204px, 48vw, 278px);
	}
	.why {
		margin: 72px 12px 0;
		border-radius: 34px;
	}
	.cta {
		margin: 72px 12px 12px;
		border-radius: 34px;
	}
	.steps {
		gap: 40px;
	}
	.steps-tabs {
		max-width: none;
	}
	.steps__visual {
		min-height: 460px;
	}
	.steps-showcase {
		min-height: 460px;
	}
	.steps-showcase__image--profile {
		width: min(500px, 100%);
	}
	.steps-showcase__image--catalog {
		width: min(460px, 94%);
	}
	.steps-showcase__image--launch {
		width: min(320px, 72%);
	}
	.info-page .nav__pill {
		gap: 34px;
	}
	.info-hero {
		min-height: 560px;
	}
	.info-legal {
		padding-top: 84px;
	}
}
@media (max-width: 520px) {
	.nav {
		top: 10px;
		padding: 0 6px;
	}
	.nav__pill {
		padding: 8px 8px 8px 14px;
		gap: 12px;
		border-radius: 22px;
	}
	.nav__brand {
		gap: 10px;
		font-size: 15px;
	}
	.nav__brand-logo {
		width: 24px;
		height: 24px;
	}
	.nav__cta {
		font-size: 12px;
		padding: 10px 12px;
	}
	.nav.is-shrunk .nav__pill {
		padding: 7px 7px 7px 12px;
		gap: 10px;
	}
	.nav.is-shrunk .nav__brand {
		font-size: 14px;
	}
	.nav.is-shrunk .nav__brand-logo {
		width: 22px;
		height: 22px;
	}
	.nav.is-shrunk .nav__cta {
		font-size: 12px;
		padding: 9px 11px;
	}
	.hero {
		padding: 132px 18px 72px;
		overflow: hidden;
	}
	.hero__inner {
		gap: 34px;
	}
	.hero__glow {
		width: min(520px, 132vw);
		height: min(520px, 132vw);
		top: 10%;
		filter: blur(18px);
	}
	.hero__phone {
		width: min(78vw, 310px);
		min-width: 0;
	}
	.hero__messages {
		display: none;
	}
	.hero__message {
		width: 198px;
	}
	.why,
	.steps,
	.living,
	.pricing {
		padding-left: 18px;
		padding-right: 18px;
	}
	.why {
		margin: 56px 8px 0;
		border-radius: 28px;
	}
	.cta {
		margin: 56px 8px 8px;
		border-radius: 28px;
	}
	.cta__inner {
		padding: 112px 18px 36px;
	}
	.steps {
		padding-top: 96px;
		padding-bottom: 96px;
		gap: 28px;
	}
	.steps__sub {
		margin-bottom: 28px;
	}
	.steps-tab {
		padding: 18px 20px;
		border-radius: 18px;
		gap: 14px;
	}
	.steps-tab__icon {
		width: 24px;
		height: 24px;
	}
	.steps-tab__icon svg {
		width: 22px;
		height: 22px;
	}
	.steps-tab__title {
		font-size: 17px;
	}
	.steps__visual {
		min-height: 360px;
	}
	.steps-showcase {
		min-height: 360px;
	}
	.steps-showcase__glow {
		inset: 14% 8% 12%;
	}
	.steps-showcase__image--profile {
		width: 100%;
	}
	.steps-showcase__image--catalog {
		width: 95%;
	}
	.steps-showcase__image--launch {
		width: 62%;
	}
	.plan {
		padding: 26px 22px;
		border-radius: 26px;
	}
	.plan__name {
		font-size: 18px;
		margin-bottom: 16px;
	}
	.plan__price {
		flex-wrap: wrap;
		gap: 6px 8px;
		font-size: 30px;
		margin-bottom: 22px;
		line-height: 1.08;
	}
	.plan__num {
		font-size: 38px;
	}
	.plan__per {
		width: 100%;
		font-size: 15px;
	}
	.plan__price--big {
		font-size: 34px;
		line-height: 1.08;
	}
	.plan__list {
		padding-top: 22px;
		gap: 14px;
	}
	.plan__list li {
		font-size: 16px;
	}
	.plan__note {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.toggle {
		width: 100%;
		margin-bottom: 34px;
		padding: 4px;
		gap: 4px;
		border-radius: 22px;
	}
	.toggle__opt {
		padding: 10px 8px;
		font-size: 13px;
		gap: 6px;
		flex-wrap: wrap;
	}
	.toggle__off {
		font-size: 10px;
		padding: 2px 6px;
	}
	.info-page .nav__pill {
		padding-left: 22px;
		gap: 16px;
	}
	.info-page .nav__brand {
		font-size: 16px;
	}
	.info-page .nav__cta {
		font-size: 13px;
		padding: 9px 14px;
	}
	.info-hero {
		min-height: 520px;
		padding: 112px 18px 88px;
	}
	.info-hero__title {
		font-size: clamp(22px, 7.2vw, 32px);
		line-height: 1.16;
		max-width: 100%;
		text-wrap: balance;
		overflow-wrap: anywhere;
		word-break: break-word;
	}
	.info-legal {
		margin-top: -22px;
		border-radius: 30px 30px 0 0;
		padding: 64px 18px 88px;
	}
	.info-legal__text {
		font-size: 17px;
		line-height: 1.48;
	}
	.info-doc h2 {
		margin-top: 30px;
	}
	.info-doc p,
	.info-doc li {
		font-size: 17px;
		line-height: 1.48;
	}
	.info-docs-list__item {
		padding: 20px 18px;
		border-radius: 18px;
	}
	.notif {
		font-size: 11px;
		padding: 9px 11px;
	}
	.notif--left {
		left: -6px;
	}
	.notif--right {
		right: -6px;
	}
}
@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto;
	}
	[data-reveal],
	.r {
		transition: none;
		opacity: 1;
		transform: none;
	}
	.hero__message {
		opacity: 1;
	}
	.hero__message--left {
		transform: translate3d(-88%, -10px, 0);
	}
	.hero__message--right {
		transform: translate3d(88%, -10px, 0);
	}
}
