/* AXIS Universal Deposit — вёрстка по макету.
   Порядок блоков и подписи взяты с макета один в один; фон собран на градиентах
   и SVG, чтобы страница не тянула тяжёлые растровые файлы. */

:root {
  --bg: #07060a;
  --bg-2: #0d0a07;
  --ink: #f6efe3;
  --muted: #9d9488;
  --muted-2: #6f6659;
  --gold: #f5b63f;
  --gold-2: #e2901d;
  --gold-soft: rgba(245, 182, 63, .18);
  --gold-line: rgba(245, 182, 63, .22);
  --card: rgba(23, 18, 12, .78);
  --card-2: rgba(15, 12, 9, .82);
  --field: rgba(9, 8, 7, .72);
  --ok: #35c07a;
  --err: #ef6a5a;
  --radius: 18px;
  --shadow: 0 30px 70px -40px rgba(0, 0, 0, .95);
}

* { box-sizing: border-box; }

/* hidden обязан выигрывать у любого display ниже по файлу */
[hidden] { display: none !important; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2 { margin: 0; font-family: Unbounded, Archivo, Manrope, sans-serif; font-weight: 600; }

/* ── Фон ─────────────────────────────────────────────────────────────────── */

.scene { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

/* Фон — картинка из макета (планета, эмблема, подиум). Поверх лежит лёгкое
   затемнение к центру: без него белые цифры в карточке теряются на светлых
   местах снимка. Картинка 1672×941, поэтому cover и привязка к низу — низ
   с подиумом должен оставаться в кадре на любой высоте экрана. */
.scene::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 52% at 50% 46%, rgba(4, 3, 6, .72), transparent 78%),
    linear-gradient(180deg, rgba(5, 4, 8, .55) 0%, rgba(5, 4, 8, .1) 26%, rgba(5, 4, 8, .55) 100%),
    url('/assets/bg.png') center bottom / cover no-repeat,
    #07060a;
}

/* Фоновые монеты стоят в зазоре между виджетом (680px по центру) и
   краем экрана: clamp с calc(50% - …) не даёт им наехать на карточку. */
.scene__coins { position: absolute; top: 42%; display: grid; gap: 26px; }
.scene__coins--left { left: clamp(8px, calc(50% - 560px), 8vw); }
.scene__coins--right { right: clamp(8px, calc(50% - 560px), 8vw); justify-items: end; }

