/* ═══════════════════════════════════════════════════════════════════════════
   SellerHub — лендинг. Чёрно-белая печать с чередованием фонов разделов:
   белая страница, чёрные шапка/футер, разделы зеброй чёрный↔белый.
   Акценты: синь логотипа #0079FA, рубли в моноширинном.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --paper:   #FFFFFF;
  --paper-2: #EFEBE0;   /* затемнённая бумага для шапок таблиц */
  --ink:     #17150F;
  --ink-2:   #55514A;
  --muted:   #8A857B;
  --line:    #D9D3C4;   /* светлые линейки */
  --line-2:  #B9B2A0;
  --blue:    #0079FA;
  --blue-dk: #0058BC;
  --green:   #0B8A44;
  --red:     #D4380D;

  /* Токены кнопок/форм из Metronic-приложения (Demo58) */
  --mtn-primary:        #1B84FF;
  --mtn-primary-hover:  #056EE9;
  --mtn-primary-light:  #E9F3FF;
  --mtn-light:          #F9F9F9;
  --mtn-secondary:      #F1F1F4;
  --mtn-gray:           #DBDFE9;
  --mtn-text:           #071437;
  --mtn-radius:         .85rem;
  --mtn-radius-sm:      .75rem;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1140px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #fff; }

img { max-width: 100%; display: block; }

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.025em; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

section { scroll-margin-top: 94px; }

/* ── Кнопки: стиль Metronic (btn-primary / btn-light приложения) ─────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--mtn-radius);
  font: 500 15px/1 var(--font);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, background-color .15s, border-color .15s, box-shadow .15s;
}
.btn--primary { background: var(--mtn-primary); border-color: var(--mtn-primary); color: #fff; }
.btn--primary:hover {
  background: var(--mtn-primary-hover);
  border-color: var(--mtn-primary-hover);
  box-shadow: 0 .5rem 1.5rem .5rem rgba(27,132,255,.25);
}
.btn--ghost { background: var(--mtn-light); border-color: var(--mtn-light); color: var(--mtn-text); }
.btn--ghost:hover { background: var(--mtn-secondary); border-color: var(--mtn-secondary); }
.btn--sm { padding: .7rem 1.35rem; font-size: 13px; border-radius: var(--mtn-radius-sm); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 16px; border-radius: 1rem; }
.btn--xl { padding: 1.2rem 2.7rem; font-size: 17px; border-radius: 1.1rem; }

/* ── Шапка ───────────────────────────────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 2px solid var(--blue);
}

.header__in {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 94px;
}

.logo img { height: 71px; width: auto; }

.nav { display: flex; gap: 20px; margin-left: auto; }
.nav a {
  position: relative;
  color: #C9C3B6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  border-bottom: 2px solid var(--blue);
  transition: right .18s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { right: 0; }

.header__cta { display: flex; gap: 10px; }
.header .btn--sm { font-size: 12.5px; padding: .6rem 1.15rem; }

/* ── Первая полоса ───────────────────────────────────────────────────────── */

.hero { padding: 84px 0 0; }

.hero__kicker {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 44px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 56px;
}

