/*
Theme Name: Sova VPN Ru
Description: Тема сайта Sova VPN Ru. Язык дизайна — «ночной обзор».
Version: 1.0.3
Author: Sova VPN Ru
*/

/* ══ Шрифты ═══════════════════════════════════════════════
   Лежат файлами в теме, а не подключаются строкой с Google Fonts —
   правило сетки от 08.09.2026.

   Набор: Bellota Text. Поставлен 09.09.2026 вместо Tuffy, у которого
   кириллица нарисована от латиницы: «у» — буквально латинская «y»,
   у «Д» нет выносных ножек, у «л» нет диагонали, а знака рубля
   (U+20BD) в шрифте нет вовсе, из-за чего все цены на сайте
   дорисовывались системным шрифтом. У Bellota Text «й» и «Й» с
   бревисом, «у», «д», «л», «ж», «ф» — кириллического рисунка,
   ₽ и № на месте; проверено не комментарием «cyrillic» в ответе css2,
   а отрисовкой специмена и разбором cmap обоих начертаний.

   Выводка: Bona Nova. Остаётся дисплейным — её кириллица нарисована
   правильно, и в сетке семейство больше нигде не занято.

   Оба файла подрезаны до кириллицы, базовой латиницы и знаков ₽ и №:
   четыре файла на 48 КБ вместо 12 субсетов Google на 296 КБ.
   ═══════════════════════════════════════════════════════ */
@font-face{font-family:'Bellota Text';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/bellotatext-400.woff2) format('woff2')}
@font-face{font-family:'Bellota Text';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/bellotatext-700.woff2) format('woff2')}
@font-face{font-family:'Bona Nova';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/bonanova-400.woff2) format('woff2')}
@font-face{font-family:'Bona Nova';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/bonanova-700.woff2) format('woff2')}

/* ══ Токены ═══════════════════════════════════════════════ */
:root {
	--bg:        #070221;
	--surface:   #130a38;
	--surface-2: #1b1049;
	--line:      #31206e;
	--line-soft: #241560;
	--ink:       #f3eeff;
	--muted:     #a99ada;
	--violet:    #7c3ff2;
	--violet-lo: #5a1eae;
	--magenta:   #f54be1;
	--blue:      #4173ff;
	--cyan:      #73d7ff;

	--w:   1240px;
	--pad: clamp(16px, 4vw, 52px);
	--col: 760px;

	--f-display: "Bona Nova", Georgia, "Times New Roman", serif;
	--f-text:    "Bellota Text", "Segoe UI", system-ui, sans-serif;

	--r:    18px;
	--r-sm: 10px;
	--top-h: 68px;
}

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

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

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

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

a { color: inherit; }

