:root {
	--navy: #0d0d0d;
	--navy-2: #181818;
	--red: #2f4de0;
	--red-d: #2440be;
	--gold: #d9f04a;
	--blue: #2f4de0;
	--orange: #ff4b26;
	--orange-d: #e03a16;
	--lime: #d9f04a;
	--bg: #f2efe9;
	--card: #ffffff;
	--ink: #0a0a0a;
	--muted: #5f5c54;
	--line: #e3dfd3;
	--r: 16px;
	--rb: 10px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* overflow-x: ТОЛЬКО clip, не hidden.
   hidden на html/body делает страницу собственным контейнером прокрутки,
   и любой position:sticky внутри перестаёт закрепляться — блок уезжает,
   а его хвост остаётся пустым экраном. clip обрезает так же, но прокрутку
   не перехватывает и sticky не ломает. */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	max-width: 100%;
	overflow-x: clip;
}
body {
	font-family: "Barlow", Arial, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.55;
	font-size: 17px;
	max-width: 100%;
	overflow-x: clip;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
.wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}
h1,
h2,
.disp {
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.02;
}
.mono {
	font-family: "IBM Plex Mono", monospace;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--red);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	padding: 16px 32px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition:
		transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.2s ease-out,
		box-shadow 0.2s ease-out;
	will-change: transform;
	font-family: inherit;
}
.btn:hover {
	background: var(--red-d);
	box-shadow: 0 10px 26px rgba(47, 77, 224, 0.35);
}
.btn:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 2px;
}
.btn-ghost {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #fff;
}
.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}
.sec {
	padding: 110px 0;
}
.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--red);
	margin-bottom: 18px;
}
.kicker::before {
	content: "";
	width: 34px;
	height: 2px;
	background: var(--red);
}
.sec-title {
	font-size: clamp(40px, 6vw, 76px);
	font-weight: 700;
	margin-bottom: 14px;
}
.sec-sub {
	color: var(--muted);
	margin-bottom: 48px;
	max-width: 640px;
	font-size: 18px;
}

/* Появления */
/* Прятать блоки до появления разрешено ТОЛЬКО когда скрипт жив и сам поставил
   класс anim на body. Если скрипт упал — ничего не прячется, страница читается.
   Раньше было наоборот: блоки скрыты по умолчанию, и любая ошибка в JS
   оставляла всю страницу ниже первого экрана пустой. */
body.anim .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
body.anim .reveal.in {
	opacity: 1;
	transform: none;
}
.line-mask {
	display: block;
	overflow: hidden;
}
.line-mask > span {
	display: block;
	transform: translateY(110%);
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.in .line-mask > span {
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		transition: none !important;
		animation: none !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
	.line-mask > span {
		transform: none;
	}
}

/* Курсор-точка */
.cursor {
	position: fixed;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--red);
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition:
		width 0.2s,
		height 0.2s,
		opacity 0.2s;
	opacity: 0;
	mix-blend-mode: multiply;
}
body:hover .cursor {
	opacity: 0.85;
}
.cursor.big {
	width: 44px;
	height: 44px;
	opacity: 0.25;
}
@media (hover: none) {
	.cursor {
		display: none;
	}
}

