/* ============================================================================
   fpvsim.ru — портал. Слой ПОВЕРХ css/site.css, сам site.css не трогаем.
   Подключение на каждой странице, строго в этом порядке:
     <link rel="stylesheet" href="/css/site.css">
     <link rel="stylesheet" href="/css/portal.css">
   Токены (--bg, --accent, --line, --s-*, --ease…) берём из site.css §01.
   Секции: 01 токены портала · 02 каркас · 03 шапка .pnav · 04 .hero-mini ·
   05 .ptable · 06 .chip · 07 .pcard · 08 .searchbox · 09 .tabbar ·
   10 .timeline · 11 .plive и .pcount · 12 скелет .pskel · 13 анимации ·
   14 адаптив · 15 reduced-motion.
   ========================================================================= */

/* --- 01. ТОКЕНЫ ПОРТАЛА ---------------------------------------------------------------------- */
/*     В site.css нет золота, серебра, бронзы и синего — выводим здесь.
       Бронза сознательно темнее акцента, чтобы не путаться с ним в таблице. */

:root {
  --pnav-h:     64px;                /* высота фиксированной шапки */

  --gold:       #FFD75E;
  --silver:     #C9D4E3;
  --bronze:     #E08B4C;
  --info:       #6BA5FF;             /* синий из .btn--store */
  --rgb-gold:   255 215 94;
  --rgb-silver: 201 212 227;
  --rgb-bronze: 224 139 76;
  --rgb-info:   107 165 255;

  /* свечение акцента для ховера карточек */
  --p-glow:     0 0 0 1px rgb(var(--rgb-accent) / .25), 0 14px 38px rgb(var(--rgb-accent) / .10);
}

/* --- 02. КАРКАС ------------------------------------------------------------------------------ */
/*     Шапка фиксированная, поэтому страницу отодвигаем на её высоту.
       :has поддержан всеми целевыми браузерами; страховка — класс на body. */

body:has(.pnav),
body.has-pnav { padding-top: var(--pnav-h); }

/* --- 03. ШАПКА ПОРТАЛА: .pnav ---------------------------------------------------------------- */
/*     Эталонная разметка — partials/portal-nav.html, страницы копируют её
       как есть. Активная ссылка: .pnav__link--active + aria-current="page". */

.pnav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgb(var(--rgb-bg) / .72);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--line-soft);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .pnav { background: rgb(var(--rgb-bg) / .96); }
}

.pnav__inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  width: 100%;
  max-width: var(--maxw);
  min-height: var(--pnav-h);
  margin-inline: auto;
  padding-inline: 20px;
}

.pnav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}
.pnav__brand:hover { color: var(--text); }
.pnav__brand img { width: 28px; height: 28px; border-radius: 7px; }

/* разделы — по центру: меню забирает всё свободное место */
.pnav__menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
}

.pnav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 550;
  color: var(--dim);
  white-space: nowrap;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.pnav__link:hover { color: var(--text); background: rgb(var(--rgb-text) / .06); }

/* активный раздел подчёркнут оранжевой чертой */
.pnav__link--active { color: var(--text); }
.pnav__link--active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.pnav__cta { flex: 0 0 auto; }

/* бургер: на десктопе спрятан, полоски складываются в крест при .pnav--open */
.pnav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.pnav__burger:hover { border-color: var(--accent); background: var(--accent-dim); }
.pnav__burger-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.pnav--open .pnav__burger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pnav--open .pnav__burger-line:nth-child(2) { opacity: 0; }
.pnav--open .pnav__burger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- 04. КОМПАКТНЫЙ ЗАГОЛОВОК СТРАНИЦЫ: .hero-mini ------------------------------------------- */
/*     Вместо большого первого экрана: рубрика, h1, одна строка пояснения. */

