/*
Theme Name: Midjourney Ru
Theme URI: https://midjourney.help/
Author: Midjourney Ru
Description: Тема русскоязычного сайта о Midjourney. Язык дизайна — «промпт-купол»: тёмное полотно офсайта, пять смысловых цветов, широкие плиты у края окна.
Version: 1.0.0
License: proprietary
Text Domain: mjy
*/

/* ============================================================
   1. ТОКЕНЫ
   ============================================================ */
:root {
	--void: #070814;
	--ink: #0A0B18;
	--slab: #12142A;
	--slab-2: #191C36;
	--line: rgba(255, 255, 255, .10);
	--line-strong: rgba(255, 255, 255, .18);
	--text: #EDEEF7;
	--dim: #9AA0BD;

	/* пять смысловых цветов — сняты с цветных иконок офсайта */
	--emerald: #10B981;
	--amber: #EAB308;
	--rose: #E11D48;
	--violet: #A855F7;
	--azure: #3B82F6;

	--accent: var(--emerald);

	--deck: 1720px;
	--gutter: 24px;
	--col: 820px;

	--r-slab: 28px;
	--r-chip: 999px;
	--r-small: 12px;

	--f-display: 'Prosto One', 'Ubuntu Sans', system-ui, sans-serif;
	--f-text: 'Ubuntu Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--f-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;

	--head-h: 68px;
	--ease: cubic-bezier(.16, 1, .3, 1);
}

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

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

body {
	margin: 0;
	background: var(--ink);
	color: var(--text);
	font-family: var(--f-text);
	font-size: 17px;
	line-height: 1.65;
	font-weight: 400;
	overflow-x: hidden;
}

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

a { color: var(--text); text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

.visually-hidden {
	position: absolute !important; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

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

/* ============================================================
   2. КАРКАС
   ============================================================ */
.deck {
	width: min(100% - (var(--gutter) * 2), var(--deck));
	margin-inline: auto;
}

.col { max-width: var(--col); }

.strip { padding: 64px 0 8px; }
.strip--tight { padding: 32px 0 8px; }
.strip:last-of-type { padding-bottom: 48px; }

/* разделитель секций — тонкая линия без подписи */
.paramline {
	display: flex; align-items: center;
	padding: 30px 0 6px;
}
.paramline::after {
	content: ''; flex: 1 1 auto; height: 1px; background: var(--line);
}

/* ============================================================
   3. ТИПОГРАФИКА
   ============================================================ */
h1, h2, h3, h4 {
	font-family: var(--f-display);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -.015em;
	margin: 0 0 18px;
}

h1 { font-size: clamp(2.1rem, 1.3rem + 3.1vw, 4.1rem); }
h2 { font-size: clamp(1.55rem, 1.1rem + 1.9vw, 2.6rem); margin-top: 8px; }
h3 { font-size: clamp(1.12rem, .98rem + .6vw, 1.45rem); line-height: 1.25; }
h4 { font-size: 1.02rem; line-height: 1.3; }

p { margin: 0 0 16px; }

.lead {
	font-size: clamp(1.06rem, .98rem + .45vw, 1.32rem);
	line-height: 1.55;
	color: #C9CDE4;
	max-width: var(--col);
}

.dim { color: var(--dim); }
.mono { font-family: var(--f-mono); font-size: .93em; }

ul, ol { margin: 0 0 18px; padding-left: 22px; }
li { margin-bottom: 9px; }

.plain { list-style: none; padding: 0; }

/* ============================================================
   4. ЧИПЫ — несущая форма (калька пилюль офсайта)
   ============================================================ */
.chip {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 7px 16px 7px 8px;
	border: 1px solid var(--line);
	border-radius: var(--r-chip);
	background: rgba(255, 255, 255, .03);
	font-size: 14px; line-height: 1.2;
	text-decoration: none;
	transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.chip__ico {
	width: 26px; height: 26px; flex: 0 0 26px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px;
	background: color-mix(in srgb, var(--tone, var(--emerald)) 22%, transparent);
	color: var(--tone, var(--emerald));
}
.chip__ico svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.chip:hover { border-color: color-mix(in srgb, var(--tone, var(--emerald)) 55%, transparent); background: rgba(255, 255, 255, .06); }

.chip--num { padding-right: 18px; }
.chip__num { font-family: var(--f-display); font-size: 17px; color: var(--text); }
.chip__cap { color: var(--dim); font-size: 13px; }

.chiprow { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; }

/* ============================================================
   5. КНОПКИ — форма офсайта: пилюля + цветной значок
   ============================================================ */
.act {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 22px 10px 10px;
	border-radius: var(--r-chip);
	border: 1px solid var(--line);
	background: color-mix(in srgb, var(--tone, var(--emerald)) 18%, transparent);
	color: var(--text);
	font-family: var(--f-text); font-size: 16px; font-weight: 500; line-height: 1.2;
	text-decoration: none; cursor: pointer;
	transition: transform .18s var(--ease), border-color .18s var(--ease), background-color .18s var(--ease);
}
.act__ico {
	width: 28px; height: 28px; flex: 0 0 28px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px;
	background: color-mix(in srgb, var(--tone, var(--emerald)) 30%, transparent);
	color: var(--tone, var(--emerald));
}
.act__ico svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.act:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--tone, var(--emerald)) 60%, transparent); }
.act:active { transform: translateY(0); }

