﻿/* MBOS Landing вЂ” 1:1 from MBOS Landing.dc.html */

:root {
  --accent: #8aabc6;
  --accent2: #3d73ad;
  /* Фон страницы — как в тёмной теме кабинета (--bg там же #0c0f13). #0f1216 остаётся
     цветом всегда-тёмных поверхностей кабинета, поэтому фону сайта он не годится. */
  --bg: #0c0f13;
  --ink: #f4f5f6;
  --muted: #a8b0bc;
  --muted-2: #8b93a0;
  /* Было #565e6a — 2,9 к 1 на фоне страницы и 2,7 на панели. Этим цветом набраны
     подписи 11,5–13 px: правило доступности требует 4,5 к 1 для такого кегля, и дело
     не в правиле — на ноутбуке при дневном свете эти строки просто не читаются.
     Новое значение даёт 4,9 и 4,5. */
  --muted-3: #778191;
  --line: #1c2128;
  --line-2: #1f242b;
  --line-3: #2a2f37;
  --panel: #14181e;
  --panel-2: #12161b;
  --font: "Golos Text", system-ui, sans-serif;
  --display: "Onest", "Golos Text", system-ui, sans-serif;
  /* Системный моноширинный: Inter здесь стоял как «моноширинный», хотя он
     пропорциональный — цифры в колонках им не выровнять. Своих файлов ради этого
     не возим: классы, которые его просили, остались от удалённого макета. */
  /* Шрифт цифр. Раньше здесь стоял Inter — обычный пропорциональный шрифт, названный
     «mono» по недоразумению. Убрав Inter, я подставил НАСТОЯЩИЙ моноширинный набор, и
     цифры поехали: «₽1 499» стало «₽1  499», потому что в моноширинном шрифте пробел
     шириной с цифру. Правильный ответ — тот же шрифт, что и весь текст, а ровные
     столбцы даёт font-variant-numeric: tabular-nums рядом с каждым применением. */
  --num: "Golos Text", system-ui, sans-serif;

  /* ── Шкала кеглей ────────────────────────────────────────────────────────────
     Между 9 и 17 пикселями в файле жило СЕМНАДЦАТЬ разных значений. Отличить 13 от
     13,5 не может никто, а выбирать «какой тут кегль» приходилось при каждой правке —
     и каждый раз заново, поэтому значений и становилось больше.

     Шкала снимает выбор: берите ступень, а не число. Между соседними ступенями разница
     видна глазом, ниже 12 px ступеней нет намеренно — на такой мелочи текст перестают
     читать раньше, чем перестают видеть.

     Крупнее 22 px значения не выстроены в ступени сознательно: там это размеры одного и
     того же заголовка на разной ширине экрана, и они осмысленны сами по себе. */
  --fs-1: 12px;   /* микроподписи: метки, надзаголовки */
  --fs-2: 13px;   /* мелкий текст: сноски, подписи под цифрами */
  --fs-3: 14px;   /* основной мелкий: списки, описания в карточках */
  --fs-4: 16px;   /* основной текст */
  --fs-5: 18px;   /* лид и подзаголовки */
  --fs-6: 22px;   /* заголовок третьего уровня */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Плавная прокрутка — только для нажатий ВНУТРИ страницы.
 *
 * Пока правило висело на html безусловно, оно распространялось и на заход по ссылке с
 * якорем: браузер начинал анимированно ехать от самого верха. Замер на боевой странице —
 * первые 312 мс человек смотрит на герой, а потом его больше секунды тянет через шесть
 * тысяч точек к тарифам. Он приходил за ценами, а получал аттракцион.
 *
 * Класс вешает скрипт после того, как первый переход по якорю уже случился, — то есть
 * заход по ссылке отрабатывает мгновенно, а нажатия в меню остаются плавными. */
html {
  scroll-behavior: auto;
}
html.ln-smooth {
  scroll-behavior: smooth;
}

#founders,
#features,
#how,
#platform,
#pricing,
#security,
#faq,
#contact {
  scroll-margin-top: 76px;
}

body.ln-menu-open {
  overflow: hidden;
}
body.ln-menu-open .ln-wrap {
  pointer-events: none;
}
body.ln-menu-open .ln-header {
  pointer-events: auto;
}

body.ln-sticky-on .ln-wrap {
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

body.mbos-landing {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.ln-hero h1,
.ln-sec__head h2,
.ln-ai h2,
.ln-final h2,
.ln-founders__copy h2,
.ln-secu__intro h2,
.ln-doc__head h1,
.ln-doc__body h1,
.ln-doc__body h2,
.ln-brand__name,
.ln-nameplate__brand,
.ln-footer__brand span {
  font-family: var(--display);
}

a {
  color: inherit;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: #2a2f37;
  border-radius: 8px;
  border: 3px solid #0f1216;
}
::-webkit-scrollbar-track {
  background: #0f1216;
}

.ln-wrap {
  max-width: 100%;
  overflow-x: hidden;
}

.ln-cta:hover {
  filter: brightness(1.08);
}
.ln-ghost:hover {
  border-color: #3a4468 !important;
  background: #171b21 !important;
}
.ln-nav:hover {
  color: #fff !important;
}
.ln-feat:hover {
  border-color: #33383f !important;
  background: #171b21 !important;
  transform: translateY(-3px);
}
.ln-price:hover {
  border-color: #3a4468 !important;
}
.ln-faq:hover {
  background: #171b21 !important;
}/* Header */
.ln-header {
  /* Фиксированная, а не sticky: меню должно быть под рукой на любой высоте страницы.
     Отступ сверху странице даёт .ln-wrap — фиксированный элемент выпадает из потока. */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  /* Было rgba(...,0.82) + backdrop-filter: blur(14px). Размытие полупрозрачной полосы
     пересчитывается на каждом кадре прокрутки по меняющемуся под ней содержимому — на
     широком экране это заметно тормозило колесо. Почти непрозрачный фон стоит дешевле
     и выглядит так же: под шапкой всё равно ничего не разглядеть. */
  background: rgba(12, 15, 19, 0.96);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0px);
}
.ln-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ln-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.ln-brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  flex: none;
  box-shadow: 0 0 0 1px rgba(138, 171, 198, 0.2);
}
.ln-brand__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.ln-brand__sub {
  font-size: 12px;
  color: var(--muted-2);
  max-width: 220px;
  line-height: 1.25;
}
.ln-nav-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  flex-wrap: wrap;
  max-height: 24px;
}
.ln-nav-main a {
  font-size: 14px;
  color: #aab2be;
}
.ln-nav--mobile-only {
  display: none;
}
.ln-mobile-menu__cta {
  display: none;
}
.ln-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.ln-header__login {
  font-size: 14px;
  color: #aab2be;
  padding: 9px 10px;
}
.ln-header__demo {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 10px 18px;
  border-radius: 9px;
}
.ln-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-3);
  color: #aab2be;
  border-radius: 8px;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hero */
.ln-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 30px 30px;
  position: relative;
}
.ln-hero__glow-l,
.ln-hero__glow-r {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}
.ln-hero__glow-l {
  left: -60px;
  top: 0;
  width: 560px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(138, 171, 198, 0.16), transparent 66%);
}
.ln-hero__glow-r {
  right: -40px;
  top: 120px;
  width: 520px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(138, 171, 198, 0.12), transparent 66%);
}
.ln-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.ln-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #171b21;
  border: 1px solid var(--line-3);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  color: #c3cad3;
  margin-bottom: 26px;
}
.ln-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.ln-hero h1 {
  font-size: 50px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.ln-hero h1 span {
  color: #8aabc6;
}
.ln-hero__lead {
  font-size: 18px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 440px;
  text-wrap: pretty;
}
.ln-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 30px;
  max-width: 440px;
}
.ln-chip {
  display: flex;
  align-items: center;
  gap: 11px;
}
.ln-chip__ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #171b21;
  border: 1px solid var(--line-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.ln-chip span {
  font-size: 13px;
  color: #c3cad3;
  line-height: 1.3;
}
.ln-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.ln-btn-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 14px 24px;
  /* Прозрачная рамка — не украшение: у соседней призрачной кнопки рамка есть, и без
     этой строки основная кнопка на 2 точки ниже везде, где они стоят парой. */
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-block;
}
.ln-btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: #f4f5f6;
  border: 1px solid #2a2f37;
  padding: 14px 24px;
  border-radius: 11px;
  display: inline-block;
}
.ln-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ln-trust__item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 12px;
  color: var(--muted-2);
}