.hero-mini {
  position: relative;
  padding-block: var(--s-7) var(--s-6);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.hero-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(640px 220px at 12% -20%, rgb(var(--rgb-accent) / .14), transparent 70%),
    radial-gradient(520px 200px at 88% 120%, rgb(var(--rgb-accent) / .06), transparent 70%);
}
.hero-mini h1 { margin-bottom: var(--s-3); font-size: 40px; }
.hero-mini .lead { margin: 0; }
.hero-mini__meta { margin-top: var(--s-4); }   /* ряд .chip / .plive под заголовком */

/* --- 05. ТАБЛИЦА РЕЙТИНГА: .ptable ----------------------------------------------------------- */
/*     Широкая таблица: зебра, липкая шапка, медальные ранги, ховер строки.
       Обёртка .ptable-wrap даёт рамку; на ≤720 она же даёт горизонтальную
       прокрутку — колонок у портальной таблицы больше, чем прячет site.css. */

.ptable-wrap {
  padding: var(--s-4);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ptable { width: 100%; border-collapse: collapse; border-spacing: 0; font-size: 15px; }
.ptable caption {
  caption-side: top;
  padding-bottom: var(--s-3);
  text-align: left;
  font-size: 14px;
  color: var(--dim);
}
.ptable th,
.ptable td { padding: 12px 14px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line-soft); }

/* липкая шапка: держится под фиксированной .pnav, фон непрозрачный */
.ptable thead th {
  position: sticky;
  top: var(--pnav-h);
  z-index: 2;
  background: var(--panel);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--dim);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

/* зебра и ховер; ховер идёт после зебры и потому побеждает */
.ptable tbody tr:nth-child(odd) { background: var(--panel-2); }
.ptable tbody tr { transition: background-color .16s var(--ease); }
.ptable tbody tr:hover { background: rgb(var(--rgb-text) / .06); }
.ptable tbody tr:last-child td { border-bottom: 0; }

/* место — узкая моноширинная колонка; числа — вправо */
.ptable tbody > tr > :first-child {
  width: 1%;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  color: var(--dim);
  white-space: nowrap;
}
.ptable th.num,
.ptable td.num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  text-align: right;
  white-space: nowrap;
}
.ptable td.name,
.ptable th.name { font-weight: 600; color: var(--text); font-family: var(--font); }

/* медальные ранги: класс .ptable--medals красит первые три строки.
   Скелет-строкам класс не вешать — позолотит заглушки. */
.ptable--medals tbody tr:nth-child(1) > :first-child { color: var(--gold); font-weight: 700; }
.ptable--medals tbody tr:nth-child(2) > :first-child { color: var(--silver); font-weight: 700; }
.ptable--medals tbody tr:nth-child(3) > :first-child { color: var(--bronze); font-weight: 700; }
.ptable--medals tbody tr:nth-child(1) { background: linear-gradient(90deg, rgb(var(--rgb-gold) / .10), transparent 45%); }
.ptable--medals tbody tr:nth-child(2) { background: linear-gradient(90deg, rgb(var(--rgb-silver) / .08), transparent 45%); }
.ptable--medals tbody tr:nth-child(3) { background: linear-gradient(90deg, rgb(var(--rgb-bronze) / .10), transparent 45%); }