.coin {
  display: block; width: 72px; height: 72px; border-radius: 50%;
  background-size: cover;
  box-shadow: 0 22px 40px -18px rgba(0, 0, 0, .9), 0 0 40px -12px rgba(245, 182, 63, .35);
  animation: float 7s ease-in-out infinite;
}
.coin--btc  { background: radial-gradient(circle at 32% 28%, #ffc36b, #f7931a 60%, #b45f06); }
.coin--eth  { background: radial-gradient(circle at 32% 28%, #7f8dc4, #3c4a80 60%, #1b2244); margin-left: 46px; }
.coin--sol  { background: radial-gradient(circle at 32% 28%, #4be1c0, #7b5bf0 60%, #221646); animation-delay: -2s; }
.coin--usdt { background: radial-gradient(circle at 32% 28%, #4fe3b6, #14a67c 60%, #0a5c46); }
.coin--trx  { background: radial-gradient(circle at 32% 28%, #ff7a6b, #d0342c 60%, #6d130f); margin-right: 46px; animation-delay: -3s; }
.coin--more { background: radial-gradient(circle at 32% 28%, #3a3733, #171513 65%, #0b0a09); animation-delay: -1s; }
.coin::after {
  display: grid; place-items: center; height: 100%;
  color: rgba(255, 255, 255, .92); font-size: 30px; font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
}
.coin--btc::after  { content: '₿'; }
.coin--eth::after  { content: 'Ξ'; }
.coin--sol::after  { content: 'S'; }
.coin--usdt::after { content: '₮'; }
.coin--trx::after  { content: 'T'; }
.coin--more::after { content: '•••'; font-size: 20px; letter-spacing: 2px; color: #d9cfc0; }

@keyframes float { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }

/* ── Шапка ───────────────────────────────────────────────────────────────── */

.site-header {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 28px;
  padding: 18px clamp(16px, 4vw, 48px);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; }
.brand__text { display: grid; line-height: 1; }
.brand__text b {
  font-family: Unbounded, sans-serif; font-weight: 600; font-size: 20px; letter-spacing: .34em;
  background: linear-gradient(180deg, #fbe0a4, var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand__text i { font-style: normal; font-size: 8.5px; letter-spacing: .42em; color: var(--muted); margin-top: 4px; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.lang {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09);
  font-size: 13px; font-weight: 600; color: #d9d0c2;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  transition: transform .2s, box-shadow .25s, background .25s, opacity .2s;
}
.btn--ghost { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .10); }
.btn--ghost:hover { background: rgba(255, 255, 255, .09); }
.btn--gold, .btn--primary {
  background: linear-gradient(180deg, #ffd680, #e9a336);
  color: #201302;
  box-shadow: 0 16px 34px -18px rgba(233, 163, 54, .9);
}
.btn--gold:hover, .btn--primary:hover { transform: translateY(-1px); box-shadow: 0 22px 40px -18px rgba(233, 163, 54, 1); }
.btn--wide { width: 100%; padding: 16px 20px; border-radius: 14px; font-size: 16px; font-family: Unbounded, sans-serif; font-weight: 500; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }


/* ── Боковые подписи ─────────────────────────────────────────────────────── */

.side {
  position: fixed; z-index: 2; display: grid; gap: 6px;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: #b6ac9c;
  font-weight: 600;
}
.side--lt { left: clamp(16px, 3.5vw, 46px); top: 112px; }
.side--rt { right: clamp(16px, 3.5vw, 46px); top: 112px; text-align: right; }
.side--lb { left: clamp(16px, 3.5vw, 46px); bottom: 150px; }
.side--rb { right: clamp(16px, 3.5vw, 46px); bottom: 130px; text-align: right; }

/* ── Заголовок ───────────────────────────────────────────────────────────── */

.page { position: relative; z-index: 3; padding: clamp(18px, 3vw, 34px) 16px 40px; }

.eyebrow {
  display: none;
  margin: 0 auto 6px; max-width: 640px;
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
}

.title {
  text-align: center;
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: .02em;
  line-height: 1.05;
}
.title span {
  background: linear-gradient(180deg, #ffe0a2 8%, var(--gold) 55%, #cf7d12);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.subtitle { margin: 12px 0 0; text-align: center; color: #cdc4b6; font-size: clamp(14px, 1.4vw, 17px); }

/* ── Плашки-преимущества ─────────────────────────────────────────────────── */

.highlights { display: none; list-style: none; margin: 22px auto 0; padding: 0; gap: 10px; max-width: 680px; }
.highlights li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; border-radius: 14px;
  background: var(--card-2); border: 1px solid rgba(255, 255, 255, .06);
  font-size: 11.5px; font-weight: 600; color: #d6cdbf; line-height: 1.25;
}
.hl-ico {
  display: grid; place-items: center; flex: none;
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(180deg, rgba(245, 182, 63, .28), rgba(226, 144, 29, .12));
  border: 1px solid var(--gold-line); font-size: 14px;
}

/* ── Виджет ──────────────────────────────────────────────────────────────── */

.widget {
  position: relative;
  width: calc(100% - 60%);
  margin: clamp(18px, 3vw, 30px) auto 0;
  padding: 14px;
  display: grid;
  gap: 12px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(30, 23, 15, .72), rgba(12, 10, 8, .86));
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow), 0 0 90px -50px rgba(245, 182, 63, .7);
  backdrop-filter: blur(14px);
}

.card {
  padding: 16px 18px 18px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
}
.card--muted { background: var(--card-2); }

.card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.card__title { font-size: 15px; font-weight: 500; letter-spacing: .01em; color: #ece3d5; }
.card__aside { display: flex; align-items: center; gap: 10px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; flex-wrap: wrap; }

.balance { font-size: 12.5px; color: var(--muted); }

.chip {
  padding: 6px 12px; border-radius: 9px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .10);
  font-size: 12.5px; font-weight: 700; color: #e7ddcd;
}
.chip:hover { background: rgba(245, 182, 63, .16); border-color: var(--gold-line); color: var(--gold); }

.field {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px 10px 18px;
  border-radius: 14px;
  background: var(--field);
  border: 1px solid rgba(255, 255, 255, .07);
  /* Кнопка выбора монеты обязана оставаться внутри поля при любой длине
     тикера и подписи сети: сжимается ввод суммы, а не разъезжается вёрстка. */
  min-width: 0; max-width: 100%; overflow: hidden;
}
.field:focus-within { border-color: var(--gold-line); box-shadow: 0 0 0 3px rgba(245, 182, 63, .08); }

.field__amount {
  flex: 1; min-width: 0;
  background: none; border: 0; outline: none;
  font-family: Unbounded, sans-serif; font-weight: 500; font-size: clamp(24px, 3.4vw, 34px);
  color: #fff; letter-spacing: -.01em;
}
.field__amount--out { color: #fff; }

.asset {
  display: inline-flex; align-items: center; gap: 9px;
  flex: 0 0 auto; max-width: 48%;
  padding: 9px 14px 9px 10px; border-radius: 12px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09);
  font-weight: 700; font-size: 15px; white-space: nowrap;
}
.asset:hover { border-color: var(--gold-line); }
.asset--static { cursor: default; opacity: .95; }
.asset__ico {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800; color: #fff;
  background: #2a2621;
}
.asset__label { display: grid; line-height: 1.1; text-align: left; }
.asset__net { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.chev { opacity: .6; }

.hint { margin: 8px 0 0 2px; font-size: 13px; color: var(--muted); }

.credit-note { margin: 8px 0 0; font-size: 13px; color: #cdc4b6; display: inline-flex; align-items: center; gap: 8px; }
.credit-note b { color: var(--gold); font-weight: 700; }

.info {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  font-size: 11px; font-weight: 700; color: #d6cdbf; line-height: 1;
}

.swap { display: flex; justify-content: center; margin: -20px 0 -20px; position: relative; z-index: 2; }
.swap__btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: #14100c; border: 1px solid var(--gold-line); color: var(--gold);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .9);
  transition: transform .25s, background .25s;
}
.swap__btn:hover { transform: rotate(180deg); background: #1b1510; }

/* ── Проекты ─────────────────────────────────────────────────────────────── */

/* auto-fit, а не жёсткие четыре колонки: сейчас запущена одна Vima, и карточка
   должна занимать строку целиком, а не жаться в четверть с пустотой рядом. */
.projects { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-bottom: 16px; }
.projects--single { grid-template-columns: 1fr; }
.projects--single .project { display: flex; align-items: center; gap: 14px; padding: 14px 16px; }
.projects--single .project__body { padding-left: 0; }
.projects--single .project__radio { position: static; margin-left: auto; }

.project {
  position: relative; text-align: left;
  padding: 12px 12px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .07);
  display: grid; gap: 8px; transition: border-color .25s, background .25s, box-shadow .25s;
}
.project:hover { border-color: rgba(245, 182, 63, .35); }
.project.is-active {
  background: linear-gradient(180deg, rgba(245, 182, 63, .14), rgba(245, 182, 63, .03));
  border-color: var(--gold);
  box-shadow: 0 18px 36px -24px rgba(245, 182, 63, .9), inset 0 0 0 1px rgba(245, 182, 63, .18);
}
.project__ico { width: 26px; height: 26px; opacity: .9; }
.project.is-active .project__ico { filter: drop-shadow(0 0 8px rgba(245, 182, 63, .8)); }
.project__name { font-size: 13.5px; font-weight: 700; color: #f0e7d9; }
.project__role { font-size: 11.5px; color: var(--muted); line-height: 1.25; }
.project__radio {
  position: absolute; left: 12px; bottom: 12px;
  width: 15px; height: 15px; border-radius: 50%;
  border: 1.6px solid rgba(255, 255, 255, .25);
}
.project.is-active .project__radio { border-color: var(--gold); background: radial-gradient(circle, var(--gold) 45%, transparent 47%); }
.project__body { padding-left: 24px; }

.form-error { margin: 10px 0 0; font-size: 13px; color: var(--err); }

.notice {
  margin: 0; padding: 12px 16px; border-radius: 14px;
  background: rgba(245, 182, 63, .10); border: 1px solid var(--gold-line);
  font-size: 13px; color: #e7ddcd;
}

/* ── Адрес пополнения ────────────────────────────────────────────────────── */

.network-badge {
  padding: 7px 12px; border-radius: 10px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09);
  font-size: 12.5px; color: #cfc6b8;
}
.network-badge b { color: #f0e7d9; }

/* Спящий вид блоков 4 и 5 до создания заявки: видно, что будет дальше,
   но ничего не притворяется готовым к переводу. */
.is-idle .payin__qr { background: rgba(255, 255, 255, .06); }
.is-idle .payin__qr-fallback { display: block !important; color: var(--muted-2); }
.is-idle .payin__address { color: var(--muted); }
.is-idle .copy { opacity: .4; pointer-events: none; }
.is-idle .payin__warn { opacity: .65; }

.payin { display: flex; align-items: flex-start; gap: 16px; }
.payin__qr {
  flex: none; width: 108px; height: 108px; padding: 8px;
  border-radius: 12px; background: #fff; display: grid; place-items: center; overflow: hidden;
}
.payin__qr img, .payin__qr canvas { width: 100%; height: 100%; display: block; }
.payin__qr-fallback { color: #999; font-size: 12px; }

.payin__body { flex: 1; min-width: 0; }
.payin__label { margin: 0 0 6px; font-size: 12.5px; color: var(--muted); }
.payin__address {
  margin: 0 0 12px; font-size: clamp(14px, 1.6vw, 17px); font-weight: 600; color: #fff;
  word-break: break-all; letter-spacing: .01em;
}
.payin__warn { display: flex; gap: 9px; margin: 0; font-size: 12.5px; color: #b7ada0; line-height: 1.4; }
.payin__warn b { color: #e9dfd0; }
.payin__warn-ico {
  flex: none; width: 18px; height: 18px; border-radius: 50%; margin-top: 1px;
  display: grid; place-items: center;
  background: rgba(245, 182, 63, .16); border: 1px solid var(--gold-line);
  color: var(--gold); font-size: 11px; font-weight: 800;
}
.payin__extra { margin: 10px 0 0; font-size: 12.5px; color: var(--gold); }
.payin__timer { margin: 14px 0 0; font-size: 12.5px; color: var(--muted); }
.payin__timer b { color: #e9dfd0; }

.copy {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .10); color: #d8cfc1;
}
.copy:hover { border-color: var(--gold-line); color: var(--gold); }
.copy.is-done { color: var(--ok); border-color: rgba(53, 192, 122, .4); }

/* ── Статус ──────────────────────────────────────────────────────────────── */

.steps { list-style: none; display: flex; justify-content: space-between; gap: 4px; margin: 6px 0 0; padding: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; left: 12%; right: 12%; top: 17px; height: 1px;
  background: rgba(255, 255, 255, .12);
}
.step { position: relative; z-index: 1; flex: 1; display: grid; justify-items: center; gap: 9px; text-align: center; }
.step__dot {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: #100d0a; border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px; font-weight: 700; color: var(--muted);
}
.step__label { font-size: 11.5px; color: var(--muted); line-height: 1.25; }
.step.is-active .step__dot {
  background: linear-gradient(180deg, #ffd680, #e9a336); color: #1d1301; border-color: transparent;
  box-shadow: 0 0 22px -4px rgba(245, 182, 63, .75);
}
.step.is-active .step__label { color: #f0e7d9; font-weight: 600; }
.step.is-done .step__dot { background: rgba(245, 182, 63, .18); border-color: var(--gold-line); color: var(--gold); }
.step.is-done .step__label { color: #cfc6b8; }

.status-note { margin: 14px 0 0; font-size: 13px; color: #cdc4b6; }
.status-links { display: flex; gap: 16px; margin-top: 10px; }
.link { background: none; border: 0; padding: 0; font-size: 13px; font-weight: 600; color: var(--gold); }
.link--danger { color: var(--err); }

/* ── Подвал ──────────────────────────────────────────────────────────────── */

.site-footer {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: clamp(14px, 3vw, 40px);
  padding: 26px clamp(16px, 4vw, 48px) 34px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 30px;
}
.tg {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 auto;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .10);
  font-size: 13.5px; font-weight: 700; color: #d9d0c2;
}
.tg:hover { color: var(--gold); border-color: var(--gold-line); }
.copyright { margin: 0; font-size: 12px; color: var(--muted-2); text-align: right; line-height: 1.5; }

/* ── Нижняя навигация (мобильная) ────────────────────────────────────────── */

/* Бургер и меню за ним — только мобильные: на широком экране кнопки входа
   стоят прямо в шапке. */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: 10px; }
.burger span { width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }

.mobile-menu {
  position: absolute; z-index: 12; right: clamp(12px, 4vw, 48px); top: 68px;
  display: grid; gap: 2px; min-width: 220px; padding: 8px;
  border-radius: 16px; background: #100d0a; border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}
.mobile-menu a { padding: 11px 14px; border-radius: 11px; font-size: 14px; font-weight: 600; color: #e7ddcd; }
.mobile-menu a:hover { background: rgba(245, 182, 63, .12); color: var(--gold); }

/* ── Список монет ────────────────────────────────────────────────────────── */

.sheet { position: fixed; inset: 0; z-index: 20; background: rgba(4, 3, 6, .72); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; }
.sheet__panel {
  width: min(430px, 100%); max-height: min(560px, 82vh);
  display: flex; flex-direction: column;
  border-radius: 20px; overflow: hidden;
  background: #100d0a; border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}
.sheet__head { display: flex; gap: 10px; padding: 14px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.sheet__search {
  flex: 1; padding: 11px 14px; border-radius: 11px;
  background: var(--field); border: 1px solid rgba(255, 255, 255, .09); color: var(--ink); outline: none;
}
.sheet__search:focus { border-color: var(--gold-line); }
.sheet__close { width: 42px; border-radius: 11px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09); }
.sheet__list { overflow-y: auto; padding: 8px; }

.asset-row {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 12px; background: none; border: 0; text-align: left;
}
.asset-row:hover { background: rgba(245, 182, 63, .10); }
.asset-row__name { flex: 1; min-width: 0; }
.asset-row__ticker { font-weight: 700; font-size: 14px; }
.asset-row__sub { font-size: 12px; color: var(--muted); }
.asset-row__net {
  font-size: 11px; padding: 4px 9px; border-radius: 999px;
  background: rgba(255, 255, 255, .06); color: #cfc6b8; text-transform: uppercase; letter-spacing: .06em;
}
.sheet__empty { padding: 24px; text-align: center; color: var(--muted); font-size: 13px; }

/* ── Адаптив ─────────────────────────────────────────────────────────────── */

/* Ниже 1400px зазора по бокам уже нет: монеты ушли бы под карточку,
   поэтому их просто нет — карточка важнее украшений. */
@media (max-width: 1400px) {
  .scene__coins { display: none; }
}

@media (max-width: 1180px) {
  .side { display: none; }
}

@media (max-width: 900px) {
  /* В мобильном макете в шапке логотип, язык и бургер: кнопки входа туда
     не помещаются и живут в меню за бургером. */
  .header-actions .btn { display: none; }
  .header-actions { margin-left: auto; }
  .burger { display: flex; }
  .site-footer { flex-direction: column; text-align: center; gap: 16px; padding-bottom: 28px; }
  .copyright { text-align: center; }

  .eyebrow { display: block; text-align: center; }
  .highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .highlights--bottom { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 14px; }
  .scene__coins { display: none; }

  /* :not(.projects--single) — иначе это правило ниже по файлу перебивает
     раскладку с единственным продуктом и снова жмёт карточку в колонку. */
  .projects:not(.projects--single) { grid-template-columns: repeat(2, minmax(0, 1fr)); }

}

@media (max-width: 560px) {
  .widget { padding: 10px; border-radius: 22px; }
  .card { padding: 14px; }
  .payin { flex-wrap: wrap; }
  .payin__qr { width: 96px; height: 96px; }
  .copy { order: 3; margin-left: auto; }
  .highlights li { flex-direction: column; align-items: flex-start; gap: 8px; }
  .steps::before { left: 14%; right: 14%; }
  .step__label { font-size: 10.5px; }
  .title { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  .coin, .scene__emblem, .scene__glow--core { animation: none; }
  .swap__btn:hover { transform: none; }
}
