/* ═══════════════════════════════════════════
   AI Lab — Dark Indigo / Violet Accent
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

/* ═══════════════════════════════
   LOADER
═══════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: #07080f;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s;
}
#loader.done {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.loader-inner {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.ailab-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* ── AI Lab wordmark + flask (Outfit/Syne: плотный wordmark + крупнее колба) ── */
.ailab-brand {
  --ailab-mark: 'Outfit', 'Syne', var(--ff-h);
  display: inline-flex;
  align-items: center;
  gap: 0.54em;
  text-decoration: none;
  color: inherit;
}

/* ── Wordmark-лого [ AI LAB ] ── */
.ailab-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-family: 'Outfit', 'Syne', var(--ff-h);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 5px;
  padding: .22em .55em .18em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.ailab-wordmark__bracket {
  color: rgba(255,255,255,.45);
  font-weight: 400;
  font-size: .9em;
}
.ailab-wordmark__ai {
  color: #8b7cff;
  margin: 0 .28em;
}
.ailab-wordmark__lab {
  color: #fff;
  margin-right: .28em;
}
.ailab-wordmark--loader {
  font-size: 1.4rem;
}
.ailab-brand__flask {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease, cubic-bezier(.22, 1, .36, 1));
  filter:
    drop-shadow(0 3px 12px rgba(92, 74, 212, 0.42))
    drop-shadow(0 0 28px rgba(124, 111, 255, 0.2));
}
.ailab-flask {
  display: block;
  width: 1.9em;
  height: auto;
  overflow: visible;
}
.ailab-brand__text {
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
  line-height: 1;
  font-kerning: normal;
  font-feature-settings: 'kern' 1, 'ss01' 1;
}
.ailab-brand__ai {
  font-family: var(--ailab-mark);
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(
    168deg,
    #ffffff 0%,
    #faf8ff 32%,
    #ebe6ff 68%,
    #d8d0ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 32px rgba(139, 124, 255, 0.28));
}
@supports not (background-clip: text) {
  .ailab-brand__ai {
    color: #faf9ff;
    filter: none;
    text-shadow:
      0 0 36px rgba(139, 124, 255, 0.22),
      0 0 1px rgba(255, 255, 255, 0.5),
      0 1px 1px rgba(0, 0, 0, 0.35);
  }
}
.ailab-brand__lab {
  position: relative;
  font-family: var(--ailab-mark);
  font-weight: 800;
  font-size: 1.03em;
  letter-spacing: 0.14em;
  margin: 0;
  padding: 0 0.02em 0 0;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(
    118deg,
    #f5f0ff 0%,
    #ddd2ff 18%,
    #c4b4ff 36%,
    #a894ff 52%,
    var(--accent) 68%,
    #6f5fff 82%,
    #5240e0 100%
  );
  background-size: 140% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 32px rgba(124, 111, 255, 0.42),
    0 1px 0 rgba(0, 0, 0, 0.3);
}
.ailab-brand__lab::before {
  content: '';
  flex-shrink: 0;
  width: 1px;
  height: 0.78em;
  margin-right: 0.16em;
  margin-left: 0.02em;
  align-self: center;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(180, 168, 255, 0.55) 22%,
    rgba(124, 111, 255, 0.75) 50%,
    rgba(180, 168, 255, 0.45) 78%,
    transparent 100%
  );
  border-radius: 1px;
  opacity: 0.85;
  pointer-events: none;
}
@supports not (background-clip: text) {
  .ailab-brand__lab {
    color: #b8a8ff;
    text-shadow: none;
  }
  .ailab-brand__lab::before {
    background: rgba(180, 168, 255, 0.35);
  }
}
.ailab-brand--loader {
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  animation: loaderPulse 1.6s ease-in-out infinite;
}
.ailab-brand--loader .ailab-flask {
  width: 2.18em;
  filter: drop-shadow(0 4px 18px rgba(124, 111, 255, 0.5)) drop-shadow(0 0 36px rgba(124, 111, 255, 0.22));
}
.ailab-brand--loader .ailab-brand__lab {
  letter-spacing: 0.14em;
}
.ailab-brand--footer .ailab-flask {
  width: 1.52em;
  filter: drop-shadow(0 2px 8px rgba(92, 74, 212, 0.28));
}
.ailab-brand--footer .ailab-brand__ai {
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(230, 226, 255, 0.72) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35));
}
@supports not (background-clip: text) {
  .ailab-brand--footer .ailab-brand__ai {
    color: rgba(255, 255, 255, 0.52);
    filter: none;
  }
  .ailab-brand--footer .ailab-brand__lab {
    color: rgba(188, 176, 255, 0.88);
    text-shadow: none;
  }
}
.ailab-brand--footer .ailab-brand__lab {
  background: linear-gradient(
    118deg,
    rgba(245, 240, 255, 0.9) 0%,
    rgba(200, 188, 255, 0.82) 38%,
    rgba(124, 111, 255, 0.92) 72%,
    rgba(82, 64, 224, 0.78) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(124, 111, 255, 0.24);
}
@keyframes loaderPulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .ailab-brand--loader { animation: none; opacity: 1; }
}
.loader-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%;
  background: #7c6fff;
  border-radius: 2px;
  transition: width .3s ease;
}
.loader-pct {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
}

/* Block scroll while loading */
body.loading { overflow: hidden; }

/* Prevent reveals from firing before loader done */
body.loading .rv { opacity: 0 !important; transform: translateY(32px) !important; transition: none !important; }
body.loading .word { transform: translateY(110%) !important; transition: none !important; }
body.loading .hero-eyebrow { opacity: 0 !important; transform: translateY(8px) !important; transition: none !important; }
body.loading .hero-sub,
body.loading .hero-flow { opacity: 0 !important; transform: translateY(12px) !important; transition: none !important; }
body.loading .hero-btns { opacity: 0 !important; transform: translateY(12px) !important; transition: none !important; }

:root {
  /* Core palette */
  --bg:      #07080f;        /* near-black with blue cast */
  --bg2:     #0d0f1c;        /* slightly lighter panel */
  --bg3:     #111326;        /* card bg */
  --border:  rgba(139,130,255,.12);
  --white:   #ffffff;
  --off-w:   rgba(255,255,255,.88);
  /* Основной цвет «читаемого» текста (цитаты, акцентные абзацы) */
  --fg:      var(--off-w);
  --muted:   rgba(255,255,255,.42);
  --faint:   rgba(255,255,255,.14);

  /* Accent — violet/purple */
  --accent:      #7c6fff;
  --accent-dim:  rgba(124,111,255,.18);
  --accent-glow: rgba(124,111,255,.35);

  /* Aliases for legacy selectors */
  --black:   var(--bg);
  --gray5:   var(--bg3);
  --gray4:   #1e2035;
  --gray3:   #8b82c4;
  --gray2:   #b0a9e8;
  --gray1:   #e8e6ff;

  --ff-h:    'Manrope', sans-serif;
  --ff-b:    'Inter', sans-serif;
  --ease:    cubic-bezier(.22,1,.36,1);
  --wrap:    min(1100px, 90vw);
  --radius:  8px;
  /* Отступ якорей под фиксированный хедер + вырез iPhone */
  --anchor-offset: max(5.25rem, calc(2.65rem + env(safe-area-inset-top, 0px)));
}

