/* ════════════════════════════════════════════════════════════════
   YOKI LANDING — премиум минимализм
   © 2026 chudo_boy
   ════════════════════════════════════════════════════════════════ */

:root {
	--bg:        #ffffff;
	--bg-soft:   #fafaf9;
	--bg-card:   #ffffff;
	--bg-ink:    #0a0a0a;
	--ink:       #0a0a0a;
	--ink-2:     #2a2a2a;
	--ink-3:     #525252;
	--muted:     #8a8a8a;
	--faint:     #d4d4d4;
	--line:      #ededed;
	--line-2:    #f0f0ee;
	--ok:        #16a85b;
	--warn:      #c47800;
	--accent:    #0a0a0a;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-feature-settings: 'cv11', 'ss01';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: -0.011em;
}

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

img { display: block; max-width: 100%; }
svg { display: block; }

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
}


/* ═══════════════ NAV ═══════════════ */
.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 32px;
	max-width: 1180px;
	margin: 0 auto;
	gap: 32px;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.02em;
}
.nav-brand img {
	width: 30px;
	height: 30px;
}
.nav-links {
	display: flex;
	gap: 32px;
	font-size: 14px;
	color: var(--ink-3);
}
.nav-links a {
	transition: color 0.15s;
}
.nav-links a:hover {
	color: var(--ink);
}
.nav-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.nav-login {
	font-size: 14px;
	color: var(--ink-3);
	font-weight: 500;
	transition: color 0.15s;
}
.nav-login:hover {
	color: var(--ink);
}
.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: var(--ink);
	color: white;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 500;
	transition: all 0.2s;
}
.nav-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.nav-cta-arrow {
	font-size: 11px;
	opacity: 0.7;
}
.nav-user {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px 6px 6px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 13px;
	color: var(--ink-2);
	font-weight: 500;
	transition: all 0.2s;
}
.nav-user:hover {
	background: white;
	border-color: var(--ink);
}
.nav-user-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--ink);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}


/* ═══════════════ HERO ═══════════════ */
.hero {
	padding: 60px 32px 100px;
	overflow: hidden;
	position: relative;
}
.hero-inner {
	max-width: 1180px;
	margin: 0 auto;
	text-align: center;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 12.5px;
	color: var(--ink-3);
	font-weight: 500;
	margin-bottom: 32px;
}
.pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ok);
	box-shadow: 0 0 0 3px rgba(22, 168, 91, 0.18);
	animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(22, 168, 91, 0.18); }
	50%      { box-shadow: 0 0 0 6px rgba(22, 168, 91, 0.10); }
}

.hero-title {
	font-size: clamp(48px, 8.5vw, 120px);
	font-weight: 800;
	line-height: 0.96;
	letter-spacing: -0.045em;
	margin-bottom: 28px;
	color: var(--ink);
}
.hero-title-accent {
	color: var(--muted);
}

.hero-sub {
	font-size: clamp(16px, 1.5vw, 19px);
	color: var(--ink-3);
	max-width: 640px;
	margin: 0 auto 44px;
	line-height: 1.55;
}

.hero-ctas {
	display: inline-flex;
	gap: 12px;
	margin-bottom: 88px;
	flex-wrap: wrap;
	justify-content: center;
}


/* ─── Кнопки ─── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 22px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 500;
	transition: all 0.2s;
	cursor: pointer;
	border: 1px solid transparent;
	white-space: nowrap;
}
.btn-lg {
	padding: 16px 28px;
	font-size: 15.5px;
}
.btn-primary {
	background: var(--ink);
	color: white;
}
.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.btn-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}
.btn-ghost:hover {
	background: var(--bg-soft);
	border-color: var(--faint);
}
.btn-light {
	background: white;
	color: var(--ink);
}
.btn-light:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.btn-arrow {
	transition: transform 0.2s;
}
.btn:hover .btn-arrow {
	transform: translateX(2px);
}


/* ═══════════════ HERO MOCKUP ═══════════════ */
.hero-mockup {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}
.hero-mockup-glow {
	position: absolute;
	inset: -40px 0 -100px 0;
	z-index: -1;
	background: radial-gradient(ellipse at center,
		rgba(0, 0, 0, 0.08) 0%,
		transparent 70%);
	filter: blur(40px);
	pointer-events: none;
}