.hero__title {
  font-size: clamp(44px, 6.6vw, 92px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
  margin-bottom: 26px;
}
.hero__accent {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 10px;
  text-decoration-skip-ink: none;
}

.hero__sub {
  max-width: 56ch;
  font-size: 17.5px;
  color: var(--ink-2);
  margin-bottom: 34px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.hero__micro { font-size: 13px; color: var(--muted); }

/* Гигантский 0 ₽ */

.hero__zero {
  position: relative;
  border-left: 2px solid var(--ink);
  padding: 8px 0 8px 34px;
}
.hero__zero-num {
  font-size: clamp(96px, 12vw, 190px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.05em;
  color: var(--blue);
}
.hero__zero-label {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero__zero-note {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  max-width: 30ch;
}

/* Строка фактов */

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}
.facts__item {
  padding: 22px 24px 26px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.facts__item:last-child { border-right: 0; }
.facts__item + .facts__item { padding-left: 24px; }
.facts__item b { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.facts__item b.mono { font-size: 27px; }
.facts__item span { font-size: 13px; color: var(--ink-2); line-height: 1.45; }

/* ── Секции: общее ───────────────────────────────────────────────────────── */

.section { padding: 92px 0 96px; }

.section__head { max-width: 720px; margin-bottom: 48px; }

.section__tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -.03em;
}

.section__sub {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 16px;
}

/* ── №1 Проблема ─────────────────────────────────────────────────────────── */

.problem__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: start;
}

.pains { list-style: none; }
.pains__item {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.pains__item b {
  flex: 0 0 158px;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--red);
}
.pains__item span { font-size: 15px; color: var(--ink-2); }

.pains__note {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  max-width: 46ch;
}

/* Чернильная плашка-ответ */

.problem__answer {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 34px 40px;
}
.problem__answer h3 {
  font-size: 21px;
  margin-bottom: 18px;
  color: #fff;
}
.problem__answer p { font-size: 15.5px; color: #CFC9BB; margin-bottom: 14px; }
.problem__answer p:last-child { margin-bottom: 0; }
.problem__answer em {
  font-style: normal;
  color: #fff;
  background: var(--blue);
  padding: 0 5px;
}

/* ── №2 Шаги ─────────────────────────────────────────────────────────────── */

.steps { list-style: none; counter-reset: step; }

.steps__row {
  display: grid;
  grid-template-columns: 90px 1fr 200px;
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.steps__row:last-child { border-bottom: 1px solid var(--line); }

.steps__num {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.steps__body h3 { font-size: 22px; margin-bottom: 8px; }
.steps__body p { font-size: 15.5px; color: var(--ink-2); max-width: 58ch; }

.steps__meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

/* ── №3 Калькулятор-ведомость ────────────────────────────────────────────── */

.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  background: #FFFFFF;
  color: var(--ink);
}

.calc__controls { padding: 36px 38px; border-right: 1px solid var(--ink); }

.calc__presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.preset {
  padding: .5rem .9rem;
  border: 0;
  border-radius: var(--mtn-radius-sm);
  background: var(--mtn-light);
  color: var(--mtn-text);
  font: 500 13px/1.2 var(--font);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.preset:hover { background: var(--mtn-secondary); }
.preset.is-active { background: var(--mtn-primary-light); color: var(--mtn-primary-hover); font-weight: 600; }

.calc__field { margin-bottom: 26px; }
.calc__field:last-child { margin-bottom: 0; }

.calc__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.calc__label .mono { font-size: 16px; font-weight: 700; color: var(--ink); }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--mtn-secondary);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--mtn-primary);
  box-shadow: 0 .1rem .75rem .25rem rgba(0,0,0,.1);
  cursor: grab;
}
input[type="range"]::-webkit-slider-thumb:hover { background: var(--mtn-primary-light); }
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--mtn-primary);
  box-shadow: 0 .1rem .75rem .25rem rgba(0,0,0,.1);
  cursor: grab;
}

.seg {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--mtn-gray);
  border-radius: var(--mtn-radius);
  background: var(--mtn-light);
}
.seg__btn {
  padding: .55rem 1.4rem;
  border: 0;
  border-radius: calc(var(--mtn-radius) - 4px);
  background: transparent;
  color: var(--mtn-text);
  font: 500 14px/1 var(--font);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.seg__btn.is-active { background: var(--mtn-primary); color: #fff; }

.calc__result { padding: 36px 38px; display: flex; flex-direction: column; }

.calc__lines { flex: 1; }

.calc__line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
}
.calc__line .mono { color: var(--ink); }
.calc__line--minus .mono { color: var(--red); }

.calc__total { margin-top: 22px; }
.calc__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0 12px;
  border-top: 3px double var(--ink);   /* бухгалтерский итог */
}
.calc__total-row span { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.calc__total-row b { font-size: 30px; font-weight: 700; letter-spacing: -.02em; color: var(--green); }
.calc__total-row--margin {
  padding: 4px 0 0;
  border-top: 0;
}
.calc__total-row--margin b { font-size: 16px; color: var(--ink); }
.calc__total.is-neg .calc__total-row b { color: var(--red); }

.calc__cta { align-self: flex-start; margin-top: 26px; }
.calc__note { margin-top: 16px; font-size: 12.5px; color: var(--muted); }

/* ── №4 Манифест кабинета ────────────────────────────────────────────────── */

.manifest { list-style: none; }

.manifest__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.manifest__row:first-child { border-top: 1px solid var(--ink); }
.manifest__row:last-child { border-bottom: 1px solid var(--ink); }

.manifest__name { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.manifest__dots {
  flex: 1;
  min-width: 40px;
  border-bottom: 2px dotted var(--line-2);
  transform: translateY(-4px);
}
.manifest__desc { font-size: 14.5px; color: var(--ink-2); max-width: 42ch; text-align: right; }

/* ── №5 Кому подходит ────────────────────────────────────────────────────── */

.fit__row {
  display: flex;
  gap: 26px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.fit__row:last-child { border-bottom: 1px solid var(--line); }
.fit__num {
  flex: 0 0 34px;
  height: 34px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.fit__body h3 { font-size: 19px; margin-bottom: 8px; }
.fit__body p { font-size: 15.5px; color: var(--ink-2); max-width: 62ch; }

/* ── №6 Прейскурант ──────────────────────────────────────────────────────── */

.price-list__row {
  display: grid;
  grid-template-columns: 1fr 220px 200px;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.price-list__row:last-child { border-bottom: 1px solid var(--line); }

.price-list__row--entry { border-top: 2px solid var(--ink); }
.price-list__row--hit { border-left: 3px solid var(--blue); padding-left: 24px; }

.price-list__name h3 { font-size: 21px; margin-bottom: 6px; }
.price-list__name p { font-size: 14.5px; color: var(--ink-2); max-width: 52ch; }

.price-list__price b {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.price-list__price span {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-list__btn { justify-self: end; }

.price-list__mark {
  display: inline-block;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 3px 8px;
  margin-left: 10px;
  vertical-align: middle;
  transform: translateY(-2px);
}

.price-list__after { margin-top: 30px; }
.price-list__after p { font-size: 15px; color: var(--ink-2); }
.price-list__after p + p { margin-top: 6px; }
.price-list__after strong { color: var(--ink); }

/* ── №7 Вопросы ──────────────────────────────────────────────────────────── */

.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 2px solid var(--ink); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  font-size: 17px;
  font-weight: 700;
  position: relative;
  transition: color .15s;
}
.faq__item summary:hover { color: var(--blue); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}
.faq__item[open] summary::after { content: "–"; color: var(--blue); }

.faq__item p {
  padding: 0 40px 22px 0;
  color: var(--ink-2);
  font-size: 15px;
  max-width: 64ch;
}

/* ── Финал ───────────────────────────────────────────────────────────────── */

.final {
  background: var(--blue);
  padding: 118px 0 124px;
  text-align: center;
}
.final__in { display: flex; flex-direction: column; align-items: center; }
.final__tag {
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
}
.final__title {
  font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 900;
  letter-spacing: -.035em;
  color: #fff;
  max-width: 20ch;
  margin-bottom: 36px;
}
.final .btn--primary {
  background: var(--paper);
  border-color: var(--ink);
  color: var(--ink);
}
.final .btn--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.final__micro { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.75); }

/* ── Футер ───────────────────────────────────────────────────────────────── */

.footer {
  border-top: 2px solid var(--blue);
  padding: 44px 0 36px;
  background: var(--ink);
}
.footer__in {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.footer__brand img { height: 78px; width: auto; margin-bottom: 14px; }
.footer__brand p { font-size: 13.5px; color: #C9C3B6; max-width: 32ch; }
.footer__nav { display: flex; flex-direction: column; gap: 9px; }
.footer__nav a { color: #C9C3B6; text-decoration: none; font-size: 14px; }
.footer__nav a:hover { color: #fff; }
.footer__legal p { font-size: 13px; color: #8A857B; margin-bottom: 8px; }
.footer__legal a { color: #C9C3B6; text-decoration: none; }
.footer__legal a:hover { color: #fff; }
.footer__disclaimer { font-size: 11.5px !important; line-height: 1.55; max-width: 44ch; }

/* ── Появление при скролле ───────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .1s; }
.reveal--delay2 { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Адаптив ─────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 44px; }
  .hero__zero { border-left: 2px solid var(--ink); padding-left: 28px; }
  .hero__zero-num { font-size: clamp(80px, 14vw, 140px); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts__item { border-bottom: 1px solid var(--line); }
  .facts__item:nth-child(2n) { border-right: 0; }
  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .steps__row { grid-template-columns: 60px 1fr; }
  .steps__meta { grid-column: 2; text-align: left; }
  .calc { grid-template-columns: 1fr; }
  .calc__controls { border-right: 0; border-bottom: 1px solid var(--ink); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__in { gap: 16px; }
  .header__cta { margin-left: auto; }

  .section { padding: 64px 0; }
  .hero { padding-top: 56px; }
  .hero__cta .btn { width: 100%; }

  .facts { grid-template-columns: 1fr; }
  .facts__item { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0 !important; }
  .facts__item:last-child { border-bottom: 0; }

  .pains__item b { flex-basis: 104px; font-size: 24px; }

  .steps__row { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .steps__meta { text-align: left; }

  .calc__controls, .calc__result { padding: 26px 20px; }
  .calc__cta { align-self: stretch; }

  .manifest__row { flex-wrap: wrap; }
  .manifest__dots { display: none; }
  .manifest__desc { text-align: left; max-width: none; }

  .price-list__row { grid-template-columns: 1fr; gap: 14px; }
  .price-list__btn { justify-self: start; }

  .footer__in { grid-template-columns: 1fr; gap: 26px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Плашки маркетплейсов, схема заказа, каталог-прайс (визуальный слой)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Плашки площадок ─────────────────────────────────────────────────────── */

.mp-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}
.mp-row__cap { font-size: 13px; color: var(--ink-2); }

.mp-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 40px;                 /* единая высота ряда для всех площадок */
  padding: 0 10px;
  line-height: 1;
}
.mp-badge img { display: block; width: auto; }
.mp-badge--ozon img  { height: 30px; }
.mp-badge--wb img    { height: 30px; }
.mp-badge--ym img    { height: 26px; }
.mp-badge--avito img { height: 19px; }   /* широкий вордмарк — ниже, но длиннее */

/* Площадки в разработке: обесцвеченный знак + пометка «скоро» */
.mp-badge--soon img { filter: grayscale(1); opacity: .45; }
.mp-badge__note { font-weight: 500; font-size: 11px; color: var(--muted); }

/* Компактный вариант в схемах и списках магазинов */
.schema .mp-badge,
.one__shop .mp-badge { height: 28px; padding: 0 6px; }
.schema .mp-badge img,
.one__shop .mp-badge img { height: 20px; }

/* ── Схема пути заказа ───────────────────────────────────────────────────── */

.schema { margin: 0 0 56px; }

.schema__cap {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 12px;
}

.schema__flow {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: stretch;
  border: 1px solid var(--ink);
  background: #FFFFFF;
}
.schema__flow > .schema__node:not(:first-child) { border-left: 1px solid var(--line); }

.schema__node {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schema__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }

.schema__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.schema__tag--on { color: #7CC79B; }

.schema__node h4 { font-size: 17px; letter-spacing: -.01em; }
.schema__node p { font-size: 13px; color: var(--ink-2); }

.schema__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--line-2);
}

.schema__node--profit { background: var(--ink); }
.schema__node--profit p { color: #CFC9BB; }
.schema__profit {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #3FBF77;
}

/* ── Кабинет: манифест + каталог ─────────────────────────────────────────── */

.tools__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Каталог-прайс ───────────────────────────────────────────────────────── */

.catalog {
  border: 1px solid var(--ink);
  background: #FFFFFF;
}
.catalog__bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-2);
}
.catalog__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ccard {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 16px 18px;
  border-bottom: 1px solid var(--line);
}
.ccard:nth-child(odd) { border-right: 1px solid var(--line); }
.ccard:nth-last-child(-n+2) { border-bottom: 0; }

.ccard__pic { width: 44px; height: 44px; color: var(--ink); opacity: .85; }
.ccard__pic svg { width: 100%; height: 100%; display: block; }

.ccard__name { font-size: 13.5px; font-weight: 600; }
.ccard__price { font-size: 14px; font-weight: 700; }
.ccard__meta { font-size: 11.5px; color: var(--green); }

.ccard--pub { box-shadow: inset 3px 0 0 var(--blue); padding-left: 19px; }
.ccard__pub {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 3px 7px;
}

.catalog__foot {
  padding: 10px 16px;
  font-size: 11.5px;
  color: var(--muted);
  border-top: 1px solid var(--ink);
}

@media (max-width: 1024px) {
  .tools__grid { grid-template-columns: 1fr; gap: 40px; }

  .schema__flow { grid-template-columns: 1fr; }
  .schema__arrow { transform: rotate(90deg); padding: 8px 0; }
  .schema__flow > .schema__node:not(:first-child) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 768px) {
  .catalog__grid { grid-template-columns: 1fr; }
  .ccard { border-right: 0 !important; }
  .ccard:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .ccard:last-child { border-bottom: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Craft-слой: печать, штрих-код, маркер, зерно бумаги, стрелки кнопок
   ═══════════════════════════════════════════════════════════════════════════ */

/* Резиновая печать на гигантском нуле */

.stamp {
  position: absolute;
  top: -4px;
  right: 4px;
  padding: 9px 15px;
  border: 2.5px solid var(--red);
  border-radius: 3px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  transform: rotate(-6deg);
  opacity: .85;
}

/* Штрих-код накладной */

.barcode {
  width: 176px;
  height: 30px;
  margin-top: 26px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 4px,
    var(--ink) 4px 5px, transparent 5px 9px,
    var(--ink) 9px 12px, transparent 12px 13px,
    var(--ink) 13px 14px, transparent 14px 18px);
}
.barcode__num {
  margin-top: 7px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .34em;
  color: var(--muted);
}

/* Маркерное выделение */

.mk {
  background: var(--blue);
  color: #fff;
  padding: 1px 6px;
  white-space: nowrap;
}

/* Синий квадрат у номера раздела */

.section__tag::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--blue);
  margin-right: 10px;
  transform: translateY(.5px);
}

/* Стрелка в primary-кнопках */

.btn--primary::after {
  content: "→";
  margin-left: 9px;
  transition: transform .15s ease;
}
.btn--primary:hover::after { transform: translateX(4px); }

/* Зерно бумаги поверх всей страницы */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Нижняя строка футера: колонцифра + платёжные системы (как на лендинге UMNO) */

.footer__bottom {
  margin-top: 36px;
  padding-top: 14px;
  border-top: 1px solid rgba(251,250,246,.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__colophon {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8A857B;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-payments__label {
  font-size: 11px;
  letter-spacing: .04em;
  color: #8A857B;
  opacity: .55;
}
.footer-payments__img {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-payments__img--mir   { height: 16px; }
.footer-payments__img--visa  { height: 12px; }
.footer-payments__img--tbank { height: 22px; color: #C9C3B6; }

@media (max-width: 768px) {
  .hero__accent { text-decoration-thickness: 4px; text-underline-offset: 7px; }
  .stamp { right: -4px; font-size: 11px; }
  .pains__item b { flex-basis: 104px; font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   №5 Управление: магазины в одном окне · №6 Аналитика: таблица-ведомость
   ═══════════════════════════════════════════════════════════════════════════ */

.one { margin: 0 0 40px; }

.one__panel {
  display: grid;
  grid-template-columns: 1.2fr 56px 1fr;
  align-items: stretch;
  border: 1px solid var(--ink);
  background: #FFFFFF;
  color: var(--ink);          /* лист светлый — текст чернильный, не наследует тёмную секцию */
}

.one__shops { list-style: none; }
.one__shop {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 600;
}
.one__shop:last-child { border-bottom: 0; }
.one__shop .mp-badge { flex: 0 0 auto; }
.one__ok { margin-left: auto; font-size: 11px; color: var(--green); }

.one__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--line-2);
}

.one__hub {
  background: var(--ink);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.one__hub-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.one__hub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
  color: #CFC9BB;
}
.one__hub-list li { border-bottom: 1px solid #363843; padding-bottom: 8px; }
.one__hub-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.one__feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.one__feat { padding: 4px 26px 0 0; }
.one__feat + .one__feat { border-left: 1px solid var(--line); padding-left: 26px; }
.one__feat h3 { font-size: 17.5px; margin-bottom: 8px; }
.one__feat p { font-size: 14px; color: var(--ink-2); }

/* Таблица-ведомость аналитики */

.atable-wrap { overflow-x: auto; border: 1px solid var(--ink); background: #FFFFFF; }
.atable { width: 100%; min-width: 720px; border-collapse: collapse; }

.atable__cap {
  caption-side: top;
  text-align: left;
  padding: 12px 16px;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper-2);
  border-bottom: 1px solid var(--ink);
}

.atable th, .atable td {
  padding: 12px 16px;
  font-size: 14px;
  text-align: right;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  white-space: nowrap;
}
.atable thead th {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.atable th:first-child, .atable td:first-child, .atable__name { text-align: left; }
.atable__name { font-weight: 600; }
.atable tbody tr:last-child td { border-bottom: 0; }

.atable tfoot th, .atable tfoot td {
  border-top: 3px double var(--ink);
  border-bottom: 0;
  font-weight: 700;
}
.atable tfoot th { text-align: left; }

.atable__pos { color: var(--green); font-weight: 700; }
.atable__neg { color: var(--red); font-weight: 700; }

.abc {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border: 1px solid;
}
.abc--a { color: var(--green); border-color: var(--green); }
.abc--b { color: var(--ink-2); border-color: var(--line-2); }
.abc--c { color: var(--red); border-color: var(--red); }

.atable__note {
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 72ch;
}

@media (max-width: 1024px) {
  .one__panel { grid-template-columns: 1fr; }
  .one__arrow { transform: rotate(90deg); padding: 10px 0; }
  .one__feats { grid-template-columns: 1fr; }
  .one__feat { padding: 0 0 22px; border-left: 0 !important; }
  .one__feat + .one__feat { border-top: 1px solid var(--line); padding-top: 22px; }
}

/* Крупный логотип: на узких экранах уменьшаем, чтобы не вытеснял меню */
@media (max-width: 1080px) {
  .logo img { height: 50px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Чередование фонов: тёмные разделы (зебра чёрный ↔ белый).
   Тёмные: №1 проблема, №3 экономика, №5 управление, №7 кому, №9 вопросы.
   Дата-компоненты (калькулятор, схема, таблицы) остаются белыми листами.
   ═══════════════════════════════════════════════════════════════════════════ */

.section--dark {
  background: var(--ink);
  color: #F6F4EE;
  padding: 150px 0;                       /* запас под диагональный срез */
  clip-path: polygon(0 46px, 100% 0, 100% calc(100% - 46px), 0 100%);
}

.section--dark .section__title { color: #FFFFFF; }
.section--dark .section__sub { color: #C9C3B6; }
.section--dark .section__tag { color: #3D9BFF; }

/* №1 Проблема */
.section--dark .pains__item { border-bottom-color: rgba(251,250,246,.16); }
.section--dark .pains__item span { color: #C9C3B6; }
.section--dark .pains__note { color: #F6F4EE; }

/* Плашка-ответ инвертируется в белый лист на чёрном фоне */
.section--dark .problem__answer { background: #FFFFFF; color: var(--ink); }
.section--dark .problem__answer h3 { color: var(--ink); }
.section--dark .problem__answer p { color: var(--ink-2); }

/* №5 Управление */
.section--dark .one__feat h3 { color: #FFFFFF; }
.section--dark .one__feat p { color: #C9C3B6; }
.section--dark .one__feat + .one__feat { border-left-color: rgba(251,250,246,.16); }

/* №7 Кому */
.section--dark .fit__row { border-top-color: rgba(251,250,246,.16); }
.section--dark .fit__row:last-child { border-bottom-color: rgba(251,250,246,.16); }
.section--dark .fit__num { border-color: #F6F4EE; color: #FFFFFF; }
.section--dark .fit__body h3 { color: #FFFFFF; }
.section--dark .fit__body p { color: #C9C3B6; }

/* №9 Вопросы */
.section--dark .faq__item { border-bottom-color: rgba(251,250,246,.16); }
.section--dark .faq__item:first-child { border-top-color: #F6F4EE; }
.section--dark .faq__item summary { color: #FFFFFF; }
.section--dark .faq__item p { color: #C9C3B6; }
.section--dark .faq__item summary::after { color: #8A857B; }

/* На очень узких экранах в шапке остаётся только «Регистрация» */
@media (max-width: 520px) {
  .header__cta .btn--ghost { display: none; }
  .header .btn--sm { padding: .55rem 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Сигнатурный слой «биржевой журнал»: тикер, гигантские номера, рваный чек,
   живой поток схемы, инверсия карточек, полоса чтения, гербовая лента
   ═══════════════════════════════════════════════════════════════════════════ */

/* Тикер-бегущая строка */

.ticker {
  background: var(--ink);
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  overflow: hidden;
  padding: 12px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-move 36s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #F6F4EE;
  white-space: nowrap;
  padding: 0 26px;
}
.ticker__track b {
  color: var(--blue);
  font-size: 13px;
}
.ticker--final { border-bottom: 0; }
@keyframes ticker-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Гигантские контурные номера разделов (счётчик CSS) */

main { counter-reset: sec; }
.section .section__head { counter-increment: sec; position: relative; }
.section__head::before {
  content: counter(sec, decimal-leading-zero);
  position: absolute;
  top: -38px;
  left: -14px;
  font-family: var(--mono);
  font-size: clamp(88px, 10vw, 148px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23,21,15,.13);
  pointer-events: none;
  user-select: none;
}
.section--dark .section__head::before { -webkit-text-stroke-color: rgba(251,250,246,.13); }
.section__head > * { position: relative; z-index: 1; }

/* Рваный край чека у калькулятора */

.calc { position: relative; }
.calc::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -13px;
  height: 13px;
  background:
    linear-gradient(-45deg, #FFFFFF 10px, transparent 0),
    linear-gradient(45deg, #FFFFFF 10px, transparent 0);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 22px 22px;
}

/* Живой поток в схеме заказа: стрелки пульсируют по очереди */

.schema__arrow { animation: flow 2.6s ease-in-out infinite; }
.schema__arrow:nth-of-type(2) { animation-delay: .35s; }
.schema__arrow:nth-of-type(4) { animation-delay: .7s; }
.schema__arrow:nth-of-type(6) { animation-delay: 1.05s; }
@keyframes flow {
  0%, 100% { color: var(--line-2); }
  30%      { color: var(--blue); }
}

/* Инверсия карточек каталога при наведении */

.ccard { transition: background .18s ease; }
.ccard:hover { background: var(--ink); }
.ccard:hover .ccard__name,
.ccard:hover .ccard__price { color: #FFFFFF; }
.ccard:hover .ccard__pic { color: #FFFFFF; opacity: 1; }
.ccard:hover .ccard__meta { color: #3FBF77; }

/* Полоса чтения */

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--blue);
  z-index: 100;
  pointer-events: none;
}

/* Гербовая лента на финальном блоке */

.final { position: relative; padding-top: 134px; }
.final::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(45deg, var(--ink) 0 12px, #FFFFFF 12px 24px);
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .schema__arrow { animation: none; }
}

@media (max-width: 768px) {
  .section--dark {
    padding: 104px 0;
    clip-path: polygon(0 26px, 100% 0, 100% calc(100% - 26px), 0 100%);
  }
  .section__head::before {
    top: -22px;
    left: -6px;
    font-size: clamp(64px, 14vw, 90px);
  }
  .final { padding-top: 110px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Колонтитул-scrollspy, штамп «проведено», буквицы в подводках
   ═══════════════════════════════════════════════════════════════════════════ */

/* Боковой колонтитул текущего раздела */

.spy {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}
.spy__count {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  color: #F6F4EE;
  background: rgba(23,21,15,.85);
  border: 1px solid rgba(251,250,246,.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 7px 9px;
}
.spy__name {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(23,21,15,.62);      /* на светлых секциях — тёмный */
  transition: color .25s ease;
}
.spy--inv .spy__name { color: rgba(246,244,238,.78); }
@media (max-width: 1279px) {
  .spy { display: none; }
}

/* Штамп «проведено» на ведомости аналитики */

.atable-wrap { position: relative; }
.stamp--table {
  top: auto;
  right: 5%;
  bottom: 16%;
  transform: rotate(-8deg);
  font-size: 14px;
  padding: 10px 18px;
  mix-blend-mode: multiply;
  opacity: .6;
}
@media (max-width: 768px) {
  .stamp--table { display: none; }
}

/* Буквица в подводках разделов */

.section__sub::first-letter {
  float: left;
  font-family: var(--mono);
  font-size: 3.1em;
  font-weight: 700;
  line-height: .78;
  padding: 5px 10px 0 0;
  color: var(--blue);
}
.section--dark .section__sub::first-letter { color: #3D9BFF; }

/* ═══════════════════════════════════════════════════════════════════════════
   Слой «орбиты»: кольца вокруг 0 ₽, conic-рамки кнопок, печатающаяся строка
   (адаптация приёмов Marketeam-спеки под чёрно-синюю систему SellerHub)
   ═══════════════════════════════════════════════════════════════════════════ */

body { overflow-x: clip; }

/* ── Орбитальная система вокруг 0 ₽ ──────────────────────────────────────── */

.hero__side { display: flex; flex-direction: column; }

.orbit {
  position: relative;
  width: 460px;
  height: 460px;
  margin: 0 auto;
  animation: orbit-scale-in 1.2s cubic-bezier(.22, 1, .36, 1) .3s both;
}
@keyframes orbit-scale-in {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

.orbit__ring {
  position: absolute;
  border-radius: 50%;
}
.orbit__ring--1 { width: 180px; height: 180px; left: calc(50% - 90px);  top: calc(50% - 90px);  animation: spinCCW 30s linear infinite; }
.orbit__ring--2 { width: 280px; height: 280px; left: calc(50% - 140px); top: calc(50% - 140px); animation: spinCW  40s linear infinite; }
.orbit__ring--3 { width: 380px; height: 380px; left: calc(50% - 190px); top: calc(50% - 190px); animation: spinCW  50s linear infinite; }
.orbit__ring--4 { width: 450px; height: 450px; left: calc(50% - 225px); top: calc(50% - 225px); animation: spinCCW 60s linear infinite; }

@keyframes spinCW  { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }

/* Кольцо — 1px градиентная обводка через маску; фолбэк — простая линия */

@supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
  .orbit__ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(180deg,
      rgba(61, 155, 255, 0) 0%,
      rgba(61, 155, 255, .9) 43%,
      rgba(61, 155, 255, 0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
  }
}
@supports not ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
  .orbit__ring { border: 1px solid var(--line-2); }
}

/* Элементы на орбитах: плашки держат вертикаль контр-вращением */

.orbit__item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--a)) translate(var(--r)) rotate(calc(var(--a) * -1));
}

.orbit__plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid var(--ink);
  box-shadow: 0 6px 18px rgba(23, 21, 15, .12);
  animation: orbit-item-in .7s var(--d, 1s) both;
}
/* Фото реальных товаров каталога на орбитах */
.orbit__plate--photo {
  width: 52px;
  height: 52px;
  padding: 0;
  overflow: hidden;
  background: #FFFFFF;
}
.orbit__plate--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* чем дальше орбита — тем крупнее фото */
.orbit__ring--1 .orbit__plate--photo { width: 44px; height: 44px; }
.orbit__ring--2 .orbit__plate--photo { width: 50px; height: 50px; }
.orbit__ring--3 .orbit__plate--photo { width: 56px; height: 56px; }
.orbit__ring--4 .orbit__plate--photo { width: 64px; height: 64px; }

/* контр-вращение плашек — по длительности своего кольца */
.orbit__ring--1 .orbit__plate { animation: orbit-item-in .7s var(--d, 1s) both, spinCW  30s linear infinite; }
.orbit__ring--2 .orbit__plate { animation: orbit-item-in .7s var(--d, 1s) both, spinCCW 40s linear infinite; }
.orbit__ring--3 .orbit__plate { animation: orbit-item-in .7s var(--d, 1s) both, spinCCW 50s linear infinite; }
.orbit__ring--4 .orbit__plate { animation: orbit-item-in .7s var(--d, 1s) both, spinCW  60s linear infinite; }

@keyframes orbit-item-in {
  from { opacity: 0; filter: blur(6px); }
  to   { opacity: 1; filter: blur(0); }
}

/* Центр орбиты — гигантский 0 ₽ */

.orbit .hero__zero {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: 0;
  padding: 0;
  text-align: center;
  z-index: 2;
  width: 190px;
}
.orbit .hero__zero-num { font-size: clamp(64px, 7vw, 96px); }
.orbit .hero__zero-label { margin-top: 10px; font-size: 15px; }
.orbit .stamp { top: -18px; right: -34px; }

/* Подпись-колонтитул под орбитой: примечание + штрих-код */

.hero__code {
  margin-top: 34px;
  padding-left: 34px;
  border-left: 2px solid var(--ink);
}
.hero__code .barcode { margin-top: 18px; }

/* ── Conic-градиентная рамка кнопок ─────────────────────────────────────── */

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.gborder {
  position: relative;
  display: inline-flex;
  padding: 3px;
  border-radius: 20px;
  isolation: isolate;
}
.gborder > .btn { position: relative; z-index: 1; }
@supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
  .gborder::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    padding: 3px;
    background: conic-gradient(from var(--border-angle),
      var(--blue), var(--ink), var(--blue), var(--ink), var(--blue));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: border-spin 3s linear infinite;
  }
}
@keyframes border-spin {
  to { --border-angle: 360deg; }
}

/* ── Печатающаяся строка ─────────────────────────────────────────────────── */

.hero__type {
  min-height: 26px;
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.hero__type-cursor {
  display: inline-block;
  width: 9px;
  height: 17px;
  margin-left: 4px;
  background: var(--blue);
  vertical-align: -2px;
  animation: type-blink .85s steps(1) infinite;
}
@keyframes type-blink {
  0%, 55%  { opacity: 1; }
  56%, 100% { opacity: 0; }
}

/* ── Тикеры: без масок, плёнка во всю ширину ────────────────────────────── */

/* ── Входные анимации ────────────────────────────────────────────────────── */

.header { animation: enter-down .8s cubic-bezier(.22, 1, .36, 1) both; }
.hero .hero__text.reveal { transition-timing-function: cubic-bezier(.22, 1, .36, 1); }

@keyframes enter-down {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Адаптив орбит ───────────────────────────────────────────────────────── */

@media (max-width: 1200px) { .orbit { transform: scale(.85); } }
@media (max-width: 1024px) { .orbit { transform: scale(.8); } }
@media (max-width: 768px)  { .orbit { transform: scale(.6); margin: 0; } }

@media (max-width: 640px) {
  .orbit__rings { display: none; }
  .orbit {
    width: auto;
    height: auto;
    transform: none;
    animation: none;
  }
  .orbit .hero__zero {
    position: static;
    transform: none;
    width: auto;
    text-align: left;
    border-left: 2px solid var(--ink);
    padding: 8px 0 8px 28px;
  }
  .orbit .hero__zero-num { font-size: clamp(80px, 18vw, 120px); }
  .orbit .stamp { top: -4px; right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit__ring,
  .orbit__ring .orbit__plate,
  .gborder::before,
  .header { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Слой «Jack-портфолио»: градиентные титулы, sticky-стек тарифов,
   скролл-полосы плиток, побуквенное проявление, магнит
   ═══════════════════════════════════════════════════════════════════════════ */

/* Серебристый градиент заголовков на тёмных секциях */

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .section--dark .section__title {
    background: linear-gradient(180deg, #9BA2AC 0%, #E8EEF3 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* Гигантский градиентный титул финала */

.final { padding: 128px 0 134px; }
.final__title {
  font-size: clamp(2.6rem, 11vw, 148px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .95;
  max-width: none;
  margin-bottom: 34px;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .final__title {
    background: linear-gradient(180deg, #FFFFFF 18%, #9CC9FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.final__sub {
  max-width: 58ch;
  margin: 0 auto 38px;
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, 1.8vw, 19px);
}

/* Скролл-полосы плиток */

.sstrip {
  background: var(--paper);
  padding: 72px 0 84px;
  overflow: hidden;
}
.sstrip__row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.sstrip__row + .sstrip__row { margin-top: 12px; }
.sstrip__track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  transform: translateX(-33.333%);
  will-change: transform;
}

.stile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  background: #FFFFFF;
  padding: 13px 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.stile--pic {
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--ink);
}
.stile--pic svg { width: 26px; height: 26px; display: block; }
.stile--mp { padding: 0 12px; border: 0; background: transparent; }
.stile--mp img { height: 22px; width: auto; display: block; }

/* Побуквенное проявление при скролле */

.charreveal .word { white-space: nowrap; }
.charreveal .ch { opacity: .16; transition: opacity .18s linear; }
.charreveal .ch.on { opacity: 1; }
.final__sub .ch { color: #fff; }

/* Магнит на 0 ₽ */

.orbit .hero__zero { will-change: transform; }

@media (max-width: 768px) {
  .charreveal .ch { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .sstrip__track { transform: translateX(-33.333%) !important; }
  .charreveal .ch { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   №8 Прейскурант: единый бланк в рамке (каталожный/ведомостный язык)
   ═══════════════════════════════════════════════════════════════════════════ */

.price-sheet {
  max-width: 980px;
  margin: 0 auto;
  border: 2px solid var(--ink);
  background: #FFFFFF;
}

.price-sheet__bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.price-sheet__row {
  display: grid;
  grid-template-columns: 48px 1fr 180px 200px;
  gap: 26px;
  align-items: center;
  padding: 21px 22px;
  border-bottom: 1px solid var(--line);
}

.price-sheet__num {
  font-size: 21px;
  font-weight: 700;
  color: var(--muted);
}
.price-sheet__name h3 { font-size: 19px; margin-bottom: 3px; }
.price-sheet__name p { font-size: 13.5px; color: var(--ink-2); max-width: 46ch; }

.price-sheet__price b {
  display: block;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.price-sheet__price span {
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-sheet__btn { justify-self: end; }

.price-sheet__row--hit {
  box-shadow: inset 3px 0 0 var(--blue);
  background: rgba(0,121,250,.045);
}
.price-sheet__mark {
  display: inline-block;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 3px 8px;
  margin-left: 10px;
  vertical-align: middle;
  transform: translateY(-2px);
}

.price-sheet__foot {
  padding: 11px 22px;
  border-top: 2px solid var(--ink);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-list__after { max-width: 980px; margin: 26px auto 0; }

@media (max-width: 860px) {
  .price-sheet__row { grid-template-columns: 40px 1fr 160px; }
  .price-sheet__btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 560px) {
  .price-sheet__row { grid-template-columns: 1fr; gap: 8px; }
  .price-sheet__num { font-size: 15px; }
  .price-sheet__price b { display: inline-block; margin-right: 10px; }
}

