/* ============================================================
   PROMEZIS LAB – дизайн-система «КИНОВАРЬ»
   Русский конструктивизм × живой огонь. Без внешних зависимостей.
   ============================================================ */

:root {
  /* палитра */
  --ink: #0B0A08;
  --ink-2: #14110D;
  --ink-3: #1C1813;
  --paper: #EDE7DC;
  --paper-dim: #AFA89A;
  --steel: #8A8378;
  --flame: #F0561F;
  --flame-hi: #F9A36A;
  --flame-deep: #C43B0C;
  --line: rgba(237, 231, 220, .14);
  --line-strong: rgba(237, 231, 220, .3);

  /* типографика */
  --f-display: "Unbounded", "Arial Black", sans-serif;
  --f-poster: "Rubik Mono One", "Courier New", monospace;
  --f-body: "Inter", -apple-system, "Helvetica Neue", sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  --wrap: 1280px;
  --pad: clamp(20px, 4vw, 48px);
  --slant: 4.5vw;
}

/* ---------- сброс и база ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

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

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

:focus-visible { outline: 2px solid var(--flame); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 300;
  background: var(--flame); color: var(--ink); padding: 10px 18px;
  font-family: var(--f-mono); font-size: 13px; text-transform: uppercase;
}
.skip-link:focus { left: 12px; }

/* зерно печати поверх всего */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 2000;
  pointer-events: none; opacity: .055;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* модульная сетка «печатного разворота» */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1990; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(125,118,105,.075) 0 1px, transparent 1px 20%);
}

/* рамка-постер */
#frame {
  position: fixed; inset: 10px; z-index: 1900; pointer-events: none;
  border: 1px solid rgba(237, 231, 220, .16);
}
@media (max-width: 900px) { #frame { inset: 6px; } #rail { display: none !important; } }

/* боковой рельс прогресса */
#rail {
  position: fixed; left: 22px; top: 50%; transform: translateY(-50%);
  z-index: 900; display: none;
}
@media (min-width: 1400px) { #rail { display: block; } }
#rail .line { position: relative; display: block; width: 1px; height: 34vh; background: var(--line); }
#rail .fill { position: absolute; top: 0; left: 0; width: 1px; height: 100%; background: var(--flame); transform-origin: 0 0; transform: scaleY(0); }

/* скроллбар */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--flame-deep); }

/* ---------- утилиты ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.kicker {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--flame);
}
.kicker::before { content: ""; width: 10px; height: 10px; background: var(--flame); flex: none; }

.sec-head {
  position: relative; margin-bottom: clamp(36px, 5vw, 64px);
  /* правая зона зарезервирована под контурную цифру – заголовки в неё не заходят */
  padding-right: clamp(100px, 12vw, 185px);
}
.sec-head::before { content: ""; display: block; height: 1px; background: var(--line-strong); margin-bottom: 26px; }
.sec-paper .sec-head::before { background: rgba(11, 10, 8, .25); }
.sec-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(32px, 5.4vw, 74px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .01em;
  margin-top: 18px;
  /* заголовок не заезжает на контурную цифру раздела */
  max-width: min(18ch, calc(100% - clamp(100px, 12vw, 185px)));
}
.sec-title em { font-style: normal; color: var(--flame); }
.sec-index {
  position: absolute; right: 0; top: -10px; z-index: 0;
  font-family: var(--f-poster); font-size: clamp(70px, 11vw, 150px);
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(237, 231, 220, .13);
  user-select: none;
}
.sec-index .si-ch { transition: color .25s ease, -webkit-text-stroke-color .25s ease; }
.sec-index .si-ch:hover { color: var(--flame); -webkit-text-stroke-color: var(--flame); }
.sec-paper .si-ch:hover { color: var(--flame-deep); -webkit-text-stroke-color: var(--flame-deep); }
.sec-lead { max-width: 62ch; margin-top: 22px; color: var(--paper-dim); font-size: clamp(16px, 1.2vw, 19px); }
.sec-lead strong { color: var(--paper); font-weight: 600; }

.mono { font-family: var(--f-mono); }
.nowrap { white-space: nowrap; }

/* ---------- появление при скролле ---------- */
.rv { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s cubic-bezier(.22, .8, .3, 1); transition-delay: var(--d, 0s); }
.js .rv { opacity: 0; transform: translateY(20px); }
.js .rv.on { opacity: 1; transform: none; }
.rv-clip { clip-path: none; transition: clip-path .75s cubic-bezier(.6, 0, .2, 1); transition-delay: var(--d, 0s); }
.js .rv-clip { clip-path: inset(0 100% 0 0); }
.js .rv-clip.on { clip-path: inset(0 0 0 0); }

/* ---------- прогресс-клин ---------- */
#scrollbar {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 1200;
  background: linear-gradient(90deg, var(--flame-deep), var(--flame), var(--flame-hi));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ---------- шапка ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 10, 8, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: background .3s;
}
.header-in { display: flex; align-items: center; gap: 28px; height: 68px; }

