/* ==========================================================================
   LevelUp — дизайн-система «Ночное табло»
   Один источник правды для всех страниц. Правки цветов/отступов — только здесь.
   ========================================================================== */

/* --- 1. ТОКЕНЫ ----------------------------------------------------------- */
:root {
  /* Поверхности */
  --bg:          #080d16;
  --surface:     #0e1626;
  --surface-2:   #141f33;
  --line:        #1e2a3f;
  --line-strong: #2b3b57;

  /* Текст */
  --text:      #e8edf5;
  --text-dim:  #8fa0ba;
  --text-mute: #64748b;

  /* Акценты. Синий — плотный, не неоновый. */
  --accent:      #2e6bff;
  --accent-soft: rgba(46, 107, 255, 0.12);
  --accent-line: rgba(46, 107, 255, 0.35);
  --on-accent:   #ffffff;

  /* Статусы — живут только в рейтинге, дуэлях и таблицах */
  --win:  #4ade80;
  --lose: #f0576b;
  --warn: #f5b544;

  /* Переливание. Используется ровно в трёх местах:
     полоса под шапкой, рамка выделенного тарифа, главная цифра табло.
     Скорость намеренно медленная: движение должно быть заметно только
     если смотреть на элемент специально, а не дёргать глаз при чтении. */
  --shimmer: linear-gradient(90deg, #2e6bff, #6e4dff, #00c2ff, #6e4dff, #2e6bff);
  --shimmer-dur: 34s;

  /* Скругления и сетка */
  --r-s: 8px;
  --r-m: 12px;
  --r-l: 18px;
  --maxw: 1120px;
  --gut: 24px;

  /* Тени — мягкие и глубокие, без цветного свечения */
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);

  --header-h: 68px;

  color-scheme: dark;
}

html[data-theme="light"] {
  --bg:          #f4f6fa;
  --surface:     #ffffff;
  --surface-2:   #eef2f8;
  --line:        #dfe5ef;
  --line-strong: #c6d0e0;

  --text:      #0b1220;
  --text-dim:  #55637a;
  --text-mute: #7b879b;

  --accent:      #1d4ed8;
  --accent-soft: rgba(29, 78, 216, 0.09);
  --accent-line: rgba(29, 78, 216, 0.3);

  --win:  #15803d;
  --lose: #be123c;
  --warn: #a16207;

  --shadow: 0 20px 44px -24px rgba(11, 18, 32, 0.35);

  color-scheme: light;
}

/* --- 2. БАЗА ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Onest", "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: "Unbounded", "Onest", -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); line-height: 1.16; letter-spacing: -0.015em; font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.25rem); letter-spacing: -0.01em; line-height: 1.25; }
h4 { font-size: 1.05rem; letter-spacing: 0; font-weight: 700; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }
a:not([class]) { color: var(--accent); text-underline-offset: 3px; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }
li::marker { color: var(--text-mute); }

strong, b { font-weight: 700; color: var(--text); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: var(--on-accent); }

/* Все цифры — табличные. Это база стиля: цифры и есть декор. */
.num, table, .stat-value, .rating {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--on-accent);
  padding: 12px 20px; border-radius: 0 0 var(--r-s) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --- 3. РАСКЛАДКА -------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.wrap--narrow { max-width: 780px; }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section + .section { border-top: 1px solid var(--line); }

.section-head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--mute { color: var(--text-mute); }

.lead { font-size: 1.15rem; color: var(--text-dim); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- 4. ШАПКА ------------------------------------------------------------ */
.topline {
  height: 2px;
  background: var(--shimmer);
  background-size: 300% 100%;
  animation: shimmer var(--shimmer-dur) linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
  text-decoration: none; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 2px;
  margin-right: auto;
}
.logo b { font-weight: 800; color: var(--accent); }

.site-nav { display: flex; gap: 26px; }
.site-nav a {
  text-decoration: none; color: var(--text-dim);
  font-size: 0.94rem; font-weight: 600;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color 0.12s ease, border-color 0.12s ease;
}
.site-nav a:hover { color: var(--text); }
.site-nav a[aria-current="page"] { color: var(--text); border-bottom-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--r-s); color: var(--text-dim); cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease;
}
.icon-btn:hover { color: var(--text); border-color: var(--line-strong); }
.icon-btn svg { width: 18px; height: 18px; }

html[data-theme="light"] .icon-moon { display: none; }
html:not([data-theme="light"]) .icon-sun { display: none; }

.nav-toggle { display: none; }