/* Dashboard mock */
.ln-dash-wrap {
  min-width: 0;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line-3);
  background: var(--bg);
  padding: 8px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}
.ln-dash {
  min-width: 0;
  width: 100%;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
}
@media (min-width: 1101px) {
  .ln-dash {
    min-width: 680px;
  }
}/* Platforms strip */
.ln-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0f13;
}
.ln-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 30px;
  display: grid;
  /* Было «auto 1fr»: список площадок забирал столько, сколько хотел, а цифрам справа
     доставался остаток — и подписи в них ломались посреди слова («90 / дней»). Теперь
     половина на половину, и обеим сторонам хватает. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
/* Площадки — в две ровные строки, а не в одну длинную с переносом куда попало.
   Подпись занимает всю ширину и стоит над ними. */
.ln-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 10px 20px;
}
.ln-logos__label {
  grid-column: 1 / -1;
}
.ln-logos__label {
  font-size: 12px;
  color: var(--muted-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ln-logos__name {
  font-size: 16px;
  font-weight: 700;
  /* Было #4a515c — 2,4 к 1, самый тусклый текст на сайте. И это НАЗВАНИЯ ПЛОЩАДОК:
     Ozon, Wildberries, Яндекс.Маркет, ПСБ — то, по чему человек за секунду понимает,
     работаем ли мы с его площадкой. Отдельный цвет заменён общей переменной. */
  color: var(--muted-3);
  letter-spacing: 0.02em;
}
.ln-stats {
  display: grid;
  /* Цифр три, а колонок стояло четыре: одна пустовала, а трём оставшимся не хватало
     ширины, и подписи переносились по слогам. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.ln-stat {
  text-align: left;
  border-left: 1px solid var(--line-2);
  padding-left: 16px;
}
.ln-stat__value {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #a8c2d6, #8aabc6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ln-stat__label {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
}

/* Sections common */
.ln-sec {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 30px 32px;
}
.ln-sec--sm {
  padding: 40px 30px;
}
.ln-sec--how {
  padding: 46px 30px 32px;
}
.ln-sec--faq {
  /* Было 820: колонка вопросов стояла посреди пустого экрана. В две колонки нужна
     полная ширина — та же, что у остальных секций. */
  max-width: 1280px;
  padding: 46px 30px 32px;
}
.ln-sec__head {
  text-align: center;
  margin-bottom: 34px;
}
.ln-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #8aabc6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ln-sec__head h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 auto 16px;
  max-width: 640px;
  text-wrap: balance;
}
.ln-sec__head p {
  font-size: 16px;
  color: var(--muted);
  /* Одна мера ширины абзаца на весь лендинг: строка длиннее ~72 знаков читается тяжело,
     а разная ширина в соседних секциях выглядит как небрежность. */
  margin: 0 auto;
  line-height: 1.6;
}

.ln-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ln-feat {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 15px;
  padding: 26px;
  transition: all 0.18s;
}
.ln-feat__ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ln-feat__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.ln-feat__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.ln-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ln-step__num {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
  color: #8aabc6;
  margin-bottom: 14px;
}
.ln-step__bar {
  width: 100%;
  height: 2px;
  background: var(--line-2);
  margin-bottom: 20px;
  position: relative;
}
.ln-step__bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.ln-step__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.ln-step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* AI */
.ln-ai {
  background: linear-gradient(135deg, #14181e, #14181e);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.ln-ai__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line-3);
  border-radius: 18px;
  padding: 6px 13px;
  font-size: 13px;
  color: #8aabc6;
  margin-bottom: 20px;
}
.ln-ai__badge-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.ln-ai h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.15;
  text-wrap: balance;
}
.ln-ai__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 24px;
}
.ln-ai__points {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.ln-ai__point {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.ln-ai__check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(138, 171, 198, 0.16);
  color: #8aabc6;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}
.ln-ai__point span {
  font-size: 14px;
  color: #c3cad3;
  line-height: 1.5;
}
.ln-chat {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ln-chat__user {
  align-self: flex-end;
  background: #1f242b;
  color: #f4f5f6;
  padding: 11px 15px;
  border-radius: 13px 13px 4px 13px;
  font-size: 14px;
  max-width: 80%;
}
.ln-chat__bot {
  display: flex;
  gap: 10px;
}
.ln-chat__bot-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: none;
}
.ln-chat__bubble {
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 4px 13px 13px 13px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #d3d8de;
}
.ln-chat__reasons {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ln-chat__reason {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ln-chat__n {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(138, 171, 198, 0.16);
  color: #8aabc6;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ln-chat__rec {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--line-2);
  color: var(--muted);
}

/* Pricing */
.ln-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  /* stretch, а не start: тарифов четыре, и при разной высоте карточек низ сетки выглядел
     рваным. Кнопки при растяжении не смещаются — свободное место уходит под список. */
  align-items: stretch;
}
/* Верхний тариф — во всю ширину и с акцентом: он адресован сетям кабинетов и операторам
   фулфилмента, и четвёртым в общем ряду читался как «ещё одна колонка». */
.ln-plan-top {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 32px 34px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(61, 115, 173, 0.16), rgba(20, 24, 30, 0.9) 55%), var(--panel);
  border: 1px solid rgba(138, 171, 198, 0.32);
  display: grid;
  grid-template-columns: 1fr minmax(220px, 260px);
  gap: 28px;
  align-items: center;
}
.ln-plan-top__glow {
  position: absolute;
  top: -60%;
  right: -10%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 171, 198, 0.18), transparent 65%);
  pointer-events: none;
}
.ln-plan-top__main { position: relative; }
.ln-plan-top__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.ln-plan-top__name {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.ln-plan-top__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}
.ln-plan-top__feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 8px 24px;
}
.ln-plan-top__side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  text-align: center;
}
.ln-plan-top__price { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
@media (max-width: 900px) {
  .ln-plan-top { grid-template-columns: 1fr; padding: 26px; }
  .ln-plan-top__feats { grid-template-columns: 1fr; }
}

/* Установка в контуре — разовая покупка, а не подписка: заголовок с ценой, пояснение,
   и только потом кнопка. В одну строку с текстом кнопка вечно оказывалась не на месте. */
.ln-onprem {
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 16px;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
}
.ln-onprem__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.ln-onprem__name { font-size: 18px; font-weight: 600; color: var(--ink); }
.ln-onprem__price { font-family: var(--num);
  font-variant-numeric: tabular-nums; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.ln-onprem__body { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; }
.ln-onprem__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.ln-onprem__note { font-size: 13px; line-height: 1.5; color: var(--muted-3); }
/* Подписи тарифов бывают в одну и в две строки, из-за этого цена и кнопка в соседних
   карточках стояли на разной высоте. Резервируем две строки. */
.ln-price__tag {
  min-height: 2.7em;
}
.ln-price {
  border-radius: 16px;
  padding: 30px 26px;
  transition: border-color 0.18s;
  background: var(--panel);
  border: 1px solid var(--line-2);
}
.ln-price.is-featured {
  background: linear-gradient(180deg, #14181e, #14181e);
  border: 1px solid var(--accent);
}
.ln-price__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
/* Значок есть только у одного тарифа, а место под него занято во ВСЕХ. Иначе средняя
   карточка съезжала вниз на высоту значка, и название, цена, кнопка и список стояли
   лесенкой относительно соседей — глаз читает такое как «карточки про разное». */
.ln-price__badge--empty {
  visibility: hidden;
}
.ln-price__name {
  font-size: 16px;
  font-weight: 600;
}
.ln-price__tag {
  font-size: 14px;
  color: var(--muted);
  margin: 5px 0 20px;
  line-height: 1.5;
}
.ln-price__row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}
.ln-price__amount {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.ln-price__period {
  font-size: 14px;
  color: var(--muted-2);
}
.ln-price__btn {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 22px;
}
.ln-price__btn--ghost {
  color: #f4f5f6;
  background: transparent;
  border: 1px solid #2a2f37;
}
.ln-price__btn--cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  /* Прозрачная рамка вместо none: у соседней призрачной кнопки рамка есть, и без этой
     строки выделенная карточка снова встаёт на 2 точки не так, как соседи. Ровно та же
     мина, что была у пары кнопок над тарифами. */
  border: 1px solid transparent;
}
/* Метка под кнопкой: оплаты ещё нет. Раньше это сообщала сама кнопка, надписью
   «Скоро», — и нажать было нечего. Состояние и действие теперь разные элементы. */
.ln-price__soon {
  font-size: var(--fs-1);
  color: var(--muted-3);
  text-align: center;
  margin: -14px 0 18px;
}
.ln-price__feats {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ln-price__feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #c3cad3;
  line-height: 1.45;
}
.ln-price__feat i {
  color: #8aabc6;
  font-weight: 700;
  flex: none;
  font-style: normal;
}

/* Security */
.ln-secu {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: center;
}
.ln-secu__intro {
  max-width: 320px;
}
.ln-secu__intro h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.2;
  text-wrap: balance;
}
.ln-secu__intro p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.ln-secu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ln-secu__card {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 13px;
  padding: 20px;
}
.ln-secu__ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(138, 171, 198, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ln-secu__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}
.ln-secu__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

/* FAQ */
/* Двенадцать вопросов в одну колонку занимали тысячу точек высоты при половине ширины
   экрана впустую. В две колонки читается так же, а страница короче почти на пятьсот.
   align-items: start — чтобы раскрытый ответ тянул только свою колонку. */
.ln-faqs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 8px 14px;
}
@media (max-width: 860px) {
  .ln-faqs {
    grid-template-columns: 1fr;
  }
}
.ln-faq {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 13px;
  padding: 16px 20px;
  transition: background 0.15s;
}
.ln-faq__q {
  display: flex;
  align-items: center;
  gap: 14px;
  /* Это <button>: у него своя рамка, фон, шрифт и выравнивание по центру. Снимаем всё,
     кроме поведения — доступность с клавиатуры была нужна, вид кнопки нет. */
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.ln-faq__q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}
.ln-faq__q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}
.ln-faq__ico {
  font-size: 22px;
  color: var(--muted-2);
  flex: none;
  transition: transform 0.2s;
  line-height: 1;
}
.ln-faq.is-open .ln-faq__ico {
  transform: rotate(45deg);
}
.ln-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  transition: grid-template-rows 0.22s ease, margin-top 0.22s ease, padding-top 0.22s ease, border-color 0.22s ease;
}
.ln-faq__a-inner {
  overflow: hidden;
  min-height: 0;
}
.ln-faq.is-open .ln-faq__a {
  grid-template-rows: 1fr;
  margin-top: 13px;
  padding-top: 13px;
  border-top-color: var(--line-2);
}