/* Шапка */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: rgba(247, 245, 240, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.hwrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 28px;
	height: 66px;
	display: flex;
	align-items: center;
	gap: 28px;
	white-space: nowrap;
}
.logo {
	font-family: "Barlow", sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
nav {
	display: flex;
	gap: 24px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	flex: 1;
	justify-content: center;
}
nav a {
	padding: 6px 2px;
	transition: color 0.2s ease-out;
	position: relative;
}
nav a:hover {
	color: var(--blue);
}
nav a.act {
	color: var(--blue);
}
nav a.act::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--blue);
}
.hphone {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--ink);
	transition: color 0.2s;
}
.hphone:hover {
	color: var(--blue);
}
.hphone svg {
	width: 15px;
	height: 15px;
}
.btn-head {
	padding: 12px 22px;
	font-size: 12.5px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	font-weight: 700;
}
.burger {
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--ink);
	display: none;
	align-items: center;
	justify-content: center;
}
.burger svg {
	width: 24px;
	height: 24px;
}
/* Мобильное меню */
.mmenu {
	position: fixed;
	inset: 66px 0 auto 0;
	z-index: 199;
	background: rgba(247, 245, 240, 0.98);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
	padding: 18px 24px 24px;
	display: none;
	flex-direction: column;
	gap: 2px;
}
.mmenu.on {
	display: flex;
	animation: mm 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes mm {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.mmenu a {
	padding: 13px 0;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	border-bottom: 1px solid var(--line);
}
.mmenu .btn {
	margin-top: 16px;
	width: 100%;
}

/* HERO */
.hero {
	min-height: 100dvh;
	background: var(--bg);
	color: var(--ink);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 130px 0 90px;
}
.hero-bgword {
	position: absolute;
	top: 8%;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 22vw;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(10, 10, 10, 0.06);
	letter-spacing: 0.02em;
	user-select: none;
	pointer-events: none;
	white-space: nowrap;
}
.hero .wrap {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 56px;
	align-items: center;
	position: relative;
}
.hero-kicker {
	color: var(--blue);
	margin-bottom: 22px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.hero-kicker::before {
	content: "";
	width: 34px;
	height: 2px;
	background: var(--blue);
}
.hero h1 {
	font-size: clamp(46px, 7.2vw, 104px);
	font-weight: 700;
	margin-bottom: 24px;
}
.hero h1 .hl {
	color: var(--blue);
	position: relative;
	white-space: nowrap;
}
.hero-lead {
	font-size: 19px;
	color: #55524a;
	margin-bottom: 32px;
	max-width: 520px;
}
.hero-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 34px;
}
.trust {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13.5px;
	color: #d5e0ee;
}
.chip b {
	color: #fff;
}
.hero-photo {
	position: relative;
	z-index: 1;
}
.hero-img {
	border-radius: var(--r);
	height: 64vh;
	min-height: 380px;
	max-height: 600px;
	box-shadow: 0 34px 70px rgba(10, 10, 10, 0.28);
	position: relative;
	overflow: hidden;
	transform: rotate(2deg);
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-photo:hover .hero-img {
	transform: rotate(0deg) scale(1.02);
}
.hero-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-img .tag-over {
	position: absolute;
	left: 16px;
	bottom: 14px;
	z-index: 2;
	background: rgba(12, 26, 43, 0.85);
	color: #fff;
	font-size: 12.5px;
	font-weight: 600;
	padding: 7px 13px;
	border-radius: 8px;
}
.hero-photo::before {
	content: "";
	position: absolute;
	inset: auto -16px -16px auto;
	width: 62%;
	height: 62%;
	background: repeating-linear-gradient(-55deg, var(--blue) 0 10px, transparent 10px 22px);
	border-radius: var(--r);
	z-index: -1;
	opacity: 0.9;
}
.scroll-hint {
	position: absolute;
	bottom: 86px;
	left: 50%;
	transform: translateX(-50%);
	color: #9b978c;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.scroll-hint::after {
	content: "";
	width: 1px;
	height: 34px;
	background: linear-gradient(#9b978c, transparent);
	animation: drop 1.6s ease-out infinite;
}
@keyframes drop {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}
	45% {
		transform: scaleY(1);
		transform-origin: top;
	}
	55% {
		transform: scaleY(1);
		transform-origin: bottom;
	}
	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

.hero .chip {
	background: #fff;
	border: 1px solid var(--line);
	color: #454239;
}
.hero .chip b {
	color: var(--ink);
}
.hero .btn-ghost {
	border-color: var(--ink);
	color: var(--ink);
}
.hero .btn-ghost:hover {
	background: rgba(10, 10, 10, 0.06);
}

/* Бегущая строка */
.ticker {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--orange);
	color: #fff;
	overflow: hidden;
	padding: 14px 0;
	transform: rotate(-1.2deg) scale(1.02);
	transform-origin: center;
}
.ticker-track {
	display: flex;
	gap: 0;
	width: max-content;
	animation: marq 26s linear infinite;
}
.ticker span {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0 22px;
	white-space: nowrap;
}
.ticker span::after {
	content: "★";
	margin-left: 44px;
	color: #0a0a0a;
}
@keyframes marq {
	to {
		transform: translateX(-50%);
	}
}
.ticker:hover .ticker-track {
	animation-play-state: paused;
}

/* Слайдер-чувства */
.feel-run {
	position: relative;
}
.feel-pin {
	position: sticky;
	top: 0;
	height: 100dvh;
	overflow: hidden;
	background: var(--bg);
	touch-action: pan-y pinch-zoom;
	overscroll-behavior-x: contain;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}
.feel-pin.dragging {
	cursor: grabbing;
}
.feel-hdr {
	position: absolute;
	top: 10%;
	left: 0;
	right: 0;
	text-align: center;
	font-size: clamp(18px, 2vw, 26px);
	font-weight: 500;
	color: #9aa6b5;
	z-index: 5;
}
.feel-hdr b {
	color: var(--blue);
	font-weight: 700;
}
.feel-card {
	position: absolute;
	left: 0;
	top: 50%;
	border-radius: 14px;
	overflow: hidden;
	will-change: transform, width, height;
	background: #e9e4da;
	box-shadow: 0 18px 50px rgba(12, 26, 43, 0.18);
	cursor: grab;
}
.feel-pin.dragging .feel-card {
	cursor: grabbing;
}
.feel-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-user-drag: none;
	pointer-events: none;
}
.feel-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.55));
	opacity: 0;
	transition: opacity 0.25s;
}
.feel-card:hover::after {
	opacity: 1;
}
.feel-cta {
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translate(-50%, 10px);
	z-index: 3;
	background: #fff;
	color: var(--ink);
	border-radius: 999px;
	padding: 9px 18px;
	font-size: 13.5px;
	font-weight: 700;
	white-space: nowrap;
	opacity: 0;
	transition:
		opacity 0.25s,
		transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
	max-width: 92%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.feel-card:hover .feel-cta {
	opacity: 1;
	transform: translate(-50%, 0);
}
@media (max-width: 900px) {
	.feel-cta {
		font-size: 12px;
		padding: 7px 13px;
	}
}
.feel-cap {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-family: "IBM Plex Mono", monospace;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--ink);
	will-change: opacity;
	white-space: nowrap;
}
.feel-cap i {
	font-style: normal;
	color: #9aa6b5;
}
.feel-ticks {
	position: absolute;
	bottom: 7%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	align-items: center;
	height: 48px;
	z-index: 5;
}
.feel-ticks span {
	width: 1.5px;
	background: var(--ink);
	height: 6px;
	will-change: height;
}
@media (max-width: 768px) {
	.feel-hdr {
		top: 14%;
	}
}