/* --- 5. КНОПКИ ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: var(--r-m);
  font: inherit; font-weight: 700; font-size: 0.98rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background-color 0.12s ease, border-color 0.12s ease, transform 0.12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: color-mix(in srgb, var(--accent) 85%, #fff); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--text-dim); background: var(--surface); }

.btn--sm { padding: 9px 16px; font-size: 0.88rem; border-radius: var(--r-s); }
.btn--wide { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- 6. КАРТОЧКИ --------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 26px;
}
.card--pad-lg { padding: clamp(26px, 4vw, 40px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-dim); }

a.card { text-decoration: none; display: block; transition: border-color 0.12s ease; }
a.card:hover { border-color: var(--line-strong); }

.step { position: relative; }
.step-num {
  font-family: "Unbounded", sans-serif;
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--line-strong);
  margin-bottom: 16px;
}

/* Слот под реальный скриншот бота */
.shot {
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-m);
  background: var(--surface-2);
  min-height: 190px;
  display: grid; place-items: center;
  padding: 20px; text-align: center;
  color: var(--text-mute); font-size: 0.86rem; line-height: 1.5;
}

/* --- 7. ТАБЛО (главный визуальный объект) -------------------------------- */
.board {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.board-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute);
}
.board-body { padding: 22px 20px; }

.duel { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; }
.duel-side { text-align: center; }
.duel-name { font-weight: 700; font-size: 0.98rem; margin-bottom: 6px; }
.duel-vs {
  font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 0.85rem;
  color: var(--text-mute); letter-spacing: 0.08em;
}

.rating {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  background: var(--shimmer);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmerSlow calc(var(--shimmer-dur) * 1.4) linear infinite;
}
@keyframes shimmerSlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}
.rating--flat {
  background: none; -webkit-text-fill-color: var(--text); color: var(--text);
  animation: none;
}

.dots { display: flex; gap: 5px; justify-content: center; margin-top: 12px; }
.dot { width: 100%; max-width: 16px; height: 5px; border-radius: 3px; background: var(--line-strong); }
.dot--ok { background: var(--win); }
.dot--miss { background: var(--lose); }

.board-foot {
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  font-size: 0.84rem; color: var(--text-mute);
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}

/* --- 7б. МАРАФОН: ставка, банк, серия занятий ---------------------------- */
/* Серия занятий за месяц: 12 клеток = 3 занятия в неделю × 4 недели.
   Это главный носитель смысла продукта — одна красная клетка обнуляет всё. */
.streak { display: grid; grid-template-columns: repeat(12, 1fr); gap: 5px; }
.streak span {
  aspect-ratio: 1; border-radius: 4px;
  background: var(--surface-2); border: 1px solid var(--line);
}
.streak .ok   { background: var(--win);  border-color: transparent; }
.streak .miss { background: var(--lose); border-color: transparent; }
.streak-legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 12px; font-size: 0.82rem; color: var(--text-mute);
}
.streak-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; margin-right: 6px; vertical-align: -1px; }

.sum {
  font-family: "Unbounded", sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1;
}
.sum--win { color: var(--win); }
.sum--lose { color: var(--lose); }

/* Две судьбы участника: дошёл / выбыл. */
.fate { border-left: 3px solid var(--line-strong); padding-left: 18px; }
.fate--win  { border-left-color: var(--win); }
.fate--lose { border-left-color: var(--lose); }
.fate h3 { margin-bottom: 8px; }
.fate p { color: var(--text-dim); }

/* --- 8. СТАТИСТИКА ------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; }
.stat { background: var(--bg); padding: 18px 20px; }
.stat-value { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 1.7rem; line-height: 1.1; }
.stat-label { font-size: 0.84rem; color: var(--text-mute); margin-top: 4px; }

/* --- 9. ТАРИФЫ ----------------------------------------------------------- */
.plan { display: flex; flex-direction: column; height: 100%; }
.plan .price {
  font-family: "Unbounded", sans-serif; font-weight: 800;
  font-size: 2.2rem; line-height: 1; margin: 4px 0 6px;
}
.plan .price small { font-size: 0.9rem; font-weight: 600; color: var(--text-mute); font-family: "Onest", sans-serif; }
.plan .btn { margin-top: auto; }
.plan ul { list-style: none; padding: 0; margin: 18px 0; }
.plan li {
  position: relative; padding-left: 26px; margin-bottom: 10px;
  color: var(--text-dim); font-size: 0.95rem;
}
.plan li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px; border-left: 2px solid var(--win); border-bottom: 2px solid var(--win);
  transform: rotate(-45deg);
}
.plan li.no { color: var(--text-mute); }
.plan li.no::before {
  border: 0; top: 11px; left: 3px; width: 12px; height: 2px;
  background: var(--text-mute); transform: none;
}

/* Рамка с переливанием — только у выделенного тарифа */
.plan-wrap--featured {
  padding: 1px; border-radius: calc(var(--r-l) + 1px);
  background: var(--shimmer); background-size: 300% 100%;
  animation: shimmer var(--shimmer-dur) linear infinite;
}
.plan-wrap--featured .card { border-color: transparent; }