h1, h2, h3 {
	font-family: var(--f-display);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 .5em;
	/* Длинные русские слова («конфиденциальности») на 320px не помещаются
	   в колонку и распирают страницу — перенос разрешаем явно. */
	overflow-wrap: anywhere;
	word-break: break-word;
	/* Bona Nova по умолчанию даёт минускульные цифры — в ценах они прыгают
	   по высоте, поэтому везде включаем прописные. */
	font-variant-numeric: lining-nums;
	font-feature-settings: "lnum" 1;
}
.rate__price b, .tally b, .score__num, .crit__val, .rate__days {
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
}
h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.55rem, 1.1rem + 1.9vw, 2.5rem); }
h3 { font-size: clamp(1.12rem, 1rem + .55vw, 1.4rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.05rem, 1rem + .5vw, 1.28rem); color: #ded4ff; }

.skip {
	position: absolute; left: -9999px; top: 0; z-index: 60;
	background: var(--violet); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.wrap { width: min(100% - var(--pad) * 2, var(--w)); margin-inline: auto; }
.wrap--col { width: min(100% - var(--pad) * 2, var(--col)); margin-inline: auto; }

/* ══ Кнопка ═══════════════════════════════════════════════ */
.go {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px; padding: 13px 26px; border-radius: 999px;
	background: linear-gradient(118deg, var(--violet), #a03df0 55%, var(--magenta));
	color: #fff; text-decoration: none; font-weight: 700; font-size: .98rem;
	border: 0; cursor: pointer;
	box-shadow: 0 10px 26px -14px rgba(124, 63, 242, .95);
	transition: box-shadow .2s ease, filter .2s ease;
}
.go:hover, .go:focus-visible { box-shadow: 0 14px 32px -12px rgba(245, 75, 225, .8); filter: saturate(1.12); }
.go--sm { padding: 10px 20px; font-size: .9rem; }
.go--ghost {
	background: none; box-shadow: none; color: var(--ink);
	border: 1px solid var(--line); font-weight: 600;
}
.go--ghost:hover, .go--ghost:focus-visible { border-color: var(--magenta); box-shadow: none; }
.go--xs { padding: 7px 14px; font-size: .82rem; white-space: nowrap; box-shadow: none; }
.go__short { display: none; }

/* ══ Шапка ════════════════════════════════════════════════ */
.top {
	position: sticky; top: 0; z-index: 40;
	background: rgba(7, 2, 33, .72);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, background .2s ease;
}
.top.is-down { border-bottom-color: var(--line-soft); background: rgba(7, 2, 33, .92); }
.top__in {
	width: min(100% - var(--pad) * 2, var(--w));
	margin-inline: auto;
	min-height: var(--top-h);
	display: flex; align-items: center; gap: 18px;
}
.mark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.mark__sign { width: 34px; height: 34px; flex: 0 0 34px; }
.mark__sign svg { width: 100%; height: 100%; display: block; }
.mark__txt {
	font-family: var(--f-display); font-weight: 700; font-size: 1.12rem;
	letter-spacing: -.01em; white-space: nowrap;
}
.mark__txt i {
	font-style: normal; font-size: .62em; color: var(--magenta);
	margin-left: 5px; letter-spacing: .08em; vertical-align: .28em;
}
.mark--base { display: inline-flex; }
.mark--base .mark__sign { width: 30px; height: 30px; flex-basis: 30px; }
.mark--base .mark__txt { font-size: 1.05rem; }
.menu { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }
.menu a {
	text-decoration: none; font-size: .92rem; color: var(--muted);
	padding: 4px 0; border-bottom: 1px solid transparent;
	transition: color .18s ease, border-color .18s ease;
}
.menu a:hover, .menu a:focus-visible { color: var(--ink); border-bottom-color: var(--magenta); }
.menu a.here { color: var(--ink); border-bottom-color: var(--violet); }
.go--sm.js-tg { flex: 0 0 auto; }

.hatch {
	display: none; width: 42px; height: 38px; flex: 0 0 42px;
	background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
	position: relative; cursor: pointer;
}
.hatch span, .hatch span::before, .hatch span::after {
	position: absolute; left: 50%; width: 18px; height: 2px; background: var(--ink);
	transform: translateX(-50%); border-radius: 2px; content: "";
	transition: transform .18s ease, opacity .18s ease;
}
.hatch span { top: 50%; margin-top: -1px; }
.hatch span::before { top: -6px; left: 0; transform: none; }
.hatch span::after  { top:  6px; left: 0; transform: none; }
.hatch.is-open span { background: transparent; }
.hatch.is-open span::before { transform: translateY(6px) rotate(45deg); }
.hatch.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

.drop { border-top: 1px solid var(--line-soft); background: var(--bg); }
.drop nav {
	width: min(100% - var(--pad) * 2, var(--w)); margin-inline: auto;
	display: grid; grid-template-columns: minmax(0, 1fr); padding: 10px 0 18px;
}
.drop a {
	text-decoration: none; padding: 11px 0; color: var(--muted);
	border-bottom: 1px solid var(--line-soft); font-size: 1rem;
}
.drop a.here { color: var(--ink); }
[hidden] { display: none !important; }

/* ══ Первый экран ═════════════════════════════════════════ */
.watch { padding: clamp(26px, 4vw, 44px) 0 clamp(56px, 7vw, 96px); }
.watch__stage {
	position: relative; border-radius: 26px; overflow: hidden;
	min-height: clamp(340px, 46vw, 560px);
	display: flex; flex-direction: column; justify-content: flex-end;
	padding: clamp(24px, 4vw, 52px);
	background:
		radial-gradient(120% 90% at 82% 12%, rgba(245, 75, 225, .38), transparent 62%),
		radial-gradient(110% 80% at 12% 88%, rgba(65, 115, 255, .34), transparent 60%),
		linear-gradient(160deg, #1b1049, #0a0428 70%);
	border: 1px solid var(--line);
}
.watch__stage img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; opacity: .62; z-index: 0;
}
.watch__stage::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(15deg, rgba(7, 2, 33, .93) 8%, rgba(7, 2, 33, .55) 46%, rgba(7, 2, 33, .18));
}
.watch__body { position: relative; z-index: 2; }
.watch__name { margin: 0 0 .5rem; display: grid; gap: 10px; }
.watch__brand {
	font-size: clamp(2.6rem, 1rem + 7.4vw, 6.6rem); line-height: .9; letter-spacing: -.045em;
	display: block;
}
.watch__brand em { font-style: normal; color: var(--magenta); }
.watch__type {
	display: block; font-family: var(--f-text); font-weight: 400;
	font-size: clamp(1rem, .9rem + .7vw, 1.42rem); line-height: 1.3;
	letter-spacing: 0; color: #ded4ff; max-width: 26ch;
}
.watch__lead { position: relative; z-index: 2; max-width: 52ch; margin: 0 0 22px; }
.watch__acts { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.watch--in .watch__stage { min-height: clamp(230px, 26vw, 330px); }
.watch--in .watch__brand { font-size: clamp(1.9rem, 1.1rem + 3.4vw, 3.6rem); }
.watch--in .watch__type { font-size: clamp(.98rem, .92rem + .4vw, 1.18rem); max-width: 38ch; }

/* ══ Утилиты ══════════════════════════════════════════════ */
code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .88em; background: var(--surface-2); border: 1px solid var(--line-soft);
	border-radius: 6px; padding: 1px 6px; word-break: break-word;
}
.zone a:not(.go):not(.next__one) { color: var(--magenta); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.zone a:not(.go):not(.next__one):hover { color: var(--cyan); }

.mt-s { margin-top: 16px; }
.mt-m { margin-top: 24px; }
.mt-l { margin-top: 38px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.hold { max-width: 56ch; margin-inline: auto; }

/* Лента локаций под первым экраном */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.chips li {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
	font-size: .84rem; color: var(--muted); background: rgba(27, 16, 73, .5);
}
.chips .flag { width: 18px; height: 12px; border-radius: 2px; flex: 0 0 18px; }

/* Числа: цифра с вертикальной подписью и неоновой нитью под ней */
.tallies {
	display: grid; gap: 20px; margin: clamp(30px, 4vw, 48px) 0 0;
	grid-template-columns: minmax(0, 1fr);
}
.tally { display: inline-flex; align-items: flex-start; gap: 8px; }
.tally b {
	font-family: var(--f-display); font-weight: 700;
	font-size: clamp(2rem, 1.2rem + 2.4vw, 3.2rem); line-height: .9; letter-spacing: -.03em;
	background: linear-gradient(112deg, var(--cyan), var(--violet) 45%, var(--magenta));
	-webkit-background-clip: text; background-clip: text; color: transparent;
	padding-bottom: 8px; border-bottom: 2px solid transparent;
	border-image: linear-gradient(90deg, var(--violet), var(--magenta)) 1;
}
.tally i {
	writing-mode: vertical-rl; font-style: normal; font-size: .64rem;
	letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding-top: 3px;
}
.tally-cap { display: block; margin-top: 10px; font-size: .9rem; color: var(--muted); max-width: 32ch; }

/* ══ Ритм: разделителей нет, чередуется ширина колонки ════ */
.zone { padding: clamp(48px, 6vw, 104px) 0; }
.zone__head { max-width: 40ch; margin: 0 0 clamp(24px, 3vw, 40px); }
.zone__head p { color: var(--muted); margin-bottom: 0; }
.zone--edge .zone__head { max-width: 46ch; }

/* ══ Карточка ═════════════════════════════════════════════ */
.panes { display: grid; gap: 18px; grid-template-columns: minmax(0, 1fr); }
.panes--2 { grid-template-columns: minmax(0, 1fr); }
.panes--3 { grid-template-columns: minmax(0, 1fr); }

.pane {
	position: relative; overflow: hidden;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--r); padding: 24px 22px;
	min-width: 0;
}
.pane::before {
	content: ""; position: absolute; top: -30px; left: -30px;
	width: 66px; height: 66px; border-radius: 50%;
	background: var(--bg); box-shadow: inset 0 0 0 1px var(--line);
}
.pane__t { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; }
.pane__t h3 { margin: 0; }
.pane__eye {
	flex: 0 0 12px; width: 12px; height: 12px; border-radius: 50%;
	background: var(--cyan); transform: scaleY(.1);
	transition: transform .24s ease, box-shadow .24s ease;
}
.pane:hover .pane__eye, .pane:focus-within .pane__eye {
	transform: scaleY(1);
	box-shadow: 0 0 0 4px rgba(115, 215, 255, .14), 0 0 16px rgba(124, 63, 242, .8);
}
.pane p { color: var(--muted); margin-bottom: 0; }
.pane p + p { margin-top: .8em; }
.pane p strong, .pane li strong { color: var(--ink); font-weight: 600; }

.pane--wide { grid-column: 1 / -1; }
.pane--flat { background: none; }

/* ══ Тарифы ═══════════════════════════════════════════════ */
.rates { display: grid; gap: 18px; grid-template-columns: minmax(0, 1fr); margin: 0; }
.rate {
	position: relative; display: flex; flex-direction: column; gap: 12px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--r); padding: 26px 22px; min-width: 0;
}
.rate--best { border-color: var(--magenta); background: linear-gradient(180deg, #22114f, #130a38); }
.rate__mark {
	position: absolute; top: -12px; left: 22px; padding: 4px 12px; border-radius: 999px;
	background: linear-gradient(112deg, var(--violet), var(--magenta));
	font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff;
}
.rate__days { font-family: var(--f-display); font-size: 1.3rem; }
.rate__price { display: flex; align-items: baseline; gap: 8px; }
.rate__price b { font-family: var(--f-display); font-size: 2.5rem; line-height: 1; }
.rate__price span { color: var(--muted); font-size: .92rem; }
.rate__note { color: var(--muted); font-size: .93rem; margin: 0; }
.rate .go { margin-top: auto; }

/* ══ Таблица ══════════════════════════════════════════════ */
.tw { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
table.tab { width: 100%; border-collapse: collapse; min-width: 520px; font-size: .95rem; }
table.tab th, table.tab td {
	text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: top;
}
table.tab thead th { background: var(--surface-2); font-weight: 700; font-size: .88rem; }
table.tab tbody tr:last-child td { border-bottom: 0; }
table.tab td b { color: var(--ink); }

/* ══ Вопросы ══════════════════════════════════════════════ */
.asks { display: grid; gap: 10px; grid-template-columns: minmax(0, 1fr); }
.ask { border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); overflow: hidden; }
.ask__q {
	width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
	color: var(--ink); font: 600 1.02rem/1.4 var(--f-text);
	padding: 17px 52px 17px 20px; position: relative;
}
.ask__q::after {
	content: ""; position: absolute; right: 20px; top: 50%; width: 11px; height: 11px;
	margin-top: -6px; border-right: 2px solid var(--magenta); border-bottom: 2px solid var(--magenta);
	transform: rotate(45deg); transition: transform .22s ease;
}
.ask.is-open .ask__q::after { transform: rotate(-135deg); }
.ask__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s ease; }
.ask.is-open .ask__a { grid-template-rows: 1fr; }
.ask__a > div { overflow: hidden; }
.ask__a p { color: var(--muted); padding: 0 20px 18px; margin: 0; }

/* ══ Отзывы ═══════════════════════════════════════════════ */
.saids { display: grid; gap: 16px; grid-template-columns: minmax(0, 1fr); }
.said { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px; min-width: 0; }
.said__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.said__who { font-weight: 700; }
.said__city, .said__date { color: var(--muted); font-size: .85rem; }
.said p { margin: 0; color: #d6cdf5; }

.stars { position: relative; display: inline-flex; line-height: 0; vertical-align: middle; }
.stars__bg, .stars__fg { display: flex; gap: 2px; }
.stars__bg { color: var(--line); }
.stars__fg { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; white-space: nowrap; color: #ffb020; }
.stars svg { width: var(--star, 18px); height: var(--star, 18px); flex-shrink: 0; fill: currentColor; }

.score { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.score__num { font-family: var(--f-display); font-size: 3rem; line-height: 1; }
.crits { display: grid; gap: 12px; grid-template-columns: minmax(0, 1fr); }
.crit { display: grid; gap: 6px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); }
.crit__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.crit__name { font-weight: 700; }
.crit__val { font-family: var(--f-display); color: var(--magenta); }
.crit p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ══ Крошки и перелинковка ════════════════════════════════ */
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); padding: 22px 0 0; flex-wrap: wrap; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--magenta); }
.crumbs__now { color: var(--ink); }

.next { padding: clamp(40px, 5vw, 72px) 0 0; }
.next__t { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); }
.next__row { display: grid; gap: 14px; grid-template-columns: minmax(0, 1fr); }
.next__one {
	display: grid; gap: 6px; padding: 20px; text-decoration: none;
	border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
	transition: border-color .2s ease;
}
.next__one:hover { border-color: var(--magenta); }
.next__one b { font-family: var(--f-display); font-size: 1.14rem; }
.next__one span { color: var(--muted); font-size: .9rem; }

/* ══ Списки ═══════════════════════════════════════════════ */
.marks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.marks li { position: relative; padding-left: 26px; color: var(--muted); }
.marks li::before {
	content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px;
	border-radius: 50%; background: linear-gradient(112deg, var(--violet), var(--magenta));
}
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 16px; }
.steps li { counter-increment: s; position: relative; padding-left: 52px; }
.steps li::before {
	content: counter(s); position: absolute; left: 0; top: -2px;
	width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
	font-family: var(--f-display); font-weight: 700; color: var(--ink);
	border: 1px solid var(--line); background: var(--surface-2);
}
.steps b { display: block; margin-bottom: 4px; }
.steps p { color: var(--muted); margin: 0; }

