/* d9 — «Editorial-мозаика (bento)». Всё оформление на шести переменных генератора. */

:root {
	/* базовые — перезаписываются блоком Custom overrides в конце файла */
	--color-bg: #ffffff;
	--color-surface: #f7f7f7;
	--color-text: #1a1a1a;
	--color-accent: #2563eb;
	--font-base: 'Segoe UI', system-ui, sans-serif;
	--radius: 8px;

	/* производные — считаются от базовых, поэтому подхватывают любую палитру */
	--mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--ink: var(--color-text);
	--accent-ink: color-mix(in srgb, var(--color-accent) 72%, var(--color-text));
	--accent-on-ink: color-mix(in srgb, var(--color-accent) 52%, var(--color-bg));
	--fill: color-mix(in srgb, var(--color-accent) 10%, var(--color-bg));
	--fill-2: color-mix(in srgb, var(--color-accent) 19%, var(--color-bg));
	--line: color-mix(in srgb, var(--color-text) 15%, transparent);
	--line-2: color-mix(in srgb, var(--color-text) 9%, transparent);
	--line-on-ink: color-mix(in srgb, var(--color-bg) 22%, transparent);
	--muted: color-mix(in srgb, var(--color-text) 64%, var(--color-bg));
	--muted-on-ink: color-mix(in srgb, var(--color-bg) 74%, var(--color-text));
	--r: clamp(0px, calc(var(--radius) * 1.1), 22px);
	--r-sm: clamp(0px, calc(var(--radius) * .7), 12px);
	--wrap: 1240px;
	--pad: clamp(14px, 3.4vw, 44px);
	--gap: clamp(10px, 1.1vw, 16px);
}

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

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

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-base);
	font-size: 16.5px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol, blockquote, figure, table { margin: 0; padding: 0; }
h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; }
ul, ol { list-style: none; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-ink); }

::selection { background: var(--fill-2); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100; padding: 12px 18px; background: var(--ink); color: var(--color-bg); font-weight: 700; }
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* служебная подпись: моноширинный кикер */

.kick {
	font-family: var(--mono); font-size: 11.5px; font-weight: 500; line-height: 1.4;
	letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink);
}
.kick--m { color: var(--muted); }

/* мозаика: 6 колонок, спаны раздаёт :nth-child, поэтому 6 / 9 / 12 плиток ложатся без дыр */

.mos { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--gap); }
.tile {
	position: relative; grid-column: span 2; display: flex; flex-direction: column;
	padding: clamp(20px, 2vw, 30px); background: var(--color-bg);
	border: 1px solid var(--line-2); border-radius: var(--r);
	transition: border-color .2s, background .2s;
}
.tile:nth-child(6n+1), .tile:nth-child(6n+2) { grid-column: span 3; }
/* остатки: одна плитка в хвосте растягивается, а не оставляет дыру */
.tile:last-child:nth-child(6n+1), .tile:last-child:nth-child(6n+3) { grid-column: span 6; }
.tile:last-child:nth-child(6n+4) { grid-column: span 4; }
.tile:hover { border-color: var(--line); }

/* акценты внутри мозаики: заливка и одна вывернутая плитка на цикл */
.tile:nth-child(6n+1) { background: var(--fill); border-color: transparent; }
.tile:nth-child(6n+5) { background: var(--color-surface); border-color: transparent; }
.tile--ink, .tile:nth-child(6n+2) { background: var(--ink); border-color: transparent; color: var(--color-bg); }
.tile:nth-child(6n+2) .kick, .tile--ink .kick { color: var(--accent-on-ink); }
.tile:nth-child(6n+2) .tile__x, .tile--ink .tile__x { color: var(--muted-on-ink); }
.tile:nth-child(6n+2) .tile__n, .tile--ink .tile__n { color: var(--accent-on-ink); }
.tile:nth-child(6n+2) .tile__tag, .tile--ink .tile__tag { color: var(--muted-on-ink); }

.tile__tag { position: absolute; top: clamp(16px, 1.8vw, 24px); right: clamp(16px, 1.8vw, 24px); font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); }
.tile__n { font-family: var(--mono); font-size: clamp(34px, 4.6vw, 62px); font-weight: 500; line-height: .92; letter-spacing: -.05em; color: var(--accent-ink); margin-bottom: auto; padding-bottom: 22px; }
.tile__t { font-size: clamp(18px, 1.9vw, 23px); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; margin-bottom: 9px; text-wrap: balance; }
.tile:nth-child(6n+1) .tile__t { font-size: clamp(20px, 2.3vw, 28px); }
.tile__x { font-size: 15px; line-height: 1.62; color: var(--muted); text-wrap: pretty; }