.tag {
  display: inline-block; padding: 4px 10px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line);
}
.tag--free { background: rgba(74, 222, 128, 0.1); color: var(--win); border-color: rgba(74, 222, 128, 0.3); }
.tag--warn { background: rgba(245, 181, 68, 0.1); color: var(--warn); border-color: rgba(245, 181, 68, 0.3); }
.tag--lose { background: rgba(240, 87, 107, 0.1); color: var(--lose); border-color: rgba(240, 87, 107, 0.3); }

/* --- 10. ТАБЛИЦЫ --------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 460px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
th {
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mute); font-weight: 700; background: var(--surface-2);
}
tbody tr:last-child td { border-bottom: 0; }
td.right, th.right { text-align: right; }
.table-card { border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; background: var(--surface); }

.place { font-family: "Unbounded", sans-serif; font-weight: 800; color: var(--text-mute); width: 56px; }
.place--1 { color: #ffd166; }
.place--2 { color: #cbd5e1; }
.place--3 { color: #d9a066; }

/* --- 11. FAQ ------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 40px 18px 0;
  font-weight: 700; font-size: 1.02rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 26px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--text-mute); border-bottom: 2px solid var(--text-mute);
  transform: rotate(45deg); transition: transform 0.15s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq .faq-body { padding: 0 0 20px; color: var(--text-dim); max-width: 74ch; }

/* --- 12. ТИПОВЫЕ БЛОКИ --------------------------------------------------- */
.note {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  padding: 16px 20px; border-radius: 0 var(--r-m) var(--r-m) 0;
  color: var(--text-dim); font-size: 0.95rem;
}
.note--warn { border-left-color: var(--warn); background: rgba(245, 181, 68, 0.08); }

.todo {
  display: inline-block;
  background: rgba(245, 181, 68, 0.14); color: var(--warn);
  border: 1px dashed rgba(245, 181, 68, 0.5);
  border-radius: 4px; padding: 0 6px;
  font-size: 0.86em; font-weight: 700; white-space: nowrap;
}

.legal { max-width: 74ch; }
.legal h2 { font-size: 1.5rem; margin: 44px 0 14px; scroll-margin-top: 90px; }
.legal h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--text-dim); }
.legal ol { counter-reset: none; }

.toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l); padding: 22px 26px; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc a { color: var(--text-dim); text-decoration: none; }
.toc a:hover { color: var(--accent); }

.kv { display: grid; grid-template-columns: minmax(140px, 220px) 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; }
.kv dt { background: var(--surface-2); padding: 13px 16px; font-size: 0.86rem; color: var(--text-mute); font-weight: 600; }
.kv dd { background: var(--surface); padding: 13px 16px; margin: 0; }

/* --- 13. HERO ------------------------------------------------------------ */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(40px, 6vw, 76px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
/* Заголовок держим в 20 символах на строку: длинная строка крупным
   гротеском читается хуже, чем та же мысль в три коротких строки. */
.hero h1 { margin-bottom: 20px; max-width: 20ch; }
.hero .lead { max-width: 52ch; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; font-size: 0.88rem; color: var(--text-mute); }
.hero-meta b { color: var(--text); font-family: "Unbounded", sans-serif; font-size: 1rem; }

/* --- 14. CTA + QR -------------------------------------------------------- */
.cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(28px, 4vw, 44px);
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 48px); flex-wrap: wrap;
}
.cta h2 { margin-bottom: 12px; }
.cta p { color: var(--text-dim); max-width: 46ch; }
.qr { text-align: center; flex: none; }
.qr img { width: 132px; height: 132px; border-radius: var(--r-m); background: #fff; padding: 8px; }
.qr figcaption { font-size: 0.8rem; color: var(--text-mute); margin-top: 10px; }

/* --- 15. ПОДВАЛ ---------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding: 48px 0 34px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-grid h4 { font-family: "Onest", sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--text-dim); text-decoration: none; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.84rem; color: var(--text-mute);
}

.page-head { padding: clamp(40px, 6vw, 68px) 0 clamp(24px, 3vw, 36px); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 16px; }
.page-head p { color: var(--text-dim); max-width: 64ch; font-size: 1.05rem; }

.breadcrumb { font-size: 0.85rem; color: var(--text-mute); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }

/* --- 16. АДАПТИВ --------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .kv { grid-template-columns: 1fr; }
  .kv dt { padding-bottom: 4px; }
}

@media (max-width: 760px) {
  :root { --gut: 18px; }
  .nav-toggle { display: grid; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px var(--gut) 18px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); border-left: 2px solid transparent; }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--accent); }
  .site-header { position: relative; }
  .header-inner { gap: 12px; }
  .btn--header { display: none; }
  .cta { flex-direction: column; align-items: flex-start; }
  .duel { grid-template-columns: 1fr; gap: 18px; }
  .duel-vs { order: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rating { background: none; -webkit-text-fill-color: var(--text); color: var(--text); }
  .topline { background: var(--accent); }
  .plan-wrap--featured { background: var(--accent); }
}

@media print {
  .site-header, .site-footer, .topline, .btn { display: none; }
  body { background: #fff; color: #000; }
}