/* кругляш-медаль вместо номера места: <span class="medal medal--gold">1</span> */
.medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
}
.medal--gold   { background: linear-gradient(160deg, #FFE9A0, var(--gold) 60%, #C9A227); }
.medal--silver { background: linear-gradient(160deg, #EEF3FA, var(--silver) 60%, #8E9BAD); }
.medal--bronze { background: linear-gradient(160deg, #F0B27E, var(--bronze) 60%, #9C5A28); }

/* своя строка — тот же приём, что .tbl__me в site.css */
.ptable tr.is-me,
.ptable tbody tr.is-me:nth-child(odd) { background: rgb(var(--rgb-accent) / .12); }
.ptable tr.is-me > :first-child { color: var(--accent); font-weight: 600; box-shadow: inset 3px 0 0 0 var(--accent); }

/* --- 06. ФЛАЖКИ И КЛАССЫ: .chip -------------------------------------------------------------- */
/*     Страна: <span class="chip"><span class="chip__flag">🇷🇺</span>Россия</span>
       Класс свидетельства: <span class="chip chip--lic chip--a">A</span>
       Цвета классов: A+ золото · A акцент · B зелёный · C синий · D серый. */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  vertical-align: middle;
}
.chip__flag { font-size: 14px; line-height: 1; }
.chip img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }

.chip--lic { min-width: 34px; justify-content: center; font-family: var(--mono); letter-spacing: .02em; }
.chip--ap { color: var(--gold);   border-color: rgb(var(--rgb-gold) / .45);   background: rgb(var(--rgb-gold) / .12); }
.chip--a  { color: var(--accent-2); border-color: rgb(var(--rgb-accent) / .45); background: rgb(var(--rgb-accent) / .12); }
.chip--b  { color: var(--good);   border-color: rgb(var(--rgb-good) / .40);   background: rgb(var(--rgb-good) / .12); }
.chip--c  { color: var(--info);   border-color: rgb(var(--rgb-info) / .40);   background: rgb(var(--rgb-info) / .12); }
.chip--d  { color: var(--dim); }

/* --- 07. КАРТОЧКА ВЫЗОВА / НОВОСТИ: .pcard --------------------------------------------------- */
/*     Обложка сверху, тело с отступами ниже. Вся карточка может быть <a>. */

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  transition:
    transform .2s var(--ease),
    border-color .2s var(--ease),
    box-shadow .2s var(--ease);
}
.pcard:hover,
.pcard:focus-within {
  transform: translateY(-3px);
  border-color: rgb(var(--rgb-accent) / .55);
  box-shadow: var(--shadow-sm), var(--p-glow);
  color: var(--text);
}

.pcard__cover { display: block; overflow: hidden; aspect-ratio: 16 / 9; border-bottom: 1px solid var(--line); }
.pcard__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.pcard:hover .pcard__cover img { transform: scale(1.03); }

.pcard__body { display: flex; flex: 1; flex-direction: column; gap: var(--s-3); padding: var(--s-5); }
.pcard__meta { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-3); margin: 0; font-size: 13px; color: var(--dim); }
.pcard__title { margin: 0; font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.pcard__text { margin: 0; color: var(--dim); }
.pcard__foot { margin-top: auto; padding-top: var(--s-3); font-size: 14px; color: var(--dim); }

/* подъём с тенью для любого блока, не только .pcard */
.lift { transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.lift:hover { transform: translateY(-3px); border-color: rgb(var(--rgb-accent) / .55); box-shadow: var(--shadow-sm), var(--p-glow); }

/* --- 08. ПОИСК: .searchbox ------------------------------------------------------------------- */
/*     <div class="searchbox"><input class="searchbox__input" type="search"
          placeholder="Позывной пилота"></div>. Лупа — data-URI, без запросов. */

.searchbox { position: relative; max-width: 360px; }
.searchbox__input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  background:
    var(--panel)
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238D99AA' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='7' cy='7' r='5'/%3E%3Cpath d='m14 14-3.2-3.2'/%3E%3C/svg%3E")
    16px 50% no-repeat;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.searchbox__input::placeholder { color: var(--dim); }
.searchbox__input:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }

/* --- 09. ВКЛАДКИ ТРАСС: .tabbar -------------------------------------------------------------- */
/*     Кнопки или ссылки. Активная: .tabbar__tab--active или aria-selected. */

.tabbar {
  display: flex;
  gap: var(--s-1);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabbar::-webkit-scrollbar { display: none; }
.tabbar__tab {
  position: relative;
  flex: 0 0 auto;
  padding: 10px 14px;
  background: none;
  border: 0;
  color: var(--dim);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: color .18s var(--ease);
}
.tabbar__tab::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .22s var(--ease);
}
.tabbar__tab:hover { color: var(--text); }
.tabbar__tab--active,
.tabbar__tab[aria-selected="true"] { color: var(--text); }
.tabbar__tab--active::after,
.tabbar__tab[aria-selected="true"]::after { transform: scaleX(1); }

/* --- 10. ЛЕНТА НОВОСТЕЙ: .timeline ----------------------------------------------------------- */
/*     Вертикальная линия, даты слева на линии, содержимое справа.
       <ol class="timeline"><li class="timeline__item">
         <time class="timeline__date">12.08</time>
         <div class="timeline__body">…</div></li></ol> */

.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before {
  content: "";
  position: absolute;
  left: 96px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgb(var(--rgb-accent) / .6), var(--line) 22%, var(--line) 88%, transparent);
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 40px;
  padding-bottom: var(--s-6);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgb(var(--rgb-accent) / .14);
}
.timeline__date {
  padding-top: 1px;
  text-align: right;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--dim);
}
.timeline__body > :last-child { margin-bottom: 0; }
.timeline__title { margin: 0 0 var(--s-2); font-size: 17px; line-height: 1.35; }

/* --- 11. ЖИВОЙ ИНДИКАТОР И СЧЁТЧИК ----------------------------------------------------------- */
/*     .plive: «обновлено N минут назад», точка пульсирует.
       .pcount: цифра, которую крутит JS. Хук: класс .pcount и data-count="8412";
       JS перебирает значение и по завершении вешает .pcount--done. */

.plive { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dim); }
.plive__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--good); }
.plive__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgb(var(--rgb-good) / .6);
  animation: plive-pulse 1.8s ease-out infinite;
}