/* заголовки секций */

.sh { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px 24px; margin-bottom: clamp(20px, 2.4vw, 32px); padding-bottom: clamp(14px, 1.6vw, 20px); border-bottom: 1px solid var(--line); }
.sh__b { display: grid; gap: 10px; max-width: 32rem; }
.sh__t { font-size: clamp(26px, 3.8vw, 46px); font-weight: 700; line-height: 1.06; letter-spacing: -.026em; text-wrap: balance; }
.sh__m { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.prose p { margin-bottom: 1.02em; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }

/* секции — все на --color-bg */

.sec { padding-block: clamp(44px, 5.4vw, 88px); scroll-margin-top: 72px; }
.sec--hero { padding-top: clamp(20px, 2.6vw, 40px); }
.sec--seo { font-size: 15.5px; }

/* шапка */

.hdr { position: sticky; top: 0; z-index: 30; background: var(--color-bg); border-bottom: 1px solid var(--line); }
.hdr__in { display: flex; align-items: center; gap: clamp(10px, 2vw, 24px); min-height: 64px; }
.hdr__logo { font-size: clamp(17px, 2.1vw, 21px); font-weight: 700; letter-spacing: -.03em; margin-right: auto; }
.hdr__nav { display: flex; align-items: center; gap: clamp(8px, 1.5vw, 20px); }
.hdr__link { font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; padding: 8px 2px; border-bottom: 1.5px solid transparent; }
.hdr__link:hover { border-bottom-color: var(--accent-ink); }
.hdr__link--cta { display: none; }
.hdr__cta {
	padding: 11px 20px; background: var(--ink); color: var(--color-bg); border-radius: var(--r-sm);
	font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; white-space: nowrap;
	transition: background .2s;
}
.hdr__cta:hover { background: var(--accent-ink); }

.burger { display: none; width: 44px; height: 42px; flex: none; background: var(--color-bg); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 10px; cursor: pointer; }
.burger span { display: block; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .25s, opacity .2s; }

/* кнопки */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 52px; padding: 13px 26px; border: 1px solid transparent; border-radius: var(--r-sm);
	font-family: var(--font-base); font-size: 15.5px; font-weight: 700; letter-spacing: -.01em;
	cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.btn--primary, .cta__call { background: var(--ink); color: var(--color-bg); }
.btn--primary:hover, .cta__call:hover { background: var(--accent-ink); }
.btn--ghost { border-color: var(--line); color: inherit; }
.btn--ghost:hover { background: var(--fill); border-color: transparent; color: var(--color-text); }

/* ссылка-звонок, которой генератор подменяет форму без Telegram-бота */
.cta__call {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 52px; padding: 13px 28px; margin-top: 12px; border-radius: var(--r-sm);
	font-size: 15.5px; font-weight: 700;
}

/* герой — та же мозаика */

.hero { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--gap); }
.hero__main { grid-column: span 4; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 46px); border: 1px solid var(--line-2); border-radius: var(--r); }
.hero:not(:has(.hero__fig)) .hero__main { grid-column: span 6; }
.hero__t {
	margin: 16px 0 0; max-width: 26ch;
	font-size: clamp(31px, 5.6vw, 66px); font-weight: 700; line-height: 1.02; letter-spacing: -.035em; text-wrap: balance;
}
.hero__s { margin-top: 18px; max-width: 48ch; font-size: clamp(15.5px, 1.3vw, 18px); color: var(--muted); text-wrap: pretty; }
.hero__acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(24px, 3vw, 40px); }
.hero__fig { grid-column: span 2; overflow: hidden; border-radius: var(--r); background: var(--fill); }
.hero__fig img { width: 100%; height: 100%; min-height: 15rem; object-fit: cover; }

.facts { grid-column: span 6; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr)); gap: var(--gap); }
.facts__i { display: flex; align-items: baseline; gap: 12px; padding: 18px 22px; background: var(--color-surface); border-radius: var(--r); font-size: 15px; }
.facts__i::before { content: '—'; font-family: var(--mono); font-size: 12px; color: var(--accent-ink); }

/* о нас — текст плиткой, статистика плитками */

