/* ============================================================
   ICANSNAB — landing
   Строгая B2B-палитра: тёмно-синий + сталь + светофорный логотип
   ============================================================ */

:root {
  --navy-900: #0B2038;
  --navy-800: #102C4B;
  --navy-700: #17346B;
  --navy-600: #1E4A80;
  --navy-500: #2E6CA6;

  --logo-red:    #E11D1D;
  --logo-yellow: #F5B60D;
  --logo-green:  #7DC242;

  --ink:      #16202B;
  --ink-soft: #46586C;
  --muted:    #6C7F93;

  --bg:        #FFFFFF;
  --bg-soft:   #F4F7FA;
  --bg-softer: #EEF3F8;
  --line:      #DCE4EE;
  --line-soft: #E9EEF5;

  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(11, 32, 56, .06), 0 2px 8px rgba(11, 32, 56, .05);
  --shadow-md: 0 4px 14px rgba(11, 32, 56, .09), 0 12px 32px rgba(11, 32, 56, .08);
  --shadow-lg: 0 18px 50px rgba(11, 32, 56, .18);

  --container: 1200px;
  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { margin: 0; line-height: 1.18; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------- Логотип (мнемоника светофора) ---------------- */
.logo {
  display: inline-block;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0;      /* стандартное расстояние, без разрядки */
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo__i    { color: var(--logo-red); }
.logo__can  { color: var(--logo-yellow); }
.logo__snab { color: var(--logo-green); }
.logo--footer { font-size: 32px; }

/* ---------------- Кнопки ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: 15px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s, transform .06s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy-700); color: #fff; }
.btn--primary:hover { background: var(--navy-600); }
.btn--ghost { background: transparent; color: var(--navy-700); border-color: var(--navy-700); }
.btn--ghost:hover { background: var(--navy-700); color: #fff; }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { background: var(--bg-softer); }
.btn--block { width: 100%; padding: 14px 22px; font-size: 16px; }

.link-btn {
  background: none; border: 0; padding: 0; font: inherit; color: #C7D5E4;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: #fff; }

/* ---------------- Шапка ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 28px;
  min-height: 72px;
}
.nav {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto;
}
.nav a {
  color: var(--ink-soft); font-size: 15px; font-weight: 500; text-decoration: none;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--navy-700); border-bottom-color: var(--logo-yellow); }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--navy-800); transition: .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Герой ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #EDF2F8 0%, #DCE6F1 100%);
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--line);
}
.hero__art {
  position: absolute; right: -2%; top: 50%;
  transform: translateY(-50%);
  width: 72%; max-height: 104%;
  object-fit: contain; object-position: right center;
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(240,245,250,.99) 0%, rgba(240,245,250,.94) 26%, rgba(240,245,250,.42) 44%, rgba(234,241,248,.06) 62%, rgba(234,241,248,.16) 100%),
    radial-gradient(120% 80% at 10% 20%, rgba(11,32,56,.05), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: start;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-900);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.hero__lead {
  max-width: 520px;
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero__points { display: grid; gap: 14px; max-width: 480px; margin-bottom: 30px; }
.hero__points li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; color: var(--navy-900); }
.hero__points svg {
  flex: 0 0 34px; width: 34px; height: 34px; padding: 6px;
  fill: none; stroke: var(--navy-700); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: 8px;
}

.cta-card {
  display: flex; align-items: center; gap: 16px; text-align: left;
  width: 100%; max-width: 430px;
  padding: 18px 20px;
  background: var(--navy-800); color: #fff;
  border: 0; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer; font: inherit;
  transition: background-color .18s, transform .12s;
}
.cta-card:hover { background: var(--navy-700); transform: translateY(-2px); }
.cta-card__icon svg { width: 32px; height: 32px; fill: none; stroke: var(--logo-yellow); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cta-card__text { display: grid; gap: 4px; }
.cta-card__text strong { font-size: 16px; font-weight: 700; }
.cta-card__text em { font-style: normal; font-size: 13.5px; color: #B8C9DA; }
.cta-card__arrow { margin-left: auto; }
.cta-card__arrow svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------- Форма ---------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}
.form-card__title { font-size: 19px; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.form-card__sub { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }

.lead-form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.req { color: var(--logo-red); }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea {
  width: 100%;
  font: inherit; font-size: 14.5px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder { color: #9BAABA; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(46, 108, 166, .15);
}
.field input[aria-invalid="true"] { border-color: var(--logo-red); box-shadow: 0 0 0 3px rgba(225, 29, 29, .12); }

.field--check {
  grid-template-columns: auto 1fr;
  align-items: start; gap: 10px;
  margin-top: 2px;
}
.field--check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--navy-700); }
.field--check label { font-size: 12.5px; font-weight: 400; color: var(--muted); line-height: 1.4; }

.form-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
}
.form-note svg { flex: 0 0 16px; width: 16px; height: 16px; fill: none; stroke: var(--logo-green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.form-status { font-size: 13.5px; font-weight: 500; }
.form-status:empty { display: none; }
.form-status--ok  { color: #2F7D32; background: #EDF7ED; border: 1px solid #CDE7CE; padding: 10px 12px; border-radius: 8px; }
.form-status--err { color: #B71C1C; background: #FDECEC; border: 1px solid #F3C9C9; padding: 10px 12px; border-radius: 8px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lead-form--sent .field,
.lead-form--sent .btn,
.lead-form--sent .form-note { display: none; }

/* ---------------- Секции ---------------- */
.section { padding: 76px 0; }
.section--light { background: var(--bg-soft); border-block: 1px solid var(--line-soft); }
.section__title {
  font-size: clamp(23px, 2.6vw, 31px);
  font-weight: 800; text-transform: uppercase; letter-spacing: .01em;
  color: var(--navy-900); text-align: center;
}
.section__sub {
  max-width: 640px; margin: 12px auto 44px;
  text-align: center; color: var(--muted); font-size: 15.5px;
}

/* Карточки «Почему мы» */
.cards { display: grid; gap: 22px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #CBD8E7; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; margin-bottom: 18px;
  border-radius: 50%;
}
.card__icon svg { width: 30px; height: 30px; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card__icon--red    { background: #FDEDED; } .card__icon--red svg    { stroke: var(--logo-red); }
.card__icon--yellow { background: #FEF6E0; } .card__icon--yellow svg { stroke: #D99A00; }
.card__icon--green  { background: #EFF8E8; } .card__icon--green svg  { stroke: #5FA033; }
.card__icon--navy   { background: #E9F0F8; } .card__icon--navy svg   { stroke: var(--navy-700); }
.card h3 {
  font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  color: var(--navy-900); margin-bottom: 10px;
}
.card p { font-size: 14px; color: var(--ink-soft); }

/* Что поставляем */
.supply { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.supply__item {
  display: grid; justify-items: center; gap: 12px; text-align: center;
  padding: 24px 12px;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: background-color .16s, border-color .16s;
}
.supply__item:hover { background: var(--bg-soft); border-color: var(--line); }
.supply__item svg {
  width: 44px; height: 44px;
  fill: none; stroke: var(--navy-700); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.supply__item span { font-size: 13.5px; font-weight: 600; color: var(--ink); max-width: 170px; }

/* Как работаем */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  box-shadow: var(--shadow-sm);
}
.step::after {
  content: "";
  position: absolute; right: -13px; top: 50%;
  width: 10px; height: 10px;
  border-top: 2px solid #BCCADA; border-right: 2px solid #BCCADA;
  transform: translateY(-50%) rotate(45deg);
}
.step:last-child::after { display: none; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; margin-bottom: 16px;
  background: var(--navy-800); color: #fff;
  font-weight: 700; font-size: 15px; border-radius: 7px;
}
.step__icon { position: absolute; right: 20px; top: 20px; }
.step__icon svg { width: 32px; height: 32px; fill: none; stroke: #9FB2C6; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 15.5px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--ink-soft); }

.alt-note {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 26px; padding: 22px 26px;
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--logo-yellow);
  border-radius: var(--radius);
}
.alt-note p { flex: 1 1 380px; font-size: 14.5px; color: var(--ink-soft); }
.alt-note strong { color: var(--navy-900); }
.alt-note__icon svg { width: 30px; height: 30px; fill: none; stroke: #D99A00; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------- Лента брендов ---------------- */
.ticker {
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track { display: flex; width: max-content; animation: ticker-scroll 46s linear infinite; }
.ticker--reverse .ticker__track { animation-direction: reverse; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__row { display: flex; align-items: center; gap: 56px; padding-right: 56px; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand {
  font-size: 22px; font-weight: 800; letter-spacing: .04em;
  color: #8395A8;
  white-space: nowrap;
  transition: color .18s;
}
.brand:hover { color: var(--navy-800); }

.brands__foot {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-top: 34px;
}
.brands__foot p { color: var(--muted); font-size: 15px; }

/* ---------------- CTA-полоса ---------------- */
.cta-band { background: var(--navy-800); color: #fff; padding: 46px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta-band h2 { font-size: 24px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.cta-band p { color: #B8C9DA; font-size: 15px; max-width: 640px; }

/* ---------------- Подвал ---------------- */
.site-footer { background: var(--navy-900); color: #D5DFEA; padding: 46px 0 22px; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px;
  padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__tagline { margin-top: 10px; font-size: 13.5px; color: #93A7BC; }
.footer__col h3 { font-size: 14.5px; font-weight: 700; color: #fff; margin: 10px 0 4px; }
.footer__col h3 a { color: #fff; }
.footer__col p { font-size: 13px; color: #93A7BC; }
.footer__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--logo-yellow); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 18px; font-size: 12.5px; color: #7E93A9;
}
.footer__bottom a { color: #7E93A9; }

/* ---------------- Диалоговое окно ---------------- */
.dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: min(88vh, 900px);
  padding: 0;
  border: 0; border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(6, 20, 36, .45);
  color: var(--ink);
  overflow: hidden;
}
.dialog::backdrop { background: rgba(8, 22, 38, .62); backdrop-filter: blur(3px); }
.dialog[open] { animation: dialog-in .18s ease-out; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.dialog__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  background: var(--navy-800); color: #fff;
}
.dialog__head h2 { font-size: 18px; font-weight: 700; }
.dialog__close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.1); border: 0; border-radius: 8px; cursor: pointer;
}
.dialog__close:hover { background: rgba(255,255,255,.2); }
.dialog__close svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }
.dialog__body { padding: 22px; overflow-y: auto; max-height: calc(88vh - 70px); }
.dialog__body .form-card { border: 0; box-shadow: none; padding: 0; }

body.no-scroll { overflow: hidden; }

/* ---------------- Служебные страницы ----------------
   Стили лежат здесь, а не в <style> внутри страниц: CSP сайта задаёт
   style-src 'self', поэтому любые инлайновые стили браузер блокирует.
   -------------------------------------------------- */

/* Страница «спасибо» */
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.thanks__box { max-width: 560px; }
.thanks__mark {
  width: 74px; height: 74px; margin: 0 auto 22px;
  border-radius: 50%; background: #EFF8E8;
  display: grid; place-items: center;
}
.thanks__mark svg { width: 36px; height: 36px; fill: none; stroke: #5FA033; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.thanks h1 { font-size: 28px; text-transform: uppercase; color: var(--navy-900); margin-bottom: 14px; }
.thanks p { color: var(--ink-soft); margin-bottom: 26px; }

/* Юридические тексты (политика обработки ПДн) */
.legal { padding: 48px 0 72px; }
.legal__wrap { max-width: 820px; }
.legal h1 {
  font-size: clamp(24px, 3vw, 34px); font-weight: 800; text-transform: uppercase;
  color: var(--navy-900); margin-bottom: 10px;
}
.legal__meta { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 {
  font-size: 18px; font-weight: 700; color: var(--navy-900);
  margin: 36px 0 12px; padding-top: 20px; border-top: 1px solid var(--line);
}
.legal h3 { font-size: 15.5px; font-weight: 700; color: var(--navy-800); margin: 20px 0 8px; }
.legal p { margin-bottom: 12px; color: var(--ink-soft); font-size: 15px; }
.legal ul, .legal ol { margin: 0 0 14px 22px; color: var(--ink-soft); font-size: 15px; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal li { margin-bottom: 7px; padding-left: 4px; }
.legal strong { color: var(--navy-900); }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 14.5px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--bg-soft); color: var(--navy-900); font-weight: 600; }
.legal td { color: var(--ink-soft); }
.legal__box {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 4px solid var(--logo-yellow);
  border-radius: var(--radius); padding: 18px 20px; margin-bottom: 20px;
}
.legal__box p:last-child { margin-bottom: 0; }
.legal__toc {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px 18px 40px; margin-bottom: 32px;
}
.legal__toc ol { margin-bottom: 0; }
.legal__table-wrap { overflow-x: auto; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; }

/* ---------------- Адаптив ---------------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__right { max-width: 560px; }
  .hero__art { width: 100%; right: 0; opacity: .35; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .supply { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header__cta { display: none; }
  .burger { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .site-header { position: relative; }
  html { scroll-padding-top: 16px; }
}

@media (max-width: 620px) {
  .hero { padding: 36px 0 48px; }
  .cards--4 { grid-template-columns: 1fr; }
  .supply { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .brand { font-size: 18px; }
  .ticker__row { gap: 36px; padding-right: 36px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .ticker { mask-image: none; -webkit-mask-image: none; }
  .ticker__track { flex-wrap: wrap; width: 100%; justify-content: center; }
  .ticker__row[aria-hidden="true"] { display: none; }
  .ticker__row { flex-wrap: wrap; justify-content: center; gap: 28px 40px; padding: 0; }
}

@media print {
  .site-header, .dialog, .cta-band, .ticker { display: none; }
  .hero__art, .hero__veil { display: none; }
}