/* Final CTA */
.ln-final {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 30px 72px;
}
.ln-final__box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #14181e, #14181e);
  border: 1px solid #2a2f37;
  border-radius: 22px;
  padding: 60px 48px;
  text-align: center;
}
.ln-final__glow-r,
.ln-final__glow-l {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ln-final__glow-r {
  right: -100px;
  bottom: -140px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(138, 171, 198, 0.22), transparent 66%);
}
.ln-final__glow-l {
  left: -90px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(138, 171, 198, 0.18), transparent 68%);
}
.ln-final__inner {
  position: relative;
  z-index: 1;
}
.ln-final h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 auto 18px;
  max-width: 680px;
  line-height: 1.1;
  text-wrap: balance;
}
.ln-final p {
  font-size: 18px;
  color: #c3cad3;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.ln-final__ctas {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}
.ln-final__ctas .ln-btn-cta {
  font-size: 16px;
  padding: 15px 30px;
}
.ln-final__ctas .ln-btn-ghost {
  font-size: 16px;
  padding: 15px 30px;
}

/* Footer */
.ln-footer {
  border-top: 1px solid var(--line);
}
.ln-footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 30px 22px;
  display: grid;
  /* Колонок с меню ЧЕТЫРЕ, а места было под три: «Документы» уезжали на вторую строку
     под блок с реквизитами и читались как его продолжение. */
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 26px;
}
.ln-footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.ln-footer__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  flex: none;
}
.ln-footer__about {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 260px;
}
.ln-footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: #c3cad3;
  margin-bottom: 14px;
}
.ln-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ln-footer__links a {
  font-size: 14px;
  color: var(--muted-2);
}
.ln-footer__bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 30px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ln-footer__copy {
  font-size: 13px;
  color: var(--muted-3);
}
.ln-footer__legal {
  display: flex;
  gap: 20px;
}
.ln-footer__legal a {
  font-size: 13px;
  color: var(--muted-3);
}

