/*
Theme Name: Polza AI Ru
Theme URI: https://polzaai.info/
Description: Тема сайта polzaai.info. Палитра, контейнер 1152px, плавающая шапка 64px и шкала радиусов сняты кодом из бандла polza.ai. Язык дизайна — «маршрут запроса»: ленточный фон на canvas, цена-дробь, прошивка блоков нитью.
Author: Polza AI Ru
Version: 1.0.1
Requires PHP: 7.4
Text Domain: polza-info
*/

/* ══ Токены. Цвета сняты из _next/static/css/8ff7d148efbde098.css:
      --color-brand #88c80c, шкала brand_300…brand_800, серые Untitled UI. ══ */
:root {
	--bg:      #ffffff;
	--sur:     #fafafa;
	--sur-2:   #f5f5f5;
	--line:    #e9eaeb;
	--line-2:  #d5d7da;

	--ink:     #181d27;
	--ink-2:   #414651;
	--ink-3:   #535862;
	--ink-4:   #717680;

	--lime:      #88c80c;  /* --color-brand */
	--lime-hi:   #a2ef0c;  /* brand_500 */
	--lime-lo:   #7ab30a;  /* ховер кнопки на офсайте */
	--lime-pale: #bffa52;  /* brand_300 */
	--lime-deep: #567e0b;  /* brand_800 */
	--lime-wash: #f2fbe3;

	--code:    #161b22;    /* фон блоков кода на офсайте */
	--code-fg: #e8edf2;

	--wrap: 1152px;        /* max-w-6xl, доминирующий контейнер офсайта */
	--bar:  1280px;        /* max-w-7xl, ширина плиты шапки */
	--gut:  32px;

	--r:      8px;         /* rounded-lg, самый частый радиус офсайта */
	--r-lg:   12px;
	--r-xl:   16px;        /* rounded-2xl, карточки и плита шапки */
	--r-2xl:  32px;
	--pill:   9999px;

	--ease: cubic-bezier(.16, 1, .3, 1);
	--fast: .2s ease;

	--f:    "Pliant", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
	--mono: "Cascadia Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

	--h1: clamp(34px, 5.4vw, 72px);
	--h2: clamp(25px, 3vw, 38px);
	--h3: clamp(18px, 1.5vw, 21px);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--f);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

img, svg, video, canvas { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-decoration-color: var(--line-2); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--lime); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.12; font-weight: 600; letter-spacing: -.02em; }
h1 { font-size: var(--h1); letter-spacing: -.032em; }
h2 { font-size: var(--h2); letter-spacing: -.026em; }
h3 { font-size: var(--h3); letter-spacing: -.015em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--lime-pale); color: var(--ink); }

:focus-visible { outline: 2px solid var(--lime-deep); outline-offset: 3px; border-radius: 4px; }

.skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.col  { max-width: 760px; }