.logo { display: flex; align-items: center; gap: 14px; flex: none; }
.logo { position: relative; }
.logo .brand-mark { width: auto; height: 44px; position: relative; z-index: 2; object-fit: contain; }
.logo-text {
  display: block; width: 152px;
  border-left: 1px solid var(--line-strong); padding-left: 14px;
}
.logo-line {
  display: flex; justify-content: center; align-items: baseline;
  white-space: nowrap;
  font-family: var(--f-display); font-weight: 900; font-size: 11.5px;
  letter-spacing: .14em; line-height: 1;
}
.logo-line + .logo-line { margin-top: 5px; }
.logo-line.cy { font-size: 10.57px; } /* кириллица шире латиницы – кегль подобран так, чтобы длины строк совпадали */
.logo-line i { font-style: normal; color: var(--flame); margin: 0 7px; }
.logo-line b { font-weight: 900; color: var(--flame); }

.f-brand { align-items: center; }
.f-brand .logo-text { width: 176px; }
.f-brand .logo-line { font-size: 13px; }
.f-brand .logo-line.cy { font-size: 11.95px; } /* пропорционально 13px × 0.9191 */
.logo-mir i { font-style: normal; color: var(--flame); margin: 0 3px; }

.nav { display: flex; gap: clamp(14px, 2vw, 30px); margin-left: auto; }
.nav a {
  position: relative; font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--paper-dim);
  padding: 6px 0; transition: color .25s;
}
.nav a b { font-weight: 700; font-size: 9px; color: var(--flame); margin-right: 5px; opacity: .9; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--flame); transition: width .3s; }
.nav a:hover { color: var(--paper); }
.nav a[aria-current="page"] { color: var(--paper); }
.nav a[aria-current="page"]::after { width: 100%; }

.burger {
  display: none; align-items: center; justify-content: flex-end; gap: 8px;
  width: 92px; height: 40px; position: relative; z-index: 1300;
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--paper);
}
.burger i { display: none; }
.burger::before { content: "Меню"; }
.burger::after { content: "+"; color: var(--flame); font-size: 17px; line-height: 1; transition: transform .3s ease; }
.burger.open::before { content: "Закрыть"; }
.burger.open::after { content: "×"; transform: rotate(90deg); }
html[lang="en"] .burger::before { content: "Menu"; }
html[lang="en"] .burger.open::before { content: "Close"; }

.m-menu {
  position: fixed; inset: 68px 0 0; z-index: 1200; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad);
  visibility: hidden; opacity: 0; transition: .35s;
}
.m-menu.open { visibility: visible; opacity: 1; }
body.menu-open { overflow: hidden; }
.m-menu a {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(26px, 7.5vw, 44px); line-height: 1.35; color: var(--paper);
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(20px); transition: .45s; transition-delay: calc(var(--i) * 60ms);
}
.m-menu.open a { opacity: 1; transform: none; }
.m-menu a b { font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: var(--flame); }
.m-menu a:hover { color: var(--flame); }
.m-menu a[aria-current="page"] { color: var(--flame-hi); }
.m-menu .m-foot { margin-top: 40px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--steel); text-transform: uppercase; }

