/* SILEX. Система та же, что на PONTA — она проверена и владельцу нравится: кикер, дисплей,
   большой абзац; светлые и тёмные секции чередуются; картинка всегда во всю колонку;
   появление делает GSAP. Отличий два: герой здесь одна плёнка с диапазонами кадров вместо
   пяти отдельных стадий, и добавлен калькулятор окупаемости. Палитра снята с самого макета —
   кобальт #133B75 замерен по кадру завода, не подобран. */

:root {
  --ink: #12151A;
  --paper: #F1EEE7;
  --paper-dim: #E3DED3;
  --accent: #1B4E96;          /* кобальт макета, поднятый до читаемого на светлом */
  --accent-lit: #7FA3E4;      /* он же на тёмном */
  --muted: #8A8681;
  --line: rgba(18, 21, 26, .12);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --slot: cubic-bezier(.3, 0, .2, 1);
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper); color: var(--ink);
  font: 400 17px/1.55 "Barlow", -apple-system, "Segoe UI", system-ui, sans-serif;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

.kicker { font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 18px; font-family: "IBM Plex Mono", ui-monospace, monospace; }
.display { font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 106;
  font-weight: 600; letter-spacing: -.03em; line-height: 1.04;
  font-size: clamp(30px, 4.6vw, 62px); margin: 0; }
.body-lg { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.6; color: #43474C;
  max-width: 58ch; }
.mono { font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-variant-numeric: tabular-nums; }

/* ── шапка: островок ───────────────────────────────────────────────
   Не полоса во всю ширину, а остров посередине. Полоса на широком мониторе тянется
   на два метра и весит больше, чем всё, что под ней; остров не зависит от ширины
   экрана вовсе. При прокрутке он физически сжимается — это и есть его отклик. */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; padding: 12px 16px;
  pointer-events: none; color: #fff; }
.site-header__in {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  max-width: 840px; height: 46px; margin: 0 auto; padding: 0 8px 0 20px;
  border-radius: 999px; pointer-events: auto;
  background: rgba(14, 17, 22, .6);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: background .35s, border-color .35s, max-width .4s var(--slot),
              height .4s var(--slot), box-shadow .35s;
}
.site-header.is-past .site-header__in { background: rgba(18, 21, 26, .9); max-width: 700px;
  height: 42px; box-shadow: 0 10px 34px rgba(0, 0, 0, .28); }
.brand { font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 118;
  font-weight: 700; letter-spacing: .16em; font-size: 13px;
  display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.brand i { width: 0; height: 0; border-left: 5px solid transparent;
  border-right: 5px solid transparent; border-bottom: 9px solid currentColor; }
.site-nav { display: flex; gap: 20px; font-size: 12px; letter-spacing: .05em; }
.site-nav a { opacity: .74; transition: opacity .25s; }
.site-nav a:hover { opacity: 1; }
.head-cta { font-size: 11.5px; letter-spacing: .05em; padding: 8px 15px; border-radius: 999px;
  background: var(--accent); color: #fff; white-space: nowrap; flex: 0 0 auto;
  transition: background .3s; }
.head-cta:hover { background: #245FB4; }

/* Переключатель языка. Дальше всего от кнопки, ближе всего к меню: это навигация,
   а не действие. Полоска-подчёркивание вместо подложки — в островке любая подложка
   становится второй кнопкой и спорит с настоящей. */
.lang { display: flex; gap: 1px; flex: 0 0 auto;
  font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: .1em; }
.lang button { background: none; border: 0; color: inherit; cursor: pointer; font: inherit;
  padding: 5px 6px 4px; opacity: .45; position: relative; transition: opacity .25s; }
.lang button::after { content: ""; position: absolute; left: 6px; right: 6px; bottom: 1px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--slot); }
.lang button:hover { opacity: .8; }
.lang button[aria-pressed="true"] { opacity: 1; }
.lang button[aria-pressed="true"]::after { transform: scaleX(1); }
@media (max-width: 880px) {
  .site-nav { display: none; }
  .site-header__in { max-width: 420px; }
  .site-header.is-past .site-header__in { max-width: 400px; }
}
@media (max-width: 430px) {
  .site-header { padding: 10px 12px; }
  .site-header__in { padding: 0 6px 0 15px; height: 42px; }
  .head-cta { padding: 7px 12px; font-size: 11px; }
  .lang { font-size: 10.5px; }
  .lang button { padding: 5px 4px 4px; }
  .lang button::after { left: 4px; right: 4px; }
}

/* ── герой: одна плёнка, шесть этапов ──────────────────────────────
   Прокрутки под собой у героя нет вовсе — ровно экран. Этапы переключает жест,
   который герой перехватывает, пока он на экране (см. app.js). Так было и на PONTA,
   и по той же причине: этап, вычисленный из позиции прокрутки, работает только под
   колесом мыши, а на телефоне один бросок пальцем перекрывает три-четыре этапа.

   Высота в dvh, а не в svh: пока герой держит страницу, адресная строка телефона
   никуда не уезжает, так что дёргаться нечему, зато блок закрывает экран целиком —
   в svh при спрятанной строке снизу вылезала полоска следующей секции. */
.hero { position: relative; height: 100dvh; padding: 0; }
.hero__pin { position: relative; height: 100dvh; overflow: hidden; background: var(--ink); }
html.hero-locked, html.hero-locked body { overscroll-behavior: none; }
.hero__media { position: absolute; inset: 0; }
.hero__media video { width: 100%; height: 100%; object-fit: cover;
  transition: object-position .9s var(--ease); }
.hero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,10,13,.84) 0%, rgba(8,10,13,.3) 34%, rgba(8,10,13,0) 60%),
    linear-gradient(90deg, rgba(8,10,13,.52) 0%, rgba(8,10,13,0) 54%); }