@media (max-width: 1100px) {
  .ln-hero__grid {
    grid-template-columns: 1fr;
  }
  .ln-strip__inner {
    grid-template-columns: 1fr;
  }
  .ln-feats,
  .ln-prices {
    grid-template-columns: 1fr 1fr;
  }
  .ln-steps {
    grid-template-columns: 1fr 1fr;
  }
  .ln-ai,
  .ln-secu {
    grid-template-columns: 1fr;
  }
  .ln-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ln-nav-main {
    display: none;
  }
  .ln-burger {
    display: inline-flex;
  }
  .ln-header.is-open .ln-nav-main {
    display: flex;
    position: fixed;
    inset: calc(65px + env(safe-area-inset-top, 0px)) 0 0;
    z-index: 49;
    width: 100%;
    background:
      radial-gradient(circle at top right, rgba(138, 171, 198, 0.07), transparent 34%),
      linear-gradient(180deg, rgba(12, 15, 19, 0.985), rgba(9, 11, 15, 0.995));
    flex-direction: column;
    max-height: none;
    min-height: calc(100dvh - 65px - env(safe-area-inset-top, 0px));
    padding: 12px 0 0;
    gap: 0;
    border-top: 1px solid var(--line);
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ln-header__demo {
    display: none;
  }
  .ln-header.is-open .ln-nav-main > a {
    display: flex;
    align-items: center;
    min-height: 52px;
    margin: 0 18px;
    padding: 0 2px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #f4f5f6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .ln-header.is-open .ln-nav-main > a::after {
    content: "›";
    margin-left: auto;
    color: rgba(255, 255, 255, 0.28);
    font-size: 22px;
  }
  .ln-header.is-open .ln-nav--mobile-only {
    margin-top: 4px;
    border-bottom: none;
    color: #c3cad3;
  }
  .ln-header.is-open .ln-mobile-menu__cta {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(12, 15, 19, 0.92);
  }  .ln-mobile-menu__demo {
    display: flex !important;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 52px !important;
    margin: 0;
    padding: 14px 18px !important;
    border: none !important;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600;
    letter-spacing: 0 !important;
    box-shadow: 0 10px 28px rgba(138, 171, 198, 0.22);
  }
  .ln-mobile-menu__demo::after {
    content: none !important;
  }
}

/* Doc / blog pages */
.ln-doc {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 30px 72px;
  min-height: 50vh;
}
.ln-doc__inner {
  max-width: 820px;
}
.ln-doc__inner--narrow {
  max-width: 720px;
}
.ln-doc__head {
  margin-bottom: 36px;
}
.ln-doc__head h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  line-height: 1.15;
}
.ln-doc__lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.ln-doc__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.ln-doc__crumbs a {
  color: var(--muted-2);
}
.ln-doc__crumbs a:hover {
  color: #fff;
}
.ln-doc__body {
  font-size: 16px;
  line-height: 1.7;
  color: #c3cad3;
}
.ln-doc__body h1,
.ln-doc__body h2,
.ln-doc__body h3 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 1.6em 0 0.6em;
  line-height: 1.25;
}
.ln-doc__body h1 {
  font-size: 32px;
  margin-top: 0;
}
.ln-doc__body h2 {
  font-size: 22px;
}
.ln-doc__body h3 {
  font-size: 18px;
}
.ln-doc__body p,
.ln-doc__body ul,
.ln-doc__body ol,
.ln-doc__body table {
  margin: 0 0 1.1em;
}
.ln-doc__body a {
  color: #a8c2d6;
}
.ln-doc__body a:hover {
  color: #8aabc6;
}
.ln-doc__body ul,
.ln-doc__body ol {
  padding-left: 1.3em;
}
.ln-doc__body li + li {
  margin-top: 0.35em;
}
.ln-doc__body strong {
  color: #e8eaed;
  font-weight: 600;
}
.ln-doc__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ln-doc__body th,
.ln-doc__body td {
  border: 1px solid var(--line-2);
  padding: 10px 12px;
  text-align: left;
}
.ln-doc__body th {
  background: var(--panel);
  color: #e8eaed;
  font-weight: 600;
}
.ln-doc__body code {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  font-size: 0.9em;
  background: #171b21;
  padding: 2px 6px;
  border-radius: 4px;
}
.ln-doc__body .wpcf7 {
  margin-top: 24px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 24px;
}
.ln-doc__body .wpcf7 label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  color: #c3cad3;
}
.ln-doc__body .wpcf7 input[type="text"],
.ln-doc__body .wpcf7 input[type="email"],
.ln-doc__body .wpcf7 input[type="tel"],
.ln-doc__body .wpcf7 textarea {
  width: 100%;
  margin-top: 6px;
  background: var(--bg);
  border: 1px solid var(--line-3);
  border-radius: 9px;
  color: var(--ink);
  padding: 12px 12px;
  font-family: var(--font);
  font-size: 16px;
}
.ln-doc__body .wpcf7 input[type="submit"] {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.ln-doc__body .wpcf7 input[type="submit"]:hover {
  filter: brightness(1.08);
}
.ln-blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ln-blog-card {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 22px 24px;
  transition: border-color 0.15s, background 0.15s;
}
.ln-blog-card:hover {
  border-color: #33383f;
  background: #171b21;
}
.ln-blog-card__date {
  font-size: 13px;
  color: var(--muted-2);
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
}
.ln-blog-card__title {
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
}
.ln-blog-card__title a:hover {
  color: #a8c2d6;
}
.ln-blog-card__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 12px;
}
.ln-blog-card__more {
  font-size: 14px;
  font-weight: 600;
  color: #a8c2d6;
}
.ln-doc__pager {
  margin-top: 32px;
}
.ln-doc__pager .nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ln-doc__pager a,
.ln-doc__pager .current {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  font-size: 14px;
  color: #c3cad3;
}
.ln-doc__pager .current {
  background: rgba(138, 171, 198, 0.14);
  border-color: var(--accent);
  color: #fff;
}
.ln-doc__empty {
  color: var(--muted);
}

@media (max-width: 720px) {
  .ln-header__inner {
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 10px;
  }
  .ln-brand {
    gap: 9px;
    min-width: 0;
  }
  .ln-brand__mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .ln-brand__name {
    font-size: 16px;
  }
  .ln-brand__sub {
    display: none;
  }
  .ln-header__actions {
    margin-left: auto;
  }
  .ln-header__login {
    display: none;
  }
  .ln-nav--mobile-only {
    display: inline-flex;
  }
  .ln-header.is-open .ln-nav-main {
    inset: calc(61px + env(safe-area-inset-top, 0px)) 0 0;
    min-height: calc(100dvh - 61px - env(safe-area-inset-top, 0px));
    padding: 10px 0 0;
  }
  .ln-header.is-open .ln-nav-main > a {
    min-height: 50px;
    font-size: 22px;
  }
  .ln-hero h1 {
    font-size: 34px;
  }
  .ln-doc__head h1,
  .ln-doc__body h1 {
    font-size: 28px;
  }
  .ln-sec__head h2,
  .ln-final h2 {
    font-size: 28px;
  }
  .ln-feats,
  .ln-prices,
  .ln-steps,
  .ln-stats,
  .ln-secu__grid {
    grid-template-columns: 1fr;
  }
  .ln-ai,
  .ln-secu,
  .ln-final__box {
    padding: 28px 22px;
  }
  .ln-footer__grid {
    grid-template-columns: 1fr;
  }
  .ln-header__demo {
    display: none;
  }
}