/* ---------- паспорт: основная надпись ---------- */
.plate { border: 1px solid var(--line-strong); padding: 4px; background: var(--ink-2); }
.plate-in { border: 1px solid var(--line); display: grid; grid-template-columns: repeat(5, 1fr); }
.plate-in.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pcell { position: relative; padding: 16px 18px 14px; border-right: 1px solid var(--line); }
.pcell:last-child { border-right: 0; }
.pk { display: block; font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); margin-bottom: 9px; }
.pv { display: block; font-family: var(--f-mono); font-weight: 700; font-size: clamp(14px, 1.25vw, 18px); letter-spacing: .02em; color: var(--paper); line-height: 1.35; }
.pv i { font-style: normal; color: var(--steel); font-size: .72em; font-weight: 400; white-space: nowrap; }
.pv-flame { color: var(--flame-hi); }
.pn { position: absolute; top: 9px; right: 11px; font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em; color: var(--line-strong); }
.sec-paper .plate { background: transparent; }
.sec-paper .plate-in { border-color: rgba(11, 10, 8, .25); }
.sec-paper .pcell { border-right-color: rgba(11, 10, 8, .16); }
.sec-paper .pk { color: #6B6455; }
.sec-paper .pv { color: var(--ink); }
.sec-paper .pv i { color: #6B6455; }
.sec-paper .pv-flame { color: var(--flame-deep); }
.sec-paper .card { border-color: rgba(11, 10, 8, .25); }
.sec-paper .card:hover { border-color: var(--flame-deep); }
.sec-paper .card p { color: #57503F; }
.sec-paper .card::after { color: var(--flame-deep); }
.sec-paper .pn { color: rgba(11, 10, 8, .25); }

/* ---------- герой ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: clip; }
.hero-wedge {
  position: absolute; z-index: 0; right: -6vw; top: 8vh; width: 46vw; height: 78vh;
  background: linear-gradient(160deg, var(--flame-hi), var(--flame) 45%, var(--flame-deep));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: .92;
}
.hero-wedge2 {
  position: absolute; z-index: 0; right: -3vw; top: 14vh; width: 44vw; height: 74vh;
  border: 1px solid rgba(240, 86, 31, .4);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.hero-in { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 100px; }

.hero-tag { font-family: var(--f-poster); font-size: clamp(10px, 1.2vw, 14px); letter-spacing: .3em; text-transform: uppercase; color: var(--flame-hi); margin-bottom: 3vh; }
.hero-tag b { color: var(--paper); font-weight: 400; }

.hero-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.5rem, 10.4vw, 9.8rem); line-height: .95;
  letter-spacing: .01em; text-transform: uppercase;
}

.hero-sub { max-width: 560px; margin-top: 3.5vh; font-size: clamp(16px, 1.4vw, 21px); color: var(--paper-dim); }
.hero-sub strong { color: var(--paper); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 4.5vh; }

.hero-side {
  position: absolute; left: calc(var(--pad) * .35); top: 50%; z-index: 3;
  transform: translateY(-50%); writing-mode: vertical-rl; rotate: 180deg;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--steel);
}
.hero-stats { position: relative; z-index: 2; border-top: 1px solid var(--line); padding-block: 26px calc(var(--slant) + 30px); }

/* двуязычный бренд */
.hero-cyr {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1.5px rgba(240, 86, 31, .85);
  letter-spacing: .34em; font-size: clamp(20px, 3vw, 42px); line-height: 1;
  margin-bottom: 2.2vh;
}
.hero-cyr svg { width: .92em; height: .92em; flex: none; }
.vs-h1 em {
  display: block; font-size: .34em; line-height: 1;
  padding: .22em 0 .2em; letter-spacing: .3em;
  color: transparent !important; -webkit-text-stroke: 1.5px var(--flame);
}
.bilingual { font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--flame); margin-top: 24px; }
.sec-paper .bilingual { color: var(--flame-deep); }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 26px; border: 1px solid var(--line-strong); color: var(--paper);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: .3s;
}
.btn:hover { border-color: var(--flame); color: var(--flame-hi); transform: translate(-2px, -2px); filter: drop-shadow(3px 3px 0 rgba(240, 86, 31, .85)); }
.btn .arr { transition: transform .3s; }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary { background: var(--flame); border-color: var(--flame); color: var(--ink); }
.btn-primary:hover { background: var(--flame-hi); color: var(--ink); border-color: var(--flame-hi); }

/* контурные акцентные слова: волна заливки при появлении в кадре */
.finale-title em .fl-ch,
.vs-h1 em .fl-ch {
  color: transparent;
}
.finale-title.rv.on em .fl-ch,
.vs-h1.rv.on em .fl-ch {
  animation: accent-fill 1.1s ease calc(.7s + var(--i, 0) * .28s) both;
}
@keyframes accent-fill {
  from { color: transparent; }
  to { color: var(--flame); }
}

/* вордмарк героя: контурные буквы, загораются при наведении */
.hero-word {
  display: flex; align-items: baseline;
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 150px); line-height: .9; letter-spacing: .02em;
  color: var(--paper); -webkit-text-stroke-width: 2px;
  margin: 3vh 0 4vh; user-select: none; white-space: nowrap;
}
@keyframes heroGhost {
  from { opacity: 0; transform: translateY(.14em); filter: blur(12px); -webkit-text-stroke-color: rgba(237, 231, 220, .55); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); -webkit-text-stroke-color: rgba(237, 231, 220, .5); }
}
@keyframes heroFill {
  from { color: transparent; }
  to { color: var(--paper); }
}
.hero-word .fm-ch {
  opacity: 0; color: transparent; -webkit-text-stroke-color: transparent;
  animation:
    heroGhost .8s cubic-bezier(.2, .7, .2, 1) both,
    heroFill .55s cubic-bezier(.2, .7, .2, 1) both;
  animation-delay: calc(var(--i, 0) * .05s), calc(1.25s + var(--i, 0) * .085s);
  transition: color .25s ease;
}
.hero-word .fm-ch.in { color: var(--paper); }
.hero-word .fm-ch.in:hover { color: var(--flame); }

/* блик ВНУТРИ букв: слой с тем же текстом, оранжевая полоса скользит по глифам */
.hero-word { position: relative; }
.hero-word.sweep::after {
  content: "ПРОМЕЗИС";
  position: absolute; inset: 0;
  color: transparent;
  background-image: linear-gradient(100deg,
    transparent 18%, var(--flame) 42%, var(--flame-hi) 50%, var(--flame) 58%, transparent 82%);
  background-size: 45% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  animation: glintPass 1.6s cubic-bezier(.5, 0, .3, 1) forwards;
  pointer-events: none;
}
@keyframes glintPass {
  from { background-position: -45% 0; }
  to { background-position: 145% 0; }
}

