/*
Theme Name: BossLike Ru
Theme URI: https://bosslike.help/
Author: BossLike Ru
Description: Тема брендового сайта о бирже заданий BossLike. Дизайн-язык «жетон»: баллы как игровые фишки, синие поля-заливки, аркадные кнопки.
Version: 1.0.0
Text Domain: bosslike
*/

/* ══════════════════════════════════════════════════════════
   ТОКЕНЫ
   Палитра снята с bosslike.ru: #2b96f1 (основной), #0d6fc3,
   #4fc3f7, #27acbd, #5cb85c, #d43a36. Жетон — латунный жёлтый.
   Радиусы: карточки 14, полосы 8, кнопки — пилюля, жетоны — круг.
   ══════════════════════════════════════════════════════════ */
:root {
  --blue: #2b96f1;
  --blue-deep: #0d6fc3;
  --blue-night: #0e1830;
  --blue-night-2: #16233f;
  --sky: #4fc3f7;
  --teal: #27acbd;
  --ok: #4ea855;
  --stop: #d43a36;

  --coin: #f5b53d;
  --coin-edge: #c98a1c;
  --coin-ink: #4a3208;

  --paper: #f4f7fc;
  --paper-2: #e7eefa;
  --white: #ffffff;
  --ink: #101a2c;
  --ink-soft: #35435c;
  --ink-mute: #62708a;
  --line: #d3ddee;
  --line-dark: rgba(255, 255, 255, .16);

  --font-display: "Russo One", "Geologica", system-ui, sans-serif;
  --font-text: "Geologica", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", monospace;

  --r-card: 14px;
  --r-bar: 8px;

  --pad-x: clamp(16px, 5vw, 72px);
  --sec-y: clamp(48px, 6vw, 96px);
  --measure: 68ch;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .005em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(28px, 4.4vw, 52px); }
h2 { font-size: clamp(23px, 2.7vw, 34px); margin-top: 0; }
h3 { font-size: clamp(18px, 1.7vw, 22px); }
p { margin: 0 0 1em; }
a { color: var(--blue-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue); }

.bl-lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--ink-soft); }
.bl-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 10px;
}

/* ── Секции и сетки ───────────────────────────────────── */
.bl-section { padding: var(--sec-y) var(--pad-x); }
.bl-section--tight { padding-top: clamp(28px, 3vw, 48px); padding-bottom: clamp(28px, 3vw, 48px); }
.bl-section--paper { background: var(--white); }
.bl-section--tint { background: var(--paper-2); }
.bl-section--blue { background: var(--blue-deep); color: var(--white); }
.bl-section--night { background: var(--blue-night); color: #e8eefb; }
.bl-section--blue h2, .bl-section--night h2,
.bl-section--blue h3, .bl-section--night h3 { color: var(--white); }
.bl-section--blue a, .bl-section--night a { color: var(--coin); }
/* Кнопки внутри цветных секций держат свой цвет текста, а не наследуют жёлтый цвет ссылок */
.bl-section--blue a.bl-btn--primary, .bl-section--night a.bl-btn--primary { color: var(--coin-ink); }
.bl-section--blue a.bl-btn--blue, .bl-section--night a.bl-btn--blue,
.bl-section--blue a.bl-btn--ghost, .bl-section--night a.bl-btn--ghost { color: var(--white); }
.bl-section--blue .bl-kicker, .bl-section--night .bl-kicker { color: var(--coin); }
.bl-section--blue .bl-lead, .bl-section--night .bl-lead { color: rgba(255,255,255,.86); }

.bl-prose { max-width: var(--measure); }
.bl-prose--wide { max-width: 92ch; }

.bl-grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.bl-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bl-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bl-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bl-split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(20px, 3vw, 48px); align-items: start; }
.bl-split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .bl-grid--3, .bl-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bl-split, .bl-split--even { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .bl-grid--2, .bl-grid--3, .bl-grid--4 { grid-template-columns: minmax(0, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   ЖЕТОН — единица баллов
   ══════════════════════════════════════════════════════════ */
.bl-token {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, var(--coin-edge) 0deg 4deg, var(--coin) 4deg 8deg);
  color: var(--coin-ink);
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 0 0 5px var(--coin);
  flex: none;
}
.bl-token--sm { width: 46px; height: 46px; font-size: 13px; box-shadow: inset 0 0 0 4px var(--coin); }
.bl-token--md { width: 68px; height: 68px; font-size: 16px; }
.bl-token--lg { width: 104px; height: 104px; font-size: 22px; box-shadow: inset 0 0 0 8px var(--coin); }
.bl-token__num { display: block; }
.bl-token__label { display: block; font-size: .62em; font-weight: 500; opacity: .8; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════
   КНОПКИ — аркадные, с нижней кромкой
   ══════════════════════════════════════════════════════════ */
.bl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease, background-color .16s ease;
}
.bl-btn--primary {
  background: var(--coin);
  color: var(--coin-ink);
  box-shadow: 0 4px 0 var(--coin-edge);
}
.bl-btn--primary:hover { background: #ffc754; color: var(--coin-ink); }
.bl-btn--primary:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--coin-edge); }
.bl-btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .55);
}
.bl-btn--ghost:hover { background: rgba(255, 255, 255, .12); color: var(--white); }
.bl-btn--ghost:active { transform: translateY(2px); }
.bl-btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 0 var(--blue-deep);
}
.bl-btn--blue:hover { background: #3ba3fb; color: var(--white); }
.bl-btn--blue:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--blue-deep); }
.bl-btn--wide { width: 100%; }