/* === МОБИЛЬНЫЙ РЕЖИМ СЛАЙДЕРА ===
   На телефоне отключаем перехват скролла и sticky-пин: вместо них обычная
   горизонтальная лента с нативным snap. Причина — на iOS высота 100dvh меняется,
   когда прячется адресная строка, и пин с расчётом по скроллу дёргается. */
.feel-run.mob {
	height: auto !important;
}
.feel-run.mob .feel-pin {
	position: static;
	height: auto;
	overflow: visible;
	padding: 40px 0 0;
	touch-action: auto;
	cursor: auto;
}
.feel-run.mob + .manifesto {
	padding-top: 36px;
}
.feel-run.mob .feel-hdr {
	position: static;
	padding: 0 16px 22px;
	text-align: center;
}
/* Лента: нативный горизонтальный скролл со snap. Вид коверфлоу даёт JS —
   он масштабирует и сдвигает карточки по их расстоянию до центра ленты. */
.feel-run.mob .feel-strip {
	display: flex;
	gap: 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 0 21vw;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}
.feel-run.mob .feel-strip::-webkit-scrollbar {
	display: none;
}
.feel-run.mob .feel-card {
	position: relative;
	left: auto;
	top: auto;
	flex: 0 0 58vw;
	height: 64vw;
	min-height: 250px;
	max-height: 360px;
	width: auto !important;
	opacity: 1;
	scroll-snap-align: center;
	cursor: pointer;
	transform-origin: center center;
	will-change: transform, opacity;
}
.feel-run.mob .feel-cta {
	opacity: 1;
	transform: translate(-50%, 0);
	position: absolute;
}
.feel-run.mob .feel-card::after {
	opacity: 1;
}
.feel-run.mob .feel-cap {
	position: static;
	transform: none;
	display: block;
	text-align: center;
	padding: 16px 16px 0;
	white-space: normal;
	opacity: 1 !important;
}
.feel-run.mob .feel-ticks {
	position: static;
	transform: none;
	margin: 14px 0 0;
	height: auto;
	width: 100%;
	justify-content: center;
}
.feel-run:not(.mob) .feel-strip {
	display: none;
}
.feel-run.mob .feel-pin > .feel-card {
	display: none;
}
.feel-run.mob .feel-ticks span {
	height: 4px !important;
	width: 4px;
	border-radius: 50%;
	opacity: 0.25;
	transition:
		opacity 0.2s,
		width 0.2s;
}
.feel-run.mob .feel-ticks span.on {
	opacity: 1;
	width: 16px;
	border-radius: 2px;
}

/* Манифест */
.manifesto {
	padding: 130px 0 80px;
}
.manifesto .disp {
	font-size: clamp(44px, 7vw, 96px);
	font-weight: 700;
	color: var(--navy);
}
.manifesto .disp .accent {
	color: var(--red);
}
.manifesto .disp .out {
	color: transparent;
	-webkit-text-stroke: 2px var(--navy);
}
.man-note {
	max-width: 520px;
	margin-top: 28px;
	color: var(--muted);
	font-size: 18px;
}