/* Якорные ссылки не прячут заголовок под #hdr */
section[id],
div[id='s-ticker'] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Selection allowed: forms */
input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* Selection */
::selection { background: var(--accent); color: #fff; }

/* ── Layout ── */
.wrap { width: var(--wrap); margin: 0 auto; }

/* ── Header ── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top, 0px));
  padding-bottom: 1rem;
  padding-left: max(clamp(1.5rem, 5vw, 4rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(1.5rem, 5vw, 4rem), env(safe-area-inset-right, 0px));
  transition: background .4s, border-color .4s;
}
#hdr.on {
  background: rgba(7,8,15,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}
.logo .ailab-brand {
  gap: 0.52em;
}
.logo .ailab-flask {
  width: 1.82em;
}
.logo .ailab-brand__ai {
  font-size: 1.08em;
  letter-spacing: -0.055em;
}
.logo .ailab-brand__lab {
  font-size: 1.01em;
  letter-spacing: 0.13em;
}
.logo:hover .ailab-brand__flask {
  transform: scale(1.06) translateY(-1px);
}
.logo:hover .ailab-brand__ai {
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 40px rgba(139, 124, 255, 0.38));
}
.logo:hover .ailab-brand__lab {
  text-shadow:
    0 0 40px rgba(139, 124, 255, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.28);
}

.hdr-center {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
}
#hdr nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem 1.85rem;
  position: static;
  transform: none;
}
#hdr nav a {
  font-size: .74rem; font-weight: 400;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
#hdr nav a:hover { color: var(--white); }
.hdr-cta {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .06em;
  color: var(--white);
  text-decoration: none;
  padding: .48rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #8b7cff 0%, #5c4ad4 55%, #4a3aba 100%);
  box-shadow: 0 4px 20px rgba(92, 74, 212, .35);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.hdr-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 6px 26px rgba(92, 74, 212, .45);
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.s-hero {
  position: relative;
  height: 100svh;
  min-height: min(600px, 100svh);
  display: flex; align-items: flex-end;
  overflow: hidden;
}

/* LiquidChrome — full background, lowest z */
#liquid-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}
#liquid-canvas.ready { opacity: .75; }

/* Gradient overlay: darken bottom so text is readable */
.s-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,  rgba(7,8,15,1) 0%, rgba(7,8,15,.55) 40%, transparent 70%),
    linear-gradient(to right, rgba(7,8,15,.7) 0%, transparent 60%);
  pointer-events: none;
}

/* Three.js removed */

