/* ==========================================================================
   ЗиБ «Закон и Баланс» — сайт БФЛ + партнёрская программа
   Брендбук «Разлом»: Графит / Крем / Золото · Cormorant Garamond + Montserrat
   Прототип Фаза 2 (демо-данные помечены [ДЕМО] в HTML)
   ========================================================================== */

/* ---------- Токены ---------- */
:root {
  /* Палитра «Разлом» */
  --graphite-900: #0D0D0F;   /* основной фон */
  --graphite-800: #14141A;   /* секция-альт */
  --graphite-700: #1A1A1E;   /* карточки */
  --graphite-500: #2D2D2D;   /* графит-акцент */
  --cream:        #F5F0E8;   /* светлый текст / светлый фон */
  --cream-dim:    rgba(245, 240, 232, 0.62);
  --cream-faint:  rgba(245, 240, 232, 0.10);
  --gold:         #C9A84C;   /* акцент / CTA */
  --gold-soft:    rgba(201, 168, 76, 0.14);
  --gold-line:    rgba(201, 168, 76, 0.30);
  --taupe:        #5A5350;   /* вторичный на светлом */
  --danger:       #C45B4C;

  /* Типографика */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --text-hero: clamp(2.6rem, 1.4rem + 5.4vw, 6rem);
  --text-h2: clamp(1.9rem, 1.2rem + 3vw, 3.6rem);
  --text-h3: clamp(1.3rem, 1.05rem + 1.1vw, 1.9rem);
  --text-lead: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --text-sm: 0.85rem;
  --text-eyebrow: 0.72rem;

  /* Ритм */
  --space-section: clamp(4rem, 3rem + 6vw, 9rem);
  --container: 1240px;
  --gutter: clamp(1.2rem, 0.6rem + 2.6vw, 3rem);
  --radius: 4px;
  --radius-lg: 8px;

  /* Движение */
  --dur-fast: 160ms;
  --dur: 320ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Сброс ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--cream);
  background: var(--graphite-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Утилиты ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); position: relative; }
.section--alt { background: var(--graphite-800); }
.eyebrow {
  font-size: var(--text-eyebrow); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; display: inline-block;
}
.h2 { font-family: var(--font-display); font-size: var(--text-h2); font-weight: 500; line-height: 1.05; letter-spacing: 0.01em; }
.h3 { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 500; line-height: 1.15; }
.lead { font-size: var(--text-lead); color: var(--cream-dim); font-weight: 300; }
.gold { color: var(--gold); }
.center { text-align: center; }
.section__head { max-width: 720px; margin-bottom: clamp(2.4rem, 1.5rem + 3vw, 4rem); }
.section__head.center { margin-inline: auto; }

/* Диагональный «разлом» — фирменный разделитель */
.rift {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 40%, var(--gold-line) 60%, transparent);
}
.rift--top { top: 0; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem; font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.04em; border-radius: var(--radius); transition: all var(--dur) var(--ease);
  text-align: center; line-height: 1.2;
}
.btn--primary { background: var(--gold); color: var(--graphite-900); }
.btn--primary:hover { background: #d9b85e; transform: translateY(-2px); box-shadow: 0 12px 32px -12px rgba(201,168,76,0.6); }
.btn--ghost { border: 1px solid var(--gold-line); color: var(--gold); }
.btn--ghost:hover { background: var(--gold-soft); border-color: var(--gold); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.15rem 2.4rem; font-size: var(--text-base); }

/* ---------- Логотип ---------- */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.logo__mark { width: 38px; height: 38px; flex: none; }
.logo__text { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); }
.logo__text b { color: var(--gold); font-weight: 500; }