/* Категории */
.cats {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	grid-auto-rows: 88px;
	gap: 16px;
}
.cat {
	position: relative;
	border-radius: var(--r);
	overflow: hidden;
	background: var(--navy);
	cursor: pointer;
	display: block;
	border: none;
	padding: 0;
	width: 100%;
	text-align: left;
	font-family: inherit;
}
.cat img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.92;
	transition:
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.3s;
}
.cat:hover img {
	transform: scale(1.07);
	opacity: 1;
}
.cat::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(12, 26, 43, 0.82));
}
.cat-label {
	position: absolute;
	left: 18px;
	right: 60px;
	bottom: 14px;
	z-index: 2;
	color: #fff;
}
.cat-label b {
	display: block;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.5px;
}
.cat-label span {
	font-size: 13px;
	color: #c2d0e2;
	display: block;
}
.cat-tag {
	position: absolute;
	top: 14px;
	left: 16px;
	z-index: 2;
	background: var(--lime);
	color: #141400;
	font-size: 11.5px;
	font-weight: 700;
	border-radius: 6px;
	padding: 4px 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.cat-arrow {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat:hover .cat-arrow {
	background: var(--red);
	transform: rotate(45deg);
}
.cat-arrow svg {
	width: 18px;
	height: 18px;
	color: #fff;
}
.cat-cta {
	position: absolute;
	left: 18px;
	bottom: 14px;
	z-index: 3;
	background: #fff;
	color: var(--ink);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 700;
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 0.25s,
		transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat:hover .cat-cta {
	opacity: 1;
	transform: none;
}
.cat:hover .cat-label {
	opacity: 0;
	transition: opacity 0.2s;
}
.c1 {
	grid-column: span 4;
	grid-row: span 4;
}
.c2 {
	grid-column: span 3;
	grid-row: span 4;
}
.c3 {
	grid-column: span 3;
	grid-row: span 4;
}
.c4 {
	grid-column: span 5;
	grid-row: span 3;
}
.c5 {
	grid-column: span 5;
	grid-row: span 3;
}
.all-links {
	margin-top: 34px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.all-links button {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 10px 22px;
	font-size: 14.5px;
	font-weight: 600;
	transition:
		border-color 0.2s,
		color 0.2s,
		transform 0.2s;
	cursor: pointer;
	font-family: inherit;
	color: var(--ink);
}
.all-links button:hover {
	border-color: var(--red);
	color: var(--red);
	transform: translateY(-2px);
}

/* Красный блок */
.shout {
	background: var(--orange);
	color: #fff;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}
.shout::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(-55deg, transparent 0 40px, rgba(255, 255, 255, 0.05) 40px 80px);
}
.shout .wrap {
	position: relative;
	text-align: center;
}
.shout .disp {
	font-size: clamp(60px, 11vw, 150px);
	font-weight: 700;
	line-height: 0.95;
}
.shout .disp .thin {
	color: transparent;
	-webkit-text-stroke: 2px #fff;
}
.shout p {
	font-size: 19px;
	margin-top: 22px;
	color: #ffd9d9;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
.shout .btn {
	background: #fff;
	color: var(--ink);
	margin-top: 28px;
}
.shout .btn:hover {
	background: var(--navy);
	color: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* Sticky-стек шагов */
.stack-sec {
	background: var(--navy);
	color: #fff;
	padding: 110px 0;
}
.stack {
	display: grid;
	gap: 18px;
}
.stack-card {
	position: sticky;
	top: 110px;
	background: var(--navy-2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--r);
	padding: 44px 48px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 36px;
	align-items: center;
	box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.35);
}
.stack-card:nth-child(2) {
	top: 126px;
	background: #182e4a;
}
.stack-card:nth-child(3) {
	top: 142px;
	background: #1c3557;
}
.stack-card:nth-child(4) {
	top: 158px;
	background: var(--blue);
}
.stack-card .num {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 96px;
	font-weight: 700;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
}
.stack-card b {
	display: block;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 34px;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}
.stack-card p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16.5px;
	max-width: 560px;
}
.stack-card .mono {
	color: rgba(255, 255, 255, 0.5);
}

/* Квиз */
.quiz-sec {
	background: var(--blue);
	color: #fff;
	padding: 110px 0;
}
.quiz-sec .kicker {
	color: var(--lime);
}
.quiz-sec .kicker::before {
	background: var(--lime);
}
.quiz-box .btn {
	background: var(--orange);
}
.quiz-box .btn:hover {
	background: var(--orange-d);
	box-shadow: 0 10px 26px rgba(255, 75, 38, 0.35);
}
.quiz-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 56px;
	align-items: center;
}
.quiz-box {
	background: #fff;
	color: var(--ink);
	border-radius: var(--r);
	padding: 34px;
	box-shadow: 0 30px 70px rgba(12, 26, 43, 0.14);
	border: 1px solid var(--line);
	scroll-margin-top: 100px;
}
.quiz-progress {
	height: 6px;
	background: var(--line);
	border-radius: 3px;
	margin-bottom: 10px;
	overflow: hidden;
}
.quiz-progress i {
	display: block;
	height: 100%;
	background: var(--red);
	width: 25%;
	transition: width 0.3s ease-out;
}
.quiz-steplbl {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 18px;
}
.q-step {
	display: none;
}
.q-step.active {
	display: block;
	animation: qin 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes qin {
	from {
		opacity: 0;
		transform: translateX(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.q-title {
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 18px;
}
.q-opts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 20px;
}
.q-opt {
	border: 2px solid var(--line);
	border-radius: 12px;
	padding: 13px 14px;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	transition:
		border-color 0.15s,
		background 0.15s,
		transform 0.15s;
	text-align: center;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.q-opt:hover {
	border-color: var(--red);
}
.q-opt:active {
	transform: scale(0.96);
}
.q-opt.sel {
	border-color: var(--red);
	background: #eef1fe;
}
.q-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.q-back {
	background: none;
	border: none;
	color: var(--muted);
	cursor: pointer;
	font-size: 14.5px;
	font-family: "Barlow", sans-serif;
	min-height: 44px;
}
.q-back:hover {
	color: var(--ink);
}
.q-input {
	width: 100%;
	border: 2px solid var(--line);
	border-radius: 12px;
	padding: 13px 15px;
	font-size: 16px;
	font-family: "Barlow", sans-serif;
	margin-bottom: 12px;
	min-height: 48px;
	background: #fff;
}
.q-input:focus {
	outline: none;
	border-color: var(--red);
}
.q-note {
	font-size: 12.5px;
	color: var(--muted);
	margin-top: 10px;
}
.q-note a {
	text-decoration: underline;
	cursor: pointer;
}
.q-recap {
	background: var(--bg);
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 13.5px;
	color: var(--muted);
	margin-bottom: 14px;
	display: none;
}
.q-recap.on {
	display: block;
}
.q-recap b {
	color: var(--ink);
}
.q-done-ico {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #eaf7ee;
	color: #2f9e44;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
/* Поле-ловушка для ботов */
.hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
/* Ошибка отправки */
.form-err {
	display: none;
	margin-top: 10px;
	font-size: 13.5px;
	color: var(--orange-d);
	background: #fff1ec;
	border-radius: 10px;
	padding: 9px 12px;
}
.form-err.on {
	display: block;
}
.btn.loading {
	opacity: 0.65;
	pointer-events: none;
}
.btn:disabled {
	opacity: 0.45;
	pointer-events: none;
}

/* Чекбоксы согласия */
.agree {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	cursor: pointer;
	margin-bottom: 12px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--muted);
}
.agree input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.agree .box {
	flex: none;
	width: 22px;
	height: 22px;
	border: 2px solid var(--line);
	border-radius: 6px;
	background: #fff;
	margin-top: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		border-color 0.15s,
		background 0.15s;
}
.agree .box svg {
	width: 14px;
	height: 14px;
	color: #fff;
	opacity: 0;
	transform: scale(0.6);
	transition:
		opacity 0.15s,
		transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
.agree input:checked + .box {
	background: var(--blue);
	border-color: var(--blue);
}
.agree input:checked + .box svg {
	opacity: 1;
	transform: none;
}
.agree input:focus-visible + .box {
	outline: 3px solid var(--orange);
	outline-offset: 2px;
}
.agree:hover .box {
	border-color: var(--blue);
}
.agree.err .box {
	border-color: var(--orange);
	animation: shake 0.3s;
}
@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-4px);
	}
	75% {
		transform: translateX(4px);
	}
}
.agree a {
	color: var(--blue);
	text-decoration: underline;
	cursor: pointer;
}
.agree b {
	font-weight: 600;
	color: var(--ink);
}
/* тёмный вариант — в блоке «Оставить заявку» */
.final .agree {
	color: #93a7bf;
}
.final .agree .box {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.28);
}
.final .agree b {
	color: #fff;
}
.final .agree a {
	color: var(--lime);
}
.final .agree:hover .box {
	border-color: var(--lime);
}
.final .agree input:checked + .box {
	background: var(--lime);
	border-color: var(--lime);
}
.final .agree input:checked + .box svg {
	color: #141400;
}
.q-done-ico svg {
	width: 32px;
	height: 32px;
}

/* Цифры */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 2px solid var(--navy);
	border-bottom: 2px solid var(--navy);
}
.stat {
	padding: 44px 28px;
	border-left: 1px solid var(--line);
}
.stat:first-child {
	border-left: none;
}
.stat .num {
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(52px, 6vw, 84px);
	font-weight: 700;
	line-height: 1;
	color: var(--navy);
}
.stat .num em {
	font-style: normal;
	color: var(--red);
}
.stat p {
	color: var(--muted);
	font-size: 15px;
	margin-top: 6px;
}
.stat .ben {
	color: var(--ink);
	font-weight: 600;
	font-size: 15.5px;
	margin-top: 10px;
	display: block;
}
.clients {
	margin-top: 52px;
	background: var(--navy);
	color: #fff;
	border-radius: var(--r);
	padding: 34px;
	display: flex;
	gap: 30px;
	align-items: center;
	flex-wrap: wrap;
}
.clients .lgph {
	width: 130px;
	height: 72px;
	border-radius: 10px;
	flex: none;
	background: #14263d;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8fa6c2;
	font-size: 12px;
	text-align: center;
}
.clients b {
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 26px;
	letter-spacing: 0.5px;
}
.clients p {
	color: #b9c8db;
	font-size: 15px;
	margin-top: 6px;
}
.clients a {
	color: var(--lime);
	font-weight: 600;
	cursor: pointer;
}

/* Сегменты */
.seg {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.seg-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition:
		transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.25s;
}
.seg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(10, 10, 10, 0.1);
}
.seg-card .mono {
	color: var(--blue);
}
.seg-card b {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.05;
}
.seg-card > p {
	color: var(--muted);
	font-size: 15px;
}
.seg-card ul {
	list-style: none;
	display: grid;
	gap: 7px;
	font-size: 14px;
	flex: 1;
}
.seg-card ul li {
	padding-left: 18px;
	position: relative;
}
.seg-card ul li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--blue);
}
.seg-link {
	font-weight: 700;
	color: var(--blue);
	font-size: 14.5px;
	margin-top: 4px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	font-family: inherit;
	cursor: pointer;
	padding: 0;
	transition: gap 0.2s;
}
.seg-link:hover {
	gap: 10px;
}