/* ══════════════════════════════════════════════════════════
   ШАПКА
   ══════════════════════════════════════════════════════════ */
.bl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--blue-night);
  color: var(--white);
}
.bl-header__in {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 12px var(--pad-x);
}
.bl-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; font-family: var(--font-display); font-size: 19px; }
.bl-logo:hover { color: var(--white); }
.bl-logo__coin {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--coin-edge) 0deg 4deg, var(--coin) 4deg 8deg);
  box-shadow: inset 0 0 0 3px var(--coin);
  color: var(--coin-ink);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1;
  flex: none;
}
.bl-logo__ru { color: var(--sky); }
.bl-nav { display: flex; gap: clamp(10px, 1.6vw, 24px); margin-left: auto; }
.bl-nav a { color: rgba(255, 255, 255, .82); text-decoration: none; font-size: 15px; white-space: nowrap; }
.bl-nav a:hover { color: var(--coin); }
.bl-header__cta { padding: 11px 20px; font-size: 14px; }
.bl-burger { display: none; background: none; border: 0; color: var(--white); padding: 6px; cursor: pointer; }
.bl-mobmenu { display: none; flex-direction: column; padding: 6px var(--pad-x) 18px; background: var(--blue-night-2); }
.bl-mobmenu a { color: rgba(255, 255, 255, .9); text-decoration: none; padding: 11px 0; border-bottom: 1px solid var(--line-dark); }
.bl-mobmenu.is-open { display: flex; }

@media (max-width: 960px) {
  .bl-nav { display: none; }
  .bl-burger { display: block; }
  .bl-header__cta { margin-left: auto; }
  .bl-cta-tail { display: none; }
}

/* ── Хлебные крошки ── */
.bl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px var(--pad-x);
  background: var(--paper-2);
  font-size: 13px;
  color: var(--ink-mute);
}
.bl-breadcrumb__link { color: var(--ink-mute); text-decoration: none; }
.bl-breadcrumb__link:hover { color: var(--blue-deep); }
.bl-breadcrumb__sep { color: var(--line); }
.bl-breadcrumb__current { color: var(--ink); }

/* ══════════════════════════════════════════════════════════
   ГЕРОЙ
   ══════════════════════════════════════════════════════════ */
.bl-hero {
  position: relative;
  padding: clamp(36px, 5vw, 76px) var(--pad-x) clamp(44px, 5vw, 84px);
  background: var(--blue-deep);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .13) 1px, transparent 0);
  background-size: 22px 22px;
  color: var(--white);
  overflow: hidden;
}
.bl-hero__in { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.bl-hero h1 { color: var(--white); margin-bottom: 14px; }
.bl-hero p { color: rgba(255, 255, 255, .9); max-width: 56ch; }
.bl-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.bl-hero__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; font-family: var(--font-mono); font-size: 13px; color: rgba(255, 255, 255, .75); }
.bl-hero__meta b { display: block; font-size: 19px; color: var(--coin); font-weight: 700; }

@media (max-width: 900px) { .bl-hero__in { grid-template-columns: minmax(0, 1fr); } }