.hero__inner { position: absolute; inset: auto 0 0 0; z-index: 3; color: #fff;
  padding: 0 var(--pad) clamp(24px, 5vh, 52px); }
.hero__panel { display: none; max-width: min(540px, 86vw); }
.hero__panel.is-on { display: block; }
.hero__num { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: .24em;
  opacity: .7; display: block; margin-bottom: 12px; }
.hero__title { font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 106;
  font-weight: 600; font-size: clamp(30px, 4.4vw, 54px); line-height: 1.02;
  letter-spacing: -.032em; margin: 0 0 10px; }
.hero__lead { margin: 0 0 18px; font-size: clamp(15.5px, 1.35vw, 18px);
  color: rgba(255,255,255,.82); max-width: 34ch; }
.hero__facts { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.hero__facts b { display: block; font-family: "Archivo", sans-serif; font-weight: 600;
  font-size: 21px; letter-spacing: -.02em; font-variation-settings: "wdth" 104; }
.hero__facts span { font-family: "IBM Plex Mono", monospace; font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* этапы со значками — приём emons, тот же, что на PONTA */
.hero__tabs { display: flex; gap: 0; width: fit-content; margin-top: clamp(20px, 3.6vh, 38px); }
.hero__tab { flex: 0 0 auto; min-width: 100px; background: none; border: 0; color: #fff;
  cursor: pointer; text-align: left; padding: 0; font: inherit; }
.hero__tab-row { display: flex; align-items: center; gap: 9px; padding: 0 14px 11px 0; }
.hero__tab em { font-family: "IBM Plex Mono", monospace; font-style: normal; font-size: 11px;
  letter-spacing: .14em; opacity: .5; transition: opacity .25s; }
.hero__tab-slot { width: 27px; height: 27px; border-radius: 50%; display: grid;
  place-items: center; flex: 0 0 auto; background: rgba(255,255,255,.16);
  transition: background .3s var(--slot), color .3s; }
.hero__tab-slot svg { width: 16px; height: 16px; }
.hero__tab-label { font-size: 12.5px; opacity: .6; transition: opacity .25s; white-space: nowrap; }
.hero__tab:hover .hero__tab-slot { background: rgba(255,255,255,.3); }
.hero__tab[aria-current="true"] em,
.hero__tab[aria-current="true"] .hero__tab-label { opacity: 1; }
.hero__tab[aria-current="true"] .hero__tab-slot { background: #fff; color: var(--accent); }
.hero__tab-rail { display: block; position: relative; height: 1px; background: rgba(255,255,255,.2); }
.hero__tab-rail i { position: absolute; inset: 0; background: #fff; transform-origin: left;
  transform: scaleX(0); }
.hero__scroll { position: absolute; right: var(--pad); bottom: clamp(24px, 5vh, 52px);
  z-index: 3; color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; opacity: .7; transition: opacity .4s; }
.hero__scroll { cursor: pointer; }                 /* колесо отобрано — подсказка стала кнопкой */
.hero__scroll:hover { opacity: 1; }
.hero__scroll:focus-visible { outline: 2px solid #fff; outline-offset: 6px; border-radius: 2px; }
.hero__scroll.gone { opacity: 0; pointer-events: none; }
@media (max-width: 860px) {
  .hero__tabs { width: 100%; }
  .hero__tab { flex: 1 1 0; min-width: 0; }
  .hero__tab-row { flex-direction: column; align-items: center; gap: 6px; padding: 0 0 9px; }
  .hero__tab-label { display: none; }
  .hero__lead { display: none; }
  .hero__inner { padding-bottom: 16px; }
  .hero__scroll { display: none; }
}

/* ── общий ритм секций ─────────────────────────────────────────────── */
section { padding: clamp(90px, 13vh, 170px) var(--pad); }
.wrap { max-width: 1360px; margin: 0 auto; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px);
  align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.dark { background: var(--ink); color: var(--paper); }
.dark .body-lg { color: rgba(241,238,231,.72); }
.dark .kicker { color: rgba(241,238,231,.5); }
.manifest .display { max-width: 19ch; }
.manifest .body-lg { margin-top: 26px; }

.figure-full { margin: 0; }
.figure-full img { width: 100%; border-radius: 4px; }
.figure-full figcaption { margin-top: 14px; font-size: 12.5px; letter-spacing: .04em;
  color: var(--muted); font-family: "IBM Plex Mono", monospace; }
.dark .figure-full figcaption { color: rgba(241,238,231,.5); }

.point-list { list-style: none; margin: 34px 0 0; padding: 0; }
.point-list li { display: grid; grid-template-columns: 18ch 1fr; gap: 18px; padding: 16px 0;
  border-top: 1px solid rgba(241,238,231,.16); font-size: 14.5px; }
.point-list b { font-weight: 500; }
.point-list span { color: rgba(241,238,231,.6); }
/* Тот же список, но в строку: четыре машины стоят рядом, как они стоят на линии.
   Заголовок и абзац при этом идут во всю ширину — двумя разной длины колонками
   секция выглядела разношёрстной. */
.point-list.is-row { display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0 clamp(20px, 3vw, 44px); margin-top: clamp(34px, 5vh, 56px); }
.point-list.is-row li { display: block; padding: 18px 0 0;
  border-top: 1px solid rgba(241,238,231,.22); }
.point-list.is-row b { display: block; font-family: "Archivo", sans-serif;
  font-variation-settings: "wdth" 104; font-weight: 600; font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: -.02em; margin-bottom: 7px; }
.point-list.is-row span { display: block; font-size: 14px; line-height: 1.5; }
.figure-full.is-wide { margin-top: clamp(40px, 6vh, 76px); }
@media (max-width: 900px) { .point-list.is-row { grid-template-columns: 1fr 1fr; row-gap: 8px; } }
@media (max-width: 560px) { .point-list.is-row { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .point-list li { grid-template-columns: 1fr; gap: 4px; } }

.facts { display: flex; gap: clamp(26px, 4vw, 60px); margin: 30px 0 0; padding: 0;
  list-style: none; flex-wrap: wrap; }
.facts b { display: block; font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 104;
  font-size: clamp(22px, 2.4vw, 34px); font-weight: 600; letter-spacing: -.03em; }
.facts span { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-family: "IBM Plex Mono", monospace; }
.dark .facts span { color: rgba(241,238,231,.5); }

/* ── таблица модулей: строка читается размером раньше, чем цифрой ──── */
.units { width: 100%; border-collapse: collapse; margin-top: 34px; font-size: 14.5px; }
.units th { text-align: left; font-weight: 400; font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); padding-bottom: 12px;
  border-bottom: 1px solid var(--line); font-family: "IBM Plex Mono", monospace; }
.units td { padding: 15px 0; border-bottom: 1px solid var(--line); }
.units td:first-child { font-weight: 500; width: 9ch; }
.units td:nth-child(3), .units td:nth-child(4) { font-variant-numeric: tabular-nums; }
.units td:last-child { color: var(--muted); text-align: right; }
.units tbody tr { transition: background-color .35s var(--ease); }
.units tbody tr:hover { background: rgba(18,21,26,.035); }
.units .u-key { display: inline-block; transition: transform .4s var(--slot), color .35s;
  transform-origin: left center; }
/* Заголовок последней колонки шёл влево, а числа в ней — вправо: по-английски между
   «POWER» и «PRICE» ещё оставался зазор, по-русски «МОЩНОСТЬЦЕНА» слиплось. */
.units th:last-child { text-align: right; }
.units th + th, .units td + td { padding-left: 14px; }
.units tbody tr:hover .u-key { transform: scale(1.25); color: var(--accent); }
.u-bar { width: 24%; }
.u-bar i { display: block; height: 3px; border-radius: 2px; background: var(--accent);
  opacity: .5; transform: scaleX(0); transform-origin: left; }
@media (max-width: 760px) { .u-bar { display: none; } }

/* ── аккордеон: восемь мест на линии, одно раскрыто ────────────────── */
.acc { display: flex; gap: 6px; height: clamp(300px, 48vh, 470px);
  margin-top: clamp(36px, 6vh, 64px); }
.acc__i { position: relative; flex: 1 1 0; min-width: 0; overflow: hidden; border-radius: 4px;
  cursor: pointer; transition: flex-grow .75s var(--slot); border: 0; padding: 0; }
.acc__i img { width: 100%; height: 100%; object-fit: cover; }
.acc__i::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,8,9,.88) 0%, rgba(6,8,9,.1) 55%); }
.acc__i.on { flex-grow: 4.6; }
.acc__i:focus-visible { outline: 2px solid var(--accent-lit); outline-offset: -2px; }
.acc__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 16px 16px 18px; color: #F1EEE7; text-align: left; }
.acc__cap h3 { margin: 0; font-family: "Archivo", sans-serif; font-weight: 600; font-size: 13.5px;
  line-height: 1.25; letter-spacing: -.01em; font-variation-settings: "wdth" 104;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
  transition: font-size .5s var(--slot); }
.acc__i.on .acc__cap { padding: 20px 22px 22px; }
.acc__i.on .acc__cap h3 { font-size: 20px; -webkit-line-clamp: 1; }
.acc__cap p { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(241,238,231,.74);
  max-width: 46ch; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .6s var(--slot), opacity .4s, margin .6s var(--slot); }
.acc__i.on .acc__cap p { max-height: 84px; opacity: 1; margin-top: 9px; }
@media (max-width: 760px) {
  .acc { flex-direction: column; height: auto; gap: 5px; }
  .acc__i { flex: none; height: 82px; transition: height .7s var(--slot); }
  .acc__i.on { flex: none; height: clamp(220px, 32vh, 320px); }
  .acc__i::after { background: linear-gradient(to right, rgba(6,8,9,.9) 0%,
    rgba(6,8,9,.34) 50%, rgba(6,8,9,.05) 100%); }
  .acc__cap { top: 0; display: flex; flex-direction: column; justify-content: center;
    padding: 0 20px; }
  .acc__cap h3, .acc__i.on .acc__cap h3 { font-size: 16px; -webkit-line-clamp: 2; }
  .acc__i.on .acc__cap { padding: 0 20px; }
  .acc__cap p { max-width: none; }
}

/* ── окупаемость ───────────────────────────────────────────────────
   Ручки идут строкой над всем блоком, ниже — число с цифрами слева и график справа.
   Так ничего не съезжает: раньше левая колонка была короче правой и блок читался
   рваным. График рисует ApexCharts из vendor, свой рисованный SVG забракован. */
.knobs { display: grid; grid-template-columns: repeat(3, 1fr) auto;
  gap: clamp(18px, 2.6vw, 44px); align-items: end;
  margin-top: clamp(34px, 5vh, 56px); padding-bottom: clamp(26px, 3.6vh, 44px);
  border-bottom: 1px solid rgba(241, 238, 231, .16); }
@media (max-width: 900px) { .knobs { grid-template-columns: 1fr 1fr; row-gap: 24px; } }
@media (max-width: 560px) { .knobs { grid-template-columns: 1fr; } }
.knob label { display: flex; justify-content: space-between; align-items: baseline;
  font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(241, 238, 231, .45); margin-bottom: 9px; }
.knob label b { font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 104;
  font-weight: 600; font-size: 18px; color: var(--paper); letter-spacing: -.01em;
  text-transform: none; font-variant-numeric: tabular-nums; }
input[type=range] { width: 100%; height: 20px; background: none; appearance: none;
  cursor: pointer; display: block; }
input[type=range]::-webkit-slider-runnable-track { height: 1px; background: rgba(241,238,231,.26); }
input[type=range]::-moz-range-track { height: 1px; background: rgba(241,238,231,.26); }
input[type=range]::-webkit-slider-thumb { appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: var(--accent-lit); margin-top: -6.5px; border: 0;
  transition: transform .18s; }
input[type=range]:active::-webkit-slider-thumb { transform: scale(1.3); }
input[type=range]::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent-lit); border: 0; }
input[type=range]:focus-visible { outline: 2px solid var(--accent-lit); outline-offset: 4px; }
.modes { display: flex; gap: 6px; }
.modes button { background: none; border: 1px solid rgba(241,238,231,.25); color: inherit;
  padding: 9px 15px; border-radius: 999px; font: inherit; font-size: 12.5px; cursor: pointer;
  white-space: nowrap; transition: background .25s, border-color .25s, color .25s; }