/* ---------- тикер ---------- */
.ticker { border-block: 1px solid var(--line); background: var(--ink-2); overflow: clip; }
.ticker-in { display: flex; width: max-content; animation: tick 46s linear infinite; }
.ticker:hover .ticker-in { animation-play-state: paused; }
.ticker-in span {
  display: flex; align-items: center; gap: 28px; padding: 13px 14px 13px 28px;
  font-family: var(--f-poster); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--paper-dim); white-space: nowrap;
}
.ticker-in span::after { content: ""; width: 8px; height: 8px; background: var(--flame); rotate: 45deg; }
.ticker-in span b { color: var(--flame); font-weight: 400; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- секции ---------- */
.sec { position: relative; padding-block: clamp(72px, 10vw, 140px); }
.sec-paper { background: var(--paper); color: var(--ink); }
.sec-paper .kicker { color: var(--flame-deep); } .sec-paper .kicker::before { background: var(--flame-deep); }
.sec-paper .sec-index { -webkit-text-stroke-color: rgba(11, 10, 8, .14); }
.sec-paper .sec-lead { color: #57503F; } .sec-paper .sec-lead strong { color: var(--ink); }

.diag-top { clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%); margin-top: calc(-1 * var(--slant)); padding-top: calc(var(--slant) + clamp(72px, 10vw, 140px)); }
.diag-bot { clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--slant)), 0 100%); margin-bottom: calc(-1 * var(--slant) + 1px); padding-bottom: calc(var(--slant) + clamp(72px, 10vw, 140px)); }
.diag-both { clip-path: polygon(0 var(--slant), 100% 0, 100% calc(100% - var(--slant)), 0 100%); margin-block: calc(-1 * var(--slant) + 1px); padding-block: calc(var(--slant) + clamp(72px, 10vw, 140px)); }

/* ---------- карточки ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--ink-2); border: 1px solid var(--line);
  padding: clamp(22px, 2.6vw, 34px);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(240, 86, 31, .55); transform: translateY(-4px); }
.card.card-link::after {
  content: "↗"; position: absolute; top: 12px; right: 14px;
  font-family: var(--f-mono); font-size: 15px; color: var(--flame);
  opacity: 0; transform: translate(-6px, 6px); transition: .3s;
}
.card.card-link:hover::after { opacity: 1; transform: none; }
.card .c-num { font-family: var(--f-poster); font-size: 13px; color: var(--flame); margin-bottom: 18px; }
.card h3 { font-family: var(--f-display); font-weight: 600; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.3; margin-bottom: 12px; }
.card p { color: var(--paper-dim); font-size: 14.5px; }

/* цифры-постеры */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.stat { padding: clamp(20px, 2.4vw, 34px); border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .n { font-family: var(--f-poster); font-size: clamp(26px, 3.6vw, 52px); line-height: 1; }
.stat .n i { font-style: normal; color: var(--flame); }
.stat .l { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); margin-top: 12px; line-height: 1.5; }

/* ---------- манифест ---------- */
.manifesto { font-family: var(--f-display); font-weight: 600; font-size: clamp(20px, 2.6vw, 34px); line-height: 1.45; max-width: 30ch; }
.manifesto em { font-style: normal; color: var(--flame); }
.sec-paper .manifesto em { color: var(--flame-deep); }

/* ---------- табло бенчмарков ---------- */
.board { border: 1px solid var(--line); }
.board-head, .brow { display: grid; grid-template-columns: minmax(180px, 1.4fr) 2fr 70px 70px; gap: 14px; align-items: center; }
.board-head { padding: 14px 20px; border-bottom: 1px solid var(--line-strong); font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); }
.board-head .loza { color: var(--flame); }
.brow { padding: 13px 20px; border-bottom: 1px solid var(--line); transition: background .25s; }
.brow:hover { background: rgba(237, 231, 220, .035); }
.sec-paper .brow:hover { background: rgba(11, 10, 8, .035); }
.brow:last-child { border-bottom: 0; }
.brow .task .t { font-weight: 600; font-size: 15px; }
.brow .task .d { font-size: 12px; color: var(--steel); }
.bar { position: relative; height: 26px; background: rgba(237, 231, 220, .06); }
.bar .fill {
  position: absolute; inset: 0 auto 0 0; width: 0;
  background: linear-gradient(90deg, var(--flame-deep), var(--flame));
  transition: width 1.1s cubic-bezier(.22, .8, .3, 1); transition-delay: var(--d, 0s);
}
.bar .fill.q { background: repeating-linear-gradient(-45deg, rgba(237,231,220,.28) 0 5px, rgba(237,231,220,.14) 5px 10px); }
.bar .v { position: absolute; right: 8px; top: 50%; translate: 0 -50%; font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: var(--ink); mix-blend-mode: normal; }
.bar .fill.q .v, .bar.low .fill .v { color: var(--paper); }
.brow .val { font-family: var(--f-mono); font-size: 15px; font-weight: 700; text-align: right; }
.brow .val.loza { color: var(--flame-hi); }
.brow .val.qwen { color: var(--paper-dim); }
.brow.win .task .t::before { content: "● "; color: var(--flame); }
.brow.loss .task .t::before { content: "○ "; color: var(--steel); }
.brow.tie .task .t::before { content: "– "; color: var(--steel); }

.board-legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 18px; font-family: var(--f-mono); font-size: 12px; color: var(--steel); }
.board-legend i { font-style: normal; color: var(--flame); }
.board-legend b { font-weight: 400; color: var(--steel); }

.score { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(24px, 6vw, 90px); justify-content: center; text-align: center; }
.score .s .n { font-family: var(--f-poster); font-size: clamp(54px, 9vw, 130px); line-height: 1; }
.score .s.us .n { color: var(--flame); }
.score .s .l { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--steel); margin-top: 10px; }