/* --- Prototype motion (MBOS Landing.dc.html) + mobile polish --- */
.ln-wrap { position: relative; z-index: 1; }
.ln-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 100; pointer-events: none;
}
.ln-particles {
  position: fixed; inset: 0; z-index: 0; opacity: 0.55; pointer-events: none; overflow: hidden;
}
.ln-particles i {
  position: absolute; bottom: -12px; width: 4px; height: 4px; border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 104, 160, 0.35), rgba(138, 171, 198, 0) 70%);
  animation: ln-rise linear infinite;
}
@keyframes ln-rise {
  0% { transform: translateY(0) scale(0.7); opacity: 0; }
  12% { opacity: 0.7; }
  88% { opacity: 0.7; }
  100% { transform: translateY(-102vh) scale(1); opacity: 0; }
}
.ln-aura {
  position: fixed; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 171, 198, 0.09), transparent 66%);
  pointer-events: none; transform: translate(-50%, -50%); z-index: 1;
  left: 50%; top: 38%; animation: ln-auraBreathe 9s ease-in-out infinite;
}
@keyframes ln-auraBreathe {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.ln-anim section,
.ln-anim footer {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ln-anim section.in,
.ln-anim footer.in { opacity: 1; transform: none; }
.ln-anim .ln-stag {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ln-anim .in .ln-stag { opacity: 1; transform: none; }
.ln-anim .in .ln-stag:nth-child(2) { transition-delay: 0.07s; }
.ln-anim .in .ln-stag:nth-child(3) { transition-delay: 0.14s; }
.ln-anim .in .ln-stag:nth-child(4) { transition-delay: 0.21s; }
.ln-anim .in .ln-stag:nth-child(5) { transition-delay: 0.28s; }
.ln-anim .in .ln-stag:nth-child(6) { transition-delay: 0.35s; }
.ln-hero-fx { animation: ln-heroIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.ln-hero-fx.d1 { animation-delay: 0.08s; }
.ln-hero-fx.d2 { animation-delay: 0.16s; }
.ln-hero-fx.d3 { animation-delay: 0.24s; }
.ln-hero-fx.d4 { animation-delay: 0.32s; }
.ln-mock { animation: ln-heroIn 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both; }@keyframes ln-heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes ln-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes ln-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
}
.ln-livedot { animation: ln-pulse 2.4s ease-in-out infinite; }
.ln-cta { position: relative; overflow: hidden; }
.ln-cta::after {
  content: ""; position: absolute; top: 0; left: -140%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg); animation: ln-shimmer 4.5s ease-in-out infinite;
}
@keyframes ln-shimmer {
  0%, 72% { left: -140%; }
  86%, 100% { left: 150%; }
}
.ln-feat, .ln-price, .ln-faq {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.ln-feat:hover, .ln-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.ln-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(53, 104, 160, 0.14); }
.ln-ghost:hover { transform: translateY(-2px); }
.ln-header { transition: background 0.3s ease, border-color 0.3s ease; }
.ln-header.is-scrolled {
  background: rgba(12, 15, 19, 0.92) !important;
  border-bottom-color: #1f242b !important;
}@media (max-width: 1100px) {
  /* Снимок кабинета остаётся и на телефоне: карусель показывает цифры, но не
     показывает, что это цифры В КАБИНЕТЕ. Файл для узких экранов свой, лёгкий. */
  .ln-dash--desktop {
    display: block;
    margin: 22px 0 0;
    width: 100%;
  }
  .ln-dash--desktop .ln-shot__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
  }
  .ln-dash-wrap {
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}

@media (max-width: 720px) {
  .ln-hero__ctas { flex-direction: column; align-items: stretch; }
  .ln-hero__ctas .ln-cta,
  .ln-hero__ctas .ln-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }
  .ln-chips { grid-template-columns: 1fr 1fr; gap: 10px 12px; }
  .ln-chip span { font-size: 13px; }
  .ln-header.is-open .ln-header__demo { display: none !important; }
  .ln-faq__q { min-height: 44px; }
  .ln-faq { padding: 16px 18px; }
}

@media (max-width: 480px) {
  .ln-header__inner,
  .ln-sec,
  .ln-hero,
  .ln-final,
  .ln-strip__inner { padding-left: 16px; padding-right: 16px; }
  .ln-header.is-open .ln-nav-main > a {
    font-size: 18px;
  }
  .ln-brand__name {
    font-size: 14px;
  }
  .ln-hero {
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .ln-pill {
    font-size: 12px;
    margin-bottom: 10px;
    padding: 5px 10px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
  .ln-nameplate {
    margin-bottom: 8px;
    gap: 2px;
  }
  .ln-nameplate__brand {
    font-size: 28px !important;
  }
  .ln-nameplate__expand {
    display: none;
  }
  .ln-hero h1 {
    font-size: clamp(22px, 6.6vw, 28px);
    line-height: 1.12;
    margin-bottom: 10px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .ln-hero__lead {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ln-chips {
    margin-bottom: 14px;
    gap: 8px 10px;
  }
  .ln-chip__ico {
    width: 28px;
    height: 28px;
  }
  .ln-chip span { font-size: 13px; }
  .ln-hero__ctas {
    margin-bottom: 0;
    gap: 8px;
  }
  .ln-hero__ctas .ln-ghost {
    display: none;
  }
  .ln-trust { display: none; }
  .ln-dash-wrap {
    margin-top: 18px;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 360px) {
  .ln-chips .ln-chip:nth-child(n + 3) {
    display: none;
  }
  .ln-hero__lead {
    -webkit-line-clamp: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ln-anim section, .ln-anim footer, .ln-anim .ln-stag {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .ln-particles, .ln-aura { display: none !important; }
  .ln-hero-fx, .ln-mock, .ln-mock-float, .ln-livedot, .ln-cta::after, .ln-aura {
    animation: none !important;
  }
  .ln-faq__a { transition: none !important; }
}

/* --- P0 trust / conversion blocks --- */
.ln-nameplate {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 18px;
}
.ln-nameplate__brand {
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #a8c2d6, #8aabc6 55%, #3568a0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ln-nameplate__expand {
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #c3cad3;
}
.ln-hero__lead strong { color: #a8c2d6; font-weight: 600; }
.ln-dash-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted-3);
  text-align: center;
}.ln-sec--founders { padding-top: 40px; }
.ln-founders {
  display: block;
  background: linear-gradient(135deg, #14181e, #14181e);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 36px 40px;
  /* Во всю ширину секции: рассказ о том, кто это сделал, стоит рядом с ценой и должен
     держать её вес, а не читаться боковой заметкой. Строку текста ограничиваем внутри. */
}
.ln-founders__body {
}
.ln-founders__copy h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.2;
}
.ln-founders__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}
.ln-founders__sign {
  font-size: 14px;
  color: #c3cad3;
  margin: 0 0 24px;
}
.ln-founders__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ln-founders__metric {
  border-top: 1px solid var(--line-2);
  padding-top: 12px;
}
.ln-founders__metric-v {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  font-weight: 600;
  color: #a8c2d6;
  margin-bottom: 6px;
}
.ln-founders__metric-l {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.4;
}

.ln-secu__grid--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}.ln-privacy {
  margin-top: 28px;
  padding: 40px 44px;
  border-radius: 20px;
  border: 1px solid rgba(53, 104, 160, 0.14);
  background: linear-gradient(180deg, rgba(138, 171, 198, 0.08), rgba(15, 18, 22, 0.4));
}
.ln-privacy__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  line-height: 1.15;
}
.ln-privacy__body {
  font-size: 18px;
  line-height: 1.65;
  color: #d3d8de;
  margin: 0 0 16px;
}
.ln-privacy__note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
}
/* Ряд кнопок, а не строка текста.
   Было display:block, и две кнопки стояли строчными элементами — то есть выравнивались
   по базовой линии текста. Замер на живой странице: верх у них расходился на 16 точек, а
   высота на 2. Соседние такие же пары (в герое и в финале) сделаны флексом и стоят
   ровно — здесь просто забыли. */
.ln-privacy__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}
.ln-privacy__foot > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ln-privacy__sign {
  margin: 0;
  font-size: 14px;
  color: #c3cad3;
}

.ln-footer__grid--slim {
  grid-template-columns: 1.5fr repeat(4, 1fr);
}
.ln-footer__legal-entity {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-3);
}
.ln-footer__sales {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px 22px;
  font-size: 13px;
  color: var(--muted-3);
}

.ln-sales {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid rgba(53, 104, 160, 0.14);
  background: linear-gradient(135deg, #14181e 0%, #12161b 55%, #0f1216 100%);
  padding: 36px 40px;
  text-align: left;
}
.ln-sales__glow {
  position: absolute;
  right: -80px;
  top: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 171, 198, 0.22), transparent 68%);
  pointer-events: none;
}
.ln-sales__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ln-sales__person {
  display: block;
  min-width: min(100%, 360px);
}
.ln-sales__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8c2d6;
  margin-bottom: 6px;
}
.ln-sales__name {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.ln-sales__hint {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}
.ln-sales__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: min(100%, 280px);
}
.ln-sales__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 720px) {
  .ln-sales {
    padding: 26px 20px;
  }
  .ln-sales__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .ln-sales__person {
    min-width: 0;
  }
}