/* ══ Медиа-панель ═════════════════════════════════════════ */
.shot { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--surface-2); aspect-ratio: 16 / 9; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot.is-blank::after {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(70% 60% at 30% 25%, rgba(124, 63, 242, .5), transparent 65%),
		radial-gradient(60% 60% at 78% 78%, rgba(245, 75, 225, .38), transparent 62%),
		var(--surface-2);
}

/* ══ Подвал ═══════════════════════════════════════════════ */
.base { border-top: 1px solid var(--line-soft); margin-top: clamp(48px, 6vw, 96px); background: linear-gradient(180deg, #0a0428, #0d0632); }
.base__in { width: min(100% - var(--pad) * 2, var(--w)); margin-inline: auto; padding: clamp(30px, 4vw, 52px) 0 34px; }
.base__rule {
	display: flex; justify-content: space-between; align-items: center; gap: 12px;
	font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
	padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); margin-bottom: clamp(26px, 3vw, 40px);
}
.base__grid { display: grid; gap: 30px; grid-template-columns: minmax(0, 1fr); }
.base__cell h2 { font-size: 1rem; letter-spacing: .04em; margin-bottom: 14px; }
.base__cell ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.base__cell a { color: var(--muted); text-decoration: none; font-size: .94rem; }
.base__cell a:hover { color: var(--ink); }
.base__cell--lead p { color: var(--muted); font-size: .94rem; margin: 14px 0 18px; max-width: 42ch; }
.base__cell--lead .mark { margin-bottom: 2px; }
.base__foot {
	margin-top: clamp(28px, 3vw, 40px); padding-top: 20px; border-top: 1px solid var(--line-soft);
	display: grid; gap: 14px;
}
.base__note { color: var(--muted); font-size: .86rem; margin: 0; max-width: 74ch; }
.base__legal { margin: 0; font-size: .86rem; display: flex; gap: 10px; flex-wrap: wrap; color: var(--muted); }
.base__legal a { text-decoration: none; }
.base__legal a:hover { color: var(--magenta); }

/* ══ «Розжиг»: приход снизу с разгоранием из темноты ══════ */
.js .lit { opacity: 0; transform: translateY(26px); filter: brightness(.35); }
.js .lit.is-lit {
	opacity: 1; transform: none; filter: brightness(1);
	transition: opacity .55s ease, transform .6s cubic-bezier(.2, .8, .3, 1), filter .8s ease;
}
.js .lit:nth-child(2)  { transition-delay: .06s; }
.js .lit:nth-child(3)  { transition-delay: .12s; }
.js .lit:nth-child(4)  { transition-delay: .18s; }
.js .lit:nth-child(5)  { transition-delay: .24s; }
.js .lit:nth-child(6)  { transition-delay: .30s; }

/* ══ Ширины ═══════════════════════════════════════════════ */
@media (min-width: 620px) {
	.tallies { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.panes--2, .panes--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.rates { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.saids { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.crits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.next__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.base__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.base__foot { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
}
@media (min-width: 1001px) {
	.tallies { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.panes--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.rates { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.base__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

@media (max-width: 1000px) {
	.menu { display: none; }
	.hatch { display: inline-flex; }
	.go--sm.js-tg { margin-left: auto; }
}
@media (max-width: 480px) {
	.go__full { display: none; }
	.go__short { display: inline; }
	.go--sm { padding: 9px 15px; }
}
@media (max-width: 360px) {
	.mark__txt { display: none; }
}

/* Таблица стеком карточек на узком экране */
@media (max-width: 640px) {
	.tw { overflow-x: visible; border: 0; }
	table.tab { min-width: 0; }
	table.tab thead {
		position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
		overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
	}
	table.tab, table.tab tbody, table.tab tr, table.tab td { display: block; width: 100%; }
	table.tab tr { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 12px; overflow: hidden; }
	table.tab tr:last-child { margin-bottom: 0; }
	table.tab td { padding: 10px 14px 10px 44%; position: relative; min-height: 20px; }
	table.tab tr td:last-child { border-bottom: 0; }
	table.tab td::before {
		content: attr(data-label); position: absolute; left: 14px; top: 10px; width: 38%;
		font-weight: 700; font-size: .8rem; color: var(--muted);
	}
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
	.js .lit { opacity: 1; transform: none; filter: none; }
}