/* ---------- пульт обучения ---------- */
.console { border: 1px solid var(--line-strong); background: var(--ink-2); padding: clamp(24px, 3vw, 44px); padding-bottom: clamp(64px, 7vw, 96px); position: relative; }
.console::before { content: "ХОД ОБУЧЕНИЯ"; position: absolute; top: -9px; left: 24px; background: var(--ink); padding: 0 10px; font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: .3em; color: var(--flame); }
.console .big { font-family: var(--f-poster); font-size: clamp(26px, 4vw, 52px); }
.console .big i { font-style: normal; color: var(--flame); }
.progress { position: relative; height: 30px; background: rgba(237, 231, 220, .07); margin: 20px 0 8px; }
.progress .pf { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--flame-deep), var(--flame), var(--flame-hi)); transition: width 1.4s cubic-bezier(.22, .8, .3, 1); }
.progress .pf::after { content: ""; position: absolute; right: -2px; top: -4px; bottom: -4px; width: 4px; background: var(--flame-hi); box-shadow: 0 0 18px 3px rgba(249, 163, 106, .55); }
.console .pct { font-family: var(--f-mono); font-size: 13px; color: var(--flame-hi); }
.console-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.cg { border: 1px solid var(--line); padding: 14px 16px; }
.cg .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); }
.cg .v { font-family: var(--f-mono); font-size: clamp(15px, 1.4vw, 19px); font-weight: 700; margin-top: 6px; }
.stamp {
  position: absolute; right: clamp(16px, 3vw, 40px); bottom: clamp(14px, 2vw, 30px);
  rotate: -7deg; border: 2px solid var(--flame); color: var(--flame);
  font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; padding: 8px 14px; opacity: .85;
}

/* ---------- хроника ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1px; background: var(--line-strong); }
.tl { position: relative; padding-bottom: clamp(30px, 4vw, 48px); }
.tl::before { content: ""; position: absolute; left: -31px; top: 7px; width: 11px; height: 11px; background: var(--flame); rotate: 45deg; }
.tl .date { font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--flame); text-transform: uppercase; }
.tl h3 { font-family: var(--f-display); font-weight: 600; font-size: clamp(17px, 1.8vw, 23px); margin: 8px 0 8px; }
.tl p { color: var(--paper-dim); max-width: 68ch; font-size: 15px; }
.tl p b { color: var(--paper); font-weight: 600; }

/* ---------- новости ---------- */
.news { border-top: 1px solid var(--line-strong); }
.news-item { display: grid; grid-template-columns: 150px 1fr auto; gap: clamp(16px, 3vw, 40px); padding: clamp(22px, 3vw, 36px) 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: .3s; }
.news-item:hover { background: var(--ink-2); }
.news-item .d { font-family: var(--f-mono); font-size: 13px; font-weight: 700; color: var(--flame); }
.news-item h3 { font-family: var(--f-display); font-weight: 600; font-size: clamp(17px, 1.9vw, 24px); line-height: 1.3; }
.news-item p { color: var(--paper-dim); font-size: 14.5px; margin-top: 8px; max-width: 70ch; }
.news-item .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); border: 1px solid var(--line-strong); padding: 5px 10px; white-space: nowrap; }

/* ---------- цитаты ---------- */
.quote { border-left: 3px solid var(--flame); padding: 6px 0 6px 24px; }
.quote .q { font-family: var(--f-display); font-weight: 600; font-size: clamp(17px, 1.8vw, 22px); line-height: 1.45; }
.quote .a { font-family: var(--f-mono); font-size: 12px; color: var(--steel); margin-top: 12px; text-transform: uppercase; letter-spacing: .14em; }

/* ---------- таблица спеков ---------- */
.spec { width: 100%; border-collapse: collapse; }
.spec td { border-bottom: 1px solid var(--line); padding: 13px 16px 13px 0; vertical-align: top; font-size: 15px; }
.spec td:first-child { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); width: 42%; padding-top: 16px; }
.spec td:last-child { color: var(--paper); font-weight: 500; }
.spec td i { font-style: normal; color: var(--flame-hi); }
.sec-paper .spec td:first-child { color: #6B6455; }
.sec-paper .spec td:last-child { color: var(--ink); }
.sec-paper .spec td i { color: var(--flame-deep); }
.sec-paper .brow .val.qwen { color: #6B6455; }
.sec-paper .brow .task .d { color: #6B6455; }

/* ---------- контакты ---------- */
.contact-rows { border-top: 1px solid var(--line-strong); }
.contact-row { display: grid; grid-template-columns: 220px 1fr auto; gap: 20px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); transition: .3s; }
.contact-row:hover { background: var(--ink-2); }
.contact-row .k { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--steel); }
.contact-row .v { font-family: var(--f-display); font-weight: 600; font-size: clamp(16px, 2vw, 24px); }
.contact-row .arr { color: var(--flame); font-family: var(--f-mono); }

/* ---------- финальный блок ---------- */
.finale { position: relative; overflow: clip; }
.finale-title { font-family: var(--f-display); font-weight: 900; font-size: clamp(34px, 7.4vw, 108px); line-height: 1; text-transform: uppercase; }
.finale-title em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--flame); }