.act--ghost { background: rgba(255, 255, 255, .03); }
.act--sm { padding: 7px 16px 7px 7px; font-size: 14px; }
.act--sm .act__ico { width: 22px; height: 22px; flex: 0 0 22px; }
.act--sm .act__ico svg { width: 13px; height: 13px; }
.act--xs { padding: 5px 13px 5px 5px; font-size: 13px; white-space: nowrap; }
.act--xs .act__ico { width: 19px; height: 19px; flex: 0 0 19px; }
.act--xs .act__ico svg { width: 11px; height: 11px; }

.actrow { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ============================================================
   6. ШАПКА
   ============================================================ */
.stack-nav {
	position: sticky; top: 0; z-index: 60;
	background: color-mix(in srgb, var(--ink) 86%, transparent);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--line);
}
.stack-nav__row {
	display: flex; align-items: center; gap: 18px;
	min-height: var(--head-h);
}
.mark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.mark__sign { width: 30px; height: 30px; flex: 0 0 30px; }
.mark__word { font-family: var(--f-display); font-size: 19px; letter-spacing: -.01em; }
.mark__word b { font-weight: 400; color: var(--dim); }

/* Меню в одну строку и никогда в две: семь пунктов занимают 756px, и вместе
   со знаком и кнопкой ряду нужно около 1200px. Ниже этого порога шапка
   уходит в бургер (см. медиазапрос), поэтому переносу здесь взяться неоткуда. */
.routes { display: flex; gap: 4px; margin-left: 8px; flex: 1 1 auto; flex-wrap: nowrap; }
.routes a {
	padding: 7px 12px; border-radius: 999px; font-size: 15px; color: #C4C9E2; white-space: nowrap;
	text-decoration: none; transition: background-color .16s var(--ease), color .16s var(--ease);
}
.routes a:hover { background: rgba(255, 255, 255, .06); color: var(--text); }
.routes a.here { background: rgba(255, 255, 255, .09); color: var(--text); }

.burger {
	display: none; width: 42px; height: 38px; flex: 0 0 42px;
	align-items: center; justify-content: center;
	background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
	border-radius: 999px; color: var(--text); cursor: pointer;
}
.burger svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.drawer { display: none; padding: 6px 0 16px; }
.drawer.open { display: block; }
.drawer a {
	display: block; padding: 11px 14px; border-radius: var(--r-small);
	text-decoration: none; color: #C4C9E2; font-size: 16px;
}
.drawer a:hover, .drawer a.here { background: rgba(255, 255, 255, .06); color: var(--text); }

/* ============================================================
   7. ПЕРВЫЙ ЭКРАН — купол из строк-промптов
   ============================================================ */