@keyframes plive-pulse {
  from { transform: scale(.5); opacity: .9; }
  to   { transform: scale(1.6); opacity: 0; }
}

.pcount {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.pcount--xl { font-size: 48px; line-height: 1.1; letter-spacing: -0.02em; color: var(--accent); }
.pcount--done { animation: pcount-pop .3s var(--ease); }

@keyframes pcount-pop {
  50% { transform: scale(1.06); }
}

/* --- 12. СКЕЛЕТ ЗАГРУЗКИ: .pskel ------------------------------------------------------------- */
/*     Пока таблица грузится, в ячейках лежат полоски:
       <td><span class="pskel pskel--w60"></span></td> */

.pskel {
  display: block;
  height: 12px;
  min-width: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--panel-2) 0%, var(--line) 50%, var(--panel-2) 100%);
  background-size: 200% 100%;
  animation: pskel-shine 1.3s linear infinite;
}
.pskel--w40 { width: 40%; }
.pskel--w60 { width: 60%; }
.pskel--w80 { width: 80%; }

@keyframes pskel-shine {
  from { background-position: 100% 0; }
  to   { background-position: -100% 0; }
}

/* --- 13. АНИМАЦИИ ---------------------------------------------------------------------------- */
/*     Reveal тот же, что в site.css: js/site.js вешает .reveal--in.
       Портал добавляет направления и задержки. :not(.reveal--in) обязателен:
       без него правило ниже по каскаду перебило бы transform: none. */

.reveal--left:not(.reveal--in) { transform: translateX(-18px); }
.reveal--right:not(.reveal--in) { transform: translateX(18px); }
.reveal--zoom:not(.reveal--in) { transform: scale(.96); }

/* каскад задержек для соседних .reveal — вешать на сами элементы */
.rvd-1 { transition-delay: .06s; }
.rvd-2 { transition-delay: .12s; }
.rvd-3 { transition-delay: .18s; }
.rvd-4 { transition-delay: .24s; }
.rvd-5 { transition-delay: .30s; }
.rvd-6 { transition-delay: .36s; }

