/* strict.css — строгая типографика лендинга в стиле overee.ru/clubs (28.08.2026).
   Подключается ПОСЛЕ style.css и переопределяет: шрифт Onest, без курсива и капса
   в заголовках, без декоративных анимаций (fade-in, shimmer, pulse, glow), палитра как на /clubs.
   Демо-анимации продукта (арена, таймер, цикл экранов телефона) не трогаем — это контент. */

:root {
  --bg: #0b0b0d;
  --card: #151519;
  --card2: #1b1b21;
  --border: #26262e;
  --muted: #8b8b96;
  --muted2: #5d5d68;
  --text: #f2f2f4;
  --radius: 16px;
}

body {
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── типографика: прямой начертание, плотный трекинг ── */
.hero__title, .section__text h2, .showcase__title, .benefits__title, .pricing__title, .footer__title, .clubs__title,
.hero__stat b, .clubs__name, .clubs__more, .btn, .nav__cta, .arena__badge, .arena__cl, .arena__ml, .arena__bust-nick, .arena__stamp {
  font-style: normal;
}
.hero__title, .section__text h2, .showcase__title, .benefits__title, .pricing__title, .footer__title, .clubs__title {
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 800;
  /* снимаем shimmer-градиент с текста */
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  color: var(--text);
  animation: none;
}
.hero__title { font-size: clamp(40px, 6.4vw, 76px); letter-spacing: -0.035em; }
.section__text h2 { font-size: clamp(26px, 3.4vw, 38px); }
.showcase__title, .benefits__title, .pricing__title, .clubs__title, .footer__title { font-size: clamp(26px, 3.4vw, 38px); }
.hero__sub, .clubs__sub, .pricing__sub, .showcase__sub, .footer__sub { color: var(--muted); font-size: 17px; line-height: 1.5; }
.section__text li { color: #c9c9d2; }
.hero__stat b { letter-spacing: -0.03em; font-weight: 800; }
.hero__stat span { text-transform: uppercase; letter-spacing: .18em; font-size: 10px; color: var(--muted); }

/* ── кнопки: без капса и курсива, пилюли как на /clubs ── */
.btn, .nav__cta, .btn--ghost, .btn--outline {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  animation: none;
  background-image: none;
}
.btn--cta, .nav__cta { background: var(--primary); color: #fff; box-shadow: 0 0 24px rgba(255, 45, 85, .35); }
.btn--ghost, .btn--outline { border: 1px solid var(--border); background: var(--card); color: var(--text); }
.btn--ghost:hover, .btn--outline:hover { border-color: #3a3a46; background: var(--card2); }
.nav__cta::after, .nav__cta::before { animation: none !important; display: none; }

/* ── убираем декоративные анимации ── */
.hero__title, .hero__sub, .hero__ctas, .hero__stats, .hero__badges, .hero__shot { animation: none !important; opacity: 1 !important; transform: none !important; }
.btn--cta { animation: none !important; }
.benefits__icon { animation: none !important; }
.section__text li { opacity: 1 !important; transform: none !important; transition: none !important; }
.section, .showcase, .benefits, .clubs, .pricing, .footer { opacity: 1 !important; transform: none !important; transition: none !important; }
.benefits__item:hover { box-shadow: none; border-color: #3a3a46; background: var(--card2); }
.section__shot, .section__demo, .scrollshot, .section__video { box-shadow: none !important; }
.hero__badge { border-color: var(--border); background: var(--card); color: var(--muted); font-style: normal; text-transform: none; letter-spacing: 0; }

/* ── карточки: тонкая рамка, без свечения ── */
.benefits__item, .clubs__card, .pricing__card, .showcase__player, .hero__stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: none; }
.benefits__item--accent { border-color: rgba(255, 45, 85, .4); }
.clubs__card { padding: 18px; }
.clubs__city { color: var(--muted); font-size: 13px; }
.clubs__card--more { border-style: dashed; }
.clubs__more { font-weight: 800; letter-spacing: -0.02em; }

/* ── навигация ── */
.nav { background: rgba(11, 11, 13, .85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav__link { font-weight: 500; font-size: 14px; color: var(--muted); }
.nav__link:hover, .nav__link.on { color: var(--text); }
.lang-toggle { border: 1px solid var(--border); background: var(--card); border-radius: 999px; font-weight: 600; font-size: 12px; }

/* ── eyebrow-подпись над заголовком секции (как на /clubs) ── */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 12px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--primary); }

/* ── секция «Клубы»: ссылка на карту и рейтинг ── */
.clubs__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; margin-top: 28px; }
.clubs__cta .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; }
.clubs__cta .btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.clubs__note { width: 100%; text-align: center; color: var(--muted2); font-size: 12px; margin-top: 4px; }
.clubs__card:hover { border-color: #3a3a46; }

/* hero: приглушаем видео, чтобы текст читался строго */
.hero__video { filter: saturate(.7) brightness(.55); }

/* ── свечения (--glow) вокруг демо-блоков и кнопок: убираем, оставляем тонкую рамку ── */
.arena, .hero__shot > img, .scrollshot__laptop, .scrollshot__phone, .section__demo, .section__shot video, .showcase__player, .showcase__play, .showcase__play:hover, .btn--cta:hover {
  box-shadow: none !important;
  filter: none !important;
}
.arena, .section__demo, .showcase__player { border: 1px solid var(--border); }
.btn--cta:hover { box-shadow: 0 0 24px rgba(255, 45, 85, .35) !important; }

/* hero-статы: воздух внутри плашек, подписи не липнут к рамке */
.hero__stats { gap: 12px; }
.hero__stat { padding: 16px 28px; min-width: 150px; }
.hero__stat span { letter-spacing: .12em; font-size: 10px; margin-top: 6px; display: block; white-space: nowrap; }
@media (max-width: 768px) { .hero__stat { padding: 12px 16px; min-width: 0; } .hero__stat span { white-space: normal; letter-spacing: .08em; } }

/* ── hero как на /clubs: видео фоном на весь блок, затемнение, контент по центру. Без сетки. ── */
.hero { position: relative; overflow: hidden; display: block; }
.hero__video-wrap { position: absolute; inset: 0; width: 100%; height: 100% !important; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) brightness(.5); }
.hero__video-wrap::after { height: 100%; background: linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.35) 45%, var(--bg) 100%); }
.hero__content { position: relative; z-index: 2; margin-top: 0 !important; padding: 128px 32px 72px !important; gap: 22px; }
.hero__stat { background: rgba(11,11,13,.7); backdrop-filter: blur(8px); }
@media (max-width: 768px) { .hero__content { padding: 88px 20px 48px !important; } }