.dome { position: relative; padding: 0 0 8px; }
.dome__sky {
	position: relative;
	border-radius: var(--r-slab);
	overflow: hidden;
	background: radial-gradient(120% 100% at 50% 0%, #141A3E 0%, var(--void) 62%);
	min-height: 460px;
	display: flex; align-items: center; justify-content: center;
}
.dome__canvas {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	display: block;
}
.dome__mid {
	position: relative; z-index: 2;
	text-align: center; padding: 78px 20px 70px;
	width: min(100%, 980px);
}
.dome__mid h1 { margin-bottom: 20px; }
.dome__mid .lead { margin-inline: auto; color: var(--text); }
.dome__acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.dome__note { margin-top: 18px; font-size: 13.5px; color: var(--dim); }

.dome__facts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }

@media (max-width: 760px) {
	.dome__sky { min-height: 400px; }
	.dome__mid { padding: 54px 14px 48px; }
}

/* ============================================================
   8. ПЛИТЫ И АСИММЕТРИЧНЫЕ РЯДЫ (референс 2)
   ============================================================ */
.slab {
	background: var(--slab);
	border: 1px solid var(--line);
	border-radius: var(--r-slab);
	padding: 26px 28px;
}
.slab--deep { background: var(--slab-2); }
.slab--bare { background: transparent; }
.slab--tone {
	background: linear-gradient(180deg, color-mix(in srgb, var(--tone, var(--emerald)) 16%, var(--slab)) 0%, var(--slab) 70%);
	border-color: color-mix(in srgb, var(--tone, var(--emerald)) 34%, transparent);
}
.slab > :last-child { margin-bottom: 0; }

.rows { display: grid; gap: 18px; grid-template-columns: minmax(0, 1fr); }
.rows--37 { grid-template-columns: minmax(0, 1fr); }
.rows--55 { grid-template-columns: minmax(0, 1fr); }
.rows--3 { grid-template-columns: minmax(0, 1fr); }
.rows--4 { grid-template-columns: minmax(0, 1fr); }
.rows--2 { grid-template-columns: minmax(0, 1fr); }