/* ---------- Шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 13, 15, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-faint);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: clamp(1.2rem, 0.6rem + 2vw, 2.6rem); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.8rem; }
.nav__list a { font-size: var(--text-sm); color: var(--cream-dim); transition: color var(--dur-fast); position: relative; }
.nav__list a:hover { color: var(--cream); }
.header__phone { font-size: var(--text-sm); color: var(--gold); font-weight: 600; white-space: nowrap; }
.header__cta { display: flex; align-items: center; gap: 1.2rem; }
.burger { display: none; width: 28px; height: 20px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--cream); transition: all var(--dur) var(--ease); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(3.5rem, 2rem + 8vw, 7rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.hero__title { font-family: var(--font-display); font-size: var(--text-hero); font-weight: 500; line-height: 0.98; letter-spacing: 0.005em; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__sub { font-size: var(--text-lead); color: var(--cream-dim); font-weight: 300; margin-top: 1.6rem; max-width: 38ch; }
.hero__anchor { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.2rem; align-items: baseline; }
.hero__price { font-family: var(--font-display); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem); color: var(--cream); font-weight: 500; }
.hero__price span { font-family: var(--font-body); font-size: var(--text-sm); color: var(--cream-dim); display: block; letter-spacing: 0.12em; text-transform: uppercase; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

/* Hero-форма / карточка */
.hero__card {
  background: var(--graphite-700); border: 1px solid var(--cream-faint);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  position: relative;
}
.hero__card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 56px; height: 56px;
  clip-path: polygon(100% 0, 0 0, 100% 100%); background: var(--gold-soft); border-top-right-radius: var(--radius-lg);
}

/* ---------- Полоса статистики ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--cream-faint); border: 1px solid var(--cream-faint); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--graphite-800); padding: clamp(1.4rem, 1rem + 1.5vw, 2.4rem) 1.2rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem); color: var(--gold); font-weight: 500; line-height: 1; }
.stat__label { font-size: var(--text-sm); color: var(--cream-dim); margin-top: 0.6rem; }

/* ---------- Формы ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: var(--text-sm); color: var(--cream-dim); margin-bottom: 0.45rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 1rem; font-family: inherit; font-size: var(--text-base);
  color: var(--cream); background: var(--graphite-900); border: 1px solid var(--cream-faint);
  border-radius: var(--radius); transition: border-color var(--dur-fast);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,240,232,0.32); }
.consent { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1rem 0 1.3rem; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--gold); }
.consent label { font-size: 0.78rem; color: var(--cream-dim); line-height: 1.5; }
.consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.form__note { font-size: 0.74rem; color: var(--taupe); margin-top: 0.9rem; text-align: center; }
.form__ok { display: none; padding: 1.2rem; background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: var(--radius); color: var(--cream); font-size: var(--text-sm); }
.form.is-sent .form__ok { display: block; }
.form.is-sent .form__body { display: none; }
/* Honeypot — скрыт от людей, виден ботам */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
/* Ошибка отправки */
.form__err { display: none; font-size: 0.78rem; color: var(--danger); line-height: 1.5; margin-top: 0.9rem; }
.form.is-error .form__err { display: block; }

/* ---------- Сетки карточек ---------- */
.grid { display: grid; gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--graphite-700); border: 1px solid var(--cream-faint);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 1.2vw, 2rem);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.card__icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 1.1rem; }
.card__title { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 500; margin-bottom: 0.5rem; }
.card__text { color: var(--cream-dim); font-size: var(--text-sm); }
.card__num { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); opacity: 0.5; }

/* Боли / списываем — список с золотой засечкой */
.ticklist { display: grid; gap: 0.9rem; }
.ticklist li { display: flex; gap: 0.85rem; align-items: flex-start; color: var(--cream-dim); }
.ticklist li::before { content: ''; width: 8px; height: 8px; margin-top: 0.5rem; flex: none; background: var(--gold); clip-path: polygon(0 0, 100% 0, 100% 100%); }
.ticklist--no li::before { background: var(--taupe); }