.modes button:hover { border-color: rgba(241,238,231,.55); }
.modes button[aria-pressed="true"] { background: var(--paper); border-color: var(--paper);
  color: var(--ink); }

.pay { display: grid; grid-template-columns: minmax(210px, 320px) 1fr;
  gap: clamp(26px, 4vw, 64px); align-items: start; margin-top: clamp(30px, 4.4vh, 52px); }
.pay > * { min-width: 0; }
@media (max-width: 900px) { .pay { grid-template-columns: 1fr; } }
.big-num { margin: 0; font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 94;
  font-weight: 600; font-size: clamp(60px, 8vw, 108px); line-height: .84;
  letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.big-num small { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(241,238,231,.5); margin-top: 14px; font-family: "IBM Plex Mono", monospace;
  font-variation-settings: "wdth" 108; }
.pay__rows { list-style: none; margin: clamp(24px, 3.4vh, 34px) 0 0; padding: 0; }
.pay__rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 11px 0; border-top: 1px solid rgba(241,238,231,.16); }
.pay__rows span { font-size: 12.5px; color: rgba(241,238,231,.6); }
.pay__rows b { font-family: "IBM Plex Mono", monospace; font-weight: 500; font-size: 15px;
  font-variant-numeric: tabular-nums; }
.pay__chart { min-height: 330px; max-width: 100%; overflow: hidden; }
.calc__note { margin: 26px 0 0; font-size: 12px; line-height: 1.6; color: rgba(241,238,231,.42); }
.apexcharts-tooltip { background: #1B1F26 !important;
  border: 1px solid rgba(241,238,231,.18) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.5) !important; color: var(--paper) !important; }