.hero-text {
  position: relative; z-index: 3;
  flex: 1 1 auto;
  width: 100%;
  max-width: min(900px, 100%);
  min-width: 0;
  padding-top: 0;
  padding-right: max(clamp(1.5rem, 5vw, 4rem), env(safe-area-inset-right, 0px));
  padding-bottom: max(clamp(3rem, 8vw, 6rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(clamp(1.5rem, 5vw, 4rem), env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  /* Не используем container-type здесь: в связке с cqw на font-size даёт схлопывание ширины колонки */
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin: 0 0 1.35rem;
  max-width: min(52rem, 100%);
  font-size: clamp(.52rem, 1.05vw, .62rem);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .85s .15s var(--ease), transform .85s .15s var(--ease);
}
.hero-eyebrow.vis { opacity: 1; transform: none; }
.hero-eyebrow__rule {
  flex-shrink: 0;
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .85;
}
.hero-eyebrow__text {
  flex: 1;
  min-width: 0;
}
.hero-eyebrow__line--mobile {
  display: none;
}
.hero-eyebrow__tg {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.hero-eyebrow__tg:hover {
  color: #9b8fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.hero-eyebrow__tg:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.hero-h1 {
  font-family: var(--ff-h);
  /* Только vw/rem — без cqw, чтобы не ломать раскладку flex */
  font-size: clamp(1.75rem, 4.8vw + 0.75rem, 6.5rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.04em;
  margin-bottom: 2rem;
  display: flex; flex-direction: column;
  overflow: visible;
  max-width: 100%;
}
.word {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-wrap: normal;
  word-break: normal;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.word.vis { transform: translateY(0); }
/* Second word with slight indent — Apple-style asymmetry */
.word:nth-child(2) {
  padding-left: .08em;
  transition-delay: .06s;
}

.hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,.45);
  margin: 0 0 0.65rem;
  line-height: 1.75;
  max-width: 480px;
  overflow-wrap: anywhere;
  word-break: break-word;
  opacity: 0; transform: translateY(12px);
  transition: opacity 1s .6s var(--ease), transform 1s .6s var(--ease);
}
.hero-sub.vis { opacity: 1; transform: none; }
.hero-sub strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

/* Hero — цепочка этапов */
.hero-flow {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.28rem;
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: min(52rem, 100%);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s 0.6s var(--ease), transform 1s 0.6s var(--ease);
}
.hero-flow::-webkit-scrollbar {
  display: none;
  height: 0;
}
.hero-flow.vis {
  opacity: 1;
  transform: none;
}
.hero-flow > li {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.hero-flow__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: clamp(0.72rem, 1.15vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(
    145deg,
    rgba(124, 111, 255, 0.14) 0%,
    rgba(124, 111, 255, 0.05) 100%
  );
  border: 1px solid rgba(124, 111, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.hero-flow__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(124, 111, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  user-select: none;
  padding: 0 0.1rem;
}
.hero-flow__sep span {
  display: block;
  transform: translateY(0.05em);
}

.hero-btns {
  display: flex; gap: .85rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  transition: opacity 1s .8s var(--ease), transform 1s .8s var(--ease);
}
.hero-btns.vis { opacity: 1; transform: none; }
.hero-btns .btn-white { padding: 1rem 2.5rem; font-size: .9rem; }
.hero-btns .btn-ghost { padding: 1rem 1.75rem; font-size: .88rem; }
.btn-white--hero {
  background: linear-gradient(135deg, #9285ff 0%, #6b5ae8 45%, #5540c9 100%);
  box-shadow: 0 10px 36px rgba(107, 90, 232, .38);
}
.btn-white--hero:hover {
  background: linear-gradient(135deg, #9e92ff 0%, #7865f0 45%, #5f48d4 100%);
  box-shadow: 0 12px 42px rgba(107, 90, 232, .48);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: max(clamp(1.5rem, 4vw, 3rem), env(safe-area-inset-right, 0px));
  bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.scroll-track {
  width: 1px; height: 60px;
  background: rgba(255,255,255,.1);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 40%;
  background: var(--accent);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -40%; }
  100% { top: 140%; }
}
.hero-scroll span {
  font-size: .58rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
  writing-mode: vertical-rl;
}
@media (max-height: 720px) {
  .hero-scroll { display: none; }
}
@media (max-width: 640px) {
  .hero-scroll {
    display: none !important;
  }
}

/* ── Buttons ── */
.btn-white {
  display: inline-flex; align-items: center;
  padding: .9rem 2.25rem;
  background: var(--accent); color: var(--white);
  font-family: var(--ff-b); font-size: .875rem; font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius); text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-white:hover { background: #9488ff; transform: translateY(-2px); box-shadow: 0 8px 28px var(--accent-glow); }
.btn-white.btn-lg { padding: 1.15rem 3rem; font-size: .95rem; letter-spacing: .04em; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: .9rem 2rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted); font-size: .875rem; font-weight: 400;
  border-radius: var(--radius); text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(124,111,255,.5); color: var(--white); background: var(--accent-dim); }

.btn-border {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: .9rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted); font-size: .82rem; font-weight: 500;
  letter-spacing: .03em;
  border-radius: var(--radius); text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-border:hover { border-color: var(--accent); color: var(--white); background: var(--accent-dim); }

/* ═══════════════════════════════
   TICKER
═══════════════════════════════ */
.ticker {
  overflow: hidden;
  margin-top: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
  background:
    linear-gradient(90deg, rgba(124,111,255,.04) 0%, transparent 30%, transparent 70%, rgba(124,111,255,.04) 100%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 60%, var(--bg2) 100%);
}
.ticker-track {
  display: flex; gap: 3.5rem;
  width: max-content;
  animation: tick 32s linear infinite;
}
.ticker-track span {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
  white-space: nowrap;
}
.ticker-track .sep { color: var(--accent); opacity: .65; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   NUMBERS
═══════════════════════════════ */
.s-numbers {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--bg2);
  border-top: none;
  border-bottom: 1px solid var(--border);
}
.s-numbers .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.num-block {
  flex: 0 1 clamp(11rem, 26vw, 19rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
  text-align: center;
  position: relative;
}
.num-divider {
  width: 1px; height: 3.5rem;
  background: var(--border);
  flex-shrink: 0;
}
.num-big {
  font-family: var(--ff-h);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.05em;
  color: var(--accent);
  margin-bottom: .5rem;
  white-space: nowrap;
}
.num-label {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--off-w);
  line-height: 1.4;
}

/* ═══════════════════════════════
   SECTION LABELS / TITLES
═══════════════════════════════ */
.sec-label {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.sec-label::before {
  content: '';
  display: inline-block; width: 24px; height: 1px;
  background: var(--accent);
}
.sec-title {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.sec-title em { font-style: normal; color: var(--accent); }

/* ── Reveal ── */
.rv {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.rv.vis { opacity: 1; transform: none; }

/* ═══════════════════════════════
   SYSTEM
═══════════════════════════════ */
.s-system {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

.step {
  padding: 2.75rem 2rem 2.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .3s;
  background: var(--bg2);
}
.step:last-child { border-right: none; }
.step:hover { background: var(--bg3); }

.step-n {
  font-family: var(--ff-h);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; color: var(--accent);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.step-n::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border);
}
.step h3 {
  font-family: var(--ff-h);
  font-size: 1.2rem; font-weight: 800;
  margin-bottom: .85rem; letter-spacing: -.01em;
}
.step p {
  font-size: .84rem; line-height: 1.8;
  color: var(--muted);
}

/* ═══════════════════════════════
   INCOME
═══════════════════════════════ */
.s-income {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 760px) {
  /* ── Слайдер 4 этапов ── */
  .income-slider-wrap {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    gap: 0;
  }
  .income-slider-wrap::-webkit-scrollbar { display: none; }

  /* income-grid внутри слайдера: display:contents — карточки становятся прямыми flex-детьми */
  .income-slider-wrap .income-grid {
    display: contents;
  }

  .income-slider-wrap .income-card {
    flex: 0 0 82vw;
    max-width: 82vw;
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
    border-right: 1px solid var(--border);
    border-bottom: none;
    border-radius: 0;
    padding: 1.4rem 1.25rem 1.5rem;
  }

  /* Шаг 04 как последний слайд */
  .income-slider-wrap .s-system-scale {
    flex: 0 0 82vw;
    max-width: 82vw;
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
    margin-top: 0;
    border: none;
    border-left: 1px solid var(--border);
    border-radius: 0;
    padding: 1.4rem 1.25rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: start;
  }
  .income-slider-wrap .s-system-scale__cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .inc-top {
    margin-bottom: 0.75rem;
    min-height: 0;
  }
}

.income-card {
  padding: 2.35rem 2rem 2.65rem;
  background: var(--bg2);
  position: relative;
  transition: background .3s;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.income-card:hover { background: var(--bg3); }
.income-card--featured {
  background: var(--bg3);
}
.income-card--featured:hover { background: #161829; }

/* Одна линия: шаг слева, слот под бейдж справа — сетка колонок не «прыгает» */
.inc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2rem;
  margin-bottom: 1.25rem;
}
.inc-n {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  line-height: 1.35;
  padding-top: 0.15rem;
}
.inc-n::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.inc-badge-slot {
  flex-shrink: 0;
  min-width: 0;
  min-height: 1.65rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.inc-badge-slot:has(.inc-badge) {
  min-width: 5.75rem;
}
.inc-badge {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: .32rem .72rem;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.2;
}

/* Подзаголовки одной «полки» по высоте (до 2 строк) */
.income-card .inc-sub {
  font-family: var(--ff-h);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.85rem;
  min-height: 2.5em;
  display: flex;
  align-items: flex-start;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.inc-range {
  font-family: var(--ff-h);
  font-size: clamp(1.65rem, 4.2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.02;
}
.inc-range:has(small) {
  margin-bottom: 0.35rem;
}
.inc-range small {
  display: block;
  font-family: var(--ff-b);
  font-size: .65rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0.4rem 0 1.15rem;
  line-height: 1.35;
  max-width: 16rem;
}
.income-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

/* Шаг 4 — одна полоса, выравнивание по центру на широких экранах */
.s-system-scale {
  margin-top: 1.25rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.75rem);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.s-system-scale__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.s-system-scale__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.s-system-scale__title {
  font-family: var(--ff-h);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
  max-width: 16rem;
}
.s-system-scale__kicker {
  margin: 0.5rem 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}
.s-system-scale__body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}
.s-system-scale__cta {
  display: inline-flex;
}
@media (max-width: 760px) {
  .s-system-scale {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .s-system-scale__title {
    max-width: none;
  }
}

/* ═══════════════════════════════
   MAGIC BENTO — glow/spotlight/tilt/particles
═══════════════════════════════ */
.step {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-i: 0;
  transition: background .25s, box-shadow .25s;
}
/* Radial glow from mouse position */
.step::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(124,111,255, calc(var(--glow-i) * 0.12)) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  transition: opacity .2s;
}
/* Border glow */
.step::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(124,111,255, calc(var(--glow-i) * 0.4)) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  padding: 1px;
  opacity: var(--glow-i);
  transition: opacity .2s;
}
.step > * { position: relative; z-index: 1; }

/* Bento particles */
.bento-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transform: scale(0);
  transition: opacity .4s, transform .5s cubic-bezier(.34,1.56,.64,1);
}
.bento-particle.active {
  opacity: .65;
}

/* ═══════════════════════════════
   AUTHOR SECTION
═══════════════════════════════ */
.s-author {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
}
.author-card {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.author-visual {
  flex-shrink: 0;
  width: clamp(220px, 32vw, 300px);
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.author-main-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  background: var(--bg3);
}
.author-main-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 38%;
  display: block;
  transition: opacity .25s ease;
}
.author-main-photo.is-switching img { opacity: 0; }

/* Thumbnails strip */
.author-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.a-thumb {
  all: unset;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 2/3;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s, opacity .2s;
  opacity: .65;
}
.a-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
}
.a-thumb:hover { opacity: .9; transform: scale(1.04); }
.a-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}
.author-photo-strip img:hover { opacity: 1; transform: scale(1.03); }
.author-avatar {
  flex-shrink: 0;
  width: clamp(80px, 12vw, 120px);
  height: clamp(80px, 12vw, 120px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #7c5cbf 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}
.author-body { flex: 1; }
.author-name {
  font-family: var(--ff-h);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.author-name .author-handle {
  color: var(--accent);
  font-size: .65em;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.author-name .author-handle:hover {
  color: #9b8fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.author-name .author-handle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.author-bio {
  font-size: clamp(.85rem, 1.5vw, .95rem);
  color: var(--muted);
  line-height: 1.85;
  max-width: 56ch;
  margin-bottom: 1.5rem;
}
.author-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  margin-bottom: 1.75rem;
}
.author-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.author-stat span {
  font-family: var(--ff-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .2rem;
}
.author-tg { display: inline-flex; }
@media (max-width: 640px) {
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-visual { width: 100%; max-width: 280px; }
  .author-bio { max-width: 100%; }
  .author-stats { justify-content: center; }
  .author-tg { align-self: center; }
}

/* ═══════════════════════════════
   LIFESTYLE PROOF — tile grid + lightbox
═══════════════════════════════ */
.s-lifestyle {
  padding: clamp(3.25rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.s-lifestyle .ls-intro {
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}
.s-lifestyle .ls-intro .sec-title {
  margin-bottom: 0;
}
/* Как у остальных sec-label («По шагам»): caps + линия слева — без отдельного «предложного» стиля */
.s-lifestyle .ls-intro .sec-label {
  margin-bottom: 0.85rem;
}
.ls-sub {
  max-width: 40rem;
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

/* ── Dual infinite marquees ── */
.ls-marquees {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: 0.25rem;
}

.ls-marquee {
  position: relative;
  width: 100%;
}
.ls-marquee::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 111, 255, 0.35), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.ls-marquee__viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.ls-marquee__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  /* GPU layer for silky 60fps on mobile */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ls-marquee--left .ls-marquee__track {
  animation: ls-marquee-left 78s linear infinite;
}
.ls-marquee--right .ls-marquee__track {
  animation: ls-marquee-right 92s linear infinite;
}

@keyframes ls-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ls-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.ls-marquee:hover .ls-marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ls-marquee--left .ls-marquee__track,
  .ls-marquee--right .ls-marquee__track {
    animation: none;
    transform: none;
  }
}

.ls-marquee__group {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(10px, 1.8vw, 18px);
  padding: 0 clamp(8px, 1.5vw, 14px) 0 0;
  flex-shrink: 0;
}

/* pointer-events на клонах включены — делегирование JS ловит клик по data-атрибутам */
.ls-marquee__group[aria-hidden="true"] .ls-tile {
  pointer-events: auto;
}

.ls-marquee .ls-tile {
  position: relative;
  width: clamp(168px, 22vw, 268px);
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 16px);
  cursor: pointer;
  background: var(--bg3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease, ease);
}
.ls-marquee .ls-tile:hover {
  border-color: rgba(124, 111, 255, 0.35);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(124, 111, 255, 0.15);
  transform: translateY(-2px);
}

.ls-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--bg3);
}
.ls-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.ls-tile:hover img {
  transform: scale(1.07);
}

/* Hover overlay */
.ls-tile-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.ls-tile:hover .ls-tile-over {
  opacity: 1;
}
.ls-tile-result {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(130,80,220,.18);
  border: 1px solid rgba(130,80,220,.35);
  border-radius: 20px;
  padding: .25rem .65rem;
  display: inline-block;
  margin-bottom: .4rem;
  align-self: flex-start;
}
.ls-tile-name {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.ls-tile-name span {
  color: rgba(255,255,255,.55);
  font-weight: 400;
}


@media (max-width: 600px) {
  /* Taller, more impactful tiles on mobile — portrait 3:4 ratio */
  .ls-marquee .ls-tile {
    width: clamp(148px, 44vw, 210px);
    aspect-ratio: 3 / 4;
    border-radius: 14px;
  }

  /* Always show overlay on mobile (no hover) */
  .ls-tile-over {
    opacity: 1;
    padding: 0.7rem 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 55%, transparent 100%);
  }
  .ls-tile-result { font-size: 0.58rem; padding: 0.2rem 0.45rem; }
  .ls-tile-name { font-size: 0.73rem; }

  /* Speed up animation on mobile for more visible motion */
  .ls-marquee--left .ls-marquee__track {
    animation-duration: 50s;
  }
  .ls-marquee--right .ls-marquee__track {
    animation-duration: 62s;
  }

  /* Tighten the gap between rows */
  .ls-marquees {
    gap: 0.75rem;
  }

  /* Fade edges more sharply so motion is clear */
  .ls-marquee__viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }

  /* Tile gap */
  .ls-marquee__group {
    gap: 10px;
  }

  /* Pause indicator: subtle pulse on the active tile when touch is held */
  .ls-marquee--touch-paused .ls-marquee__track {
    animation-play-state: paused;
  }
}

/* ── Lightbox ── */
.ls-lb {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.ls-lb.ls-lb--open {
  opacity: 1;
  pointer-events: all;
}
.ls-lb-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.ls-lb-close:hover { background: rgba(255,255,255,.18); }

.ls-lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10;
  line-height: 1;
}
.ls-lb-nav:hover { background: rgba(255,255,255,.2); }
.ls-lb-prev { left: 1.25rem; }
.ls-lb-next { right: 1.25rem; }

.ls-lb-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  max-width: min(1100px, 95vw);
  width: 100%;
  padding: 0 5rem;
}
.ls-lb-img-wrap {
  flex-shrink: 0;
  width: min(480px, 55vw);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg3);
}
.ls-lb-img-wrap img {
  width: 100%; height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.ls-lb-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ls-lb-cap-top {
  display: flex; align-items: center; gap: .85rem;
}
.ls-lb-av {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #7c5cbf 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h); font-weight: 900; font-size: 1rem; color: #fff;
}
.ls-lb-av--f {
  background: linear-gradient(135deg, #c05bb0 0%, #7c5cbf 100%);
}
.ls-lb-name {
  font-family: var(--ff-h);
  font-size: 1.1rem; font-weight: 800;
  color: var(--white);
}
.ls-lb-dir {
  font-size: .72rem; color: var(--faint);
  margin-top: .2rem;
}
.ls-lb-quote {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  border-left: 3px solid rgba(130,80,220,.5);
  padding-left: 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ls-lb-result {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(130,80,220,.1);
  border: 1px solid rgba(130,80,220,.25);
  border-radius: 20px;
  padding: .4rem 1rem;
  display: inline-block;
  align-self: flex-start;
}

@media (max-width: 900px) and (min-width: 701px) {
  .ls-lb-inner { padding: 0 3.25rem; gap: 1.75rem; }
  .ls-lb-img-wrap { width: min(420px, 48vw); }
}
@media (max-width: 700px) {
  .ls-lb-inner {
    flex-direction: column;
    padding: max(4.5rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
    gap: 1.25rem;
  }
  .ls-lb-img-wrap { width: 100%; max-width: min(400px, 100%); }
  .ls-lb-close {
    top: max(1rem, env(safe-area-inset-top, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
  }
  .ls-lb-prev { left: max(0.4rem, env(safe-area-inset-left, 0px)); }
  .ls-lb-next { right: max(0.4rem, env(safe-area-inset-right, 0px)); }
}

/* ═══════════════════════════════
   GUARANTEE — отдельная полоса перед тарифами
═══════════════════════════════ */
/* ── Guarantee block — единый контейнер с 3 колонками ── */
.guar-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(700px, 100%);
  margin: 0 auto clamp(0.85rem, 2vw, 1.25rem);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.guar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 1.4rem 1rem 1.5rem;
  position: relative;
}
.guar-col + .guar-col::before {
  content: '';
  position: absolute;
  left: 0; top: 16%; bottom: 16%;
  width: 1px;
  background: var(--border);
}
.guar-col--center {
  background: linear-gradient(160deg, rgba(124, 111, 255, 0.22) 0%, rgba(92, 74, 212, 0.14) 100%);
}
.guar-col--center + .guar-col::before {
  background: rgba(124, 111, 255, 0.28);
}
.guar-col__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-bottom: 0.1rem;
}
.guar-col--center .guar-col__icon {
  color: #c4b8ff;
}
.guar-col__title {
  font-family: var(--ff-h);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.guar-col--center .guar-col__title {
  color: #d6ccff;
}
.guar-col__sub {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.45;
}
.guar-foot {
  text-align: center;
  margin-top: 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
.guar-foot strong {
  color: var(--accent);
  font-weight: 600;
}
/* Гарантия на мобиле — 3 колонки остаются, просто компактнее */
@media (max-width: 640px) {
  .guar-block {
    max-width: 100%;
  }
  .guar-col {
    padding: 1rem 0.6rem 1.1rem;
    gap: 0.3rem;
  }
  .guar-col__title {
    font-size: 0.88rem;
  }
  .guar-col__sub {
    font-size: 0.68rem;
  }
  .guar-col__icon {
    width: 16px;
    height: 16px;
  }
  .guar-foot {
    font-size: 0.8rem;
    margin-bottom: 1.75rem;
  }
}

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
/* ── Social-proof ticker ── */
.proof-ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
  user-select: none;
  background:
    linear-gradient(90deg, rgba(124,111,255,.04) 0%, transparent 30%, transparent 70%, rgba(124,111,255,.04) 100%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 60%, var(--bg2) 100%);
}
.proof-ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 55s linear infinite;
}
.proof-ticker__item {
  white-space: nowrap;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  padding: 0 1.75rem;
  position: relative;
}
.proof-ticker__item::after {
  content: '◆';
  position: absolute;
  right: -0.5em;
  top: 50%;
  transform: translateY(-50%);
  font-size: .55em;
  color: var(--accent);
  opacity: .65;
  color: rgba(124,111,255,.5);
  transform: translateX(50%);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.proof-ticker:hover .proof-ticker__track {
  animation-play-state: paused;
}

.s-pricing {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
  border-top: none;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
/* Явно тянем карточки на высоту ряда — кнопки и списки выстраиваются ровнее */
.price-grid > .p-card {
  min-height: 100%;
}
@media (max-width: 760px) {
  .price-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  /* На мобиле карточки в одну колонку — высоту диктует контент, не грид-ряд */
  .price-grid > .p-card { min-height: 0; height: auto; }
}

/* Мини-блок гарантии (в секции s-pricing-guarantee или встроенный) */
.refund-mini {
  max-width: min(34rem, 100%);
  margin: 0 auto;
  padding: 0.85rem 0.9rem 0.95rem;
  box-sizing: border-box;
  text-align: center;
  background: linear-gradient(180deg, rgba(124, 111, 255, 0.06) 0%, rgba(10, 12, 22, 0.96) 45%);
  border: 1px solid rgba(124, 111, 255, 0.28);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(124, 111, 255, 0.05),
    0 10px 32px rgba(0, 0, 0, 0.28);
}
.refund-mini--section {
  max-width: min(36rem, 100%);
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 16px;
}
/* Компактная гарантия перед тарифами: кикер + строка условий + сетка */
.refund-mini--compact {
  max-width: min(40rem, 100%);
  padding: 0.38rem 0.55rem 0.45rem;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(124, 111, 255, 0.04),
    0 6px 20px rgba(0, 0, 0, 0.2);
}
.refund-mini--compact .refund-mini__kicker {
  margin: 0 0 0.22rem;
  padding: 0;
  font-family: var(--ff-h);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  line-height: 1.15;
  opacity: 0.95;
}
.refund-mini--compact .refund-mini__head {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.28rem;
}
.refund-mini--compact .refund-mini__head-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.refund-mini--compact .refund-mini__lead {
  font-size: 0.65rem;
  line-height: 1.4;
  max-width: 34rem;
  text-align: center;
}
.refund-mini--compact .refund-mini__grid {
  gap: 0.24rem;
  margin-bottom: 0.28rem;
}
.refund-mini--compact .refund-mini__card {
  padding: 0.28rem 0.25rem 0.32rem;
  gap: 0.1rem;
  border-radius: 8px;
}
.refund-mini--compact .refund-mini__card-title {
  font-size: 0.6rem;
}
.refund-mini--compact .refund-mini__card-sub {
  font-size: 0.52rem;
  line-height: 1.3;
}
.refund-mini--compact .refund-mini__foot {
  font-size: 0.58rem;
  line-height: 1.35;
  font-weight: 600;
}
.refund-mini__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  margin-bottom: 0.75rem;
}
.refund-mini__head-icon {
  color: var(--accent);
  margin-bottom: 0.1rem;
  opacity: 0.95;
}
.refund-mini__title {
  margin: 0;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  line-height: 1.25;
}
.refund-mini__lead {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: balance;
  max-width: 26rem;
}
.refund-mini__lead--muted {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  line-height: 1.4;
}
.refund-mini__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}
.refund-mini__card {
  padding: 0.55rem 0.4rem 0.6rem;
  border-radius: 10px;
  background: rgba(18, 20, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  min-width: 0;
}
.refund-mini__card-icon {
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.92;
}
.refund-mini__card-title {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #fff;
}
.refund-mini__card-sub {
  font-size: 0.6rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.45);
  text-wrap: balance;
}
.refund-mini__foot {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-size: 0.68rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--accent);
  text-wrap: balance;
  overflow-wrap: anywhere;
  padding: 0 0.15rem;
  box-sizing: border-box;
}
.refund-mini__foot-icon {
  flex-shrink: 0;
  opacity: 0.9;
  margin-top: 1px;
}
@media (max-width: 520px) {
  .refund-mini__grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
  }
  .refund-mini--compact .refund-mini__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 0.22rem;
  }
}

.p-card {
  padding: 1.5rem 1.35rem 1.45rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 0;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* Одна линия «верха»: фиксированная высота — названия и цены выстраиваются в линию на всех карточках */
.p-card__lead {
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
}
.p-card__lead:empty {
  pointer-events: none;
}

.p-card--mentor {
  border-color: rgba(124,111,255,.28);
  background: linear-gradient(165deg, rgba(124,111,255,.06) 0%, var(--bg3) 42%);
}
.p-mentor-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(124,111,255,.4);
  flex-shrink: 0;
}
.p-mentor-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-tagline {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 0.85rem;
  letter-spacing: .04em;
  line-height: 1.45;
  min-height: 3.05em;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (min-width: 761px) {
  /* Единая «полка» под подзаголовок — цены начинаются ближе к одной линии */
  .price-grid .p-tagline {
    min-height: 4.35em;
  }
}
.p-card:not(.p-card--hot):hover {
  background: #141627;
  border-color: rgba(124,111,255,.22);
}
/* «Максимум» — акцент рамкой и лёгким свечением, без сплошной заливки (читаемость + ровная сетка с соседями) */
.p-card--hot {
  background: linear-gradient(180deg, rgba(124,111,255,.1) 0%, var(--bg3) 42%);
  border: 1px solid rgba(124,111,255,.5);
  box-shadow:
    0 0 0 1px rgba(124,111,255,.12),
    0 16px 48px -24px rgba(124,111,255,.35);
  z-index: 1;
}
/* Бейдж вне потока — не тянет карточку выше соседей; справа, чтобы не пересекался с названием */
.p-card--hot > .p-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  left: auto;
  z-index: 2;
  margin: 0;
  align-self: unset;
}
.p-card--hot:hover {
  border-color: rgba(124,111,255,.65);
  background: linear-gradient(180deg, rgba(124,111,255,.14) 0%, #141627 44%);
  box-shadow:
    0 0 0 1px rgba(124,111,255,.18),
    0 20px 56px -20px rgba(124,111,255,.4);
}
.p-card--hot .p-name {
  color: var(--accent);
}
.p-card--hot .p-val {
  color: var(--white);
}
.p-card--hot .p-cur {
  color: var(--muted);
}
.p-card--hot .p-desc {
  color: rgba(255, 255, 255, 0.78);
}
.p-card--hot .p-tagline {
  color: rgba(255, 255, 255, 0.64);
}
.p-card--hot .p-perks li {
  color: rgba(255, 255, 255, 0.88);
}
.p-card--hot .p-perks li::before {
  color: var(--accent);
}

.p-badge {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  display: inline-block;
  background: rgba(124,111,255,.12);
  border: 1px solid rgba(124,111,255,.28);
  padding: .28rem .7rem;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}
/* ── Плашка-статистика внутри секции тарифов ── */
.pricing-stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1.6rem auto 2.2rem;
  padding: .7rem 1.8rem;
  max-width: 560px;
  background: rgba(124, 111, 255, .1);
  border: 1px solid rgba(124, 111, 255, .28);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .01em;
  line-height: 1.4;
}

.p-card--mentor > .p-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  left: auto;
  z-index: 2;
  margin: 0;
  align-self: unset;
}
.p-name {
  font-family: var(--ff-h);
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.p-card--hot .p-name { color: var(--accent); }
.p-cost {
  display: flex; align-items: baseline; gap: .1rem;
  margin: 0 0 1rem;
}
.p-cur { font-size: 1rem; color: var(--muted); }
.p-val {
  font-family: var(--ff-h);
  font-size: 3.5rem; font-weight: 900;
  letter-spacing: -.05em; line-height: 1;
}
.p-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0 0 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.p-card--hot .p-desc { color: rgba(255, 255, 255, 0.78); }

.p-perks {
  list-style: none;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  min-height: 0;
}
.p-perks li {
  font-size: 0.84375rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  margin: 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  column-gap: 0.45rem;
  align-items: start;
}
.p-perks li::before {
  content: '✓';
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 0.08em;
}

/* ── Подробнее / accordion ── */
.p-more-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
  margin: -0.5rem 0 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: opacity .15s;
  line-height: 1;
}
.p-more-btn:hover { opacity: 0.75; }
.p-more-arrow {
  display: inline-block;
  transition: transform .22s ease;
  font-size: 1rem;
  line-height: 1;
}
.p-more-btn[aria-expanded="true"] .p-more-arrow {
  transform: rotate(90deg);
}
.p-more-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease;
  /* Не используем display:none/hidden — только max-height для плавного коллапса */
}
.p-more-body.is-open {
  max-height: 420px;
  opacity: 1;
}
.p-more-body .p-perks {
  margin-bottom: 1.25rem;
}

/* Make pricing buttons full-width */
.p-card .btn-white,
.p-card .btn-border {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  flex-shrink: 0;
}
.p-card__cta.btn-white,
.p-card__cta.btn-border {
  min-height: 48px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  box-sizing: border-box;
  font-size: 0.8125rem;
}
.p-card--hot .btn-white {
  box-shadow: 0 4px 20px rgba(124,111,255,.25);
}
.p-card--hot .btn-white:hover {
  box-shadow: 0 6px 28px rgba(124,111,255,.35);
}

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.s-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.faq-inner { max-width: 740px; }
.faq-list { margin-top: .5rem; }
.faq-row { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.35rem 0;
  background: none; border: none;
  font-family: var(--ff-b); font-size: .92rem; font-weight: 400;
  color: var(--off-w); cursor: pointer; text-align: left;
  transition: color .2s; gap: 1.5rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faq-btn:hover { color: var(--white); }
.faq-btn span {
  font-size: 1.25rem; color: var(--muted);
  transition: transform .35s var(--ease), color .2s;
  flex-shrink: 0; line-height: 1;
}
.faq-row.open .faq-btn span { transform: rotate(45deg); color: var(--accent); }
.faq-ans {
  max-height: 0; overflow: hidden;
  font-size: .9rem; color: var(--muted); line-height: 1.85;
  transition: max-height .45s var(--ease), padding .35s var(--ease);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faq-row.open .faq-ans { max-height: 560px; padding-bottom: 1.5rem; }

/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
.s-cta {
  padding: clamp(7rem, 14vw, 12rem) 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,111,255,.12) 0%, transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-label {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
}
.cta-label::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px;
  background: var(--accent);
}
.cta-label::after {
  content: ''; display: inline-block;
  width: 20px; height: 1px;
  background: var(--accent);
}
.cta-h {
  font-family: var(--ff-h);
  font-size: clamp(1.65rem, 3.8vw + 0.55rem, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.038em;
  margin-bottom: 1.35rem;
  max-width: min(20em, 92vw);
  margin-left: auto;
  margin-right: auto;
  padding: 0 max(0.75rem, env(safe-area-inset-left, 0px)) 0 max(0.75rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
  text-align: center;
  text-wrap: balance;
}
.cta-sub {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.cta-spots {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  margin-bottom: .5rem;
}
.cta-spots-bar {
  width: clamp(200px, 40vw, 360px);
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.cta-spots-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.cta-spots-label {
  font-size: .78rem; color: var(--muted);
}
.cta-spots-label strong { color: var(--fg); }

/* ═══════════════════════════════
   PAIN SECTION
═══════════════════════════════ */
.s-pain {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.pain-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pain-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,60,60,.12);
  color: #ff5555;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.pain-item p {
  font-size: .88rem; color: var(--muted); line-height: 1.7; margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   SOCIAL PROOF POPUP
═══════════════════════════════ */
.sp-popup {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 9999;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
  pointer-events: none;
}
.sp-popup.sp-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sp-popup.sp-hide {
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
}
.sp-popup-inner {
  display: flex; align-items: center; gap: .85rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  max-width: 300px;
  position: relative;
}
.sp-av {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #7c5cbf 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h), 'Noto Sans Georgian', 'Noto Sans Armenian', 'Segoe UI', sans-serif;
  font-weight: 900;
  font-size: clamp(0.7rem, 2.8vw, 0.95rem);
  color: #fff;
  line-height: 1;
}
.sp-body { flex: 1; min-width: 0; }
.sp-name { font-size: .82rem; font-weight: 700; }
.sp-action { font-size: .76rem; color: var(--muted); margin-top: .15rem; }
.sp-time { font-size: .68rem; color: var(--faint); margin-top: .15rem; }
.sp-close {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--faint);
  font-size: 1.1rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.sp-close:hover { color: var(--fg); }
@media (max-width: 480px) {
  .sp-popup { left: .75rem; bottom: .75rem; }
  .sp-popup-inner { max-width: 260px; }
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.s-footer {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-row {
  display: flex; align-items: center; gap: 2rem;
  justify-content: space-between; flex-wrap: wrap;
}
.footer-logo {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-logo.ailab-brand {
  gap: 0.42em;
}
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a {
  font-size: .78rem; color: var(--faint);
  text-decoration: none; transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: .75rem; color: var(--faint); }
@media (max-width: 640px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    row-gap: 0.5rem;
  }
}

/* ═══════════════════════════════
   BONUSES GRID (3-col)
═══════════════════════════════ */
#s-whats-inside .wrap {
  width: min(1180px, 92vw);
  max-width: 100%;
}
@media (max-width: 980px) {
  #s-whats-inside .wrap { width: min(1100px, 90vw); }
}
#s-bonuses-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  #s-bonuses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Одна колонка раньше — длинные заголовки и абзацы не режутся на мобильных */
@media (max-width: 720px) {
  #s-bonuses-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Мобильный snap-слайдер для «Что входит» ── */
@media (max-width: 640px) {
  #s-bonuses-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  #s-bonuses-grid::-webkit-scrollbar { display: none; }
  #s-bonuses-grid .step {
    flex: 0 0 82vw;
    max-width: 82vw;
    min-width: 0;
    scroll-snap-align: start;
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 1.5rem 1.25rem 1.65rem;
    box-sizing: border-box;
  }
  #s-bonuses-grid .step:last-child { border-right: none; }
  #s-bonuses-grid .step-n { margin-bottom: 0.85rem; }
  #s-bonuses-grid .step h3 { font-size: 1rem; }
  #s-bonuses-grid .step p  { font-size: 0.86rem; line-height: 1.7; }

  /* Подсказка «листай» */
  .bonuses-swipe-hint {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 0.65rem;
    justify-content: center;
  }
}

#s-bonuses-grid .step-n {
  font-size: 1.4rem;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}

#s-bonuses-grid .step {
  padding: 2.35rem 1.65rem 2.4rem;
  min-width: 0;
  overflow: visible;
}
#s-bonuses-grid .step h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  font-weight: 800;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
#s-bonuses-grid .step p {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 720px) {
  #s-bonuses-grid .step {
    padding: 1.65rem 1.2rem 1.85rem;
    border-right: none;
  }
  #s-bonuses-grid .step-n {
    margin-bottom: 1rem;
  }
  #s-bonuses-grid .step h3 {
    font-size: 1.12rem;
    line-height: 1.32;
  }
  #s-bonuses-grid .step p {
    font-size: 0.9375rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.72);
  }
}

/* CTA-кнопки блок (заменяет inline style) */
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ═══════════════════════════════
   MOBILE
═══════════════════════════════ */
@media (max-width: 900px) {
  #hdr nav { gap: 0.65rem 1.1rem; }
  #hdr nav a { font-size: 0.68rem; }
}

@media (max-width: 640px) {
  .hdr-center { display: none; }
  #hdr {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .logo { font-size: 0.82rem; }
  .logo .ailab-flask { width: 1.58em; }
  .logo .ailab-brand__lab { letter-spacing: 0.11em; }
  .hdr-cta {
    min-height: 44px;
    padding: 0.5rem 1rem;
    align-items: center;
  }

  /* Полная ширина контента с отступами под вырезы */
  .wrap {
    width: 100%;
    max-width: 100%;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }
  #s-whats-inside .wrap {
    width: 100%;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: clamp(1.55rem, 7.2vw + 0.55rem, 2.85rem);
    margin-bottom: 1.35rem;
    line-height: 0.96;
  }
  .hero-sub { font-size: clamp(0.88rem, 3.5vw, 1rem); }
  .hero-eyebrow {
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
    font-size: clamp(0.52rem, 1.85vw + 0.38rem, 0.62rem);
    letter-spacing: 0.09em;
  }
  .hero-eyebrow__line--desktop {
    display: none;
  }
  .hero-eyebrow__line--mobile {
    display: block;
    white-space: nowrap;
  }
  .hero-eyebrow__text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .hero-flow {
    margin-bottom: 1.5rem;
    gap: 0.18rem;
    max-width: 100%;
    padding-bottom: 0.2rem;
  }
  .hero-flow__pill {
    padding: 0.3rem 0.48rem;
    font-size: clamp(0.52rem, 2.35vw + 0.2rem, 0.72rem);
  }
  .hero-flow__sep {
    font-size: clamp(0.52rem, 1.8vw, 0.6rem);
    padding: 0 0.02rem;
    flex-shrink: 0;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .hero-btns .btn-white,
  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .s-numbers .wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0;
  }
  .num-block {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
    max-width: calc(50% - 0.5rem);
    box-sizing: border-box;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
  .num-divider { display: none; }

  .sec-title {
    font-size: clamp(1.55rem, 6vw + 0.5rem, 2.4rem);
    margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
  }

  .step { padding: 2rem 1.25rem 2.1rem; }
  .step h3 { font-size: 1.08rem; }

  .income-card { padding: 1.85rem 1.25rem 2rem; }
  .income-card .inc-sub {
    min-height: 0;
    margin-bottom: 0.65rem;
  }

  .p-card { padding: 1.5rem 1.2rem 1.45rem; }
  .p-val { font-size: clamp(2.35rem, 11vw, 3.5rem); }

  .guar-block {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .guar-col { padding: 1.1rem 0.75rem 1.2rem; }
  .guar-col__title { font-size: 0.95rem; }

  .faq-btn {
    min-height: 48px;
    padding: 1.1rem 0;
    font-size: 0.88rem;
    gap: 1rem;
  }
  .faq-row.open .faq-ans { max-height: 720px; }

  .cta-h {
    font-size: clamp(1.35rem, 5.2vw + 0.45rem, 2.35rem);
    max-width: min(17em, 94vw);
    line-height: 1.1;
  }
  .s-cta {
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
    padding-bottom: max(clamp(4rem, 10vw, 7rem), env(safe-area-inset-bottom, 0px));
  }

  .s-footer {
    padding-bottom: max(2.25rem, env(safe-area-inset-bottom, 0px));
  }

  .sp-popup {
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    right: auto;
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 1.5rem - env(safe-area-inset-left, 0px));
  }
  .sp-popup-inner {
    max-width: min(300px, calc(100vw - 1.5rem - env(safe-area-inset-left, 0px)));
    box-sizing: border-box;
  }

  /* ── CTA кнопки: стек на полную ширину ── */
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    margin-top: 1.5rem;
  }
  .cta-btns > a {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    text-align: center;
    box-sizing: border-box;
  }
  .cta-btns .btn-white.btn-lg { font-size: 0.88rem; }

  /* ── CTA секция: меньше вертикального паддинга ── */
  .s-cta {
    padding-top: clamp(4rem, 11vw, 7rem);
  }

  /* ── Секции: уменьшаем раздутые паддинги ── */
  .s-income { padding: clamp(3rem, 7vw, 5rem) 0; }
  .s-lifestyle {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.75rem, 5.5vw, 4.5rem);
  }
  .s-author { padding: clamp(3rem, 7vw, 5rem) 0; }
  .s-faq { padding: clamp(3rem, 7vw, 5rem) 0; }
  .s-pain { padding: clamp(3rem, 6vw, 4.5rem) 0; }
  #s-whats-inside { padding: clamp(3rem, 7vw, 5rem) 0; }

  /* ── Автор: thumbs на мобилке ── */
  .author-thumbs { gap: 4px; }
  .author-visual { max-width: 260px; }

  /* ── Тарифы: секция ── */
  .s-pricing {
    padding-top: clamp(2.5rem, 7vw, 4rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }

  /* ── Тарифы: карточки ── */
  .price-grid {
    gap: 0.85rem;
  }
  .p-card {
    padding: 1.5rem 1.25rem 1.6rem;
  }
  .p-name {
    font-size: 1.05rem;
  }
  .p-val {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
  .p-desc {
    font-size: 0.84rem;
    margin-bottom: 0.85rem;
  }
  .p-more-btn {
    margin-bottom: 0.85rem;
  }
  .p-perks li {
    font-size: 0.82rem;
  }

  /* ── Карточки тарифов: lead-высота авто на мобильном ── */
  .p-card__lead {
    height: auto;
    min-height: 40px;
    max-height: none;
  }
  /* p-tagline removed */

  /* ── Бонусы/Что внутри: меньше паддинг ── */
  .step { padding: 1.65rem 1.1rem 1.75rem; }

  /* ── Hero: немного уменьшаем отступ снизу ── */
  .hero-text {
    padding-bottom: max(clamp(2.25rem, 7vw, 4rem), env(safe-area-inset-bottom, 0px));
  }

  /* ── Numbers на mobile: 2 в ряд с делителем по оси Y ── */
  .num-block { padding: 1.25rem 0.85rem; }
  .num-big { font-size: clamp(2rem, 9vw, 3.2rem); }

  /* ── FAQ: увеличить max-height ответа чтобы длинный текст не обрезался ── */
  .faq-row.open .faq-ans { max-height: 900px; }
}

/* ── 430px (iPhone Pro Max / большие Android) ── */
@media (max-width: 430px) {
  .hero-h1 { font-size: clamp(1.45rem, 8.5vw, 2.6rem); }
  .author-visual { max-width: 220px; }
  .p-card { padding: 1.35rem 1rem 1.4rem; }
  .income-card { padding: 1.5rem 1rem 1.65rem; }
}

/* Узкая ширина — блок цифр в одну колонку, без горизонтального переполнения */
@media (max-width: 480px) {
  .s-numbers .wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }
  /* Все три в одну строку по 33% */
  .num-block {
    flex: 0 0 33.333%;
    width: 33.333%;
    max-width: 33.333%;
    min-width: 0;
    box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .num-block:last-child {
    flex: 0 0 33.333%;
    width: 33.333%;
    max-width: 33.333%;
  }

  /* ── Шапка ── */
  #hdr { min-height: 52px; }
  .logo { font-size: 0.78rem; }

  /* ── Hero ── */
  .hero-btns .btn-white,
  .hero-btns .btn-ghost { font-size: 0.84rem; }

  /* ── CTA ── */
  .s-cta { padding-top: clamp(3.5rem, 10vw, 5.5rem); }

  /* ── Lifestyle маркиз: 480px и ниже ── */
  .ls-marquee .ls-tile { width: clamp(132px, 40vw, 175px); aspect-ratio: 3 / 4; }
  .ls-tile-result { font-size: 0.54rem; }
  .ls-tile-name { font-size: 0.68rem; }

  /* ── FAQ ── */
  .faq-btn { font-size: 0.84rem; }

  /* ── Pain ── */
  .pain-item { padding: 1.1rem; gap: 0.75rem; }
  .pain-icon { width: 24px; height: 24px; font-size: 0.82rem; }
  .pain-item p { font-size: 0.84rem; }
}

/* Очень узкие экраны — заголовок hero без горизонтального скролла */
@media (max-width: 380px) {
  .hero-h1 .word {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .hero-h1 .word:nth-child(2) { padding-left: 0; }

  .hero-eyebrow__line--mobile {
    white-space: normal;
    text-align: left;
    line-height: 1.4;
  }

  .num-block { min-width: 0; }
  .num-big {
    font-size: clamp(2rem, 11vw, 2.75rem);
    white-space: normal;
  }

  .ticker-track { gap: 2rem; }
  .ticker-track span { font-size: 0.65rem; }

  /* ── Бренд в шапке ── */
  .logo .ailab-flask { width: 1.4em; }
  .logo .ailab-brand__ai { font-size: 0.98em; }
  .logo .ailab-brand__lab { font-size: 0.94em; letter-spacing: 0.09em; }
  .hdr-cta { font-size: 0.68rem; padding: 0.4rem 0.8rem; }

  /* ── Карточки ── */
  .p-card { padding: 1.2rem 0.9rem 1.25rem; }
  .step { padding: 1.4rem 0.9rem 1.5rem; }
  .income-card { padding: 1.3rem 0.9rem 1.45rem; }

  /* ── Секции: минимальный паддинг ── */
  .s-author, .s-income, .s-lifestyle, .s-faq, .s-pain, #s-whats-inside {
    padding-top: clamp(2.5rem, 7vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 7vw, 3.5rem);
  }
  .s-cta { padding-top: clamp(3rem, 9vw, 4.5rem); }

  /* ── Заголовки ── */
  .sec-title { font-size: clamp(1.35rem, 7.5vw, 2rem); }
  .cta-h { font-size: clamp(1.2rem, 7vw, 1.7rem); }

  /* ── Author ── */
  .author-visual { max-width: 200px; }
  .author-thumbs { gap: 3px; }

  /* ── Lightbox nav на очень узком ── */
  .ls-lb-nav { width: 36px; height: 36px; font-size: 1.2rem; }
}

/* Слабые устройства / тач — меньше нагрузки на фон и hover */
body.weak-device #liquid-canvas.ready { opacity: 0.42; }
@media (hover: none) {
  .income-card:hover,
  .step:hover,
  .ls-tile:hover img {
    transform: none;
  }
}

/* ═══════════════════════════════
   REDUCED MOTION
═══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .rv, .word, .hero-sub, .hero-flow, .hero-btns, .hero-eyebrow {
    opacity: 1 !important; transform: none !important;
    transition: none !important;
  }
  .ticker-track, .scroll-thumb { animation: none !important; }
}

/* ══ LIFESTYLE LIGHTBOX ══ */
.ls-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ls-lb--open { display: flex; }

.ls-lb__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #12131f;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
}

.ls-lb__img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.ls-lb__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ls-lb__info {
  padding: 0 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.ls-lb__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ls-lb-av {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(124,111,255,.25);
  border: 1px solid rgba(124,111,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--accent);
  flex-shrink: 0;
}
.ls-lb-av--f { background: rgba(255,100,180,.18); border-color: rgba(255,100,180,.35); color: #ff80c8; }

.ls-lb__name { font-weight: 600; font-size: .95rem; color: #fff; }
.ls-lb__dir  { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

.ls-lb__quote {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin: 0;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.04);
  border-left: 2px solid var(--accent);
  border-radius: 0 .5rem .5rem 0;
}

.ls-lb__result {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}

.ls-lb__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ls-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ls-lb__nav--prev { left: .6rem; }
.ls-lb__nav--next { right: .6rem; }

/* cursor pointer на тайлах */
.ls-tile { cursor: pointer; }