/* Две процедуры */
.proc { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem); }
.proc__card { background: var(--graphite-700); border: 1px solid var(--cream-faint); border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 1.5vw, 2.4rem); }
.proc__card--accent { border-color: var(--gold-line); background: linear-gradient(160deg, var(--graphite-700), rgba(201,168,76,0.05)); }
.proc__tag { font-size: var(--text-eyebrow); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.proc__price { font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem); margin: 0.6rem 0 1rem; }

/* Процесс — таймлайн */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before { counter-increment: step; content: '0' counter(step); position: absolute; top: 0; left: 0; font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); }
.step::after { content: ''; position: absolute; top: 1.4rem; left: 2.6rem; right: -1rem; height: 1px; background: var(--cream-faint); }
.step:last-child::after { display: none; }
.step__title { font-weight: 600; font-size: var(--text-sm); margin-bottom: 0.4rem; }
.step__text { font-size: 0.8rem; color: var(--cream-dim); }

/* Кейсы (обезличенные) */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.case { background: var(--graphite-700); border: 1px solid var(--cream-faint); border-radius: var(--radius-lg); padding: 1.6rem; }
.case__sum { font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); color: var(--gold); font-weight: 500; }
.case__meta { font-size: 0.8rem; color: var(--cream-dim); margin-top: 0.5rem; }
.case__result { font-size: var(--text-sm); margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--cream-faint); }

/* Доверие — строка бейджей */
.trust { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust__item { display: flex; gap: 0.8rem; align-items: center; background: var(--graphite-700); border: 1px solid var(--cream-faint); border-radius: var(--radius); padding: 1rem 1.3rem; flex: 1 1 240px; }
.trust__item svg { width: 28px; height: 28px; color: var(--gold); flex: none; }
.trust__item b { display: block; font-weight: 600; font-size: var(--text-sm); }
.trust__item span { font-size: 0.78rem; color: var(--cream-dim); }

/* Команда */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 0.8rem + 2vw, 2.4rem); }
.team__card { display: grid; grid-template-columns: 150px 1fr; gap: 1.6rem; background: var(--graphite-700); border: 1px solid var(--cream-faint); border-radius: var(--radius-lg); padding: 1.4rem; align-items: center; transition: border-color var(--dur) var(--ease); }
.team__card:hover { border-color: var(--gold-line); }
.team__photo { width: 150px; height: 180px; border-radius: var(--radius); overflow: hidden; flex: none; background: var(--graphite-900); }
.team__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(100%) contrast(1.04); transition: filter var(--dur) var(--ease); }
.team__card:hover .team__photo img { filter: grayscale(100%) contrast(1.1) brightness(1.05); }
.team__name { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 500; }
.team__role { font-size: var(--text-sm); color: var(--gold); margin: 0.3rem 0 0.9rem; }
.team__phone { display: block; font-weight: 600; color: var(--cream); margin-bottom: 0.3rem; }
.team__phone:hover { color: var(--gold); }
.team__tg { font-size: var(--text-sm); color: var(--cream-dim); }
.team__tg:hover { color: var(--gold); }
@media (max-width: 768px) {
  .team { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .team__card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* ЧБКИ — выделенный блок */
.chbki { background: linear-gradient(150deg, var(--graphite-700), var(--graphite-800)); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 1.2rem + 2.5vw, 3.4rem); position: relative; overflow: hidden; }
.chbki::after { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; background: radial-gradient(circle, var(--gold-soft), transparent 70%); }
.chbki__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.6rem, 1rem + 3vw, 4rem); position: relative; z-index: 1; align-items: center; }