.apexcharts-tooltip-title { background: rgba(241,238,231,.06) !important;
  border-bottom: 1px solid rgba(241,238,231,.14) !important;
  font-family: "IBM Plex Mono", monospace !important; font-size: 11px !important; }
.apexcharts-xaxistooltip { display: none !important; }

/* ── кнопка: заливка приезжает слева, стрелка едет с ней ───────────── */
.btn { position: relative; display: inline-flex; align-items: center; gap: 11px;
  overflow: hidden; isolation: isolate; margin-top: 38px; padding: 15px 30px;
  border: 1px solid rgba(241,238,231,.35); border-radius: 999px; color: var(--paper);
  font-size: 13.5px; letter-spacing: .06em; transition: color .35s, border-color .35s; }
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--accent);
  transform: translateX(-101%); transition: transform .62s var(--slot); }
.btn:hover { color: #fff; border-color: var(--accent); }
.btn:hover::before { transform: none; }
.btn b { transition: transform .5s var(--slot); }
.btn:hover b { transform: translateX(5px); }

/* ── финал ─────────────────────────────────────────────────────────── */
.closing { text-align: left; }
.closing__frame { position: relative; margin: 0; border-radius: 4px; overflow: hidden;
  min-height: min(76vh, 640px); display: flex; align-items: flex-end; }
.closing__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closing__frame::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,8,9,.92) 8%, rgba(6,8,9,.34) 58%, rgba(6,8,9,.1) 100%); }
.closing__in { position: relative; z-index: 1; width: 100%; padding: clamp(24px, 3.4vw, 52px); }
.closing__in .kicker { color: rgba(241,238,231,.62); margin-bottom: 14px; }
.closing__in h2 { font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 102;
  font-size: clamp(28px, 4.2vw, 54px); font-weight: 600; letter-spacing: -.04em;
  line-height: 1.05; margin: 0 0 22px; max-width: 16ch; }