/* Схема обмена в герое */
.bl-swap {
  display: grid;
  gap: 10px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: var(--r-card);
  background: rgba(9, 20, 40, .5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}
.bl-swap__row { display: flex; align-items: center; gap: 14px; }
.bl-swap__text { font-size: 14px; line-height: 1.4; color: rgba(255, 255, 255, .92); }
.bl-swap__text b { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 400; color: var(--white); }
.bl-swap__arrow { justify-self: start; margin-left: 32px; color: var(--sky); display: flex; }
.bl-swap__arrow svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════════════════
   КАРТОЧКИ, ТАБЛИЦЫ, ПОЛОСЫ
   ══════════════════════════════════════════════════════════ */
.bl-card {
  padding: clamp(16px, 2vw, 24px);
  border-radius: var(--r-card);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.bl-card h3 { margin-bottom: 8px; }
.bl-card p:last-child { margin-bottom: 0; }
.bl-card--coin { box-shadow: inset 0 0 0 1px var(--line), 0 3px 0 var(--coin); }
.bl-section--blue .bl-card, .bl-section--night .bl-card {
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  color: #e8eefb;
}

.bl-tablewrap { overflow-x: auto; border-radius: var(--r-bar); }
.bl-table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--white); }
.bl-table th, .bl-table td { padding: 11px 14px; text-align: left; }
.bl-table thead th { background: var(--blue-night); color: var(--white); font-family: var(--font-display); font-weight: 400; font-size: 14px; }
.bl-table tbody tr + tr td { border-top: 1px solid var(--line); }
.bl-table td.num, .bl-table th.num { font-family: var(--font-mono); text-align: right; white-space: nowrap; }
.bl-table tbody tr:hover td { background: var(--paper-2); }
.bl-table caption { caption-side: bottom; padding-top: 10px; font-size: 13px; color: var(--ink-mute); text-align: left; }

/* Табличка автомата: короткий вывод в начале страницы */
.bl-tldr {
  padding: 20px;
  border-radius: var(--r-card);
  background: var(--blue-night);
  color: #e9f0fd;
  box-shadow: inset 0 0 0 1px rgba(245, 181, 61, .38);
}
.bl-tldr__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-bar);
  background: var(--coin);
  color: var(--coin-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bl-tldr p { margin: 0; }
.bl-tldr p + p { margin-top: 8px; }
.bl-tldr b { color: var(--white); }

/* Шкала курса: сколько балл стоит на входе и на выходе */
.bl-gauge { display: grid; gap: 8px; }
.bl-gauge__bar { position: relative; height: 52px; border-radius: var(--r-bar); background: rgba(255, 255, 255, .86); overflow: hidden; }
.bl-gauge__fill { position: absolute; inset: 0 auto 0 0; background: var(--sky); }
.bl-gauge__fill--coin { background: var(--coin); }
.bl-gauge__val { position: relative; display: flex; align-items: center; height: 52px; padding: 0 16px; font-family: var(--font-mono); font-size: clamp(14px, 1.5vw, 18px); font-weight: 700; color: var(--blue-night); }
.bl-gauge__val--dark { color: var(--coin-ink); }
.bl-gauge__cap { font-size: 13px; color: var(--ink-mute); }

/* Чипы соцсетей */
.bl-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
}
.bl-chip:hover { box-shadow: inset 0 0 0 2px var(--blue); color: var(--ink); }
.bl-chip i { width: 16px; height: 16px; color: var(--blue-deep); }
.bl-section--blue .bl-chip, .bl-section--night .bl-chip { background: rgba(255,255,255,.1); color: var(--white); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.bl-section--blue .bl-chip i, .bl-section--night .bl-chip i { color: var(--coin); }

/* Шаги */
.bl-steps { display: grid; gap: 14px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.bl-steps li {
  position: relative;
  counter-increment: step;
  padding: 16px 18px 16px 62px;
  border-radius: var(--r-card);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.bl-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 15px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-night);
  color: var(--coin);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}
.bl-steps b { display: block; font-family: var(--font-display); font-weight: 400; margin-bottom: 3px; }

/* Плюсы и минусы */
.bl-pm { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.bl-pm__col { padding: 18px 20px; border-radius: var(--r-card); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.bl-pm__col h3 { display: flex; align-items: center; gap: 8px; font-size: 17px; }
.bl-pm__col ul { margin: 0; padding-left: 18px; }
.bl-pm__col li { margin-bottom: 7px; }
.bl-pm__col--plus h3 { color: var(--ok); }
.bl-pm__col--minus h3 { color: var(--stop); }
@media (max-width: 700px) { .bl-pm { grid-template-columns: minmax(0, 1fr); } }

/* Отзывы */
.bl-review { padding: 18px 20px; border-radius: var(--r-card); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.bl-review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.bl-review__ava { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--blue-deep); color: var(--white); font-family: var(--font-display); }
.bl-review__name { font-family: var(--font-display); font-size: 15px; }
.bl-review__date { font-size: 12px; color: var(--ink-mute); font-family: var(--font-mono); }
.bl-review p { margin: 0; font-size: 15px; }

/* Звёзды */
.star-rating { position: relative; display: inline-block; line-height: 0; white-space: nowrap; }
.star-rating__bg, .star-rating__fg { display: flex; gap: 2px; }
.star-rating__bg i, .star-rating__fg i { width: var(--star-size, 18px); height: var(--star-size, 18px); }
.star-rating__bg { color: var(--line); }
.star-rating__bg svg { fill: currentColor; }
.star-rating__fg { position: absolute; inset: 0; overflow: hidden; color: var(--coin); }
.star-rating__fg svg { fill: currentColor; }

/* FAQ */
.bl-faq { display: grid; gap: 10px; }
.bl-faq details { border-radius: var(--r-card); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.bl-faq summary { padding: 15px 18px; cursor: pointer; font-family: var(--font-display); font-size: 16px; font-weight: 400; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.bl-faq summary::-webkit-details-marker { display: none; }
.bl-faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--blue-deep); }
.bl-faq details[open] summary::after { content: "–"; }
.bl-faq details > p { padding: 0 18px 16px; margin: 0; color: var(--ink-soft); }

/* Заметки */
.bl-note { padding: 13px 16px; border-radius: var(--r-bar); background: var(--paper-2); font-size: 14px; color: var(--ink-soft); }
.bl-note--warn { background: #fdeeee; color: #7d2320; }
.bl-note--meta { font-size: 13px; color: var(--ink-mute); background: transparent; padding-left: 0; }

/* Калькулятор */
.bl-calc { padding: clamp(18px, 2.4vw, 28px); border-radius: var(--r-card); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.bl-section--blue .bl-calc, .bl-section--night .bl-calc { background: rgba(255, 255, 255, .96); color: var(--ink); }
.bl-calc__field { margin-bottom: 16px; }
.bl-calc__field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--ink-soft); }
.bl-calc__field input[type="range"] { width: 100%; accent-color: var(--blue); }
.bl-calc__field select, .bl-calc__field input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r-bar);
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--ink);
}
.bl-calc__val { font-family: var(--font-mono); font-weight: 700; color: var(--blue-deep); }
.bl-calc__out { display: grid; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }
.bl-calc__line { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 15px; }
.bl-calc__line b { font-family: var(--font-mono); font-size: 20px; color: var(--ink); }
.bl-calc__line--total b { font-size: 26px; color: var(--blue-deep); }
.bl-calc__hint { font-size: 13px; color: var(--ink-mute); margin: 10px 0 0; }