.mockup-window {
	background: white;
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(0,0,0,0.04),
		0 4px 12px rgba(0,0,0,0.04),
		0 24px 60px rgba(0,0,0,0.10),
		0 60px 120px rgba(0,0,0,0.08);
}
.mockup-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 18px;
	background: var(--bg-soft);
	border-bottom: 1px solid var(--line);
}
.mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--faint);
}
.mockup-dot[data-c="r"] { background: #ff5f57; }
.mockup-dot[data-c="y"] { background: #febc2e; }
.mockup-dot[data-c="g"] { background: #28c840; }
.mockup-url {
	margin-left: 14px;
	font-size: 12px;
	color: var(--muted);
	font-weight: 500;
}
.mockup-body {
	padding: 32px;
	background: var(--bg-soft);
}
.mockup-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 18px;
}
.mockup-col {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.mockup-card {
	background: white;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 20px;
}
.mockup-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}
.mockup-tag {
	display: inline-block;
	padding: 3px 8px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 6px;
	font-size: 10.5px;
	color: var(--ink-3);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.mockup-card-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-2);
}

.mockup-device {
	display: flex;
	gap: 16px;
	align-items: center;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line-2);
	margin-bottom: 16px;
}
.mockup-phone svg {
	flex-shrink: 0;
}
.mockup-device-info {
	flex: 1;
	min-width: 0;
}
.mockup-device-model {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 2px;
}
.mockup-device-sub {
	font-size: 12.5px;
	color: var(--ink-3);
	margin-bottom: 2px;
}
.mockup-device-meta {
	font-size: 11px;
	color: var(--muted);
	font-variant-numeric: tabular-nums;
}

.mockup-rows {
	display: flex;
	flex-direction: column;
}
.mockup-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid var(--line-2);
	font-size: 13px;
}
.mockup-row:last-child { border-bottom: none; }
.mockup-row-label {
	color: var(--ink-3);
}
.mockup-row-val {
	font-weight: 500;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.mockup-row-val.ok {
	color: var(--ok);
}
.dot-ok {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ok);
}


/* ─── AI mockup ─── */
.mockup-card-ai {
	background: white;
}
.mockup-ai-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line-2);
	margin-bottom: 14px;
}
.mockup-ai-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--bg-soft);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.mockup-ai-avatar img {
	width: 24px;
	height: 24px;
}
.mockup-ai-name {
	font-size: 13px;
	font-weight: 600;
}
.mockup-ai-grade {
	font-size: 11.5px;
	color: var(--muted);
}
.grade-A {
	display: inline-block;
	padding: 1px 7px;
	background: var(--ok);
	color: white;
	border-radius: 5px;
	font-weight: 700;
	font-size: 11px;
	margin-left: 4px;
}
.mockup-ai-text {
	font-size: 13px;
	color: var(--ink-2);
	line-height: 1.55;
}
.mockup-ai-text b {
	background: rgba(22, 168, 91, 0.13);
	color: var(--ok);
	padding: 1px 6px;
	border-radius: 4px;
	font-weight: 600;
}


/* ─── Price mockup ─── */
.mockup-card-price {}
.mockup-price-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line-2);
	margin-bottom: 12px;
}
.mockup-price-label {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
	font-weight: 600;
}
.mockup-price-big {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}
.mockup-price-mid {
	font-size: 18px;
	font-weight: 500;
	color: var(--ink-3);
	font-variant-numeric: tabular-nums;
}
.mockup-price-aside { text-align: right; }
.mockup-price-bar {
	height: 4px;
	background: var(--bg-soft);
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 8px;
}
.mockup-price-bar-fill {
	height: 100%;
	background: var(--ink);
	border-radius: 999px;
}
.mockup-price-meta {
	font-size: 11.5px;
	color: var(--muted);
}


