/* ════════════════════════════════════════════════════════════════════
   ФОНЕМА — Скролл-лендинг
   Палитра: ТЁМНАЯ (#000 base) + landing surface tokens + фиолетовый акцент
   Геометрия: rounded-2xl (16px) карточки, pill-кнопки (rounded-full)
   ════════════════════════════════════════════════════════════════════ */

:root {
  /* Высота nav */
  --nav-h: 52px;

  /* Тёмная базовая палитра (page background #000000) */
  --bg:         #000000;
  --bg-1:       #0a0a0a;   /* секция alt */
  --bg-2:       #161616;   /* карточка */
  --bg-3:       #1a1a1a;   /* elevated карточка */
  --bg-hover:   #252525;
  --bg-surface: rgba(255,255,255,0.10);
  --bg-surface-hover: rgba(255,255,255,0.16);

  /* Текст (светлый на тёмном) */
  --text-hi:  #fafafa;
  --text-mid: #a1a1aa;
  --text-low: #71717a;
  --text-dim: #52525b;

  /* Линии (полупрозрачные белые) */
  --line:     rgba(255,255,255,0.10);
  --line-2:   rgba(255,255,255,0.14);
  --line-hov: rgba(255,255,255,0.22);

  /* 🔴 Фиолетовый акцент */
  --accent:   #2a94eb;
  --accent-h: #4da7f0;
  --accent-bg: rgba(42,148,235,0.12);
  --accent-ring: rgba(42,148,235,0.35);

  /* Status */
  --ok:   #4ade80;
  --warn: #facc15;
  --err:  #f87171;

  /* Радиусы — rounded-2xl стиль (все карточки скруглённые) */
  --r-xs: 4px; --r-sm: 6px; --r: 8px;
  --r-md: 12px; --r-lg: 16px; --r-xl: 20px;
  --r-pill: 9999px;  /* pill-кнопки */

  /* Шрифты */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Courier New', monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur: 220ms;
  --dur-slow: 360ms;

  --container: 1080px;
  --container-narrow: 760px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-hi);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ════════════════════════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════════════════════════ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 88px 0; position: relative; border-top: 1px solid var(--line); }
