/* BitkiCars — дизайн-система (ui-ux-pro-max: Dark OLED + gold, DM Sans).
   Без внешних фреймворков: чистый CSS, токены, адаптив, доступность. */

:root {
  /* Палитра — Tesla-style чёрный, минимум, золото-акцент точечно */
  --bg:        #000000;
  --bg-2:      #0A0A0C;
  --card:      #0E0E11;
  --card-2:    #16161A;
  --hairline:  rgba(255,255,255,.07);
  --hairline-2:rgba(255,255,255,.13);
  --text:      #FFFFFF;
  --text-2:    #9A9AA6;
  --text-3:    #5E5E68;
  --gold:      #E0A422;
  --gold-2:    #F2C14E;
  --green:     #32D74B;
  --red:       #FF453A;
  --amber:     #F5A623;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw:      1200px;
  --ease:      cubic-bezier(.16,1,.3,1);

  /* Типографика — чистый гротеск в духе Apple / Tesla */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Фоновое свечение */
.glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% -5%, rgba(224,164,34,.10), transparent 70%),
    radial-gradient(40% 40% at 100% 0%, rgba(224,164,34,.05), transparent 60%);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ── Прогресс скролла ── */
#scrollbar {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ── Навигация (прозрачная → плотная при скролле) ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav--solid {
  background: rgba(0,0,0,.66);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; object-fit: cover; display: block;
  border: 1px solid var(--hairline-2); box-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.nav__links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav__link {
  padding: 8px 14px; border-radius: 10px; color: var(--text-2);
  font-size: 15px; font-weight: 500; transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__link.is-active { color: var(--text); }
.nav__cta { margin-left: 8px; }
.nav__burger { display: none; background: none; border: 0; color: var(--text); padding: 8px; }

/* ── Кнопки ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; line-height: 1; transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #0A0A0B; }
.btn--gold:hover { filter: brightness(1.07); box-shadow: 0 8px 24px rgba(224,164,34,.28); }
.btn--ghost { background: var(--card); border-color: var(--hairline-2); color: var(--text); }
.btn--ghost:hover { background: var(--card-2); border-color: var(--gold); }
.btn--lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Hero ── */
.hero { padding: 86px 0 64px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  background: rgba(224,164,34,.10); border: 1px solid rgba(224,164,34,.22);
  color: var(--gold-2); font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 60px); line-height: 1.04; letter-spacing: -.03em;
  font-weight: 700; margin: 0 0 18px;
}
.hero h1 .accent { background: linear-gradient(135deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: clamp(16px, 2.4vw, 20px); color: var(--text-2); max-width: 640px; margin: 0 auto 30px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Сетки/секции ── */
.section { padding: 56px 0; }
.section__head { text-align: center; margin-bottom: 40px; }
.section__head h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -.02em; margin: 0 0 10px; }
.section__head p { color: var(--text-2); font-size: 17px; margin: 0; }
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--cars { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ── Карточки ── */
.card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 24px; transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.card--feature { padding: 28px; }
.card--link:hover { border-color: var(--gold); transform: translateY(-3px); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(224,164,34,.10); color: var(--gold-2); margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--text-2); font-size: 15px; }

/* ── Карточка авто (лот/объявление) ── */
.lot {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s var(--ease), transform .2s var(--ease);
  display: flex; flex-direction: column;
}
.lot:hover { border-color: var(--hairline-2); transform: translateY(-2px); }
.lot__media { position: relative; aspect-ratio: 4/3; background: var(--card-2); overflow: hidden; }
.lot__media img { width: 100%; height: 100%; object-fit: cover; }
.lot__media .skeleton { position: absolute; inset: 0; }
.lot__badge {
  position: absolute; top: 10px; right: 10px; padding: 5px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 700; background: rgba(10,10,11,.78); backdrop-filter: blur(6px);
}
.lot__badge.pos { color: var(--green); } .lot__badge.neg { color: var(--red); }
.lot__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lot__title { font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.lot__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); }
.lot__row b { color: var(--text); font-weight: 600; }
.lot__price { font-size: 20px; font-weight: 700; }
.lot__sub { font-size: 13px; color: var(--text-3); }