/* ── Живая афиша на лендинге (секция «Клубы на платформе») ── */
.pulse { max-width: 1040px; margin: 26px auto 34px; text-align: left; }
.pulse__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px 20px; flex-wrap: wrap; margin-bottom: 14px; }
.pulse__title { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.pulse__week { color: var(--muted); font-size: 14px; }
.pulse__week b { color: var(--text); font-weight: 800; font-variant-numeric: tabular-nums; }
.pulse__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.pulse__game { display: flex; flex-direction: column; gap: 7px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 15px 17px; text-decoration: none; color: var(--text); transition: border-color .15s ease, background .15s ease; }
.pulse__game:hover, .pulse__game:focus-visible { border-color: var(--accent); background: var(--card2); }
.pulse__when { font-size: 13px; font-weight: 600; color: var(--accent); }
.pulse__name { font-weight: 700; font-size: 15px; line-height: 1.3; }
.pulse__meta { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.pulse__meta img { width: 20px; height: 20px; border-radius: 5px; object-fit: contain; background: var(--card2); flex-shrink: 0; }
.pulse__regs { font-size: 12.5px; color: var(--muted2); }
.pulse__regs.hot { color: #e0a84f; }
.pulse__regs.full { color: var(--accent); }
@media (max-width: 640px) {
  .pulse__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .pulse__list { grid-template-columns: 1fr; }
}

/* ── Секция «Переезд — за один вечер» ── */
.migrate { padding: 84px 24px; max-width: 1100px; margin: 0 auto; text-align: center; }
.migrate__title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin: 14px 0 10px; color: var(--text); }
.migrate__sub { color: var(--muted); font-size: 17px; line-height: 1.5; max-width: 640px; margin: 0 auto 36px; }
.migrate__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; text-align: left; }
.migrate__step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.migrate__num { width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color: #0b0b0d; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.migrate__step h3 { margin: 0 0 8px; font-size: 16.5px; font-weight: 700; color: var(--text); }
.migrate__step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.migrate__note { margin: 26px auto 0; color: var(--muted); font-size: 14.5px; }
@media (max-width: 900px) { .migrate__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .migrate__grid { grid-template-columns: 1fr; } }

/* ── Секция «боль → решение» ── */
.pains { padding: 72px 24px 40px; max-width: 1000px; margin: 0 auto; }
.pains__title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--text); text-align: center; margin: 0 0 34px; text-wrap: balance; }
.pains__list { border-top: 1px solid var(--border); }
.pains__row { display: grid; grid-template-columns: minmax(0, 5fr) 34px minmax(0, 7fr); gap: 12px; align-items: baseline; padding: 15px 4px; border-bottom: 1px solid var(--border); }
.pains__old { color: var(--muted2); text-decoration: line-through; text-decoration-color: rgba(255, 107, 133, 0.55); text-decoration-thickness: 1px; font-size: 15px; }
.pains__arrow { color: var(--accent); text-align: center; font-weight: 600; }
.pains__new { color: var(--text); font-weight: 600; font-size: 15.5px; line-height: 1.45; }
@media (max-width: 620px) {
  .pains__row { grid-template-columns: 1fr; gap: 4px; padding: 13px 2px; }
  .pains__arrow { display: none; }
}