.closing__row { display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; }
.closing__facts { display: flex; gap: clamp(22px, 3.4vw, 52px); list-style: none;
  margin: 0; padding: 0; flex-wrap: wrap; }
.closing__facts b { display: block; font-family: "Archivo", sans-serif; font-weight: 600;
  font-size: clamp(19px, 2vw, 27px); letter-spacing: -.03em; font-variation-settings: "wdth" 104; }
.closing__facts span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(241,238,231,.55); font-family: "IBM Plex Mono", monospace; }
.closing__cols { display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 46px); margin-top: clamp(40px, 6vh, 76px); }
.closing__cols h4 { margin: 0 0 8px; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(241,238,231,.5); font-weight: 400;
  font-family: "IBM Plex Mono", monospace; }
.closing__cols p { margin: 0; font-size: 14.5px; color: rgba(241,238,231,.8); }
@media (max-width: 900px) { .closing__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .closing__cols { grid-template-columns: 1fr; } }
.closing__rule { height: 1px; background: rgba(241,238,231,.16);
  margin: clamp(40px, 6vh, 76px) 0 0; }
.madeby { margin: clamp(22px, 3vh, 34px) 0 10px; font-size: 13px;
  color: rgba(241,238,231,.55); font-family: "IBM Plex Mono", monospace; letter-spacing: .02em; }