.section--tight { padding: 56px 0; }
.section--bg1 { background: var(--bg-1); }
.section--accent {
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 16px;
}
.section__title--sm { font-size: clamp(1.4rem, 2vw, 1.85rem); }
.section__sub {
  font-size: 1.05rem;
  color: var(--text-low);
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════════════════
   BUTTONS — угловатые (radius 0)
   ════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-pill);  /* PILL-кнопки: rounded-full */
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: rgba(255,255,255,0.8);
  color: #000;
}
.btn--primary:hover { background: #fff; }
.btn--ghost {
  background: var(--bg-surface);
  color: var(--text-hi);
  border-color: var(--line);
  backdrop-filter: blur(2.5px);
}
.btn--ghost:hover {
  background: var(--bg-surface-hover);
  color: #fff;
  border-color: var(--line-hov);
}
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ════════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #050510;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: border-color var(--dur) var(--ease);
}
/* Тёмная nav — светлый текст (!important из-за дублей ниже в файле) */
.nav, .nav__brand, .nav__logo, .nav__phone { color: #f4f4f5 !important; }
.nav__links a { color: #a1a1aa !important; }
.nav__links a:hover { color: #f4f4f5 !important; }
.nav__phone:hover { color: #ffffff !important; }
.nav__burger span { background: #f4f4f5; }
.nav.scrolled { border-bottom-color: rgba(255,255,255,0.08); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0;            /* знак-Ф + «онема» впритык */
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav__logo-mark { display: inline-flex; color: var(--accent); }
.nav__links { display: flex; gap: 24px; margin-left: 16px; }
.nav__links a {
  font-size: 14px;
  transition: color var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--text-hi); }
.nav__meta { margin-left: auto; display: flex; align-items: center; gap: 16px; }
/* Кнопки в хедере: мельче шрифт, больше внутренний отступ */
.nav__meta .btn--sm { font-size: 13px; padding: 11px 24px; }

.nav__phone {
  font-family: var(--font-mono);
  font-size: 13px;
  transition: color var(--dur) var(--ease);
}
.nav__phone:hover { color: var(--text-hi); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none; border: 0; cursor: pointer;
  padding: 6px; margin-left: auto;
}
.nav__burger span { width: 22px; height: 2px; background: #f4f4f5; }
@media (max-width: 880px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  /* Кнопка «Записаться» прижата к правому краю */
  .nav__meta { margin-left: auto; gap: 8px; }
  .nav__burger { margin-left: 0; order: 3; }
  /* Hero оффер: поднять выше + уменьшить шрифты */
  .hero { padding-top: 32px; align-items: flex-start; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 2.6rem) !important; }
  .hero__sub { font-size: 1rem !important; }
  .hero__sub-wrap { max-width: 85%; }
  .hero__badge { font-size: 10px; padding: 5px 10px; }
  .hero__cta .btn { padding: 12px 18px; font-size: 14px; }
  .hero__cta { gap: 8px; }
  .hero__price { font-size: 11px; }
  .hero__price-num { font-size: 18px; }
}

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));  /* весь экран минус nav */
  display: flex;
  align-items: center;
  padding: 80px 0 72px;
  overflow: hidden;
  background: #050510;
  color: #f4f4f5;
}
/* Текст hero не должен налезать на чёрный круг справа.
   padding-right: 30vw оставляет место под круг (он шириной ~26vw). */
.hero .container.hero__inner { padding-right: max(24px, 14vw); }
/* Hero на тёмном фоне — светлый текст (!important, т.к. ниже есть дубли правил) */
.hero__title { color: #f4f4f5 !important; }
.hero__sub { color: #a1a1aa !important; }
.hero__price { color: #82828c !important; }
.hero__price-num { color: #f4f4f5 !important; }
.hero__badge {
  background: rgba(42,148,235,0.15) !important;
  border-color: rgba(42,148,235,0.4) !important;
  color: #8ec8f6 !important;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-bg);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--accent-ring);
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42,148,235,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(42,148,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,148,235,0); }
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 0 0 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub-wrap {
  max-width: 520px;       /* узкая обёртка подзаголовка, не зависит от контейнера */
  margin-bottom: 32px;
}
.hero__sub {
  font-size: 1.2rem;
  font-weight: 300;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__cta .btn--ghost svg { color: var(--accent); }
/* Ghost-кнопка в hero (тёмный фон): светлая обводка + светлый текст */
.hero__cta .btn--ghost {
  background: transparent !important;
  color: #f4f4f5 !important;
  border-color: rgba(255,255,255,0.4) !important;
}
.hero__cta .btn--ghost:hover {
  background: rgba(255,255,255,0.1) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.7) !important;
}
.hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.hero__price-num {
  font-size: 22px;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════════
   DEMO CASSETTES (audio players)
   ════════════════════════════════════════════════════════════════════ */
.cassettes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}
.cassette {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}
.cassette:hover { border-color: var(--line-hov); }
.cassette__play {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.cassette__play:hover { background: var(--accent-h); }
.cassette__play:disabled {
  background: var(--bg-2);
  color: var(--text-dim);
  cursor: not-allowed;
}
.cassette__play svg { width: 18px; height: 18px; }
.cassette__body { flex: 1; min-width: 0; }
.cassette__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.cassette__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-hi);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cassette__progress {
  height: 3px;
  background: var(--bg-2);
  margin-top: 10px;
  overflow: hidden;
}
.cassette__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 100ms linear;
}
.cassette__time {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-low);
}
.cassette__soon {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 4px 10px;
  border: 1px solid var(--line);
}

/* ════════════════════════════════════════════════════════════════════
   LEAD INLINE FORM
   ════════════════════════════════════════════════════════════════════ */
.lead-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.lead-inline__text { flex: 1; min-width: 260px; }
.lead-inline__text .section__title,
.lead-inline__text .section__sub { margin-bottom: 0; }
/* В секции lead-1 форма и заголовок — компактнее */
#lead-1 .section__sub { margin-bottom: 12px; }
#lead-1.section { padding: 36px 0; }
.form-inline { display: flex; gap: 8px; flex-wrap: wrap; }
.form-inline input {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 13px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text-hi);
  width: 200px;
  transition: border-color var(--dur) var(--ease);
}
.form-inline input:focus { outline: none; border-color: var(--accent); }
.form-inline input::placeholder { color: var(--text-dim); }

/* ════════════════════════════════════════════════════════════════════
   STATS — тёмная секция с большими цифрами
   ════════════════════════════════════════════════════════════════════ */
#stats { background: var(--bg-2); color: var(--text-hi); border-top: 1px solid var(--text-hi); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: left; }
.stat__value {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat__label {
  font-size: 13px;
  color: rgba(250,250,250,0.65);
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
}

/* ════════════════════════════════════════════════════════════════════
   GRIDS — каждая секция со своим визуальным подходом (НЕ одинаковые)
   ════════════════════════════════════════════════════════════════════ */
.grid { display: grid; gap: 0; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2x2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 880px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2x2 { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────────────────────────────
   ЦЕНА БЕЗДЕЙСТВИЯ — список потерь с красными ×, без карточек
   ─────────────────────────────────────────────────────────────────── */
.pains-list { display: flex; flex-direction: column; }
.pain {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.pain:last-child { border-bottom: 1px solid var(--line); }
.pain__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--err);
  padding-top: 3px;
  letter-spacing: 0.04em;
}
.pain__num::before { content: '× '; }
.pain__title { font-size: 19px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.pain__text { font-size: 15px; color: var(--text-mid); line-height: 1.55; font-weight: 300; }

/* ───────────────────────────────────────────────────────────────────
   01 · ВОЗМОЖНОСТИ — крупные иконки в кругах + много воздуха
   ─────────────────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
.feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}
.feature__icon-wrap {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  border: 1px solid var(--accent-ring);
}
.feature__icon-wrap svg { width: 26px; height: 26px; color: var(--accent); }
.feature__title { font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.feature__text { font-size: 14.5px; color: var(--text-mid); line-height: 1.55; font-weight: 300; }
@media (max-width: 720px) { .features-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ───────────────────────────────────────────────────────────────────
   05 · СЦЕНАРИИ — карточки с заливкой + фиолетовый top-border
   ─────────────────────────────────────────────────────────────────── */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.case:hover { transform: translateY(-3px); border-top-color: var(--accent-h); }
.case__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.case__title { font-size: 17px; font-weight: 700; margin-bottom: 18px; line-height: 1.3; letter-spacing: -0.01em; }
.case__rows { margin-bottom: 18px; }
.case__row { margin-bottom: 12px; }
.case__row-k {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.case__row-v { font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.5; }
.case__result {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}
@media (max-width: 880px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cases-grid { grid-template-columns: 1fr; } }

/* ───────────────────────────────────────────────────────────────────
   06 · ВЫГОДА — тёмная полоса с гигантскими цифрами
   ─────────────────────────────────────────────────────────────────── */
#benefits { background: var(--bg-2); color: var(--text-hi); border-top: 1px solid var(--text-hi); }
#benefits .eyebrow,
#benefits .section__title { color: var(--text-hi); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.benefit { padding: 0; }
.benefit__value {
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: var(--accent);
  margin-bottom: 14px;
}
.benefit__label { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-hi); letter-spacing: -0.01em; }
.benefit__text { font-size: 14px; color: rgba(250,250,250,0.65); line-height: 1.55; font-weight: 300; }
@media (max-width: 720px) { .benefits-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ───────────────────────────────────────────────────────────────────
   07 · ВНЕДРЕНИЕ — горизонтальная timeline с кругами-номерами
   ─────────────────────────────────────────────────────────────────── */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.timeline-step {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}
.timeline-step__circle {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.timeline-step__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.timeline-step__text { font-size: 14.5px; color: var(--text-mid); line-height: 1.55; font-weight: 300; }
@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .timeline-step { padding: 0; }
}

/* ════════════════════════════════════════════════════════════════════
   CHIPS + CHECKLIST
   ════════════════════════════════════════════════════════════════════ */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text-hi);
}
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 760px;
}
.checklist li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-mid);
  align-items: flex-start;
  font-weight: 300;
}
.checklist li::before {
  content: '→';
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 720px) { .checklist { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════════
   VOICE SAMPLES
   ════════════════════════════════════════════════════════════════════ */
.voice-samples { display: flex; gap: 10px; flex-wrap: wrap; }
.voice-sample {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.voice-sample:hover { border-color: var(--line-hov); }
.voice-sample__play {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 0;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.voice-sample__play svg { width: 14px; height: 14px; }
.voice-sample__label { font-size: 14px; color: var(--text-hi); }

/* ════════════════════════════════════════════════════════════════════
   DEMO PHONE
   ════════════════════════════════════════════════════════════════════ */
.demo-phone { text-align: center; margin: 36px 0 24px; }
.demo-phone__number {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  padding: 20px 32px;
  border: 2px solid var(--accent);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.demo-phone__number:hover { background: var(--accent); color: #fff; }
.demo-phone__hint {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-hi);
  opacity: 0.7;
  margin-top: 14px;
}
.demo-disclaimer {
  font-size: 13px;
  color: var(--text-hi);
  opacity: 0.6;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════════════════
   CASES / BENEFITS / TIMELINE — стили заданы выше, в секции GRIDS.
   Каждая секция со своим уникальным визуальным подходом.
   ════════════════════════════════════════════════════════════════════
   PRICING — с spotlight-border и feature rows
   ════════════════════════════════════════════════════════════════════ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }

/* Универсальный SpotlightBorder: курсор-следящий 1px ring через CSS mask.
   Применяется к ЛЮБОЙ карточке: .plan, .case, .testimonial, .tab-panel__item */
.spotlight-card {
  position: relative;
  border-radius: var(--r-lg);
  --spot-x: -9999px;
  --spot-y: -9999px;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: radial-gradient(circle 460px at var(--spot-x) var(--spot-y), rgba(42,148,235,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  z-index: 0;
}
.spotlight-card:hover::before { opacity: 1; }
/* Класс-алиас для тарифов */
.plan-spotlight { /* наследует от spotlight-card через main.js добавление класса */ }

.plan {
  padding: 32px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.plan:hover { transform: translateY(-3px); }

/* Popular plan: тёмный фон, pill-badge сверху */
.plan--popular {
  background: #1a1a17;
  color: #f4f4f5;
  border-color: rgba(42,148,235,0.3);
}
.plan--popular .plan__tag { color: var(--accent); }
.plan--popular .plan__est { color: rgba(244,244,245,0.65); }
.plan--popular .plan__features li { color: rgba(244,244,245,0.85); }
.plan--popular .plan__features li--excluded { color: rgba(244,244,245,0.40); }

/* Pill-бейдж «Выбор большинства» */
.plan__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #1a1a17;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  z-index: 1;
}

.plan__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.plan__name { font-size: 22px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.01em; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.plan__price-num {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.plan__price-unit { font-size: 1rem; color: var(--text-low); }
.plan--popular .plan__price-unit { color: rgba(244,244,245,0.65); }
.plan__price-old {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.plan__est { font-size: 13px; color: var(--text-mid); margin-bottom: 22px; min-height: 18px; font-weight: 300; }

/* Feature rows с иконками ✓/✗ в кружках */
.plan__features { list-style: none; margin: 0 0 26px; display: flex; flex-direction: column; gap: 0; }
.plan__features li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  align-items: center;
  font-weight: 300;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.plan__features li:last-child { border-bottom: 0; }
.plan__feature-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}
.plan__feature-icon--included {
  border-color: rgba(42,148,235,0.3);
  background: rgba(42,148,235,0.08);
  color: var(--accent);
}
.plan__feature-icon--excluded {
  color: var(--text-dim);
}
.plan__features li--excluded { color: var(--text-dim); }

.plan .btn { margin-top: auto; }
@media (max-width: 880px) {
  .pricing { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════════════════════════ */
/* FAQ — chat-style: вопрос как реплика пользователя, ответ от Фонемы */
.faq-chat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-dialog {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Вопрос (реплика пользователя) — справа */
.faq-q {
  align-self: flex-end;
  max-width: 75%;
  padding: 14px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg) var(--r-lg) var(--r-xs) var(--r-lg);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-hi);
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-q:hover {
  background: var(--bg-surface-hover);
  border-color: var(--line-hov);
}
.faq-q__icon {
  flex-shrink: 0;
  color: var(--text-low);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
  font-size: 14px;
}
.faq-dialog.open .faq-q__icon { transform: rotate(45deg); color: var(--accent); }
.faq-dialog.open .faq-q { border-color: var(--accent-ring); }

/* Ответ (реплика Фонемы) — слева, с аватаром */
.faq-a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 80%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--dur-slow) var(--ease), max-height var(--dur-slow) var(--ease);
}
.faq-dialog.open .faq-a {
  opacity: 1;
  max-height: 400px;
}
.faq-a__avatar {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.faq-a__bubble {
  padding: 14px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg) var(--r-lg) var(--r-lg) var(--r-xs);
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}
.faq-a__bubble strong { color: var(--text-hi); font-weight: 600; }

@media (max-width: 560px) {
  .faq-q { max-width: 88%; font-size: 14px; }
  .faq-a { max-width: 90%; }
  .faq-a__bubble { font-size: 13.5px; }
}

/* ════════════════════════════════════════════════════════════════════
   FINAL FORM CARD
   ════════════════════════════════════════════════════════════════════ */
#final-form .section__title,
#final-form .section__sub,
#final-form .eyebrow,
#final-form .demo-disclaimer { color: var(--text-hi); }
#final-form .section__sub { color: rgba(250,250,250,0.7); }
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(250,250,250,0.15);
  padding: 28px;
  margin-top: 32px;
}
.form-card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.form-card input {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(250,250,250,0.2);
  color: var(--text-hi);
  width: 100%;
  transition: border-color var(--dur) var(--ease);
}
.form-card input:focus { outline: none; border-color: var(--accent); }
.form-card input::placeholder { color: rgba(250,250,250,0.4); }
@media (max-width: 560px) { .form-card__row { grid-template-columns: 1fr; } }

.trust {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.5);
}
.trust span:not(:last-child)::after { content: '·'; margin-left: 16px; }

.form__status {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  background: var(--bg);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer__brand { display: flex; align-items: center; gap: 0; font-weight: 700; font-size: 18px; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a { font-size: 14px; color: var(--text-mid); }
.footer__links a:hover { color: var(--text-hi); }
.footer__legal { font-size: 12px; color: var(--text-dim); max-width: 380px; line-height: 1.7; text-align: right; font-weight: 300; }
.footer__copy { font-size: 12px; color: var(--text-dim); padding-top: 24px; border-top: 1px solid var(--line); }
@media (max-width: 720px) {
  .footer__inner { flex-direction: column; }
  .footer__legal { text-align: left; }
}

/* ════════════════════════════════════════════════════════════════════
   АНИМАЦИИ — «живость» лендинга
   Сдержанно: только появление при скролле + микровзаимодействия.
   Уважение prefers-reduced-motion (доступность).
   ════════════════════════════════════════════════════════════════════ */

/* ── 1. Появление при скролле (fade-up с stagger) ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease) var(--reveal-delay, 0ms),
              transform 0.6s var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal--in {
  opacity: 1;
  transform: none;
}

/* ── 2. NAV: hide-on-scroll-down, show-on-scroll-up ───────────────── */
.nav {
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav--hidden {
  transform: translateY(-100%);
}

/* ── 3. HERO glow-параллакс на mouse-move ─────────────────────────── */
/* ── 3. HERO glow-параллакс на mouse-move ─────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

/* 3D-визуализация голоса (Three.js) — справа в hero, под текстом */
.hero__wave3d {
  position: absolute;
  top: 50%;
  right: 6%;
  width: min(60vh, 39vw);
  height: min(60vh, 39vw);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 880px) {
  .hero__wave3d {
    top: 50%;
    left: auto;
    right: -57vw;            /* наполовину за правым краем экрана */
    transform: translateY(-50%);
    width: 114vw;            /* ×2 больше */
    height: 114vw;
  }
}

/* (убрано: затемнение/glow поверх hero — было визуальным мусором) */





/* (убрано: .hero::before glow — визуальный мусор) */
/* ── 4. Кнопки: тактильный отклик ─────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn--primary:hover {
  box-shadow: 0 8px 24px -8px rgba(42,148,235,0.5);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  position: relative;
}
.btn--ghost::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.btn--ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── 5. Карточки/ссылки: лёгкий «подъём» при hover ────────────────── */
.case {
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              border-top-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -16px rgba(42,148,235,0.4);
}

.cassette {
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.cassette:hover {
  border-color: var(--accent-ring);
  transform: translateX(4px);
}

.plan {
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.3);
}

.feature__icon-wrap {
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.feature:hover .feature__icon-wrap {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}
.feature:hover .feature__icon-wrap svg {
  color: #fff;
}
.feature__icon-wrap svg {
  transition: color var(--dur) var(--ease);
}

.timeline-step__circle {
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.timeline-step:hover .timeline-step__circle {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

/* ── 6. Демо-телефон: пульсация (намёк «позвони») ─────────────────── */
.demo-phone__number {
  position: relative;
}
.demo-phone__number::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--accent);
  opacity: 0;
  pointer-events: none;
  animation: ringPulse 2.4s var(--ease) infinite;
}
@keyframes ringPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.08); }
}

/* ── 7. Ссылки nav/footer: подчёркивание при hover ────────────────── */
.nav__links a,
.footer__links a {
  position: relative;
}
.nav__links a::after,
.footer__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover::after,
.footer__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── 8. Stats: «набегание» цифр при появлении ─────────────────────── */
.stat__value {
  background: linear-gradient(120deg, currentColor 30%, var(--accent) 50%, currentColor 70%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 1.2s var(--ease);
}
.stat.reveal--in .stat__value {
  background-position: 0 0;
}

/* ── 9. Доступность: отключаем всё при reduced-motion ──────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   НОВЫЕ СЕКЦИИ (по структуре voicelines): scenarios, automation flow,
   dmp, testimonials, hero bullets, demo steps
   ════════════════════════════════════════════════════════════════════ */

/* Hero УТП-буллеты */
.hero__bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 36px;
  max-width: 620px;
}
.hero__bullet {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}
.hero__bullet-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(42,148,235,0.15);
  border: 1px solid rgba(42,148,235,0.35);
}
.hero__bullet-icon svg { width: 16px; height: 16px; color: #8ec8f6; }
.hero__bullet-title { font-size: 14px; font-weight: 600; color: #f4f4f5; margin-bottom: 2px; }
.hero__bullet-text { font-size: 12.5px; color: #a1a1aa; line-height: 1.45; font-weight: 300; }
@media (max-width: 560px) { .hero__bullets { grid-template-columns: 1fr; gap: 14px; } }

/* Табы сценариев (4 сферы применения) */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-low);
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  margin-bottom: -1px;
}
.tab:hover { color: var(--text-hi); }
.tab--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab__icon { display: flex; }
.tab__icon svg { width: 18px; height: 18px; }
.tab__label { white-space: nowrap; }

/* Панели табов */
.tab-panels { position: relative; }
.tab-panel { display: none; }
.tab-panel--active {
  display: block;
  animation: tabFade 0.3s var(--ease);
}
@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.tab-panel__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 680px;
  font-weight: 300;
}
.tab-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tab-panel__item {
  padding: 22px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tab-panel__item:hover { transform: translateY(-3px); border-top-color: var(--accent-h); }
.tab-panel__item-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.tab-panel__item-text { font-size: 13.5px; color: var(--text-mid); line-height: 1.55; font-weight: 300; }

@media (max-width: 880px) {
  .tab-panel__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .tab { padding: 12px 14px; font-size: 13px; gap: 6px; }
  .tab__icon svg { width: 16px; height: 16px; }
  .tab-panel__grid { grid-template-columns: 1fr; }
}

/* Demo steps (3 шага диалога) */
.demo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px auto;
  max-width: 760px;
}
.demo-step {
  padding: 20px;
  background: rgba(250,250,250,0.04);
  border: 1px solid rgba(250,250,250,0.12);
}
.demo-step__num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.demo-step__title { font-size: 15px; font-weight: 600; color: var(--text-hi); margin-bottom: 4px; }
.demo-step__text { font-size: 13px; color: rgba(250,250,250,0.65); font-weight: 300; line-height: 1.5; }
@media (max-width: 720px) { .demo-steps { grid-template-columns: 1fr; } }

/* Flow (automation + dmp — горизонтальная цепочка) */
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 0;
  position: relative;
}
.flow__step {
  padding: 0 20px 0 0;
  position: relative;
  z-index: 1;
}
.flow__step::before {
  content: '';
  display: block;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 16px;
}
.flow__stage {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.flow__text { font-size: 14px; color: var(--text-mid); line-height: 1.55; font-weight: 300; }
@media (max-width: 720px) {
  .flow { grid-template-columns: 1fr; gap: 24px; }
  .flow::before { display: none; }
}

/* DMP note (акцентный блок-формула) */
.dmp-note {
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--accent-bg);
  border-left: 3px solid var(--accent);
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

/* Отзывы */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.testimonial {
  padding: 28px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial__text {
  font-size: 15px;
  color: var(--text-hi);
  line-height: 1.6;
  font-weight: 300;
}
.testimonial__author {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial__name { font-size: 15px; font-weight: 700; color: var(--accent); }
.testimonial__role { font-size: 13px; color: var(--text-low); font-weight: 300; margin-top: 2px; }
@media (max-width: 720px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════════
   ПРОГРЕСС-БАР СКРОЛЛА — тонкая полоска сверху
   ════════════════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}
.scroll-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, #8ec8f6 100%);
  transition: width 0.1s linear;
}