/* ═══════════════ SECTIONS ═══════════════ */
.section-label {
	display: inline-block;
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 18px;
}
.section-title {
	font-size: clamp(36px, 5.5vw, 68px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.035em;
	margin-bottom: 64px;
	color: var(--ink);
}


/* ═══════════════ FEATURES GRID ═══════════════ */
.features {
	padding: 140px 0;
	border-top: 1px solid var(--line);
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
}
.feature {
	background: white;
	padding: 40px 32px;
	transition: background 0.2s;
}
.feature:hover {
	background: var(--bg-soft);
}
.feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 11px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	color: var(--ink);
}
.feature h3 {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}
.feature p {
	font-size: 14.5px;
	color: var(--ink-3);
	line-height: 1.55;
}


/* ═══════════════ FEATURE-ROWS (асимметричные) ═══════════════ */
.feat-row {
	padding: 120px 0;
	border-top: 1px solid var(--line);
}
.feat-row-inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 80px;
	align-items: center;
}
.feat-row-rev .feat-row-inner {
	direction: rtl;
}
.feat-row-rev .feat-row-inner > * {
	direction: ltr;
}

.feat-title {
	font-size: clamp(34px, 4.4vw, 56px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.035em;
	margin-bottom: 22px;
}
.feat-desc {
	font-size: 17px;
	color: var(--ink-3);
	line-height: 1.6;
	margin-bottom: 28px;
	max-width: 480px;
}
.feat-bullets {
	list-style: none;
	max-width: 480px;
}
.feat-bullets li {
	padding: 14px 0 14px 24px;
	font-size: 15px;
	color: var(--ink-3);
	border-bottom: 1px solid var(--line);
	line-height: 1.5;
	position: relative;
}
.feat-bullets li:last-child {
	border-bottom: none;
}
.feat-bullets li::before {
	content: "→";
	position: absolute;
	left: 0;
	top: 14px;
	color: var(--ink);
	font-weight: 600;
}
.feat-bullets b {
	color: var(--ink);
	font-weight: 600;
}


/* ─── Visual cards (правая часть row-ов) ─── */
.vc {
	background: white;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 28px;
	box-shadow:
		0 1px 0 rgba(0,0,0,0.03),
		0 8px 24px rgba(0,0,0,0.05),
		0 32px 80px rgba(0,0,0,0.06);
}

.vc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line-2);
	margin-bottom: 18px;
}
.vc-eyebrow {
	font-size: 11.5px;
	color: var(--ok);
	background: rgba(22, 168, 91, 0.10);
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}
.vc-title {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink);
}

.vc-status-list {
	display: flex;
	flex-direction: column;
}
.vc-status-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--line-2);
	font-size: 13.5px;
}
.vc-status-item:last-child { border-bottom: none; }
.vc-label {
	color: var(--muted);
}
.vc-val {
	font-weight: 500;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}
.vc-val.ok   { color: var(--ok); }
.vc-val.warn { color: var(--warn); }
.vc-val.mono {
	font-family: 'SF Mono', Menlo, Consolas, monospace;
	font-size: 12.5px;
	color: var(--ink-2);
}


/* ─── AI card ─── */
.vc-ai-head {
	display: flex;
	gap: 12px;
	align-items: center;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line-2);
	margin-bottom: 16px;
}
.vc-ai-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg-soft);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vc-ai-avatar img {
	width: 30px;
	height: 30px;
}
.vc-ai-name {
	font-size: 14px;
	font-weight: 600;
}
.vc-ai-grade {
	font-size: 12px;
	color: var(--muted);
	margin-top: 2px;
}

.vc-ai-section {
	margin-bottom: 16px;
}
.vc-ai-section-title {
	font-size: 12px;
	color: var(--ok);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.vc-ai-bullet {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 0;
	font-size: 13.5px;
	color: var(--ink-2);
}

.vc-ai-review {
	padding: 14px;
	background: var(--bg-soft);
	border-radius: 10px;
	font-size: 13.5px;
	color: var(--ink-2);
	line-height: 1.55;
	margin-bottom: 12px;
}
.vc-ai-tag {
	background: rgba(22, 168, 91, 0.13);
	color: var(--ok);
	padding: 1px 7px;
	border-radius: 4px;
	font-weight: 600;
}

.vc-ai-tip {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 12px 14px;
	background: rgba(196, 120, 0, 0.07);
	border: 1px solid rgba(196, 120, 0, 0.20);
	border-radius: 10px;
	font-size: 12.5px;
	color: var(--ink-2);
	line-height: 1.5;
}
.vc-ai-tip-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--warn);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	margin-top: 1px;
}