/* ══ Кнопки. Пилюли — с офсайта (border-radius: 3.40282e38px). ══ */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	height: 44px; padding: 0 22px;
	border: 1px solid transparent; border-radius: var(--pill);
	font: inherit; font-size: 15px; font-weight: 600; letter-spacing: -.01em;
	text-decoration: none; cursor: pointer; white-space: nowrap;
	transition: background var(--fast), border-color var(--fast), color var(--fast);
}
.btn i, .btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn--go      { background: var(--lime); color: #10230a; }
.btn--go:hover{ background: var(--lime-lo); color: #10230a; }

.btn--line    { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--line:hover { border-color: var(--ink); background: var(--sur-2); }

.btn--ink     { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #000; }

.btn--sm { height: 38px; padding: 0 16px; font-size: 14px; }

/* ══ Шапка: плита 1280px внутри отступа 16px, высота 64px — с офсайта ══ */
.bar { position: sticky; top: 0; z-index: 60; padding: 16px 16px 0; }
.bar__in {
	display: flex; align-items: center; gap: 16px;
	max-width: var(--bar); margin-inline: auto;
	height: 64px; padding: 0 10px 0 18px;
	background: rgba(255, 255, 255, .88);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	backdrop-filter: saturate(180%) blur(14px);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.mark { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 600; letter-spacing: -.02em; font-size: 18px; }
.mark__s { width: 26px; height: 26px; flex-shrink: 0; }
.mark__ru { color: var(--ink-4); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a {
	padding: 8px 11px; border-radius: var(--r); text-decoration: none;
	font-size: 14.5px; font-weight: 500; color: var(--ink-2); white-space: nowrap;
	transition: background var(--fast), color var(--fast);
}
.nav a:hover { background: var(--sur-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); background: var(--lime-wash); }

.bar .btn--go { margin-left: 8px; }

.burger {
	display: none; width: 42px; height: 42px; margin-left: auto;
	align-items: center; justify-content: center;
	background: transparent; border: 1px solid var(--line); border-radius: var(--r);
	cursor: pointer; color: var(--ink);
}
.burger i, .burger svg { width: 20px; height: 20px; }

.drop {
	display: none;
	max-width: var(--bar); margin: 8px auto 0;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
	padding: 10px; box-shadow: 0 10px 30px rgba(16, 24, 40, .10);
}
.drop.is-on { display: block; }
.drop a {
	display: block; padding: 11px 14px; border-radius: var(--r);
	text-decoration: none; font-weight: 500; color: var(--ink-2);
}
.drop a:hover { background: var(--sur-2); color: var(--ink); }

/* ══ Первый экран ══ */
.launch { position: relative; padding: 72px 0 84px; overflow-x: clip; }
.launch__mesh {
	position: absolute; inset: 0; width: 100%; height: 100%;
	z-index: 0; pointer-events: none;
	/* Статичная подложка: холст рисует поверх, но даже без JS экран не пустой. */
	background:
		radial-gradient(62% 52% at 16% 6%,  rgba(162, 239, 12, .30), transparent 70%),
		radial-gradient(54% 48% at 88% 20%, rgba(136, 200, 12, .24), transparent 72%),
		radial-gradient(42% 42% at 60% 104%, rgba(191, 250, 82, .16), transparent 74%),
		linear-gradient(180deg, #f4ffe0 0%, var(--bg) 66%);
}
.launch__in { position: relative; z-index: 1; }

.launch h1 { max-width: 15ch; }
.launch__lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-3); max-width: 62ch; margin-bottom: 26px; }
.launch__acts { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.launch__note { font-size: 14px; color: var(--ink-4); margin: 14px 0 0; }

/* ══ Устройство первого экрана: маршрут запроса ══ */
.route {
	margin-top: 44px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-2xl);
	box-shadow: 0 18px 48px -24px rgba(16, 24, 40, .22);
	padding: 22px;
	display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px;
}
.route__ask {
	display: flex; align-items: center; gap: 10px;
	background: var(--sur); border: 1px solid var(--line); border-radius: var(--pill);
	padding: 11px 18px; font-family: var(--mono); font-size: 14px; color: var(--ink-2);
	min-width: 0;
}
.route__ask b { font-weight: 400; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.route__ask i, .route__ask svg { width: 16px; height: 16px; color: var(--lime-deep); flex-shrink: 0; }
.route__cur { display: inline-block; width: 7px; height: 15px; background: var(--lime); vertical-align: -2px; animation: pza-blink 1.05s steps(1) infinite; }
@keyframes pza-blink { 50% { opacity: 0; } }

.route__wire { position: relative; height: 74px; }
.route__wire svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.route__wire path { fill: none; stroke: var(--line-2); stroke-width: 1.5; }
.route__wire path.is-hot { stroke: var(--lime); }

.route__chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 10px; }
.chip {
	border: 1px solid var(--line); border-radius: var(--r-lg);
	padding: 12px 13px; background: #fff; min-width: 0;
	transition: border-color var(--fast), background var(--fast);
}
.chip:hover { border-color: var(--lime); background: var(--lime-wash); }
.chip__n { font-size: 14px; font-weight: 600; letter-spacing: -.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chip__v { font-family: var(--mono); font-size: 12px; color: var(--ink-4); margin-top: 3px; }

.route__sum {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px;
	border-top: 1px solid var(--line); padding-top: 16px;
}
.route__sum b { font-family: var(--mono); font-size: clamp(24px, 3vw, 34px); font-weight: 600; letter-spacing: -.03em; }
.route__sum span { font-size: 14px; color: var(--ink-4); }

/* ══ Секции ══ */
.strip { padding: 76px 0; overflow-x: clip; }
.strip--sur { background: var(--sur); }
/* Внутренние страницы: первая секция под шапкой страницы получает
   верхний отступ; остальные секции сохраняют базовые 76px. */
body:not(.home) .head + .strip { padding-top: 40px; }
.strip__head { max-width: 68ch; margin-bottom: 34px; }
.strip__head p { color: var(--ink-3); margin-bottom: 0; }

/* Разделитель — лаймовая нить с узлом, эхо ленточного фона. */
.thread { height: 1px; background: var(--line); position: relative; max-width: var(--wrap); margin: 0 auto; }
.thread::after {
	content: ""; position: absolute; left: 50%; top: 50%;
	width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
	border-radius: 50%; background: var(--lime);
}

/* ══ Сетки и карточки ══ */
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
@media (min-width: 701px) { .grid--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.node {
	position: relative;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
	padding: 22px; min-width: 0;
	transition: border-color var(--fast), box-shadow var(--fast);
}
.strip--sur .node { background: #fff; }
.node:hover { border-color: var(--line-2); box-shadow: 0 8px 24px -14px rgba(16, 24, 40, .18); }
.node__i {
	width: 38px; height: 38px; margin-bottom: 14px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--lime-wash); border-radius: var(--r); color: var(--lime-deep);
}
.node__i i, .node__i svg { width: 19px; height: 19px; }
.node h3 { margin-bottom: 8px; }
.node p { color: var(--ink-3); font-size: 15.5px; margin-bottom: 0; }
.node__n { font-family: var(--mono); font-size: 13px; color: var(--ink-4); margin-bottom: 6px; }

/* ══ Цена-дробь: число над линейкой, единица под ней, рядом цена без кэша ══ */
.rate { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.rate__v {
	font-family: var(--mono); font-weight: 600; letter-spacing: -.03em;
	font-size: clamp(20px, 2.2vw, 28px); line-height: 1.05;
	border-bottom: 2px solid var(--lime); padding-bottom: 3px;
	font-variant-numeric: tabular-nums;
}
.rate__u { font-size: 12.5px; color: var(--ink-4); }
.rate__was { font-family: var(--mono); font-size: 13px; color: var(--ink-4); text-decoration: line-through; text-decoration-color: var(--line-2); }

/* Ховер меняет не карточку, а число: значение прокручивается. */
.roll { position: relative; display: inline-block; overflow: hidden; vertical-align: bottom; }
.roll__t { display: block; transition: transform .32s var(--ease); }
.roll__t span { display: block; }
.roll:hover .roll__t, .roll:focus-within .roll__t { transform: translateY(-50%); }

/* ══ Таблицы ══ */
.tw { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.t { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
table.t th, table.t td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.t th { font-weight: 600; font-size: 13px; letter-spacing: .01em; color: var(--ink-4); white-space: nowrap; }
table.t td.num, table.t th.num { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
table.t tbody tr:hover { background: var(--lime-wash); }
table.t tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 700px) {
	table.t { min-width: 0; }
	table.t thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
	table.t tr { display: block; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px; margin-bottom: 10px; background: #fff; }
	table.t td { display: flex; justify-content: space-between; gap: 14px; border: 0; padding: 6px 0; text-align: right; }
	table.t td::before { content: attr(data-label); color: var(--ink-4); font-size: 13px; flex-shrink: 0; }
}

/* ══ Блок команды с копированием ══ */
.cmd { border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: #fff; }
.cmd__top { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--sur); }
.cmd__where { font-family: var(--mono); font-size: 12.5px; color: var(--ink-4); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cmd__copy {
	margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
	height: 30px; padding: 0 12px; border-radius: var(--pill);
	border: 1px solid var(--line-2); background: #fff; color: var(--ink-2);
	font: inherit; font-size: 13px; font-weight: 500; cursor: pointer;
	transition: border-color var(--fast), color var(--fast), background var(--fast);
}
.cmd__copy:hover { border-color: var(--lime); color: var(--lime-deep); background: var(--lime-wash); }
.cmd__copy i, .cmd__copy svg { width: 14px; height: 14px; }
.cmd__copy.is-done { border-color: var(--lime); color: var(--lime-deep); background: var(--lime-wash); }
.cmd pre {
	margin: 0; padding: 16px 18px; overflow-x: auto;
	background: var(--code); color: var(--code-fg);
	font-family: var(--mono); font-size: 13.5px; line-height: 1.75;
	tab-size: 2;
	height: fit-content;
}
.cmd pre code { font: inherit; color: inherit; white-space: pre; text-wrap: wrap; }

.steps { display: grid; gap: 20px; counter-reset: pza-step; }
.step { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 16px; align-items: start; }
.step__n {
	counter-increment: pza-step; width: 34px; height: 34px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%; background: var(--ink); color: #fff;
	font-family: var(--mono); font-size: 14px; font-weight: 600;
}
.step__n::before { content: counter(pza-step); }
.step__b { min-width: 0; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-3); font-size: 15.5px; margin-bottom: 12px; }

/* ══ Аккордеон ══ */
.ask { border-top: 1px solid var(--line); }
.ask__i { border-bottom: 1px solid var(--line); }
.ask__q {
	width: 100%; display: flex; align-items: flex-start; gap: 14px; justify-content: space-between;
	padding: 20px 0; background: none; border: 0; cursor: pointer;
	font: inherit; font-size: 17px; font-weight: 600; letter-spacing: -.015em;
	color: var(--ink); text-align: left;
}
.ask__q i, .ask__q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--ink-4); transition: transform .28s var(--ease), color var(--fast); }
.ask__i.is-open .ask__q i, .ask__i.is-open .ask__q svg { transform: rotate(45deg); color: var(--lime-deep); }
.ask__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.ask__i.is-open .ask__a { grid-template-rows: 1fr; }
.ask__a > div { overflow: hidden; }
.ask__a p { color: var(--ink-3); padding-bottom: 20px; max-width: 82ch; }

/* ══ Отзывы и критерии ══ */
.said { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); }
.said__c { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 20px; min-width: 0; }
.said__top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.said__by { font-weight: 600; letter-spacing: -.01em; }
.said__role { font-size: 13.5px; color: var(--ink-4); }
.said__d { font-family: var(--mono); font-size: 12.5px; color: var(--ink-4); margin-left: auto; }
.said__c p { font-size: 15.5px; color: var(--ink-2); margin-bottom: 0; }

.stars { position: relative; display: inline-flex; line-height: 0; vertical-align: middle; }
.stars__b, .stars__f { display: flex; gap: 2px; }
.stars__b { color: var(--line-2); }
.stars__f { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; white-space: nowrap; color: var(--lime-deep); }
.stars svg { width: var(--star, 16px); height: var(--star, 16px); flex-shrink: 0; fill: currentColor; stroke: currentColor; }

.score { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.score__v { font-family: var(--mono); font-size: clamp(40px, 6vw, 64px); font-weight: 600; letter-spacing: -.04em; line-height: 1; }

.crit { display: grid; gap: 14px; }
.crit__i { display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.crit__t { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.crit__n { font-weight: 600; letter-spacing: -.01em; }
.crit__v { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--lime-deep); font-weight: 600; }
.crit__bar { height: 4px; background: var(--line); border-radius: var(--pill); overflow: hidden; }
.crit__bar span { display: block; height: 100%; background: var(--lime); border-radius: var(--pill); }
.crit__i p { font-size: 15px; color: var(--ink-3); margin: 2px 0 0; }

/* ══ Иллюстрации ══ */
.art { margin: 32px 0 0; }
.art img { width: 100%; border-radius: var(--r-xl); border: 1px solid var(--line); background: var(--sur); }
.art figcaption { margin-top: 10px; font-size: 14px; color: var(--ink-4); }

/* ══ Перелинковка ══ */
.onward { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); margin-top: 44px; }
.onward__i {
	display: grid; grid-template-columns: minmax(0, 1fr) 18px; grid-template-rows: auto auto;
	gap: 4px 12px; align-items: center; align-content: center;
	padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r-xl);
	text-decoration: none; background: #fff; transition: border-color var(--fast);
}
.onward__i:hover { border-color: var(--lime); }
.onward__t { font-weight: 600; letter-spacing: -.015em; grid-column: 1; grid-row: 1; }
.onward__d { font-size: 14px; color: var(--ink-4); grid-column: 1; grid-row: 2; }
.onward__i i, .onward__i svg { width: 18px; height: 18px; grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--ink-4); }

/* ══ Полоса призыва ══ */
.push { background: var(--ink); color: #fff; border-radius: var(--r-2xl); padding: 46px 40px; }
.push h2 { color: #fff; }
.push p { color: #c9ced6; max-width: 62ch; }
.push .btn--line { color: #fff; border-color: rgba(255, 255, 255, .28); }
.push .btn--line:hover { background: rgba(255, 255, 255, .08); border-color: #fff; }

/* ══ Хлебные крошки ══ */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-4); padding-top: 26px; }
.crumbs__l { color: var(--ink-4); text-decoration: none; }
.crumbs__l:hover { color: var(--ink); }
.crumbs__c { color: var(--ink-2); }

/* Шапка внутренней страницы держит тот же ленточный фон, что и главная:
   холст сам находит .launch__mesh на любой странице. */
.head { position: relative; padding: 10px 0 44px; overflow-x: clip; min-height: 400px;
    display: flex;
    align-items: center;}
.head > .wrap { position: relative; z-index: 1; }
.head h1 { margin-bottom: 14px; }
.head__lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-3); max-width: 72ch; }

/* ══ Подвал: знак, абзац и одна лента ссылок ══ */
.foot { border-top: 1px solid var(--line); padding: 52px 0 40px; background: var(--sur); }
.foot__top { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: flex-start; margin-bottom: 28px; }
.foot__about { max-width: 46ch; }
.foot__about p { font-size: 14.5px; color: var(--ink-3); margin: 12px 0 0; }
.foot__links { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-right: auto; max-width: 620px; }
.foot__links a { font-size: 14.5px; color: var(--ink-2); text-decoration: none; }
.foot__links a:hover { color: var(--lime-deep); }
.foot__bot { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 13.5px; color: var(--ink-4); }
.foot__bot p { margin: 0; max-width: 76ch; }

/* ══ Мобильная реф-кнопка: разметка и медиазапрос собраны, а не объявлены ══ */
.mcta {
	display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
	justify-content: center;
	box-shadow: 0 8px 26px -8px rgba(16, 24, 40, .35);
}
.mcta .btn { width: 100%; justify-content: center; }

/* ══ Появление блоков: прошивка.
   Сами блоки НЕ двигаются — всё движение отдано нити, которая проходит
   поверх ряда слева направо, а содержимое проявляется вслед за ней.
   Подъём, боковой въезд, встречный съезд, шторка и перелёт заняты
   другими темами сетки; неподвижное проявление за движущейся нитью — нет. ══ */
.sew { position: relative; }
@media (prefers-reduced-motion: no-preference) {
	.sew > * { opacity: 0; }
	.sew.is-in > * { opacity: 1; transition: opacity .46s linear; }
	.sew.is-in > *:nth-child(2) { transition-delay: .09s; }
	.sew.is-in > *:nth-child(3) { transition-delay: .18s; }
	.sew.is-in > *:nth-child(4) { transition-delay: .27s; }
	.sew.is-in > *:nth-child(5) { transition-delay: .36s; }
	.sew.is-in > *:nth-child(6) { transition-delay: .45s; }
	.sew.is-in > *:nth-child(7) { transition-delay: .54s; }
	.sew.is-in > *:nth-child(8) { transition-delay: .63s; }

	.sew::before {
		content: ""; position: absolute; left: 0; top: -14px; height: 2px; width: 0;
		background: linear-gradient(90deg, transparent, var(--lime-hi) 45%, var(--lime) 55%, transparent);
		opacity: 0; pointer-events: none; border-radius: var(--pill);
	}
	.sew.is-in::before { animation: pza-sew .95s cubic-bezier(.22, .61, .36, 1) forwards; }
	@keyframes pza-sew {
		0%   { width: 0;    opacity: 0; }
		18%  { opacity: 1; }
		82%  { opacity: 1; }
		100% { width: 100%; opacity: 0; }
	}
}

/* ══ Адаптив ══ */
@media (max-width: 1100px) {
	:root { --gut: 24px; }
	.nav a { padding: 8px 9px; font-size: 14px; }
}

@media (max-width: 940px) {
	.nav { display: none; }
	.burger { display: inline-flex; }
	.bar .btn--go { margin-left: 0; order: 3; }
	.bar__in { gap: 10px; padding-right: 8px; }
	.burger { margin-left: auto; order: 2; }
}

@media (max-width: 700px) {
	:root { --gut: 16px; }
	body { font-size: 16px; }
	.strip { padding: 54px 0; }
	.launch { padding: 44px 0 60px; }
	.route { padding: 16px; border-radius: var(--r-xl); }
	.push { padding: 32px 22px; border-radius: var(--r-xl); }
	.step { grid-template-columns: 28px minmax(0, 1fr); gap: 12px; }
	.step__n { width: 28px; height: 28px; font-size: 13px; }
	.foot__links { margin-left: 0; }
}

@media (max-width: 560px) {
	.bar__in { height: 58px; padding-left: 14px; }
	.bar .btn--go { height: 38px; padding: 0 14px; font-size: 14px; }
	.mark { font-size: 16.5px; }
	.mark__ru { display: none; }
	.said__d { margin-left: 0; width: 100%; }
}

/* Ниже 460px реф-кнопка в шапке становится тесной — её роль
   принимает нижняя панель, она видна на первом экране без прокрутки. */
@media (max-width: 460px) {
	.bar .btn--go { display: none; }
	.mcta { display: flex; }
	body { padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.sew > * { opacity: 1; transform: none; }
}