/* Производство */
.video-sec {
	background: var(--navy);
	color: #fff;
	padding: 0;
	position: relative;
	overflow: hidden;
}
.video-frame {
	position: relative;
	height: 72vh;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #141414, #232323);
}
.video-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(-55deg, transparent 0 34px, rgba(255, 255, 255, 0.03) 34px 68px);
}
.play-btn {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	z-index: 2;
	border: none;
}
.play-btn:hover {
	transform: scale(1.1);
}
.play-btn svg {
	width: 36px;
	height: 36px;
	color: #fff;
	margin-left: 5px;
}
.video-note {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 34px;
	text-align: center;
	color: #9a9a92;
	z-index: 2;
}
.video-title {
	position: absolute;
	top: 44px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 2;
}
.video-title .disp {
	font-size: clamp(34px, 4.6vw, 58px);
	color: #fff;
	font-weight: 700;
}

/* Отзывы */
.reviews {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.rev {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
}
.rev .stars {
	color: var(--orange);
	letter-spacing: 3px;
	margin-bottom: 14px;
	font-size: 15px;
}
.rev q {
	quotes: none;
	font-size: 16px;
	line-height: 1.6;
	flex: 1;
}
.rev .who {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.rev .who i {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--lime);
	display: flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-weight: 700;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 18px;
	color: #141400;
	flex: none;
}
.rev .who b {
	display: block;
	font-size: 15px;
}
.rev .who span {
	font-size: 13px;
	color: var(--muted);
}
.rev-note {
	margin-top: 22px;
	font-size: 14px;
	color: var(--muted);
}
.rev-note a {
	color: var(--blue);
	font-weight: 600;
}

/* Преимущества */
.adv {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	background: #fff;
}
.adv-card {
	padding: 34px 30px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background 0.25s;
}
.adv-card:hover {
	background: var(--bg);
}
.adv-card:nth-child(3n) {
	border-right: none;
}
.adv-card:nth-child(n + 4) {
	border-bottom: none;
}
.adv-card b {
	display: block;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 22px;
	letter-spacing: 0.5px;
	margin: 14px 0 8px;
}
.adv-card p {
	font-size: 15px;
	color: var(--muted);
}
.adv-ico {
	width: 48px;
	height: 48px;
	background: #e7ebff;
	color: var(--blue);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.adv-ico svg {
	width: 24px;
	height: 24px;
}

/* Форма */
.final {
	background: var(--navy);
	color: #fff;
	padding: 110px 0;
	position: relative;
	overflow: hidden;
}
.final::before {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -140px;
	width: 520px;
	height: 520px;
	background: repeating-linear-gradient(-55deg, transparent 0 34px, rgba(255, 255, 255, 0.03) 34px 68px);
}
.final-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	position: relative;
}
.form-title {
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: clamp(36px, 4.6vw, 58px);
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.02;
}
.final form {
	display: grid;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--r);
	padding: 28px;
}
.final label {
	font-size: 13.5px;
	font-weight: 600;
	color: #b9c8db;
	margin-bottom: -6px;
}
.final .q-input {
	border: none;
}
.consent {
	font-size: 12.5px;
	color: #93a7bf;
}
.consent-ok {
	display: inline-flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--lime);
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
}
.consent-ok svg {
	width: 16px;
	height: 16px;
	flex: none;
	margin-top: 2px;
}
.consent a {
	text-decoration: underline;
	cursor: pointer;
}
.final-ok {
	display: none;
	background: rgba(217, 240, 74, 0.12);
	border: 1px solid rgba(217, 240, 74, 0.4);
	border-radius: var(--r);
	padding: 28px;
	text-align: center;
}
.final-ok.on {
	display: block;
	animation: qin 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.final-ok b {
	display: block;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 28px;
	color: var(--lime);
	margin-bottom: 8px;
}
.final-ok p {
	color: #b9c8db;
	font-size: 15.5px;
}

/* SEO-текст, подвал */
.seo-text {
	font-size: 15px;
	color: var(--muted);
	max-width: 920px;
}
.seo-text p {
	margin-bottom: 12px;
}
footer {
	background: var(--navy);
	color: #93a7bf;
	padding: 64px 0 110px;
	font-size: 14.5px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 36px;
	margin-bottom: 36px;
}
.foot-grid b {
	color: #fff;
	display: block;
	margin-bottom: 14px;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 17px;
	letter-spacing: 1px;
}
.foot-grid a {
	display: block;
	margin-bottom: 9px;
	transition: color 0.2s;
	cursor: pointer;
}
.foot-grid a:hover {
	color: #fff;
}
.foot-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13.5px;
}