/* ─── Market card ─── */
.vc-market-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line-2);
	margin-bottom: 8px;
}
.vc-market-title {
	font-size: 14.5px;
	font-weight: 600;
}
.vc-market-meta {
	font-size: 11.5px;
	color: var(--muted);
}
.vc-market-table {
	width: 100%;
	border-collapse: collapse;
	font-variant-numeric: tabular-nums;
}
.vc-market-table th {
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: right;
	padding: 12px 6px 10px;
}
.vc-market-table th:first-child {
	text-align: left;
}
.vc-market-table td {
	padding: 11px 6px;
	font-size: 13.5px;
	border-top: 1px solid var(--line-2);
	text-align: right;
	color: var(--ink-2);
}
.vc-market-table td:first-child {
	text-align: left;
	font-weight: 500;
	color: var(--ink);
}


/* ═══════════════ STATS ═══════════════ */
.stats {
	padding: 100px 0;
	border-top: 1px solid var(--line);
	background: var(--bg-soft);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
}
.stat {
	background: white;
	padding: 44px 32px;
	text-align: left;
}
.stat-num {
	font-size: clamp(40px, 4.5vw, 64px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 10px;
	font-variant-numeric: tabular-nums;
}
.stat-num-unit {
	font-size: 0.5em;
	color: var(--muted);
	font-weight: 600;
	margin-left: 4px;
	letter-spacing: -0.02em;
}
.stat-label {
	font-size: 13.5px;
	color: var(--ink-3);
	line-height: 1.4;
}


/* ═══════════════ HOW IT WORKS ═══════════════ */
.how {
	padding: 140px 0;
}
.how-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.how-step {
	background: white;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 36px 28px;
	transition: all 0.2s;
}
.how-step:hover {
	border-color: var(--ink);
	transform: translateY(-2px);
}
.how-step-num {
	font-size: 13px;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 22px;
}
.how-step h3 {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}
.how-step p {
	font-size: 14.5px;
	color: var(--ink-3);
	line-height: 1.55;
	margin-bottom: 20px;
}
.how-step-time {
	font-size: 12px;
	color: var(--ok);
	background: rgba(22, 168, 91, 0.08);
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 600;
}


/* ═══════════════ PRICING (3 tiers) ═══════════════ */
.pricing {
	padding: 140px 0;
	border-top: 1px solid var(--line);
	background: var(--bg-soft);
}
.price-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

.price-tier {
	position: relative;
	background: white;
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	transition: all 0.2s;
}
.price-tier:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 50px rgba(0,0,0,0.07);
}

/* Рекомендованный тариф — приподнят, тёмная граница */
.price-tier-featured {
	background: white;
	border: 2px solid var(--ink);
	transform: translateY(-8px);
	box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}
.price-tier-featured:hover {
	transform: translateY(-10px);
	box-shadow: 0 32px 70px rgba(0,0,0,0.14);
}

.price-tier-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 14px;
	background: var(--ink);
	color: white;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

/* Тариф «Навсегда» — тёмный, премиум-вид */
.price-tier-lifetime {
	background: var(--bg-ink);
	color: white;
	border-color: var(--bg-ink);
}
.price-tier-lifetime:hover {
	box-shadow: 0 24px 50px rgba(0,0,0,0.25);
}

.price-tier-head {
	margin-bottom: 28px;
}
.price-tier-name {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}
.price-tier-sub {
	font-size: 13px;
	color: var(--muted);
}
.price-tier-lifetime .price-tier-sub {
	color: rgba(255,255,255,0.55);
}

.price-tier-amount {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 8px;
	font-variant-numeric: tabular-nums;
}
.price-tier-currency {
	font-size: 24px;
	color: var(--muted);
	font-weight: 600;
}
.price-tier-lifetime .price-tier-currency {
	color: rgba(255,255,255,0.55);
}
.price-tier-num {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
}
.price-tier-period {
	font-size: 14px;
	color: var(--muted);
	margin-left: 2px;
	font-weight: 500;
}
.price-tier-lifetime .price-tier-period {
	color: rgba(255,255,255,0.55);
}