@media (max-width: 1100px) {
  .ln-founders {
    padding: 28px 24px;
  }  .ln-footer__grid--slim {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .ln-founders__metrics {
    grid-template-columns: 1fr;
  }
  .ln-secu__grid--4 {
    grid-template-columns: 1fr;
  }
  .ln-privacy {
    padding: 28px 20px;
  }
  .ln-footer__grid--slim {
    grid-template-columns: 1fr;
  }
  .ln-nameplate__brand {
    font-size: 40px;
  }
}

/* --- Adaptive 2.5.0 (TZ adaptivnost) --- */
.ln-mcar {
  display: none;
}
.ln-sticky {
  display: none;
}

@media (max-width: 1100px) {
  .ln-mcar {
    display: block;
    background: var(--panel);
    border: 1px solid var(--line-2);
    border-radius: 18px;
    padding: 14px 0 16px;
    overflow: hidden;
  }
  .ln-mcar__tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 14px 12px;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent);
  }
  .ln-mcar__tabs::-webkit-scrollbar { display: none; }
  .ln-mcar__tab {
    flex: none;
    font-size: 13px;
    color: var(--muted-2);
    background: #171b21;
    border: 1px solid var(--line-3);
    border-radius: 999px;
    padding: 8px 14px;
    white-space: nowrap;
  }
  .ln-mcar__tab.is-active {
    color: #fff;
    border-color: rgba(138, 171, 198, 0.45);
    background: rgba(138, 171, 198, 0.12);
  }
  .ln-mcar__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 14px;
    scrollbar-width: none;
  }
  .ln-mcar__track::-webkit-scrollbar { display: none; }
  .ln-mcar__slide {
    flex: 0 0 calc(100% - 28px);
    max-width: 320px;
    scroll-snap-align: start;
    background: #12161b;
    border: 1px solid var(--line-3);
    border-radius: 14px;
    padding: 18px 16px;
    min-height: 148px;
  }
  .ln-mcar__slide--recs {
    flex-basis: min(92%, 340px);
    max-width: 360px;
  }
  .ln-mcar__label {
    font-size: 13px;
    color: var(--muted-2);
    margin-bottom: 10px;
  }
  .ln-mcar__value {
    font-family: var(--num);
  font-variant-numeric: tabular-nums;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
    margin-bottom: 8px;
  }
  .ln-mcar__delta {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .ln-mcar__spark svg { width: 100%; height: 36px; }
  .ln-mcar__recs {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .ln-mcar__rec {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .ln-mcar__rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex: none;
  }
  .ln-mcar__rec-text {
    font-size: 14px;
    line-height: 1.4;
    color: #e8eaed;
  }
  .ln-mcar__rec-meta {
    font-size: 12px;
    color: var(--muted-2);
    margin-top: 3px;
  }
  .ln-mcar__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    padding: 0 8px;
  }
  .ln-mcar__dot {
    width: 44px;
    height: 44px;
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex: none;
  }
  .ln-mcar__dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3a424e;
    transform: translate(-50%, -50%);
  }
  .ln-mcar__dot.is-active::after {
    background: var(--accent);
    width: 18px;
    border-radius: 4px;
  }

  .ln-ai {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .ln-chat {
    width: 100%;
  }
  .ln-chat__user,
  .ln-chat__bubble {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ln-prices {
    grid-template-columns: 1fr;
  }
  .ln-price { order: 2; }
  .ln-price.is-featured { order: 1; }
  .ln-price__btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ln-price__badge {
    position: static;
    margin-bottom: 12px;
  }
  .ln-feats {
    grid-template-columns: 1fr;
  }
  .ln-secu__grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .ln-sticky[hidden] { display: none !important; }
  .ln-sticky:not([hidden]) {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    /* Без размытия: панель прибита к низу экрана, и на телефоне её размытая полоса
       перерисовывалась на каждом кадре прокрутки — там кадров меньше всего. Фон и так
       почти непрозрачный, разницы не видно. */
    background: rgba(12, 15, 19, 0.97);
    border-top: 1px solid var(--line-2);
  }
  .ln-sticky__btn {
    flex: 1;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 11px;
    padding: 10px 8px;
  }
  .ln-sticky__btn--ghost {
    background: transparent;
  }

  .ln-steps {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-left: 18px;
  }
  .ln-steps::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--line-2));
    border-radius: 2px;
  }
  .ln-steps > .ln-stag {
    position: relative;
    padding: 0 0 22px 14px;
  }
  .ln-steps > .ln-stag::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(138, 171, 198, 0.2);
  }
  .ln-step__bar { display: none; }
  .ln-step__num { margin-bottom: 8px; }

  .ln-secu__grid--4 {
    grid-template-columns: 1fr;
  }
  .ln-privacy__body,
  .ln-privacy__note {
    font-size: 16px;
  }
  .ln-privacy__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .ln-btn-cta,
  .ln-btn-ghost,
  .ln-header__login,
  .ln-header__demo {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .ln-prices {
    grid-template-columns: 1fr 1fr;
  }
  .ln-price.is-featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1101px) {
  .ln-mcar { display: none !important; }
  .ln-dash--desktop { display: flex; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .ln-hero { padding-top: 12px; padding-bottom: 8px; }
  .ln-pill { margin-bottom: 6px; }
  .ln-nameplate { display: none; }
  .ln-hero h1 { font-size: 22px; margin-bottom: 8px; }
  .ln-hero__lead { display: none; }
  .ln-chips { display: none; }
  .ln-trust { display: none; }
  .ln-hero__ctas .ln-ghost { display: none; }
  .ln-sticky:not([hidden]) {
    padding-top: 6px;
    padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
  }
}

@media (pointer: coarse) {
  .ln-particles,
  .ln-aura {
    display: none !important;
  }
}

/* Площадка, которой ещё нет: подсвечена акцентом и обведена, чтобы «скоро» читалось как
   обещание, а не как часть общего списка работающих площадок. */
.ln-logos__name.is-soon {
  color: var(--accent);
  border: 1px dashed rgba(138, 171, 198, 0.45);
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(138, 171, 198, 0.08);
  opacity: 1;
}

/* ── База знаний: своё меню и указатель ─────────────────────────────────────── */

.ln-doc__inner--kb {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.kb-side {
  position: sticky;
  top: 96px;
  font-size: 14px;
  line-height: 1.5;
  border-right: 1px solid var(--line-2);
  padding-right: 20px;
}
.kb-side__top {
  display: block;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 18px;
}
.kb-side__top.is-current { color: var(--accent); }
.kb-side__group { margin-bottom: 18px; }
.kb-side__cat {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-3);
  margin-bottom: 8px;
}
.kb-side__list { list-style: none; margin: 0; padding: 0; }
.kb-side__item { margin-bottom: 7px; }
.kb-side__item a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.kb-side__item a:hover { color: var(--ink); }
.kb-side__item.is-current > span {
  color: var(--accent);
  font-weight: 500;
  display: inline-block;
  border-left: 2px solid var(--accent);
  margin-left: -12px;
  padding-left: 10px;
}

.kb-index__cat {
  font-size: 18px;
  margin: 28px 0 12px;
}
.kb-index__list { list-style: none; margin: 0; padding: 0; }
.kb-index__item { margin-bottom: 14px; }
.kb-index__link { font-size: 16px; color: var(--ink); }
.kb-index__ann {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 900px) {
  .ln-doc__inner--kb { grid-template-columns: 1fr; gap: 24px; }
  /* Меню уходит под статью: на узком экране оно стоит перед текстом и читатель,
     пришедший из поиска на конкретную статью, сначала пролистывает список ссылок. */
  .kb-side {
    position: static;
    order: 2;
    border-right: 0;
    border-top: 1px solid var(--line-2);
    padding: 20px 0 0;
  }
  .ln-doc__article { order: 1; }
  .kb-side__top { margin-bottom: 14px; }
  .kb-side__list { columns: 2; column-gap: 20px; }
  /* Без этого длинное название рвётся по колонкам: «СПП (скидка постоянного» слева,
     «покупателя)» справа — читается как две разные статьи. */
  .kb-side__item { break-inside: avoid; }
  .kb-side__item.is-current > span { margin-left: 0; padding-left: 8px; }
  /* На указателе меню — второй такой же список; он там ни к чему. */
  .kb-side--index { display: none; }
}

@media (max-width: 640px) {
  /* На телефоне указатель с аннотациями растягивался на девять экранов — оставляем
     заголовки: с них и начинают выбирать, что читать. */
  .kb-index__ann { display: none; }
  .kb-index__item { margin-bottom: 10px; }
}

/* ── Заявка на пробный кабинет ───────────────────────────────────────────────── */

.tf { margin-top: 28px; max-width: 640px; }
.tf__error {
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px solid rgba(239, 118, 118, 0.35);
  border-left-width: 3px;
  border-radius: 8px;
  background: rgba(239, 118, 118, 0.08);
  color: #f0b8b8;
  font-size: 14px;
  line-height: 1.5;
}
.tf__form { display: flex; flex-direction: column; gap: 20px; }
.tf__row { display: flex; flex-direction: column; gap: 6px; }
.tf__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tf__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
}
.tf__req { color: var(--accent); }
.tf__input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.tf__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 171, 198, 0.15);
}
.tf__hint, .tf__fine { font-size: 13px; line-height: 1.5; color: var(--muted); }
.tf__group { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tf__choice {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 15px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
  font-size: 16px;
}
.tf__choice:hover { border-color: rgba(138, 171, 198, 0.4); }
.tf__choice input { margin-top: 3px; accent-color: var(--accent); }
.tf__choice--slim { padding: 10px 15px; }
.tf__choice-note {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 400;
}
/* Поле-приманка: убрано из потока, но не display:none — часть роботов пропускает
   скрытое так же, как люди, и приманка перестаёт работать. */
.tf__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.tf__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.tf__consent input { margin-top: 3px; accent-color: var(--accent); }
.tf__submit { align-self: flex-start; }
.tf__term { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

.tf--thanks .tf__lead { font-size: 18px; line-height: 1.55; color: var(--ink); }
.tf--thanks .tf__note { font-size: 16px; line-height: 1.6; color: var(--muted); }
.tf__next { font-size: 18px; margin: 28px 0 12px; }
.tf__steps { padding-left: 22px; font-size: 16px; line-height: 1.65; color: var(--muted); }
.tf__steps li { margin-bottom: 8px; }

.ln-privacy__fine {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-3);
}
/* Вторая дверь в шапке. Размер тот же, что у «Войти»: справа от логотипа нет правила
   на кегль, и без этого ссылка набирается базовыми 16 px и выглядит крупнее соседей. */
.ln-header__demo-link {
  font-size: 14px;
  color: #aab2be;
  padding: 9px 10px;
}

@media (max-width: 640px) {
  .tf__grid { grid-template-columns: 1fr; }
  .tf__submit { align-self: stretch; text-align: center; }
}
.tf__error p { margin: 0; }
.tf__error-act { margin-top: 12px !important; }

/* ── Снимок демо-кабинета в герое ─────────────────────────────────────────────── */

.ln-shot {
  margin: 0;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  /* Тень и рамка нужны, чтобы снимок читался как окно приложения, а не как часть
     страницы: у него свой тёмный фон, почти совпадающий с фоном лендинга. */
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #0f1216;
}
.ln-shot__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Фиксированная шапка, герой на высоту экрана ───────────────────────────────── */

:root {
  /* Высота шапки в одном месте: её знают и отступ страницы, и высота героя, и
     прокрутка к разделам по ссылкам с решёткой. Разойдись эти три числа — заголовок
     раздела уезжал бы под шапку. */
  --hdr: 70px;
  /* Ширину текста не ограничиваем: решение владельца. Абзац занимает всю ширину
     своего блока — короткая строка посреди широкой панели читалась как обрыв. */
}

.ln-wrap {
  padding-top: var(--hdr);
}

/* Ссылки вида #pricing прокручивают так, что заголовок оказывается под шапкой.
   scroll-margin-top отодвигает цель на её высоту. */
section[id] {
  scroll-margin-top: calc(var(--hdr) + 12px);
}

.ln-hero {
  /* Герой должен читаться целиком, без «ещё чуть-чуть прокрутите». 100svh — это высота
     видимой части БЕЗ адресной строки браузера на телефоне: с 100vh на мобильных низ
     героя уезжал под панель. */
  min-height: calc(100svh - var(--hdr));
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
.ln-hero__grid {
  width: 100%;
}
/* Снимок в герое не выше экрана: иначе он и растягивает страницу. */
.ln-shot--hero .ln-shot__img {
  max-height: calc(100svh - var(--hdr) - 120px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 980px) {
  :root { --hdr: 61px; }
  .ln-hero {
    /* На узком экране всё в одну колонку, и целиком экран уже не занять: держать
       min-height значило бы растянуть пустотой. */
    min-height: 0;
  }
}

/* ── Диалог с AI: четыре вопроса по кругу ──────────────────────────────────────── */

.ln-chat { position: relative; }
.ln-chat__turn {
  display: none;
  animation: ln-chat-in 0.45s ease-out both;
}
.ln-chat__turn.is-on { display: block; }
@keyframes ln-chat-in {
  from { opacity: 0; transform: translateY(8px); }
}
.ln-chat__dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}
.ln-chat__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-2);
  transition: background 0.3s ease;
}
.ln-chat__dot.is-on { background: var(--accent); }