/* Липкая нижняя CTA */
.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 190;
	background: rgba(13, 13, 13, 0.96);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	transform: translateY(120%);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.on {
	transform: none;
}
.sticky-cta .txt {
	color: #fff;
	font-size: 14.5px;
	line-height: 1.3;
}
.sticky-cta .txt b {
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 19px;
	display: block;
	letter-spacing: 0.5px;
}
.sticky-cta .txt span {
	color: #93a7bf;
	font-size: 13px;
}
.sticky-cta .btn {
	padding: 13px 26px;
	font-size: 15px;
	white-space: nowrap;
}
.sticky-cta .tel {
	color: #fff;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

/* Модалка политики */
.modal {
	position: fixed;
	inset: 0;
	z-index: 600;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.modal.on {
	display: flex;
}
.modal-bd {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.62);
	backdrop-filter: blur(3px);
}
.modal-box {
	position: relative;
	background: #fff;
	border-radius: var(--r);
	max-width: 560px;
	width: 100%;
	padding: 34px 36px;
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
	max-height: 80vh;
	overflow: auto;
	animation: mup 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes mup {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.modal-box h3 {
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 14px;
}
.modal-box p {
	font-size: 15px;
	color: var(--muted);
	margin-bottom: 10px;
}
.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	cursor: pointer;
	font-size: 19px;
	line-height: 1;
	color: var(--muted);
}
.modal-close:hover {
	background: var(--bg);
	color: var(--ink);
}
.modal-box b {
	color: var(--ink);
}
.fillme {
	background: #fff3bf;
	border-radius: 4px;
	padding: 0 4px;
	color: #7a5c00;
	font-weight: 600;
}

/* Адаптив */
@media (max-width: 1100px) {
	nav {
		display: none;
	}
	.burger {
		display: flex;
	}
	.hwrap {
		gap: 16px;
	}
	.logo {
		margin-right: auto;
	}
	.hphone {
		font-size: 17px;
	}
	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 900px) {
	.hero .wrap {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hero-img {
		height: 44vh;
		min-height: 280px;
	}
	.quiz-grid,
	.final-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.cats {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 200px;
	}
	.c1,
	.c2,
	.c3,
	.c4,
	.c5 {
		grid-column: span 1;
		grid-row: span 1;
	}
	.c1 {
		grid-column: span 2;
	}
	.stack-card {
		grid-template-columns: auto 1fr;
		padding: 30px 26px;
	}
	.stack-card .mono {
		display: none;
	}
	.stack-card .num {
		font-size: 64px;
	}
	.stack-card b {
		font-size: 26px;
	}
	.stats {
		grid-template-columns: 1fr 1fr;
	}
	.seg {
		grid-template-columns: 1fr 1fr;
	}
	.reviews {
		grid-template-columns: 1fr;
	}
	.stat:nth-child(3) {
		border-left: none;
	}
	.adv {
		grid-template-columns: 1fr;
	}
	.adv-card {
		border-right: none !important;
		border-bottom: 1px solid var(--line) !important;
	}
	.adv-card:last-child {
		border-bottom: none !important;
	}
	.sec {
		padding: 70px 0;
	}
	.btn-head {
		display: none;
	}
	.hphone span {
		display: none;
	}
	.sticky-cta .txt {
		display: none;
	}
	.sticky-cta {
		gap: 10px;
	}
	.sticky-cta .btn {
		flex: 1;
	}
	.scroll-hint {
		display: none;
	}
}
@media (max-width: 480px) {
	.q-opts {
		grid-template-columns: 1fr;
	}
	.seg {
		grid-template-columns: 1fr;
	}
	.foot-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	body {
		width: 100%;
	}
	section,
	header,
	footer,
	.hero,
	.manifesto,
	.shout,
	.stack-sec,
	.quiz-sec,
	.video-sec,
	.final {
		width: 100%;
		max-width: 100%;
	}
	.wrap {
		padding-left: 16px;
		padding-right: 16px;
	}
	.hero .wrap > *,
	.quiz-grid > *,
	.final-grid > *,
	.cats > *,
	.stack-card > *,
	.stats > *,
	.seg > *,
	.reviews > *,
	.adv > * {
		min-width: 0;
		max-width: 100%;
	}
	.hwrap {
		height: 62px;
		padding: 0 16px;
		gap: 8px;
	}
	.logo {
		font-size: 19px;
	}
	header .hphone,
	header .burger {
		width: 42px;
		height: 42px;
		justify-content: center;
	}
	.mmenu {
		inset: 62px 0 auto;
		padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
	}
	.hero {
		min-height: auto;
		padding: 108px 0 82px;
	}
	.hero .wrap {
		gap: 30px;
	}
	.hero h1 {
		font-size: clamp(34px, 10.5vw, 42px);
		margin-bottom: 18px;
		overflow-wrap: normal;
		word-break: normal;
	}
	.hero h1 .hl {
		white-space: normal;
	}
	.hero-kicker {
		font-size: 11px;
		letter-spacing: 1px;
		margin-bottom: 16px;
	}
	.hero-kicker::before {
		width: 24px;
	}
	.hero-lead {
		font-size: 17px;
		margin-bottom: 24px;
	}
	.hero-cta {
		margin-bottom: 24px;
	}
	.hero-cta .btn {
		width: 100%;
	}
	.hero-img {
		height: 68vw;
		min-height: 230px;
		max-height: 320px;
	}
	.hero-photo::before {
		inset: auto -8px -8px auto;
	}
	.ticker {
		padding: 11px 0;
	}
	.ticker span {
		font-size: 19px;
		padding: 0 16px;
	}
	.ticker span::after {
		margin-left: 32px;
	}
	.feel-hdr {
		top: 11%;
		padding: 0 16px;
		font-size: 18px;
		line-height: 1.35;
	}
	.feel-cap {
		width: calc(100% - 32px);
		text-align: center;
		white-space: normal;
		font-size: 11.5px;
	}
	.feel-ticks {
		bottom: 4%;
	}
	.manifesto {
		padding: 86px 0 56px;
	}
	.manifesto .disp {
		font-size: clamp(36px, 12vw, 48px);
		overflow-wrap: normal;
		word-break: normal;
	}
	.man-note {
		font-size: 16.5px;
		margin-top: 20px;
	}
	.sec {
		padding: 64px 0;
	}
	.sec-title {
		font-size: clamp(32px, 9.7vw, 38px);
		overflow-wrap: anywhere;
	}
	.sec-sub {
		font-size: 16.5px;
		margin-bottom: 32px;
	}
	.cats {
		grid-template-columns: 1fr;
		grid-auto-rows: 220px;
		gap: 12px;
	}
	.c1,
	.c2,
	.c3,
	.c4,
	.c5 {
		grid-column: span 1;
		grid-row: span 1;
	}
	.cat-label {
		right: 58px;
	}
	.cat-label b {
		font-size: 24px;
	}
	.shout {
		padding: 78px 0;
	}
	.shout .disp {
		font-size: clamp(44px, 13vw, 58px);
		overflow-wrap: normal;
		word-break: normal;
	}
	.shout p {
		font-size: 17px;
	}
	.stack-sec {
		padding: 68px 0;
	}
	.stack {
		gap: 12px;
	}
	.stack-card,
	.stack-card:nth-child(2),
	.stack-card:nth-child(3),
	.stack-card:nth-child(4) {
		position: relative;
		top: auto;
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 14px;
		padding: 24px 18px;
	}
	.stack-card .num {
		font-size: 50px;
	}
	.stack-card b {
		font-size: 24px;
	}
	.stack-card p {
		font-size: 15px;
	}
	.quiz-sec,
	.final {
		padding: 68px 0;
	}
	.quiz-box {
		padding: 24px 18px;
	}
	.q-opts {
		grid-template-columns: 1fr;
	}
	.stats {
		grid-template-columns: 1fr 1fr;
	}
	.stat {
		padding: 30px 14px;
	}
	.stat .num {
		font-size: clamp(44px, 15vw, 62px);
	}
	.clients {
		padding: 24px 18px;
		gap: 18px;
	}
	.clients .lgph {
		width: 112px;
		height: 64px;
	}
	.seg {
		grid-template-columns: 1fr;
	}
	.seg-card {
		padding: 24px 20px;
	}
	.video-frame {
		height: 62dvh;
		min-height: 350px;
	}
	.play-btn {
		width: 84px;
		height: 84px;
	}
	.video-title {
		top: 32px;
		padding: 0 16px;
	}
	.video-note {
		bottom: 24px;
		padding: 0 16px;
		font-size: 14px;
	}
	.rev {
		padding: 24px 20px;
	}
	.adv-card {
		padding: 28px 22px;
	}
	.final form {
		padding: 22px 18px;
	}
	.foot-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.foot-bottom {
		flex-direction: column;
	}
	.sticky-cta {
		padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	}
	.sticky-cta .tel {
		display: none;
	}
	.sticky-cta .btn {
		width: 100%;
	}
	.btn {
		max-width: 100%;
		white-space: normal;
		text-align: center;
	}
	.agree > span:last-child {
		min-width: 0;
		overflow-wrap: anywhere;
	}
	.modal {
		padding: 16px;
	}
	.modal-box {
		padding: 28px 20px;
		max-height: calc(100dvh - 32px);
	}
}
@media (max-width: 360px) {
	.hero h1 {
		font-size: 35px;
	}
	.trust {
		gap: 8px;
	}
	.chip {
		padding: 7px 12px;
		font-size: 12.5px;
	}
	.stats {
		grid-template-columns: 1fr;
	}
	.stat,
	.stat:nth-child(3) {
		border-left: none;
		border-top: 1px solid var(--line);
	}
	.stat:first-child {
		border-top: none;
	}
}