.price-tier-note {
	font-size: 12.5px;
	color: var(--muted);
	margin-bottom: 24px;
	min-height: 32px;
	line-height: 1.45;
}
.price-tier-lifetime .price-tier-note {
	color: rgba(255,255,255,0.55);
}

.price-tier-features {
	list-style: none;
	margin-bottom: 28px;
	flex: 1;
}
.price-tier-features li {
	padding: 9px 0 9px 22px;
	font-size: 13.5px;
	color: var(--ink-2);
	position: relative;
	border-bottom: 1px solid var(--line-2);
}
.price-tier-features li:last-child {
	border-bottom: none;
}
.price-tier-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 12px;
	height: 1px;
	background: var(--ink);
}
.price-tier-lifetime .price-tier-features li {
	color: rgba(255,255,255,0.85);
	border-bottom-color: rgba(255,255,255,0.10);
}
.price-tier-lifetime .price-tier-features li::before {
	background: rgba(255,255,255,0.85);
}

/* Дополнительная вариация кнопки */
.btn-block {
	width: 100%;
	justify-content: center;
}
.btn-dark {
	background: white;
	color: var(--ink);
}
.btn-dark:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.price-grid-note {
	text-align: center;
	margin-top: 36px;
	font-size: 13px;
	color: var(--muted);
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}