.madeby a { color: var(--accent-lit); position: relative; }
.madeby a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; opacity: .45; transition: opacity .25s; }
.madeby a:hover::after { opacity: 1; }
.disclaimer { max-width: 62ch; font-size: 12px; line-height: 1.6;
  color: rgba(241,238,231,.42); }

/* ── появление ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.wipe, .reveal.lines { opacity: 1; transform: none; }
.reveal.wipe img { clip-path: inset(0 100% 0 0); transform: scale(1.1); }
.ln { display: block; overflow: hidden; }
.ln > i { display: block; font-style: normal; transform: translateY(108%); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.wipe img { clip-path: none; transform: none; }
  .ln > i { transform: none; }
  .u-bar i { transform: scaleX(var(--k, 1)); }
  .hero__media video { transition: none; }
}

/* ── защита от расползания: график в сетке распирает колонку ───────── */
.pay > * { min-width: 0; }
.pay__chart { max-width: 100%; overflow: hidden; }

/* ── три формата: заголовок во всю ширину, под ним ряд из трёх ─────── */
.mods { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 22px);
  margin-top: clamp(34px, 5vh, 58px); }
.mod { margin: 0; }
.mod img { width: 100%; border-radius: 4px; background: var(--paper-dim); }
.mod figcaption { display: flex; align-items: baseline; gap: 10px; margin-top: 12px;
  padding-top: 11px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.mod figcaption b { font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 104;
  font-weight: 600; font-size: clamp(17px, 1.6vw, 21px); letter-spacing: -.02em; }
.mod figcaption span { font-family: "IBM Plex Mono", monospace; font-size: 12px;
  color: var(--muted); font-variant-numeric: tabular-nums; }
@media (max-width: 760px) { .mods { grid-template-columns: 1fr; } }