/* Счётчики */
.bl-counters { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); }
.bl-counter { padding: 18px 20px; border-radius: var(--r-card); background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }
.bl-counter__num { font-family: var(--font-mono); font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--coin); line-height: 1.1; }
.bl-counter__cap { font-size: 14px; color: rgba(255, 255, 255, .78); }
@media (max-width: 700px) { .bl-counters { grid-template-columns: minmax(0, 1fr); } }

/* Полоса цен */
.bl-price { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-mono); }
.bl-price__num { font-size: 22px; font-weight: 700; color: var(--blue-deep); }
.bl-price__unit { font-size: 13px; color: var(--ink-mute); }

/* Читайте также */
.bl-related__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.bl-related__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
}
.bl-related__list a:hover { box-shadow: inset 0 0 0 2px var(--blue); }
.bl-related__list i { width: 16px; height: 16px; color: var(--blue-deep); }

/* Финальный призыв */
.bl-final { text-align: center; }
.bl-final h2 { margin-bottom: 12px; }
.bl-final p { max-width: 60ch; margin-inline: auto; }
.bl-final .bl-btn { margin-top: 18px; }

/* Подвал */
.bl-footer { background: var(--blue-night); color: rgba(255, 255, 255, .8); padding: clamp(36px, 4vw, 60px) var(--pad-x) 24px; }
.bl-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.bl-footer__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 18px; color: var(--white); margin-bottom: 10px; }
.bl-footer__about { font-size: 14px; max-width: 42ch; }
.bl-footer__title { font-family: var(--font-display); font-size: 15px; color: var(--white); margin-bottom: 10px; }
.bl-footer__col ul { list-style: none; margin: 0; padding: 0; }
.bl-footer__col li { margin-bottom: 7px; }
.bl-footer__col a { color: rgba(255, 255, 255, .78); text-decoration: none; font-size: 14px; }
.bl-footer__col a:hover { color: var(--coin); }
.bl-footer__bottom { margin-top: clamp(24px, 3vw, 40px); padding-top: 18px; border-top: 1px solid var(--line-dark); font-size: 12.5px; color: rgba(255, 255, 255, .6); }
.bl-footer__bottom p { margin: 0 0 6px; }
@media (max-width: 900px) { .bl-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .bl-footer__grid { grid-template-columns: minmax(0, 1fr); } }

/* Появление блоков при скролле */
.bl-reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.bl-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .bl-reveal { opacity: 1; transform: none; transition: none; }
  .bl-btn { transition: none; }
}

/* 404 */
.bl-404 { padding: clamp(60px, 8vw, 120px) var(--pad-x); text-align: center; }