/* ---------- подвал ---------- */
.footer { border-top: 1px solid var(--line); background: var(--ink-2); }
.footer-in { padding-block: clamp(44px, 6vw, 80px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .f-brand .brand-mark { width: auto; height: 52px; object-fit: contain; }
.footer .f-desc { color: var(--steel); font-size: 14px; max-width: 40ch; }
.footer h4 { font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--flame); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--paper-dim); font-size: 14.5px; transition: color .25s; }
.footer ul a:hover { color: var(--flame-hi); }
.footer-mark {
  overflow: clip; white-space: nowrap; user-select: none;
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(56px, 9.5vw, 150px); line-height: .82; letter-spacing: .02em;
  color: transparent; -webkit-text-stroke: 1px rgba(237, 231, 220, .13);
  margin: clamp(30px, 4vw, 56px) 0 6px; transform: translateY(.08em);
}
.footer-mark .fm-ch { transition: color .25s ease, -webkit-text-stroke-color .25s ease; }
.footer-mark .fm-ch:hover { color: var(--flame); -webkit-text-stroke-color: var(--flame); }
.footer-bot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 0; padding-top: 22px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: var(--steel); }

/* ---------- страница внутреннихhero ---------- */
.page-hero { position: relative; padding: calc(68px + clamp(60px, 9vw, 120px)) 0 clamp(44px, 6vw, 80px); overflow: clip; }
.page-hero .ph-wedge { position: absolute; z-index: 0; right: -8vw; top: 0; width: 34vw; height: 100%; background: linear-gradient(160deg, var(--flame-hi), var(--flame) 45%, var(--flame-deep)); clip-path: polygon(55% 0, 100% 0, 100% 100%, 0 100%); opacity: .16; }
.page-hero .kicker { position: relative; z-index: 1; }
.page-hero h1 { position: relative; z-index: 1; font-family: var(--f-display); font-weight: 900; font-size: clamp(34px, 7vw, 92px); line-height: 1; text-transform: uppercase; margin-top: 20px; }
.page-hero h1 em { font-style: normal; color: var(--flame); }
.page-hero .ph-lead { position: relative; z-index: 1; max-width: 62ch; margin-top: 24px; color: var(--paper-dim); font-size: clamp(16px, 1.3vw, 19px); }
.page-hero .ph-lead strong { color: var(--paper); font-weight: 600; }

/* ---------- заметка/дисклеймер ---------- */
.note { display: flex; gap: 14px; border: 1px dashed var(--line-strong); padding: 18px 22px; color: var(--steel); font-size: 13.5px; line-height: 1.6; max-width: 900px; }
.note::before { content: "※"; color: var(--flame); font-size: 16px; line-height: 1.4; }

/* ---------- статусы, предложения и доказательства ---------- */
.status-panel {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
  gap: 18px; border: 1px solid var(--line-strong); background: var(--ink-2);
  padding: clamp(24px, 4vw, 46px);
}
.status-panel .status-main { max-width: 64ch; }
.status-panel .status-label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--flame);
}
.status-panel h2, .status-panel h3 {
  font-family: var(--f-display); font-weight: 700; line-height: 1.15;
  margin-top: 12px;
}
.status-panel h2 { font-size: clamp(26px, 4vw, 48px); }
.status-panel p { color: var(--paper-dim); margin-top: 14px; }
.status-facts { display: grid; align-content: start; border-top: 1px solid var(--line); }
.status-fact { padding: 14px 0; border-bottom: 1px solid var(--line); }
.status-fact dt {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--steel);
}
.status-fact dd { margin-top: 4px; font-weight: 600; }
.status-fact dd strong { color: var(--flame-hi); }