/* Квиз */
.quiz { background: var(--graphite-700); border: 1px solid var(--cream-faint); border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 2.5vw, 3rem); max-width: 720px; margin-inline: auto; }
.quiz__progress { height: 3px; background: var(--cream-faint); border-radius: 2px; margin-bottom: 1.8rem; overflow: hidden; }
.quiz__bar { height: 100%; width: 20%; background: var(--gold); transition: width var(--dur) var(--ease); }
.quiz__q { font-family: var(--font-display); font-size: var(--text-h3); margin-bottom: 1.4rem; }
.quiz__opts { display: grid; gap: 0.8rem; }
.quiz__opt { text-align: left; padding: 1rem 1.3rem; border: 1px solid var(--cream-faint); border-radius: var(--radius); background: var(--graphite-900); transition: all var(--dur-fast); font-size: var(--text-base); color: var(--cream); }
.quiz__opt:hover { border-color: var(--gold); background: var(--gold-soft); }
.quiz__step { display: none; }
.quiz__step.active { display: block; animation: fade var(--dur) var(--ease); }
.quiz__result { display: none; text-align: center; }
.quiz__result.active { display: block; animation: fade var(--dur) var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* FAQ */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--cream-faint); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.3rem 0; font-size: var(--text-base); font-weight: 500; color: var(--cream); }
.faq__q::after { content: '+'; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); transition: transform var(--dur) var(--ease); flex: none; }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); color: var(--cream-dim); font-size: var(--text-sm); }
.faq__a p { padding-bottom: 1.3rem; }

/* CTA-полоса */
.cta-band { background: linear-gradient(135deg, var(--graphite-700), var(--graphite-800)); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: clamp(2rem, 1.4rem + 3vw, 4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band__form { display: flex; gap: 0.8rem; max-width: 520px; margin: 1.8rem auto 0; flex-wrap: wrap; }
.cta-band__form input { flex: 1 1 220px; }

/* ---------- Партнёрская: доход ---------- */
.payout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.payout__card { background: var(--graphite-700); border: 1px solid var(--cream-faint); border-radius: var(--radius-lg); padding: 2rem 1.6rem; text-align: center; }
.payout__card--hero { border-color: var(--gold-line); background: linear-gradient(160deg, var(--graphite-700), rgba(201,168,76,0.06)); }
.payout__num { font-family: var(--font-display); font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem); color: var(--gold); font-weight: 500; line-height: 1; }
.payout__label { font-weight: 600; margin: 0.6rem 0 0.4rem; }
.payout__text { font-size: var(--text-sm); color: var(--cream-dim); }

.tariff { width: 100%; border-collapse: collapse; }
.tariff th, .tariff td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--cream-faint); }
.tariff th { font-size: var(--text-sm); color: var(--cream-dim); font-weight: 600; letter-spacing: 0.04em; }
.tariff td { font-size: var(--text-base); }
.tariff td:last-child { color: var(--gold); font-weight: 600; font-family: var(--font-display); font-size: 1.2rem; }

/* ---------- Футер ---------- */
.footer { background: var(--graphite-800); border-top: 1px solid var(--cream-faint); padding-block: clamp(2.6rem, 2rem + 2vw, 4rem); font-size: var(--text-sm); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2.4rem; }
.footer__col h4 { font-size: var(--text-sm); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__col a, .footer__col p { color: var(--cream-dim); display: block; margin-bottom: 0.5rem; }
.footer__col a:hover { color: var(--cream); }
.footer__legal { padding-top: 1.8rem; border-top: 1px solid var(--cream-faint); color: var(--taupe); font-size: 0.74rem; line-height: 1.7; }
.footer__legal a { color: var(--taupe); text-decoration: underline; }

/* Cookie */
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200; max-width: 720px; margin-inline: auto; background: var(--graphite-700); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: 1.1rem 1.4rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7); }
.cookie.hide { display: none; }
.cookie p { font-size: 0.78rem; color: var(--cream-dim); flex: 1 1 300px; }
.cookie a { color: var(--gold); text-decoration: underline; }

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

/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .chbki__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__list, .header__phone { display: none; }
  .burger { display: block; }
  .nav.open .nav__list { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--graphite-800); border-bottom: 1px solid var(--cream-faint); padding: 1.4rem var(--gutter); gap: 1.2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--2, .grid--3, .grid--4, .proc, .cases, .payout { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}