/* ── Формы ── */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 7px; letter-spacing: .01em; }
.input, .select, .textarea {
  width: 100%; padding: 13px 14px; border-radius: 12px; background: var(--bg-2);
  border: 1px solid var(--hairline-2); color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color .2s var(--ease);
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--gold); }
.textarea { resize: vertical; min-height: 96px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 14px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--hairline-2);
  color: var(--text-2); font-size: 14px; font-weight: 500; transition: all .15s var(--ease);
}
.chip.is-active { background: var(--gold); border-color: var(--gold); color: #0A0A0B; font-weight: 700; }

/* Загрузка фото */
.dropzone {
  border: 2px dashed var(--hairline-2); border-radius: var(--radius); padding: 28px;
  text-align: center; color: var(--text-2); transition: border-color .2s var(--ease), background .2s var(--ease);
}
.dropzone:hover { border-color: var(--gold); background: rgba(224,164,34,.04); }
.thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.thumb { width: 84px; height: 84px; border-radius: 10px; object-fit: cover; border: 1px solid var(--hairline-2); }

/* ── Утилиты ── */
.muted { color: var(--text-2); }
.center { text-align: center; }
.spinner {
  width: 22px; height: 22px; border: 2.5px solid rgba(255,255,255,.18);
  border-top-color: var(--gold); border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton {
  background: linear-gradient(100deg, var(--card-2) 30%, #25252c 50%, var(--card-2) 70%);
  background-size: 200% 100%; animation: shimmer 1.3s infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
/* Кинематографичные reveal-варианты (data-reveal) */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-reveal="up"]    { transform: translateY(48px); }
.reveal[data-reveal="scale"] { transform: scale(.92); }
.reveal[data-reveal="left"]  { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal[data-reveal="blur"]  { filter: blur(14px); transform: translateY(20px); }
.reveal[data-reveal="blur"].in { filter: blur(0); }
.reveal[data-reveal="clip"]  { clip-path: inset(0 0 100% 0); transform: none; opacity: 1; transition: clip-path 1s var(--ease); }
.reveal[data-reveal="clip"].in { clip-path: inset(0 0 0 0); }

/* Progress (скан) */
.progress { height: 6px; border-radius: 999px; background: var(--card-2); overflow: hidden; }
.progress__bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); width: 0; transition: width .3s var(--ease); }

/* Баннер/нотис */
.notice {
  display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: 12px;
  background: rgba(245,166,35,.08); border: 1px solid rgba(245,166,35,.22); color: var(--amber); font-size: 14px;
}
.notice svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── CTA-полоса ── */
.cta {
  background: linear-gradient(135deg, rgba(224,164,34,.14), rgba(224,164,34,.04));
  border: 1px solid rgba(224,164,34,.22); border-radius: var(--radius-lg); padding: 48px; text-align: center;
}
.cta h2 { font-size: clamp(24px, 3.6vw, 34px); margin: 0 0 12px; letter-spacing: -.02em; }
.cta p { color: var(--text-2); max-width: 520px; margin: 0 auto 26px; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--hairline); padding: 40px 0; margin-top: 40px; color: var(--text-3); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer a { color: var(--text-2); font-size: 14px; }
.footer a:hover { color: var(--text); }

/* ── Модалка ── */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__bg { position: absolute; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }
.modal__card { position: relative; background: var(--card); border: 1px solid var(--hairline-2); border-radius: var(--radius-lg); max-width: 560px; width: 100%; max-height: 88vh; overflow: auto; }

/* ── Адаптив ── */
@media (max-width: 920px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .nav__links { position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--hairline); padding: 12px 20px; gap: 4px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .2s var(--ease); }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__burger { display: block; margin-left: auto; }
  .nav__cta { margin: 8px 0 0; }
}
@media (max-width: 560px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .row2, .row3 { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 40px; }
  .section { padding: 40px 0; }
  .cta { padding: 32px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════════
   Кинематографичный слой (Tesla-style) — полноэкранные сцены
   ════════════════════════════════════════════════════════════ */

/* Контент уезжает под фикс-навбар — компенсируем на сценах сами */
.scene {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; text-align: center; overflow: hidden; padding: 96px 20px;
}
.scene__inner { position: relative; z-index: 2; max-width: 860px; }
.scene__bg { position: absolute; inset: 0; z-index: 0; }

/* Хедлайны кинематографичные */
.display {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 100px); line-height: 1.03; letter-spacing: -.045em;
  font-weight: 700; margin: 0;
}
.display--thin { font-weight: 500; letter-spacing: -.035em; }
.feature-scene h2, .compare-head { font-family: var(--font-display); font-weight: 700; letter-spacing: -.035em; }
.stats-strip .num { font-family: var(--font-display); }
.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--text-2); max-width: 580px; margin: 24px auto 0; line-height: 1.55; font-weight: 400; }
.kicker { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; margin-bottom: 22px; }