/* ═══════════════ FINAL CTA ═══════════════ */
.cta {
	background: var(--bg-ink);
	color: white;
	padding: 140px 0;
	position: relative;
	overflow: hidden;
}
.cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,255,255,0.08), transparent 60%);
	pointer-events: none;
}
.cta-inner {
	text-align: center;
	position: relative;
}
.cta-title {
	font-size: clamp(40px, 6vw, 84px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
	margin-bottom: 24px;
}
.cta-sub {
	font-size: clamp(15px, 1.5vw, 18px);
	color: rgba(255,255,255,0.6);
	max-width: 580px;
	margin: 0 auto 44px;
	line-height: 1.55;
}


/* ═══════════════ FOOTER ═══════════════ */
.footer {
	padding: 80px 0 40px;
	background: white;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1.4fr 1fr;
	gap: 60px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--line);
}
.footer-brand p {
	font-size: 13px;
	color: var(--muted);
	max-width: 280px;
	line-height: 1.55;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	margin-bottom: 16px;
}
.footer-logo img {
	width: 28px;
	height: 28px;
}
.footer-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-col h5 {
	font-size: 11.5px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.footer-col a {
	font-size: 14px;
	color: var(--ink-3);
	transition: color 0.15s;
}
.footer-col a:hover {
	color: var(--ink);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	font-size: 12.5px;
	color: var(--muted);
}


/* ═══════════════ АДАПТИВ ═══════════════ */
@media (max-width: 900px) {
	.nav { padding: 14px 20px; gap: 16px; }
	.nav-links { display: none; }
	.hero { padding: 32px 20px 60px; }
	.container { padding: 0 20px; }
	.hero-ctas { width: 100%; flex-direction: column; }
	.hero-ctas .btn { justify-content: center; }
	.mockup-body { padding: 16px; }
	.mockup-grid { grid-template-columns: 1fr; }
	.features { padding: 80px 0; }
	.features-grid { grid-template-columns: 1fr; }
	.feat-row { padding: 80px 0; }
	.feat-row-inner { grid-template-columns: 1fr; gap: 40px; }
	.feat-row-rev .feat-row-inner { direction: ltr; }
	.stats { padding: 60px 0; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.stat { padding: 30px 24px; }
	.how { padding: 80px 0; }
	.how-steps { grid-template-columns: 1fr; }
	.pricing { padding: 80px 0; }
	.price-grid { grid-template-columns: 1fr; gap: 16px; }
	.price-tier-featured { transform: none; }
	.price-tier-featured:hover { transform: translateY(-2px); }
	.price-tier { padding: 28px 24px; }
	.cta { padding: 80px 0; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer-brand { grid-column: 1 / -1; }
	.footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 540px) {
	.stats-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════
   MOTION — лёгкая «жизнь» поверх статики
   ════════════════════════════════════════════════════════════════ */

/* nav при скролле превращается в парящую полупрозрачную «таблетку» */
.nav { transition: background .3s, box-shadow .3s, border-radius .3s, top .3s, padding .3s; }
.nav.scrolled {
	top: 10px;
	background: rgba(255,255,255,0.55);
	-webkit-backdrop-filter: saturate(180%) blur(26px);
	backdrop-filter: saturate(180%) blur(26px);
	border-radius: 20px;
	box-shadow: 0 14px 44px -18px rgba(0,0,0,0.28), 0 1px 0 rgba(255,255,255,0.7) inset;
	padding: 12px 24px;
}

/* визуальные карточки приподнимаются */
.vc { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.vc:hover { transform: translateY(-4px); }

/* иконка фичи оживает на ховере */
.feature-icon { transition: transform .3s cubic-bezier(.2,.8,.2,1), background .2s, border-color .2s; }
.feature:hover .feature-icon { transform: translateY(-3px) scale(1.04); border-color: var(--ink); }

/* «живая» точка у рыночных данных */
.vc-market-meta::before {
	content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
	background: var(--ok); margin-right: 6px; vertical-align: 1px;
}

/* базовая ширина прайс-бара (на случай reduced-motion) */
.mockup-price-bar-fill { width: 80%; }

@media (prefers-reduced-motion: no-preference) {

	/* появление hero */
	.pill        { animation: yFadeUp .7s cubic-bezier(.22,.7,.3,1) both; }
	.hero-sub    { animation: yFadeUp .9s cubic-bezier(.22,.7,.3,1) .5s both; }
	.hero-ctas   { animation: yFadeUp .9s cubic-bezier(.22,.7,.3,1) .62s both; }
	.hero-mockup { animation: yFadeUpBig 1s cubic-bezier(.22,.7,.3,1) .74s both; }

	/* заголовок — пословное проявление с мягким расфокусом (split вешает landing.js) */
	.hero-title .hw { display: inline-block; }
	.hero-title.split .hw {
		opacity: 0; filter: blur(12px); transform: translateY(16px);
		transition: opacity .75s cubic-bezier(.22,.7,.3,1), filter .75s cubic-bezier(.22,.7,.3,1), transform .75s cubic-bezier(.22,.7,.3,1);
	}
	.hero-title.split .hw.in { opacity: 1; filter: blur(0); transform: none; }
	@keyframes yFadeUp    { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
	@keyframes yFadeUpBig { from { opacity: 0; transform: translateY(40px) scale(.99); } to { opacity: 1; transform: none; } }

	/* прайс-бар заполняется */
	.mockup-price-bar-fill { animation: yBar 1.3s cubic-bezier(.2,.8,.2,1) 1s both; }
	@keyframes yBar { from { width: 0; } to { width: 80%; } }

	/* статусы в hero-мокапе мягко «дышат» */
	.mockup-row-val.ok .dot-ok { animation: yDot 2.8s ease-in-out infinite; }
	.vc-market-meta::before     { animation: yDot 2.2s ease-in-out infinite; }
	@keyframes yDot { 0%,100% { box-shadow: 0 0 0 0 rgba(22,168,91,.4); } 50% { box-shadow: 0 0 0 4px rgba(22,168,91,0); } }

	/* появление секций при скролле (класс вешает landing.js) */
	.reveal { opacity: 0; transform: translateY(22px);
		transition: opacity .7s cubic-bezier(.22,.7,.3,1), transform .7s cubic-bezier(.22,.7,.3,1); }
	.reveal.in { opacity: 1; transform: none; }
}

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

/* ── Окно с настоящим экраном приложения (iframe) ── */
.mockup-app {
	position: relative;
	width: 100%;
	aspect-ratio: 1100 / 720;
	overflow: hidden;
	background: var(--bg-soft);
}
.mockup-frame {
	position: absolute;
	top: 0; left: 0;
	width: 1100px;
	height: 720px;
	border: 0;
	transform-origin: top left;
	/* JS подставит точный scale; это запас, чтобы не «прыгало» до загрузки */
	transform: scale(0.9);
}