/* Снимок во всю ширину секции — для кабинета фулфилмента. */
.ln-shot--wide { margin: 0 0 12px; }

/* ── Меньше движения, если человек его не хочет ────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  /* Не «поменьше», а совсем: у части людей движение вызывает тошноту, и украшения
     этого не стоят. Смысл страницы от них не зависит. */
  .ln-particles,
  .ln-aura { display: none; }
  .ln-mock-float,
  .ln-livedot,
  .ln-chat__turn { animation: none !important; }
}

/* Герой обязан влезать в экран целиком, а он не влезал: 958 px левой колонки против
   782 доступных при экране 900. Виновата была не «многословность», а узкая колонка —
   400 px рвали заголовок на четыре строки, а обе кнопки на две. Расширяем колонку и
   поджимаем отступы; текст не сокращаем. */
@media (min-width: 1100px) {
  .ln-hero__grid {
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 32px;
  }
}
@media (min-width: 981px) {
  .ln-hero h1 { margin-bottom: 16px; }
  .ln-hero__lead { margin-bottom: 16px; }
  .ln-chips { margin-bottom: 16px; }
  .ln-hero__ctas { margin-bottom: 18px; }
}
/* Невысокий экран — а это почти все ноутбуки: 1440×900 и 1366×768. Здесь герой
   поджимается целиком, а не только заголовком: сокращать текст ради вида нельзя, зато
   кегли и отступы можно. На большом экране (1080 и выше) остаётся просторный вариант. */
@media (min-width: 981px) and (max-height: 940px) {
  .ln-hero { padding-top: 12px; padding-bottom: 12px; }
  .ln-hero h1 { font-size: 42px; margin-bottom: 14px; }
  .ln-hero__lead { font-size: 16px; margin-bottom: 14px; }
  .ln-nameplate__brand { font-size: 44px; }
  .ln-nameplate { margin-bottom: 14px; }
  .ln-chips { gap: 8px; margin-bottom: 14px; }
  .ln-chip { padding: 7px 11px; font-size: 13px; }
  .ln-hero__ctas { margin-bottom: 14px; }
  .ln-trust { gap: 8px 14px; font-size: 13px; }
  /* Чипы стоят в две строки по два: 34-пиксельная иконка делает каждую строку 48 px.
     На невысоком экране иконку уменьшаем — три чипа складываются в 80 px вместо 104. */
  .ln-chip__ico { width: 28px; height: 28px; border-radius: 8px; }
  .ln-chips { gap: 10px 14px; }
  /* Плашку «Ozon · Wildberries · Яндекс.Маркет в одной системе» убираем: ровно то же
     написано в полосе площадок сразу под героем. На высоком экране повтор безобиден,
     на низком он стоит 31 px, из-за которых герой не влезает. */
  .ln-pill { display: none; }
}

/* ── Страница заявки: текст слева, форма справа ────────────────────────────────── */

.ln-doc__inner--trial {
  /* Шире обычной страницы: у документов колонка узкая ради читаемости, а здесь рядом
     стоит форма, и в 820 px обе колонки становятся тесными. */
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 48px;
  align-items: start;
}
.tf-col {
  /* Форма — панель, а не продолжение текста: у неё своя рамка и фон, иначе поля
     читаются как часть статьи и теряются. */
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: var(--panel);
  padding: 24px;
  /* Липкая: текст слева длиннее формы, и при прокрутке поля не должны уезжать. */
  position: sticky;
  top: calc(var(--hdr) + 24px);
}
.ln-doc__inner--trial .tf { margin-top: 0; max-width: none; }

@media (max-width: 1000px) {
  .ln-doc__inner--trial { grid-template-columns: 1fr; gap: 28px; }
  .tf-col { position: static; padding: 20px; }
}


/* Вторая строка подписи под снимком: она указывает, на что смотреть, поэтому виднее
   первой — та служебная («данные придуманы»), эта содержательная. */
.ln-dash-note--point {
  color: var(--muted);
  margin-top: 6px;
}

/* Список выходов на странице «не найдено». */
.nf-list { list-style: none; margin: 0 0 24px; padding: 0; }
.nf-list__item { margin-bottom: 14px; }
.nf-list__link { font-size: 16px; color: var(--ink); }
.nf-list__note { display: block; margin-top: 2px; font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ── Ссылка «сразу к содержимому» ────────────────────────────────────────────
   Видна только когда до неё дошли клавишей Tab. Без неё человек с клавиатуры
   каждую страницу начинает с обхода всего меню — и так на каждой странице. */
.ln-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 18px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--accent);
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.ln-skip:focus {
  left: 0;
}