/* Hero: анимированное золотое свечение + «дорога» */
.hero-scene__glow {
  position: absolute; left: 50%; top: 38%; width: 120vw; height: 70vh; transform: translate(-50%,-50%);
  background: radial-gradient(45% 50% at 50% 50%, rgba(224,164,34,.18), rgba(224,164,34,.04) 45%, transparent 70%);
  filter: blur(20px); animation: breathe 7s var(--ease) infinite;
}
@keyframes breathe { 0%,100% { opacity: .7; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); } }
.hero-scene__grid {
  position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: var(--text-3); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .2em;
}
.hero-scroll .mouse { width: 24px; height: 38px; border: 2px solid var(--hairline-2); border-radius: 14px; position: relative; }
.hero-scroll .mouse::after { content: ''; position: absolute; top: 7px; left: 50%; width: 4px; height: 7px; background: var(--gold-2); border-radius: 3px; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,12px); } }

/* Анимированная градиент-надпись */
.shine {
  background: linear-gradient(100deg, #fff 20%, var(--gold-2) 40%, #fff 60%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

/* Полноэкранная фича-сцена со сплитом текст/визуал */
.feature-scene { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: var(--maxw); margin: 0 auto; text-align: left; }
.feature-scene h2 { font-size: clamp(30px, 4.4vw, 50px); letter-spacing: -.03em; line-height: 1.05; margin: 0 0 18px; }
.feature-scene p { color: var(--text-2); font-size: 18px; line-height: 1.6; margin: 0 0 26px; }
.feature-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  border: 1px solid var(--hairline); background:
    radial-gradient(120% 120% at 0% 0%, rgba(224,164,34,.14), transparent 50%),
    linear-gradient(160deg, #141417, #050506);
}
.feature-visual .orb { position: absolute; inset: 0; background: radial-gradient(40% 40% at 70% 30%, rgba(224,164,34,.22), transparent 60%); animation: breathe 6s var(--ease) infinite; }
.feature-visual .ico { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.10); }
.feature-visual .ico svg { width: 44%; height: 44%; }

/* Хоризонтальная лента стейтов */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--hairline); border-radius: var(--radius-lg); overflow: hidden; }
.stats-strip .stat { background: var(--bg); padding: 38px 20px; text-align: center; }
.stats-strip .num { font-size: clamp(34px,5vw,52px); font-weight: 700; letter-spacing: -.03em; background: linear-gradient(135deg,#fff,var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-strip .lbl { color: var(--text-2); font-size: 14px; margin-top: 6px; }

@media (max-width: 860px) {
  .feature-scene { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .feature-scene.rev .feature-visual { order: -1; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .scene { min-height: auto; padding: 80px 20px; }
}
@media (max-width: 560px) { .stats-strip { grid-template-columns: 1fr; } }

/* Тул-страницы (main) — отступ под фиксированный навбар */
main.section { padding-top: 96px; }

/* ════════════════════════════════════════════════════════════
   Hero-сцена «падение и рестайлинг» (scroll-driven)
   ════════════════════════════════════════════════════════════ */
/* ════════ HERO: кинематографичная сцена нового X5 ════════ */
.hero-cine { height: auto; position: relative; }
.hero-cine__sticky { position: relative; min-height: 100vh; overflow: hidden; display: grid; place-items: center; padding: 80px 0; }
/* радиальный «прожектор» сцены */
.stage-glow {
  position: absolute; left: 50%; top: 48%; width: 86vw; height: 86vh; transform: translate(-50%,-50%); z-index: 1;
  background: radial-gradient(42% 44% at 50% 50%, rgba(224,164,34,.24), rgba(224,164,34,.05) 46%, transparent 70%);
  filter: blur(34px); opacity: 0; transition: opacity 1.6s var(--ease); will-change: opacity;
}
.hero-cine.lit .stage-glow { opacity: 1; animation: breathe 9s var(--ease) infinite 1.6s; }
.stage-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: radial-gradient(78% 66% at 50% 50%, #000 22%, transparent 80%);
}
.hero-cine__wrap {
  position: relative; z-index: 3; width: 100%; max-width: 920px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr; gap: 18px; place-items: center; text-align: center;
}
.hero-cine__copy { text-align: center; }
.hero-cine__copy .display { font-size: clamp(44px, 7vw, 96px); }
.hero-cine__copy .lead { margin: 22px auto 0; max-width: 560px; }
.hero-cine__copy .hero__actions { justify-content: center; }

/* ════════ Рестайлинг: интерактивная шторка «было → стало» ════════ */
.compare {
  position: relative; width: 100%; max-width: 940px; margin: 40px auto 0; aspect-ratio: 16/10;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hairline);
  background: radial-gradient(120% 120% at 62% 8%, rgba(224,164,34,.13), transparent 55%), linear-gradient(160deg,#141417,#050506);
  user-select: none; touch-action: pan-y; cursor: ew-resize; --split: 50%;
}
.compare__layer { position: absolute; inset: 0; display: grid; place-items: center; padding: 7% 8% 10%; }
.compare__layer img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.compare__old { clip-path: inset(0 calc(100% - var(--split)) 0 0); }
.compare__old img { filter: grayscale(.85) brightness(.66) contrast(1.05); }
.compare__divider {
  position: absolute; top: 0; bottom: 0; left: var(--split); width: 2px; z-index: 4; transform: translateX(-1px);
  background: linear-gradient(180deg, var(--gold-2), var(--gold)); box-shadow: 0 0 18px rgba(242,193,78,.55);
}
.compare__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%;
  background: rgba(10,10,11,.82); border: 1px solid var(--gold-2); display: grid; place-items: center; backdrop-filter: blur(6px);
  box-shadow: 0 6px 22px rgba(0,0,0,.5);
}
.compare__handle svg { width: 22px; height: 22px; color: var(--gold-2); }
.compare__tag {
  position: absolute; bottom: 16px; z-index: 4; font-size: 13px; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px;
  background: rgba(0,0,0,.5); border: 1px solid var(--hairline-2); backdrop-filter: blur(6px);
}
.compare__tag--l { left: 16px; color: var(--text-2); }
.compare__tag--r { right: 16px; color: var(--gold-2); }

@media (max-width: 880px) {
  .hero-cine { height: auto; }
  .hero-cine__sticky { position: relative; height: auto; min-height: 100vh; padding: 96px 0 40px; }
  .hero-cine__wrap { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .hero-cine__copy { text-align: center; }
  .hero-cine__copy .lead { margin: 22px auto 0; }
  .hero-cine__copy .hero__actions { justify-content: center; }
}

/* Статичный fallback при reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-cine { height: auto; }
  .hero-cine__sticky { position: relative; height: auto; min-height: 90vh; padding: 96px 0 40px; }
  .hero-cine.lit .stage-glow { animation: none; }
}

/* Иконка «мышки» — общая (hero-hint и drop-hint) */
.mouse { width: 24px; height: 38px; border: 2px solid var(--hairline-2); border-radius: 14px; position: relative; }
.mouse::after { content: ''; position: absolute; top: 7px; left: 50%; width: 4px; height: 7px; background: var(--gold-2); border-radius: 3px; transform: translateX(-50%); animation: wheel 1.6s infinite; }

/* ════════ Интерактивные эффекты (нативно, в духе 21st.dev) ════════ */

/* 1. Spotlight — свечение за курсором. Подсветка + рамка тянутся к --mx/--my */
.spotlight { position: relative; isolation: isolate; }
.spotlight::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .35s var(--ease);
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(224,164,34,.16), transparent 42%);
}
.spotlight:hover::before { opacity: 1; }
/* золотая «обводка-блик», тоже следует за курсором */
.spotlight::after {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 1px; pointer-events: none;
  opacity: 0; transition: opacity .35s var(--ease);
  background: radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(242,193,78,.55), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.spotlight:hover::after { opacity: 1; }

/* 2. Магнитные кнопки — JS двигает --tx/--ty, лёгкий доводчик */
.magnetic { transition: transform .25s var(--ease); }
.magnetic.is-pulling { transition: transform .08s linear; }

/* 4. Marquee — бесконечная лента источников */
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 10px; color: var(--text-2); font-size: 17px; font-weight: 600; letter-spacing: .01em; white-space: nowrap; }
.marquee__item svg { width: 18px; height: 18px; color: var(--gold-2); opacity: .9; }
.marquee__item b { color: var(--text); font-weight: 700; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .spotlight::before, .spotlight::after { display: none; }
}

/* ════════ Неоновый «маршрут навигатора» сквозь все CTA ════════ */
#routeLine { position: absolute; left: 0; top: 0; z-index: 4; pointer-events: none; overflow: visible; }
.rl-base  { stroke: var(--gold); stroke-width: 2; opacity: .16; stroke-linecap: round; stroke-linejoin: round;
            filter: drop-shadow(0 0 4px rgba(224,164,34,.5)); }
.rl-trail { stroke: url(#rlGrad); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
            filter: drop-shadow(0 0 6px rgba(242,193,78,.8)) drop-shadow(0 0 14px rgba(242,193,78,.45)); }
.rl-pulse { stroke: #FFF6DA; stroke-width: 3; stroke-linecap: round;
            filter: drop-shadow(0 0 8px #F2C14E) drop-shadow(0 0 16px #F2C14E); }
.rl-dot   { fill: #0A0A0B; stroke: var(--gold); stroke-width: 2; transition: fill .35s var(--ease), stroke .35s var(--ease), filter .35s var(--ease); }
.rl-dot.active { fill: var(--gold-2); stroke: var(--gold-2); filter: drop-shadow(0 0 9px #F2C14E); }
@media (prefers-reduced-motion: reduce) { #routeLine { display: none; } }

/* ════════ Плавающая кнопка обратной связи (Telegram-менеджер) ════════ */
.fab-tg {
  position: fixed; right: 20px; bottom: 20px; z-index: 55;
  display: flex; align-items: center; gap: 9px; padding: 13px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #0A0A0B; font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 30px rgba(224,164,34,.32), 0 2px 8px rgba(0,0,0,.4);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); cursor: pointer;
}
.fab-tg svg { width: 20px; height: 20px; }
.fab-tg:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(224,164,34,.42), 0 2px 8px rgba(0,0,0,.4); }
.fab-tg:active { transform: translateY(0); }
@media (max-width: 560px) { .fab-tg span { display: none; } .fab-tg { padding: 14px; } }