/* строки таблицы появляются каскадом: класс на <table>, работает при вставке
   строк из JS. fill-mode backwards держит строку невидимой до своей очереди. */
.ptable--cascade tbody tr { animation: prow-in .45s var(--ease) backwards; }
.ptable--cascade tbody tr:nth-child(1)  { animation-delay: .03s; }
.ptable--cascade tbody tr:nth-child(2)  { animation-delay: .07s; }
.ptable--cascade tbody tr:nth-child(3)  { animation-delay: .11s; }
.ptable--cascade tbody tr:nth-child(4)  { animation-delay: .15s; }
.ptable--cascade tbody tr:nth-child(5)  { animation-delay: .19s; }
.ptable--cascade tbody tr:nth-child(6)  { animation-delay: .23s; }
.ptable--cascade tbody tr:nth-child(7)  { animation-delay: .27s; }
.ptable--cascade tbody tr:nth-child(8)  { animation-delay: .31s; }
.ptable--cascade tbody tr:nth-child(9)  { animation-delay: .35s; }
.ptable--cascade tbody tr:nth-child(10) { animation-delay: .39s; }
.ptable--cascade tbody tr:nth-child(n + 11) { animation-delay: .43s; }

@keyframes prow-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* --- 14. АДАПТИВ ----------------------------------------------------------------------------- */
/*     Те же точки, что в site.css: 900 и 720 и 420. */

@media (max-width: 900px) {
  .pnav__link { padding: 8px 9px; }
  .hero-mini h1 { font-size: 34px; }
}

@media (max-width: 720px) {
  :root { --pnav-h: 56px; }
  .pnav__inner { gap: var(--s-3); padding-inline: 16px; }
  .pnav__burger { display: inline-flex; }
  .pnav__cta { margin-left: auto; }

  /* меню раскрывается под шапкой; фон непрозрачный — под ним контент */
  .pnav__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-2) 16px var(--s-4);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .pnav--open .pnav__menu { display: flex; }
  .pnav__link { padding: 12px; font-size: 16px; }
  .pnav__link--active::after { left: 12px; right: auto; width: 22px; bottom: 6px; }

  .hero-mini { padding-block: var(--s-6) var(--s-5); }
  .hero-mini h1 { font-size: 28px; }

  /* таблица уходит в горизонтальную прокрутку; липкая шапка внутри
     прокручиваемого контейнера не работает — отключаем честно */
  .ptable-wrap { padding: var(--s-3); overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ptable { font-size: 14px; }
  .ptable th,
  .ptable td { padding: 10px 8px; }
  .ptable thead th { position: static; }

  .timeline::before { left: 10px; }
  .timeline__item { grid-template-columns: 1fr; padding-left: 32px; row-gap: var(--s-1); }
  .timeline__item::before { left: 6px; top: 5px; }
  .timeline__date { text-align: left; }

  .searchbox { max-width: none; }
}

@media (max-width: 420px) {
  .pcard__body { padding: var(--s-4); }
  .pcount--xl { font-size: 40px; }
}

/* --- 15. PREFERS-REDUCED-MOTION -------------------------------------------------------------- */
/*     site.css §17 уже глушит всё глобально; здесь — явные состояния покоя,
       чтобы ничего не мигало даже на первом кадре. */

@media (prefers-reduced-motion: reduce) {
  .pskel { animation: none; background: var(--line); }
  .plive__dot::after { animation: none; opacity: 0; }
  .ptable--cascade tbody tr { animation: none; }
  .pcard:hover,
  .lift:hover { transform: none; }
  .pcard:hover .pcard__cover img { transform: none; }
  .reveal--left:not(.reveal--in),
  .reveal--right:not(.reveal--in),
  .reveal--zoom:not(.reveal--in) { transform: none; opacity: 1; }
  .rvd-1, .rvd-2, .rvd-3, .rvd-4, .rvd-5, .rvd-6 { transition-delay: 0s; }
}