@media (min-width: 900px) {
	.rows--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.rows--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.rows--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.rows--37 { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
	.rows--55 { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
@media (min-width: 1180px) {
	.rows--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stackpair { display: grid; gap: 18px; grid-template-columns: minmax(0, 1fr); }

/* ============================================================
   9. ГАЛЕРЕЯ-КАРУСЕЛЬ (референс 1)
   ============================================================ */
.railgal { position: relative; }
.railgal__track {
	display: flex; gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 10px 0 18px;
	scrollbar-width: none;
	perspective: 1400px;
}
.railgal__track::-webkit-scrollbar { display: none; }

.railgal__card {
	flex: 0 0 clamp(200px, 22vw, 300px);
	scroll-snap-align: center;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--slab-2);
	aspect-ratio: 3 / 4;
	position: relative;
	transform: rotateY(var(--tilt, 0deg));
	transition: transform .5s var(--ease), border-color .3s var(--ease);
}
.railgal__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.railgal__card:hover { border-color: var(--line-strong); }
.railgal__card:hover img { transform: scale(1.07); }
.railgal__card.mid { flex-basis: clamp(240px, 26vw, 350px); }

.railgal__cap {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 26px 16px 14px;
	background: linear-gradient(180deg, transparent, rgba(7, 8, 20, .92));
	font-size: 13.5px; color: #DDE1F2;
}
.railgal__nav { display: flex; gap: 10px; justify-content: center; margin-top: 6px; }
.railgal__btn {
	width: 44px; height: 44px; border-radius: 999px;
	border: 1px solid var(--line); background: rgba(255, 255, 255, .04);
	color: var(--text); cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background-color .18s var(--ease), border-color .18s var(--ease);
}
.railgal__btn:hover { background: rgba(255, 255, 255, .09); border-color: var(--line-strong); }
.railgal__btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.railgal__btn--go { width: 62px; background: color-mix(in srgb, var(--rose) 26%, transparent); border-color: color-mix(in srgb, var(--rose) 45%, transparent); }

/* картинка растёт внутри неподвижной рамки — просьба владельца */
.zoomframe { overflow: hidden; border-radius: 20px; border: 1px solid var(--line); background: var(--slab-2); }
.zoomframe img { transition: transform .55s var(--ease); width: 100%; }
.zoomframe:hover img { transform: scale(1.06); }

.shot { position: relative; }
.shot__ph {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	background: repeating-linear-gradient(135deg, #14172E 0 12px, #191D38 12px 24px);
	color: var(--dim); font-family: var(--f-mono); font-size: 12px;
}

/* ============================================================
   10. ТАРИФЫ
   ============================================================ */
.tierslab { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.tierslab__top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.tierslab__name { font-family: var(--f-display); font-size: 1.28rem; }
.tierslab__price { font-family: var(--f-display); font-size: clamp(1.7rem, 1.3rem + 1.1vw, 2.35rem); line-height: 1; }
.tierslab__per { font-size: 13px; color: var(--dim); }
.tierslab__year { font-size: 13.5px; color: var(--dim); font-family: var(--f-mono); }
.tierslab ul { margin: 0; padding: 0; list-style: none; }
.tierslab li { display: flex; gap: 9px; align-items: flex-start; font-size: 15px; margin-bottom: 8px; }
.tierslab li svg { width: 15px; height: 15px; flex: 0 0 15px; margin-top: 5px; stroke: currentColor; fill: none; stroke-width: 2.2; color: var(--tone, var(--emerald)); }
.tierslab .act { margin-top: auto; align-self: flex-start; }
.tierslab__flag {
	align-self: flex-start;
	font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
	padding: 4px 11px; border-radius: 999px;
	background: color-mix(in srgb, var(--tone, var(--emerald)) 26%, transparent);
	color: var(--text);
}

/* ============================================================
   11. ТАБЛИЦЫ
   ============================================================ */
.tablewrap { overflow-x: auto; border-radius: var(--r-slab); border: 1px solid var(--line); background: var(--slab); }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--f-mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--dim); font-weight: 400; }
tr:last-child td { border-bottom: 0; }
td.num { font-family: var(--f-mono); white-space: nowrap; }

@media (max-width: 640px) {
	.tablewrap { border: 0; background: transparent; overflow: visible; }
	table, thead, tbody, tr, td { display: block; width: 100%; }
	thead { display: none; }
	tr { background: var(--slab); border: 1px solid var(--line); border-radius: var(--r-slab); margin-bottom: 14px; padding: 6px 4px; }
	td { border-bottom: 1px solid var(--line); padding: 11px 16px; }
	tr td:last-child { border-bottom: 0; }
	td::before {
		content: attr(data-label);
		display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: .05em;
		text-transform: uppercase; color: var(--dim); margin-bottom: 4px;
	}
}

/* ============================================================
   12. FAQ-АККОРДЕОН
   ============================================================ */
.qa { border: 1px solid var(--line); border-radius: var(--r-slab); background: var(--slab); overflow: hidden; }
.qa__item + .qa__item { border-top: 1px solid var(--line); }
.qa__q {
	width: 100%; display: flex; gap: 14px; align-items: flex-start; justify-content: space-between;
	background: none; border: 0; color: var(--text); cursor: pointer;
	font-family: var(--f-text); font-size: 16.5px; font-weight: 500; text-align: left;
	padding: 18px 22px; line-height: 1.4;
}
.qa__q svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 3px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .22s var(--ease); color: var(--dim); }
.qa__item.open .qa__q svg { transform: rotate(45deg); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s var(--ease); }
.qa__item.open .qa__a { grid-template-rows: 1fr; }
.qa__a > div { overflow: hidden; }
.qa__a p { padding: 0 22px 18px; margin: 0; color: #C7CCE6; font-size: 15.5px; }
.qa__a p + p { padding-top: 0; }

/* ============================================================
   13. ОТЗЫВЫ И РЕЙТИНГ
   ============================================================ */
.grade { display: inline-flex; gap: 3px; position: relative; line-height: 0; }
.grade__row { display: inline-flex; gap: 3px; }
.grade__row svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.grade__bg { color: rgba(255, 255, 255, .18); }
.grade__fill { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; white-space: nowrap; }
.grade .grade__fill { color: var(--amber); }

.rate { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rate__big { font-family: var(--f-display); font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); line-height: 1; }

.voice { display: flex; flex-direction: column; gap: 10px; }
.voice__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.voice__who { font-weight: 600; font-size: 15.5px; }
.voice__when { font-family: var(--f-mono); font-size: 12px; color: var(--dim); }
.voice p { font-size: 15.5px; color: #C7CCE6; margin: 0; }

/* ============================================================
   14. ПОДВАЛ — одна лента ссылок, без трёх колонок
   ============================================================ */
.foot { border-top: 1px solid var(--line); margin-top: 54px; padding: 34px 0 40px; background: var(--void); }
.foot__mark { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot__about { max-width: 720px; color: var(--dim); font-size: 15px; }
.foot__band { display: flex; flex-wrap: wrap; gap: 6px 4px; margin: 18px 0; }
.foot__band a { padding: 6px 12px; border-radius: 999px; font-size: 14.5px; color: #C4C9E2; text-decoration: none; }
.foot__band a:hover { background: rgba(255, 255, 255, .06); color: var(--text); }
.foot__fine { border-top: 1px solid var(--line); padding-top: 16px; font-size: 13px; color: var(--dim); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }

/* ============================================================
   15. ХЛЕБНЫЕ КРОШКИ И ШАПКА СТРАНИЦЫ
   ============================================================ */
.trail { font-family: var(--f-mono); font-size: 12.5px; color: var(--dim); padding: 22px 0 10px; }
.trail a { color: var(--dim); text-decoration: none; }
.trail a:hover { color: var(--text); }
.trail span { margin: 0 7px; opacity: .5; }

.pagehead { padding: 6px 0 10px; }
.pagehead h1 { margin-bottom: 16px; }

/* ============================================================
   16. АНИМАЦИЯ: всплывающий текст и подъём строк
   ============================================================ */
.riser { opacity: 0; transform: translateY(26px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.riser.lit { opacity: 1; transform: none; }
.riser.d1 { transition-delay: .07s; }
.riser.d2 { transition-delay: .14s; }
.riser.d3 { transition-delay: .21s; }
.riser.d4 { transition-delay: .28s; }

/* заголовок поднимается построчно из-под горизонта */
.lift { display: block; }
.lift .lift__ln { display: block; overflow: hidden; }
.lift .lift__ln > span {
	display: block;
	transform: translateY(102%) rotateX(38deg);
	transform-origin: 50% 0;
	opacity: 0;
	transition: transform .72s var(--ease), opacity .5s var(--ease);
}
.lift.lit .lift__ln > span { transform: none; opacity: 1; }
.lift.lit .lift__ln:nth-child(2) > span { transition-delay: .09s; }
.lift.lit .lift__ln:nth-child(3) > span { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
	.riser, .lift .lift__ln > span { opacity: 1 !important; transform: none !important; transition: none !important; }
	.railgal__track { scroll-behavior: auto; }
	* { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   17. МЕЛОЧИ
   ============================================================ */
.note {
	border-left: 2px solid color-mix(in srgb, var(--tone, var(--azure)) 60%, transparent);
	padding: 2px 0 2px 16px; color: #C7CCE6; margin: 0 0 18px;
}
.kv { display: flex; flex-wrap: wrap; gap: 8px 26px; font-size: 15px; margin-bottom: 16px; }
.kv b { font-weight: 600; }

.steps { counter-reset: st; list-style: none; padding: 0; }
.steps > li { counter-increment: st; position: relative; padding-left: 46px; margin-bottom: 18px; }
.steps > li::before {
	content: counter(st);
	position: absolute; left: 0; top: 0;
	width: 30px; height: 30px; border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--f-display); font-size: 14px;
	background: color-mix(in srgb, var(--tone, var(--violet)) 24%, transparent);
	color: var(--text);
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
	font-family: var(--f-mono); font-size: 12px; padding: 4px 11px; border-radius: 999px;
	border: 1px solid var(--line); color: var(--dim);
}

@media (max-width: 1219px) {
	.routes { display: none; }
	.burger { display: inline-flex; margin-left: auto; }
	.stack-nav__row { gap: 10px; }
}
@media (max-width: 430px) {
	:root { --gutter: 14px; }
	.mark__word { font-size: 17px; }
	.act { padding: 9px 16px 9px 9px; font-size: 15px; }
	.slab { padding: 20px 18px; }
}
@media (max-width: 359px) {
	.mark__word b { display: none; }
}