.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof {
  border-top: 3px solid var(--flame-deep); padding: 22px 0 0;
}
.proof .metric { font-family: var(--f-poster); font-size: clamp(28px, 4vw, 48px); line-height: 1; }
.proof .metric em { color: var(--flame-deep); font-style: normal; }
.proof h3 { font-family: var(--f-display); font-size: clamp(16px, 1.5vw, 20px); margin-top: 14px; }
.proof p { color: #57503F; font-size: 14.5px; margin-top: 8px; }

.bench-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.bench-summary > div { min-width: 0; border: 1px solid var(--line); padding: clamp(22px, 3vw, 36px); }
.bench-summary > div > p:last-child { color: var(--paper-dim); margin-top: 18px; }
.bench-score { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.bench-score span { min-width: 0; border-left: 1px solid var(--line); padding-left: 14px; }
.bench-score span:first-child { border-left: 0; padding-left: 0; }
.bench-score strong { display: block; font-family: var(--f-poster); font-size: clamp(34px, 4vw, 56px); line-height: 1; color: var(--paper); }
.bench-score b { display: block; margin-top: 8px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.bench-score-single { margin-top: 18px; }
.bench-score-single strong { display: block; font-family: var(--f-poster); font-size: clamp(34px, 4vw, 56px); line-height: 1; color: var(--paper); }
.bench-score-single span { display: block; margin-top: 8px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--flame-hi); }

.bench-table-wrap {
  width: 100%; overflow-x: auto; border: 1px solid var(--line);
  scrollbar-color: var(--flame-deep) var(--ink-2);
}
.bench-table { width: 100%; min-width: 620px; border-collapse: collapse; }
.bench-table th, .bench-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.bench-table tr:last-child td { border-bottom: 0; }
.bench-table th {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--steel); background: var(--ink-2);
}
.bench-table td { font-size: 14px; }
.bench-table td:nth-child(n+2), .bench-table th:nth-child(n+2) { text-align: right; }
.bench-table .metric-name { font-weight: 650; }
.bench-table .metric-name small { display: block; color: var(--steel); font-weight: 400; margin-top: 2px; }
.bench-table .loza-value { color: var(--flame-hi); font-family: var(--f-mono); font-weight: 700; }
.bench-table .result { font-family: var(--f-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.bench-table .result.win { color: var(--flame-hi); }
.bench-table .result.tie, .bench-table .result.loss { color: var(--steel); }
.bench-table .result-win { color: var(--flame-hi); font-family: var(--f-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.sec-paper .bench-table-wrap { border-color: rgba(11, 10, 8, .25); }
.sec-paper .bench-table th { color: #57503F; background: rgba(11, 10, 8, .045); }
.sec-paper .bench-table th, .sec-paper .bench-table td { border-color: rgba(11, 10, 8, .16); }
.sec-paper .bench-table .loza-value, .sec-paper .bench-table .result.win, .sec-paper .bench-table .result-win { color: var(--flame-deep); }
.sec-paper .bench-table .metric-name small, .sec-paper .bench-table .result.tie, .sec-paper .bench-table .result.loss { color: #57503F; }

.inline-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.meta-list { display: grid; gap: 10px; margin-top: 20px; }
.meta-list li { position: relative; padding-left: 20px; color: var(--paper-dim); }
.meta-list li::before { content: "■"; position: absolute; left: 0; top: .15em; color: var(--flame); font-size: 8px; }
.sec-paper .meta-list li { color: #57503F; }
.sec-paper .meta-list li::before { color: var(--flame-deep); }

/* ---------- адаптив ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .plate-in, .plate-in.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .pcell { border-bottom: 1px solid var(--line); }
  .pcell:nth-child(2n) { border-right: 0; }
  .pcell:last-child { border-bottom: 0; }
  .plate-in.cols-4 .pcell:nth-last-child(-n+2) { border-bottom: 0; }
  .console-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .header-in { gap: 16px; }
  .burger { display: flex; flex: none; margin-left: auto; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-wedge { width: 74vw; opacity: .5; }
  .hero-wedge2 { display: none; }
  .board-head { display: none; }
  .brow { grid-template-columns: 1fr 60px 60px; }
  .brow .bar-wrap { display: none; }
  .news-item { grid-template-columns: 1fr; gap: 8px; }
  .contact-row { grid-template-columns: 1fr auto; }
  .contact-row .k { grid-column: 1 / -1; }
  .status-panel { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --slant: 28px; }
  .sec { padding-block: 56px; }
  .diag-top { padding-top: calc(var(--slant) + 48px); }
  .diag-bot { padding-bottom: calc(var(--slant) + 48px); }
  .diag-both { padding-block: calc(var(--slant) + 48px); }
  .page-hero { padding: 112px 0 34px; }
  .sec-head {
    display: grid; grid-template-columns: minmax(0, 1fr) auto;
    align-items: start; gap: 10px 14px; padding-right: 0; margin-bottom: 32px;
  }
  .sec-head::before { grid-column: 1 / -1; margin-bottom: 8px; }
  .sec-head .kicker { grid-column: 1; min-width: 0; }
  .sec-title {
    grid-column: 1 / -1; max-width: 100%; margin-top: 2px;
    font-size: clamp(20px, 6vw, 32px); line-height: 1.14;
    overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: balance;
  }
  .sec-index {
    position: static; grid-column: 2; grid-row: 2;
    align-self: start; font-size: 27px; opacity: .48;
  }
  .page-hero h1 {
    font-size: clamp(26px, 7.2vw, 38px); line-height: 1.08; letter-spacing: -.02em;
    overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: balance;
  }
  .vs-h1 em { font-size: .62em; line-height: 1.12; padding-top: .35em; letter-spacing: .1em; }
  .page-hero .ph-wedge { right: 0; width: 68vw; }
  .hero-wedge { right: 0; width: 70vw; }
  .logo { gap: 9px; min-width: 0; }
  .logo .brand-mark { height: 40px; }
  .logo-text { width: 142px; padding-left: 10px; }
  .logo-line { justify-content: flex-start; font-size: 10.4px; letter-spacing: .08em; }
  .logo-line.cy { font-size: 9.55px; }
  .grid-4, .plate-in, .plate-in.cols-4, .console-grid, .bench-summary { grid-template-columns: 1fr; }
  .pcell { padding: 13px 14px 12px; }
  .pcell, .pcell:nth-child(2n), .plate-in.cols-4 .pcell:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .pcell:last-child, .plate-in.cols-4 .pcell:last-child { border-bottom: 0; }
  .pv i { white-space: normal; }
  .hero-side { display: none; }
  .hero-word { white-space: normal; font-size: clamp(30px, 10vw, 46px); letter-spacing: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-mark {
    overflow: visible; white-space: normal; font-size: 0; line-height: .9;
    letter-spacing: 0; transform: none; margin-bottom: 10px;
  }
  .footer-mark::before {
    content: "PROMEZIS"; display: block; white-space: nowrap;
    font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
    font-size: clamp(30px, 11vw, 46px); line-height: .9; letter-spacing: -.02em;
    color: transparent; -webkit-text-stroke: 1px rgba(237, 231, 220, .18);
  }
  .kicker { gap: 10px; font-size: 10.5px; line-height: 1.5; letter-spacing: .13em; }
  .manifesto { font-size: clamp(20px, 5.8vw, 25px); line-height: 1.42; }
  .status-panel { padding: 20px; }
  .status-panel h2 { font-size: clamp(23px, 6.5vw, 30px); }
  .finale-title {
    font-size: clamp(23px, 7vw, 32px); line-height: 1.12;
    overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: balance;
  }
  .proof-grid { gap: 36px; }
  .proof { padding-top: 18px; }
  .bench-summary { gap: 12px; }
  .bench-summary > div { padding: 18px; }
  .bench-score { gap: 8px; }
  .bench-score span { padding-left: 9px; }
  .bench-score strong, .bench-score-single strong { font-size: clamp(30px, 9vw, 40px); }
  .bench-score b { font-size: 9px; letter-spacing: .08em; }
  .score { gap: clamp(10px, 5vw, 28px); }
  .score .s .l { font-size: 9px; letter-spacing: .12em; }
  .brow { grid-template-columns: minmax(0, 1fr) 52px 52px; gap: 8px; padding: 12px; }
  .brow .task { min-width: 0; }
  .brow .task .t { overflow-wrap: anywhere; }
  .brow .val { font-size: 13px; }
  .spec, .spec tbody, .spec tr, .spec td { display: block; width: 100%; }
  .spec tr { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .spec tr:last-child { border-bottom: 0; }
  .spec td { border: 0; padding: 0; }
  .spec td:first-child { width: 100%; padding-top: 0; }
  .spec td:last-child { margin-top: 5px; }
  .bench-table-wrap { overflow: visible; border: 0; }
  .bench-table { display: block; min-width: 0; }
  .bench-table caption {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap;
  }
  .bench-table thead {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap;
  }
  .bench-table tbody { display: grid; gap: 10px; }
  .bench-table tr { border: 1px solid var(--line); }
  .bench-table td { border: 0; text-align: left !important; }
  .status-table tr { display: block; padding: 14px; }
  .status-table td { display: block; padding: 0; }
  .status-table td:first-child {
    font-family: var(--f-mono); font-size: 10px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--steel);
  }
  .status-table td:last-child { margin-top: 7px; }
  .results-table tr {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 12px; padding: 14px;
  }
  .results-table td { min-width: 0; padding: 0; }
  .results-table td:nth-child(1), .results-table td:nth-child(2) { grid-column: 1 / -1; }
  .results-table td:nth-child(1) { font-weight: 700; }
  .results-table td:nth-child(2) { color: var(--steel); font-size: 13px; margin-bottom: 5px; }
  .results-table td:nth-child(n+3)::before {
    display: block; margin-bottom: 3px;
    font-family: var(--f-mono); font-size: 9px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--steel);
  }
  .results-table td:nth-child(3)::before { content: "LOZA"; }
  .results-table td:nth-child(4)::before { content: "Qwen"; }
  .results-table td:nth-child(5)::before { content: "Итог"; }
  .difference-table td:nth-child(5)::before { content: "Разница"; }
  .sec-paper .bench-table tr { border-color: rgba(11, 10, 8, .2); }
  .sec-paper .results-table td:nth-child(2),
  .sec-paper .results-table td:nth-child(n+3)::before,
  .sec-paper .status-table td:first-child { color: #57503F; }
  .contact-row .v { overflow-wrap: anywhere; }
  .m-menu a { gap: 10px; }
  .m-menu .m-foot { letter-spacing: .12em; }
}

@media (max-width: 360px) {
  :root { --pad: 16px; }
  .header-in { gap: 10px; }
  .logo { gap: 8px; }
  .logo .brand-mark { width: auto; height: 38px; }
  .logo-text { width: 132px; }
  .logo-line { font-size: 10px; letter-spacing: .06em; }
  .logo-line.cy { font-size: 9.2px; }
  .burger { width: 82px; height: 40px; gap: 6px; font-size: 9px; letter-spacing: .11em; }
  .m-menu a { gap: 8px; font-size: 25px; }
  .btn { padding: 14px 18px; letter-spacing: .1em; }
  .hero-tag, .kicker { letter-spacing: .11em; }
}

/* ---------- уважение к motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rv, .rv-clip { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .bar .fill, .progress .pf { width: var(--w, 0) !important; }
  .hero-word .fm-ch { animation: none; opacity: 1; color: var(--paper); }
  .finale-title em .fl-ch, .vs-h1 em .fl-ch { animation: none !important; color: var(--flame) !important; }
  body { cursor: auto; } a, button { cursor: pointer; }
}