.about { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--gap); }
.about__txt { grid-column: span 4; padding: clamp(22px, 2.4vw, 36px); border: 1px solid var(--line-2); border-radius: var(--r); }
.about__txt p { font-size: 16px; }
.about__txt p:first-child { font-size: clamp(17.5px, 1.8vw, 21px); line-height: 1.44; letter-spacing: -.015em; }
.about__side { grid-column: span 2; display: grid; gap: var(--gap); align-content: start; }
.stat { padding: 20px 22px; background: var(--fill); border-radius: var(--r); }
.stat:nth-child(2n) { background: var(--color-surface); }
.stat__v { display: block; font-family: var(--mono); font-size: clamp(28px, 3.2vw, 40px); font-weight: 500; line-height: 1; letter-spacing: -.05em; color: var(--accent-ink); }
.stat__l { display: block; margin-top: 8px; font-size: 13.5px; line-height: 1.45; color: var(--muted); }

/* услуги — строки-прайс в общей рамке */

.list { border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; }
.row { display: grid; grid-template-columns: 3rem minmax(0, 1fr) auto; gap: 4px clamp(12px, 1.6vw, 22px); align-items: baseline; padding: clamp(16px, 1.8vw, 24px) clamp(18px, 2vw, 28px); transition: background .2s; }
.row + .row { border-top: 1px solid var(--line-2); }
.row:hover { background: var(--color-surface); }
.row__n { font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; color: var(--accent-ink); }
.row__t { font-size: clamp(17px, 1.8vw, 21px); font-weight: 700; line-height: 1.24; letter-spacing: -.018em; }
.row__p { grid-column: 3; grid-row: 1; font-family: var(--mono); font-size: 15px; letter-spacing: -.02em; color: var(--accent-ink); white-space: nowrap; }
.row__x { grid-column: 2 / -1; max-width: 74ch; font-size: 15px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

/* кейсы и отзывы живут в мозаике: свои акценты внутри плитки */

.case__r { font-family: var(--mono); font-size: clamp(28px, 3.4vw, 44px); font-weight: 500; line-height: .98; letter-spacing: -.05em; color: var(--accent-ink); margin-bottom: 16px; }
.tile:nth-child(6n+2) .case__r { color: var(--accent-on-ink); }
.quote__m { font-family: var(--mono); font-size: 34px; line-height: .8; color: var(--accent-ink); margin-bottom: 14px; }
.tile:nth-child(6n+2) .quote__m { color: var(--accent-on-ink); }
.tile blockquote { font-size: 15.5px; line-height: 1.66; text-wrap: pretty; }
.tile figcaption { margin-top: auto; padding-top: 18px; }
.quote__n { display: block; font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.quote__r { display: block; margin-top: 3px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.tile:nth-child(6n+2) .quote__r { color: var(--muted-on-ink); }

/* галерея: 5 кадров — 4 + 2 + 2 + 2 */

.gal { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--gap); align-items: start; }
.gal__i { grid-column: span 2; overflow: hidden; border-radius: var(--r); background: var(--color-surface); }
.gal__i img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gal__i figcaption { padding: 12px 16px 14px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.gal__i--1 { grid-column: span 4; }
.gal__i--1 img { aspect-ratio: 16 / 9; }

/* ошибки и решения — две плитки */

.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr)); gap: var(--gap); }
.duo__c { padding: clamp(22px, 2.4vw, 34px); border-radius: var(--r); }
.duo__c--error { border: 1px solid var(--line); }
.duo__c--tip { background: var(--fill); }
.duo__c > .kick { display: block; margin-bottom: 20px; }
.duo__i + .duo__i { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.duo__t { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; font-weight: 700; line-height: 1.28; letter-spacing: -.015em; }
.duo__m { flex: none; display: grid; place-items: center; width: 24px; height: 24px; margin-top: 1px; border-radius: var(--r-sm); background: var(--fill-2); color: var(--accent-ink); font-family: var(--mono); font-size: 12px; line-height: 1; }
.duo__c--error .duo__m { background: color-mix(in srgb, var(--color-text) 11%, transparent); color: var(--color-text); }
.duo__x { margin-top: 8px; padding-left: 36px; font-size: 15px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

/* таблицы — внутри плитки */

.tbl-wrap { overflow-x: auto; border: 1px solid var(--line-2); border-radius: var(--r); }
@media (min-width: 861px) { .tbl-wrap { overflow-x: visible; } }
.tbl { width: 100%; border-collapse: collapse; }
.tbl th { padding: 15px 18px; text-align: left; background: var(--ink); color: var(--color-bg); font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.tbl th.is-us { background: var(--accent-ink); }
.tbl td { padding: 14px 18px; font-size: 15px; border-top: 1px solid var(--line-2); vertical-align: top; }
.tbl td:first-child { font-weight: 700; letter-spacing: -.012em; }
.tbl td:not(:first-child) { font-family: var(--mono); font-size: 14px; letter-spacing: -.02em; }
.tbl td.is-us { background: var(--fill); color: var(--accent-ink); }
.tbl tbody tr:hover td { background: var(--color-surface); }
.tbl tbody tr:hover td.is-us { background: var(--fill-2); }

/* FAQ — плитки-строки */

.faq { display: grid; gap: var(--gap); }
.faq__i { border: 1px solid var(--line-2); border-radius: var(--r); background: var(--color-bg); }
.faq__i[open] { background: var(--color-surface); border-color: transparent; }
.faq__q { display: flex; align-items: baseline; gap: 14px; padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2vw, 26px); cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__n { flex: none; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--accent-ink); }
.faq__qt { font-size: clamp(16.5px, 1.7vw, 19.5px); font-weight: 700; line-height: 1.32; letter-spacing: -.018em; }
.faq__q::after { content: ''; flex: none; align-self: center; margin-left: auto; width: 11px; height: 11px; border-right: 1.5px solid var(--accent-ink); border-bottom: 1.5px solid var(--accent-ink); transform: rotate(45deg) translateY(-2px); transition: transform .22s; }
.faq__i[open] .faq__q::after { transform: rotate(225deg) translateY(-2px); }
.faq__a { padding: 0 clamp(18px, 2vw, 26px) clamp(18px, 2vw, 24px) 2.3rem; }
.faq__a p { max-width: 76ch; font-size: 15px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }
.faq__i[open] .faq__a { animation: fade .22s ease-out; }
@keyframes fade { from { opacity: 0; transform: translateY(-4px); } }

/* SEO-текст */

.prose--cols { columns: 2; column-gap: clamp(24px, 3.2vw, 52px); padding: clamp(22px, 2.4vw, 34px); border: 1px solid var(--line-2); border-radius: var(--r); }
.prose--cols p { font-size: 15px; line-height: 1.74; color: var(--muted); }

/* заявка — вывернутая плитка */

.cta { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--gap); }
.cta__b { grid-column: span 3; display: flex; flex-direction: column; justify-content: center; padding: clamp(26px, 3vw, 48px); background: var(--ink); color: var(--color-bg); border-radius: var(--r); }
.cta__b > .kick { color: var(--accent-on-ink); }
.cta__t { margin: 14px 0 0; max-width: 24ch; font-size: clamp(25px, 3.4vw, 42px); font-weight: 700; line-height: 1.04; letter-spacing: -.03em; text-wrap: balance; }
.cta__s { margin-top: 16px; max-width: 42ch; font-size: 15.5px; color: var(--muted-on-ink); text-wrap: pretty; }
.cta__f { grid-column: span 3; padding: clamp(24px, 2.8vw, 42px); background: var(--fill); border-radius: var(--r); }
.cta__form { display: grid; gap: 12px; }
.cta__input { width: 100%; min-height: 52px; padding: 14px 18px; font: inherit; font-size: 16px; color: var(--color-text); background: var(--color-bg); border: 1px solid var(--line-2); border-radius: var(--r-sm); }
.cta__input::placeholder { color: var(--muted); }
.cta__input:focus { outline: none; border-color: var(--accent-ink); }
.cta__form .btn { margin-top: 4px; width: 100%; }
.cta__privacy { margin-top: 14px; font-family: var(--mono); font-size: 11.5px; line-height: 1.6; letter-spacing: .04em; color: var(--muted); }
.cta__msg:not(:empty) { margin-top: 14px; padding: 13px 16px; font-size: 14.5px; background: var(--color-bg); border-radius: var(--r-sm); }
.cta__msg.is-err { background: var(--color-surface); box-shadow: inset 0 0 0 1px var(--line); }

/* подвал */

.ftr { border-top: 1px solid var(--line); padding-top: clamp(34px, 4.2vw, 58px); background: var(--color-bg); }
.ftr__in { display: grid; grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(0, 1fr)); gap: clamp(22px, 3vw, 44px); }
.ftr__logo { font-size: 20px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 12px; }
.ftr__x { max-width: 44ch; font-size: 15px; line-height: 1.64; color: var(--muted); text-wrap: pretty; }
.ftr__h { font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 14px; }
.ftr__l { display: grid; gap: 9px; }
.ftr__l li { font-size: 15px; color: var(--muted); }
.ftr__l a:hover { color: var(--accent-ink); }
.ftr__b { margin-top: clamp(28px, 3.4vw, 46px); padding-block: 20px; border-top: 1px solid var(--line-2); }
.ftr__b p { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* адаптив */

@media (max-width: 1000px) {
	.mos, .hero, .about, .cta, .gal { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.tile { grid-column: span 2; }
	.tile:nth-child(6n+1), .tile:nth-child(6n+2) { grid-column: span 4; }
	.tile:last-child:nth-child(6n+1), .tile:last-child:nth-child(6n+3), .tile:last-child:nth-child(6n+4) { grid-column: span 4; }
	.hero__main, .about__txt, .cta__b, .cta__f, .facts { grid-column: span 4; }
	.hero__fig, .about__side { grid-column: span 4; }
	.about__side { grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr)); }
	.hero__fig img { min-height: 0; aspect-ratio: 16 / 9; }
	.gal__i { grid-column: span 2; }
	.gal__i--1 { grid-column: span 4; }
	.ftr__in { grid-template-columns: 1fr 1fr; }
	.ftr__c--about { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
	.hdr__nav {
		position: fixed; inset: 0; z-index: 40;
		flex-direction: column; align-items: stretch; justify-content: center;
		gap: 6px; padding: 88px var(--pad) 40px; background: var(--color-bg);
		transform: translateX(100%); transition: transform .28s ease; overflow-y: auto;
	}
	.hdr__nav.is-open { transform: none; }
	.hdr__link { padding: 16px 18px; border: 1px solid var(--line-2); border-radius: var(--r-sm); font-size: 14px; }
	.hdr__link:hover { border-color: var(--accent-ink); }
	.hdr__link--cta { display: block; background: var(--ink); color: var(--color-bg); border-color: var(--ink); }
	.hdr__cta { display: none; }
	.burger { display: block; position: relative; z-index: 41; }
	body.nav-open { overflow: hidden; }
	body.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
	body.nav-open .burger span:nth-child(2) { opacity: 0; }
	body.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

	.prose--cols { columns: 1; }
	.gal__i img, .gal__i--1 img { aspect-ratio: 3 / 2; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.mos, .hero, .about, .cta, .gal { grid-template-columns: minmax(0, 1fr); }
	.tile, .tile:nth-child(6n+1), .tile:nth-child(6n+2),
	.tile:last-child:nth-child(6n+1), .tile:last-child:nth-child(6n+3), .tile:last-child:nth-child(6n+4),
	.hero__main, .hero__fig, .facts, .about__txt, .about__side, .cta__b, .cta__f,
	.gal__i, .gal__i--1 { grid-column: 1 / -1; }
	.tile__n { padding-bottom: 16px; }

	/* таблицы разворачиваются в карточки */
	.tbl-wrap { border: 0; overflow: visible; }
	.tbl, .tbl tbody, .tbl tr, .tbl td { display: block; width: 100%; }
	.tbl thead { display: none; }
	.tbl tr { padding: 6px 18px; margin-bottom: 12px; border: 1px solid var(--line-2); border-radius: var(--r); }
	.tbl td { padding: 12px 0; border-top: 0; border-bottom: 1px solid var(--line-2); }
	.tbl tbody tr td:last-child { border-bottom: 0; }
	.tbl td.is-us, .tbl tbody tr:hover td { background: none; }
	.tbl td:not(:first-child) { display: grid; grid-template-columns: 44% 1fr; gap: 12px; align-items: baseline; }
	.tbl td::before { content: attr(data-l); display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; line-height: 1.7; color: var(--muted); }
	.tbl td.is-us::before { color: var(--accent-ink); }

	.duo__x { padding-left: 0; }
	.faq__a { padding-left: clamp(18px, 2vw, 26px); }
	.ftr__in { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
	.hero__acts .btn { width: 100%; }
	.row { grid-template-columns: 2.4rem minmax(0, 1fr); }
	.row__p { grid-column: 2; grid-row: auto; }
	.row__x { grid-column: 1 / -1; }
}

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

@media print {
	.hdr, .burger, .cta__form, .skip { display: none; }
	body { font-size: 12pt; }
	.tile:nth-child(6n+2), .cta__b { background: none; color: var(--color-text); border: 1px solid var(--line); }
}