/* ── Калькулятор единицы товара ──────────────────────────────────────────────
   Слева поля, справа итог. На узком экране — друг под другом: считать в две колонки
   на телефоне нельзя, поле и его результат должны быть видны одновременно. */
.ln-calc {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
  align-items: start;
}
.ln-calc__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 22px;
  margin: 0;
}
.ln-calc__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ln-calc__label {
  font-size: var(--fs-2);
  color: var(--muted);
}
.ln-calc__input {
  position: relative;
  display: block;
}
.ln-calc__input input {
  width: 100%;
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-4);
  font-weight: 600;
  color: var(--ink);
  background: var(--panel-2);
  border: 1px solid var(--line-3);
  border-radius: 10px;
  padding: 11px 34px 11px 12px;
}
.ln-calc__input input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
/* Стрелки браузера в числовом поле съедают место под единицу измерения и
   провоцируют «покрутить», хотя значение вводят с клавиатуры. */
.ln-calc__input input::-webkit-outer-spin-button,
.ln-calc__input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ln-calc__input input {
  -moz-appearance: textfield;
  appearance: textfield;
}
.ln-calc__unit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-2);
  color: var(--muted-3);
  pointer-events: none;
}
.ln-calc__out {
  background: var(--panel);
  border: 1px solid var(--line-3);
  border-radius: 16px;
  padding: 22px;
}
.ln-calc__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: var(--fs-3);
  color: var(--muted);
}
.ln-calc__row b {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-5);
  color: var(--ink);
}
.ln-calc__row:first-child b {
  font-size: 28px;
}
.ln-calc__row b.is-loss {
  color: #e2707a;
}
.ln-calc__row--muted b {
  font-size: var(--fs-4);
  color: var(--muted);
}
.ln-calc__note {
  font-size: var(--fs-2);
  color: var(--muted-3);
  line-height: 1.55;
  margin: 14px 0 16px;
}
.ln-calc__cta {
  display: block;
  text-align: center;
}

@media (max-width: 900px) {
  .ln-calc {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .ln-calc__form {
    grid-template-columns: 1fr;
  }
}


/* ── Доказательство: сверка с площадкой ──────────────────────────────────────── */
.ln-proof {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 28px;
}
.ln-proof__copy h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
  text-wrap: balance;
}
.ln-proof__copy p {
  font-size: var(--fs-4);
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.ln-proof__how {
  font-size: var(--fs-3) !important;
  color: var(--muted-2) !important;
}
.ln-proof__nums {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ln-proof__num {
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
}
.ln-proof__val {
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ln-proof__lbl {
  font-size: var(--fs-2);
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.45;
}
.ln-proof__asof {
  font-size: var(--fs-1);
  color: var(--muted-3);
  line-height: 1.5;
}

/* ── Отзывы ──────────────────────────────────────────────────────────────────── */
.ln-revs {
  display: grid;
  /* 340, а не 300: при 300 на широком экране вставало четыре колонки, и отзыв в шесть
     строк превращался в узкий столбик. */
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
  /* stretch, а не start. Отзывы разной длины, и при start карточки в ряду кончались на
     разной высоте, а подписи стояли лесенкой: 165, 216, 191 точки от верха. Взгляд ищет
     общую линию и не находит — ряд читается как сломанный.
     Высоте страницы это ничего не стоит: ряд сетки и так был высотой с самую длинную
     карточку, просто под короткими оставалась пустота. */
  align-items: stretch;
}
.ln-rev {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 22px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.ln-rev__text {
  margin: 0 0 14px;
  font-size: var(--fs-4);
  line-height: 1.6;
  color: var(--ink);
}
.ln-rev__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  /* Подпись прижата к низу карточки: тогда во всём ряду имена стоят на одной линии,
     сколько бы строк ни занял сам отзыв. */
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}
.ln-rev__name {
  font-size: var(--fs-3);
  font-weight: 600;
}
.ln-rev__meta {
  font-size: var(--fs-2);
  color: var(--muted-2);
}
.ln-rev__shop {
  font-size: var(--fs-2);
  margin-top: 2px;
}
.ln-rev__shop a {
  color: var(--accent);
}

@media (max-width: 900px) {
  .ln-proof {
    grid-template-columns: 1fr;
  }
}


/* Граница доступа — одна строка в разделе фулфилмента. Раньше на её месте стоял блок из
   заголовка и двух абзацев, повторявший то, что теперь собрано в разделе о безопасности. */
.ln-ff__boundary {
  margin: 0 0 22px;
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  font-size: var(--fs-4);
  line-height: 1.55;
  color: var(--ink);
}
.ln-ff__boundary a {
  margin-left: 10px;
  font-size: var(--fs-2);
  color: var(--accent);
  white-space: nowrap;
}
.ln-secu__line {
  color: var(--ink) !important;
}

/* Нижняя полоса подвала: один ярус вместо трёх. Ссылки внутри строки отделяются точкой
   разделителем, а не отступом: строка длинная, и без разделителя «Политика Условия»
   читается как одна ссылка. */
.ln-footer__copy .ln-nav,
.ln-footer__legal .ln-nav {
  margin-left: 6px;
  padding-left: 13px;
  position: relative;
}
/* Точка внутри собственного отступа ссылки, а не в поле слева от неё: иначе просвет
   после точки шире просвета до неё, и разделитель липнет к предыдущему слову. */
.ln-footer__copy .ln-nav::before,
.ln-footer__legal .ln-nav::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--muted-3);
}
.ln-footer__legal {
  color: var(--muted-3);
}
@media (max-width: 1100px) {
  .ln-footer__grid,
  .ln-footer__grid--slim {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .ln-footer__grid,
  .ln-footer__grid--slim {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── Сравнение с категорией ──────────────────────────────────────────────────── */
.ln-cmp__wrap {
  /* Таблица на телефоне не помещается никогда. Пусть прокручивается ВНУТРИ своей
     рамки: страница целиком ездить вбок не должна. */
  overflow-x: auto;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: var(--panel);
}
.ln-cmp {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: var(--fs-3);
}
.ln-cmp th,
.ln-cmp td {
  text-align: left;
  vertical-align: top;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
  line-height: 1.5;
}
.ln-cmp tbody tr:last-child th,
.ln-cmp tbody tr:last-child td {
  border-bottom: 0;
}
.ln-cmp thead th {
  font-size: var(--fs-2);
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.ln-cmp tbody th {
  font-weight: 600;
  color: var(--ink);
  width: 24%;
}
.ln-cmp td {
  color: var(--muted);
  width: 38%;
}
/* Своя колонка подсвечена: читатель должен видеть, где мы, не сверяясь с шапкой на
   каждой строке. */
.ln-cmp__mine {
  background: rgba(138, 171, 198, 0.06);
  color: var(--ink) !important;
}
.ln-cmp thead .ln-cmp__mine {
  color: var(--accent) !important;
}
.ln-cmp__hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.ln-cmp__note {
  margin: 14px 0 0;
  font-size: var(--fs-2);
  color: var(--muted-3);
  line-height: 1.55;
}

/* ── «А если вы закроетесь?» ─────────────────────────────────────────────────── */
.ln-stay {
  display: grid;
  /* Ровно две колонки: вопросов четыре, и при трёх колонках четвёртый оставался один в
     ряду — ряд из одной карточки читается как «тут что-то недоделали». */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 760px) {
  .ln-stay {
    grid-template-columns: 1fr;
  }
}
.ln-stay__item {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 20px 22px;
}
.ln-stay__q {
  font-size: var(--fs-4);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.ln-stay__a {
  margin: 0;
  font-size: var(--fs-3);
  color: var(--muted);
  line-height: 1.6;
}