/* CTA внутри секций таймера и базы знаний */
.section__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.section__cta .btn { border-radius: 999px; padding: 12px 22px; font-size: 14px; font-weight: 700; text-decoration: none; }
.section__hint { color: var(--muted); font-size: 13.5px; }

/* Сеть клубов: фото зала вместо сетки логотипов */
.clubs__photo { position: relative; max-width: 1200px; margin: 28px auto 0; min-height: 380px; border-radius: 18px; overflow: hidden; background-size: cover; background-position: center 45%; border: 1px solid var(--border); display: flex; align-items: flex-end; }
.clubs__photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,13,.1) 0%, rgba(11,11,13,.25) 45%, rgba(11,11,13,.9) 100%), linear-gradient(90deg, rgba(11,11,13,.5) 0%, rgba(11,11,13,0) 55%); }
.clubs__photo-in { position: relative; z-index: 1; padding: 28px 30px; max-width: 62ch; display: flex; flex-direction: column; gap: 8px; text-align: left; align-items: flex-start; }
.clubs__photo-in b { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.clubs__photo-in span { color: #d9d6dc; font-size: 15px; line-height: 1.5; }
.clubs__photo-cap { position: absolute; right: 18px; bottom: 14px; z-index: 1; color: rgba(255,255,255,.45); font-size: 12px; }
@media (max-width: 640px) { .clubs__photo { min-height: 300px; } .clubs__photo-in { padding: 20px; } .clubs__photo-cap { display: none; } }

/* Спецпредложение: запуск под ключ */
.turnkey { padding: 20px 20px 72px; }
.turnkey__card { max-width: 1100px; margin: 0 auto; padding: 34px 38px; border-radius: 18px; background: linear-gradient(135deg, rgba(255,45,85,.22) 0%, rgba(255,45,85,.06) 45%, var(--card) 100%); border: 1px solid rgba(255,45,85,.55); border-left-width: 3px; box-shadow: 0 12px 40px rgba(255,45,85,.12); }
.turnkey__tag { display: inline-block; color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.turnkey__card h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; }
.turnkey__card p { margin: 0 0 16px; color: #e6e3e8; font-size: 15.5px; line-height: 1.55; max-width: 70ch; }
.turnkey__list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.turnkey__list li { position: relative; padding-left: 16px; color: #d9d6dc; font-size: 14.5px; }
.turnkey__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.turnkey__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.turnkey__btns .btn { border-radius: 999px; padding: 12px 22px; font-size: 14px; font-weight: 700; text-decoration: none; }
@media (max-width: 640px) { .turnkey__card { padding: 24px 20px; } .turnkey__list { grid-template-columns: 1fr; } }

/* Подвал: раскладка как у adbydad — призыв и контакты слева, колонки ссылок справа, строка с логотипом внизу */
.footer { padding: 72px 20px 32px !important; text-align: left !important; }
.footer__top { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; align-items: start; }
.footer__msg .footer__title { font-size: clamp(24px, 3vw, 34px) !important; margin: 0 0 10px !important; text-align: left !important; }
.footer__msg .footer__sub { margin: 0 0 18px !important; max-width: 52ch; text-align: left !important; font-size: 15px !important; }
.footer__contacts { display: flex !important; flex-direction: column; gap: 6px; margin: 0 0 20px !important; justify-content: flex-start !important; }
.footer__contacts a { color: var(--text); text-decoration: none; font-size: 15px; }
.footer__contacts a:hover { color: var(--accent); }
.footer__demo { display: inline-block; border-radius: 999px; padding: 12px 22px; font-size: 14px; font-weight: 700; text-decoration: none; }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col-h { margin: 0 0 4px; color: var(--muted2); font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer__col a { color: var(--muted); text-decoration: none; font-size: 14.5px; }
.footer__col a:hover { color: var(--text); }
.footer__legal { margin-top: 10px; color: var(--muted2); font-size: 12px; line-height: 1.6; }
.footer__bottom { max-width: 1100px; margin: 44px auto 0 !important; padding-top: 18px; border-top: 1px solid var(--border); display: flex !important; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted2); font-size: 12.5px; }
.footer__bottom img { height: 22px; width: auto; opacity: .55; }
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__msg { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer { padding: 52px 20px 28px !important; } .footer__top { grid-template-columns: 1fr; gap: 28px; } .footer__demo { display: block; text-align: center; } }

/* База знаний: подвал без оффера — оффер уже в карточке статьи */
.footer__msg--compact .footer__sub { margin-bottom: 14px !important; }
.footer__msg--compact .footer__contacts { margin-bottom: 0 !important; }
