/* ============================================================
   MindHack 9.0 — предзапись
   Дизайн-система. Токены вынесены наверх, чтобы лендинги
   интенсивов на поддоменах переиспользовали ту же основу.
   ============================================================ */

:root {
  /* Фон и поверхности */
  --bg:            #0A0A0B;
  --bg-elev:       #0F0F11;
  --surface:       #141417;
  --surface-hi:    #1B1B1F;
  --line:          rgba(255,255,255,.09);
  --line-hi:       rgba(255,255,255,.16);

  /* Текст */
  --text:          #F4F3F0;
  --text-dim:      #A3A29D;
  --text-faint:    #6E6D69;

  /* Акценты — взяты с фирменных ежедневников */
  --gold:          #C9A961;
  --gold-hi:       #E3C687;
  --gold-dim:      rgba(201,169,97,.14);
  --malachite:     #1E5C4A;

  --danger:        #E5644E;

  /* Типографика */
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Ритм */
  --gap:    16px;
  --pad:    20px;
  --radius: 16px;
  --radius-sm: 12px;
  --maxw:   1520px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: #0A0A0B; padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

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

/* ─── Раскладка ─────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.wrap-narrow { max-width: 720px; }
.center { text-align: center; }

.section { padding: 52px 0; }
.section-head { max-width: 720px; margin-bottom: 28px; }
.section-head h2 { margin-bottom: 12px; }
.section-sub { color: var(--text-dim); font-size: 1.02rem; }

/* ─── Типографика ───────────────────────────────────────── */
h1, h2, h3 { line-height: 1.14; letter-spacing: -.025em; font-weight: 800; }
h1, h2 { text-wrap: balance; }

h1 { font-size: clamp(1.85rem, 6.4vw, 3.4rem); margin-bottom: 22px; }
h2 { font-size: clamp(1.5rem, 5vw, 2.4rem); }
h3 { font-size: 1.1rem; line-height: 1.3; letter-spacing: -.01em; font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-dim);
}

.lede { font-size: 1.08rem; color: var(--text-dim); max-width: 46ch; }

/* ─── Кнопки ────────────────────────────────────────────── */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent; border-radius: 100px;
  background: var(--btn-bg);
  font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background .2s, border-color .2s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.975); }

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: #14100A;
  box-shadow: 0 6px 26px rgba(201,169,97,.22);
}
.btn-primary:hover { box-shadow: 0 10px 34px rgba(201,169,97,.34); }

.btn-ghost { border-color: var(--line-hi); color: var(--text); }
.btn-ghost:hover { background: var(--surface-hi); border-color: var(--gold); }

.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: .88rem; }

.reassure { font-size: .88rem; color: var(--text-faint); margin-top: 12px; }

/* ─── Шапка ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10,10,11,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo { width: auto; height: 30px; }
.brand-name { font-weight: 600; letter-spacing: -.01em; font-size: .98rem; }
.brand-name b { color: var(--gold); font-weight: 800; }

.header-cta { display: none; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(201,169,97,.10), transparent 60%),
    radial-gradient(90% 60% at 0% 20%, rgba(30,92,74,.16), transparent 65%);
}
.hero-grid { display: grid; gap: 40px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; margin: 28px 0 0;
}
.hero-facts li {
  flex: 1 1 90px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.hero-facts b {
  display: block; font-size: 1.5rem; font-weight: 800;
  color: var(--gold); letter-spacing: -.03em; line-height: 1.1;
}
.hero-facts span { font-size: .78rem; color: var(--text-dim); }

.hero-actions { margin-top: 30px; }
.hero-actions .btn { width: 100%; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; border-radius: 22px;
  border: 1px solid var(--line-hi);
  aspect-ratio: 4/5; object-fit: cover; object-position: center 22%;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 22px; pointer-events: none;
  background: linear-gradient(to top, rgba(10,10,11,.55), transparent 45%);
}

/* ─── Карточки ──────────────────────────────────────────── */
.cards { display: grid; gap: var(--gap); }

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .25s, transform .25s var(--ease);
}
.card:hover { border-color: var(--line-hi); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: .96rem; }

.card.accent {
  border-color: rgba(201,169,97,.42);
  background: linear-gradient(160deg, rgba(201,169,97,.10), var(--surface) 60%);
}
.card.accent h3 { color: var(--gold-hi); }

/* Подарки */
.gifts { background: var(--bg-elev); border-block: 1px solid var(--line); }
.gift { position: relative; }
.gift-cover {
  width: 100%; aspect-ratio: 3 / 2; margin-bottom: 20px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(201,169,97,.22);
  box-shadow: 0 16px 40px rgba(0,0,0,.42);
  transition: transform .3s var(--ease), border-color .3s;
}
.gift-cover img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.gift:hover .gift-cover { transform: translateY(-4px); border-color: rgba(201,169,97,.5); }
.gift-tag {
  display: inline-block; align-self: flex-start; margin-bottom: 12px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--gold-dim); color: var(--gold);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.gift-num {
  display: block; margin-bottom: 14px;
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.04em;
  color: var(--gold); opacity: .55;
}
.gift.is-pending { border-style: dashed; }
.gift.is-pending h3, .gift.is-pending p { color: var(--text-faint); }
.gift-badge {
  display: inline-block; margin-top: 14px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--gold-dim); color: var(--gold);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}

/* ─── Нумерованные шаги ─────────────────────────────────── */
.steps { list-style: none; display: grid; gap: 14px; }
.steps li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.steps-num {
  flex: none; display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--gold-dim); border: 1px solid rgba(201,169,97,.34);
  color: var(--gold); font-weight: 800;
}
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--text-dim); font-size: .96rem; }

/* ─── Комьюнити ─────────────────────────────────────────── */
.photo-grid { display: grid; gap: var(--gap); margin-bottom: 36px; }
.photo-grid img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 3/4; object-fit: cover;
}

/* ─── Что после анкеты ──────────────────────────────────── */
.notice {
  margin-top: 26px; padding: 20px 24px;
  border: 1px solid rgba(201,169,97,.3); border-radius: var(--radius);
  background: rgba(201,169,97,.06);
  font-size: .98rem; color: var(--text-dim);
}
.notice b { color: var(--text); }

/* ─── Форма ─────────────────────────────────────────────── */
.form-section { background: var(--bg-elev); border-top: 1px solid var(--line); }
.form-section .section-head { margin-inline: auto; text-align: center; }
.form-section .eyebrow { justify-content: center; }

.form-shell {
  padding: 26px 20px 30px;
  border: 1px solid var(--line-hi);
  border-radius: 22px;
  background: var(--surface);
}

/* Прогресс */
.progress { margin-bottom: 28px; }
.progress-bar {
  height: 4px; border-radius: 100px;
  background: rgba(255,255,255,.08); overflow: hidden;
}
.progress-bar span {
  display: block; height: 100%; width: 33.33%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  transition: width .45s var(--ease);
}
.progress-steps {
  display: flex; justify-content: space-between;
  margin-top: 10px; font-size: .78rem; color: var(--text-faint);
}
.progress-steps .is-active { color: var(--gold); font-weight: 700; }

/* Шаги */
.step { display: none; border: 0; }
.step.is-active { display: block; animation: stepIn .38s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 26px; }
.q { display: block; font-weight: 700; font-size: 1rem; line-height: 1.35; margin-bottom: 10px; }
.req { color: var(--gold); }
.hint { font-size: .85rem; color: var(--text-faint); margin: -4px 0 10px; }

input[type=text], input[type=tel], textarea {
  width: 100%; padding: 15px 16px;
  border: 1px solid var(--line-hi); border-radius: var(--radius-sm);
  background: var(--bg-elev);
  font-size: 16px; /* не меньше 16px — иначе iOS зумит при фокусе */
  transition: border-color .2s, background .2s;
}
input::placeholder, textarea::placeholder { color: var(--text-faint); }
input:focus, textarea:focus { border-color: var(--gold); background: var(--surface-hi); outline: none; }
textarea { resize: vertical; min-height: 100px; line-height: 1.5; }

/* Варианты ответа */
.options { display: grid; gap: 9px; }
.options-row { grid-template-columns: 1fr 1fr; }

.opt { position: relative; display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt span {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line-hi); border-radius: var(--radius-sm);
  background: var(--bg-elev);
  font-size: .95rem; line-height: 1.35;
  transition: border-color .18s, background .18s, color .18s;
}
.opt span::before {
  content: ''; flex: none;
  width: 19px; height: 19px; border-radius: 50%;
  border: 1.5px solid var(--line-hi);
  transition: border-color .18s, box-shadow .18s;
}
.opt:hover span { border-color: rgba(201,169,97,.5); }
.opt input:checked + span {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.opt input:checked + span::before {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 5px var(--gold);
}
.opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Согласие */
.consent { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: .88rem; color: var(--text-dim); }
.consent input {
  flex: none; width: 21px; height: 21px; margin-top: 1px;
  accent-color: var(--gold); cursor: pointer;
}
.consent a { color: var(--gold); text-underline-offset: 3px; }

/* Ошибки */
.err {
  display: none;
  margin-top: 8px; font-size: .84rem; color: var(--danger);
}
.field.has-error .err { display: block; }
.field.has-error input,
.field.has-error textarea { border-color: var(--danger); }
.field.has-error .opt span { border-color: rgba(229,100,78,.45); }

.form-error {
  margin-bottom: 18px; padding: 14px 16px;
  border: 1px solid rgba(229,100,78,.4); border-radius: var(--radius-sm);
  background: rgba(229,100,78,.08);
  font-size: .9rem; color: #F0A092;
}

/* Навигация по шагам */
.step-nav { display: flex; gap: 10px; margin-top: 30px; }
.step-nav .btn-primary { flex: 1; }

/* Состояние загрузки */
#submitBtn { position: relative; }
#submitBtn .spinner { display: none; }
#submitBtn[data-loading] { pointer-events: none; opacity: .8; }
#submitBtn[data-loading] .btn-label { opacity: .55; }
#submitBtn[data-loading] .spinner {
  display: block; width: 17px; height: 17px;
  border: 2px solid rgba(20,16,10,.3); border-top-color: #14100A;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ─── Success ───────────────────────────────────────────── */
.success { text-align: center; padding: 20px 0 10px; animation: stepIn .5s var(--ease); }
.success-mark {
  width: 62px; height: 62px; margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%; border: 1.5px solid var(--gold);
  background: var(--gold-dim);
  color: var(--gold); font-size: 1.7rem;
}
.success h2 { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 12px; }
.success > p { color: var(--text-dim); max-width: 42ch; margin: 0 auto 26px; }
.success .btn { width: 100%; }

/* ─── Подвал ────────────────────────────────────────────── */
.site-footer {
  padding: 44px 0 110px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  font-size: .86rem; color: var(--text-faint);
}
.site-footer { text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--text-dim); margin-bottom: 20px; }
.footer-brand .brand-logo { height: 34px; }
.footer-links { display: grid; gap: 10px; margin-bottom: 22px; justify-items: center; }
.footer-links a { color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-note { line-height: 1.5; }

/* ─── Крупная кнопка под фото учеников ──────────────────── */
.community .center .btn-attention { padding: 28px 66px; font-size: 1.4rem; border-radius: 18px; }

/* ─── Фото автора видно ТОЛЬКО в двухколоночном десктопе ──
   Ниже 1000px hero идёт в один столбец, и фото падало под кнопку —
   скрываем его на всех не-десктопных ширинах. */
@media (max-width: 999px) {
  .hero-photo { display: none; }
}

/* ─── Липкая кнопка (мобильные) ─────────────────────────── */
.sticky-cta {
  position: fixed; left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; border-radius: 100px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: #14100A; font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  transform: translateY(140%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: none; }

/* ─── Reveal on scroll ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Правки по фидбэку заказчика
   ============================================================ */

/* Акцент в H1 — золотая сумма дохода */
.h1-accent { color: var(--gold); white-space: nowrap; }

/* Hero на мобильном — по центру (на десктопе фото сбоку, там слева) */
.hero-copy { text-align: center; }
.hero-copy .eyebrow { justify-content: center; }
.hero-copy .lede { margin-left: auto; margin-right: auto; }

/* Дефицит мест: старое число зачёркнуто красным, новое — золотом покрупнее */
.hero-facts li:first-child {
  border-color: rgba(201,169,97,.34);
  background: linear-gradient(160deg, rgba(201,169,97,.10), var(--surface) 62%);
}
.hero-facts s {
  color: var(--danger);
  text-decoration-color: var(--danger);
  text-decoration-thickness: 3px;
  font-size: .72em;
  opacity: .85;
  margin-right: 4px;
}
.hero-facts li:first-child span { color: var(--gold-hi); font-weight: 600; }

/* Кнопка не переносит слова */
.btn-attention b { font-weight: 800; white-space: nowrap; }

/* ── Кнопка, привлекающая внимание: свечение + лёгкое покачивание ── */
.btn-attention {
  position: relative;
  animation: ctaSway 3.4s var(--ease) infinite;
}
.btn-attention.btn-primary {
  box-shadow: 0 6px 26px rgba(201,169,97,.28), 0 0 0 0 rgba(201,169,97,.45);
  animation: ctaSway 3.4s var(--ease) infinite, ctaGlow 2.4s ease-in-out infinite;
}
.btn-attention:hover { animation-play-state: paused; }

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 6px 26px rgba(201,169,97,.28), 0 0 0 0 rgba(201,169,97,.0); }
  50%      { box-shadow: 0 10px 34px rgba(201,169,97,.42), 0 0 26px 6px rgba(201,169,97,.30); }
}
@keyframes ctaSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-2px) rotate(-.5deg); }
  75%      { transform: translateY(-2px) rotate(.5deg); }
}

/* ── Фото автора: при наведении приподнимается и светится золотом ── */
.hero-photo-interactive img {
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), filter .5s var(--ease);
}
.hero-photo-interactive:hover img {
  transform: translateY(-8px) scale(1.02) rotate(-.6deg);
  box-shadow: 0 24px 60px rgba(201,169,97,.30), 0 0 0 1px rgba(201,169,97,.5);
  filter: saturate(1.08);
}

/* ── Плашка «Лучшие условия»: заметно пульсирует золотым ── */
.card-attention {
  animation: cardGlow 2.6s ease-in-out infinite;
  will-change: box-shadow, transform;
}
@keyframes cardGlow {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(201,169,97,.30), 0 0 0 0 rgba(201,169,97,0);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(201,169,97,.75), 0 14px 46px rgba(201,169,97,.42), 0 0 40px 8px rgba(201,169,97,.28);
    transform: translateY(-4px) scale(1.012);
  }
}

/* ── Подарок: всё по центру ── */
.gift { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.gift h3 { margin-bottom: 8px; }
.gift p { flex: 1; }
.gift .gift-badge { margin-top: 16px; }

/* ── Финальный экран: логотип + название вместо заголовка анкеты ── */
.form-head-done { text-align: center; display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 14px; }
.form-head-done .brand-logo { height: 46px; width: auto; flex-shrink: 0; }
.form-head-done-name { font-size: 1.3rem; font-weight: 600; letter-spacing: -.01em; white-space: nowrap; }
.form-head-done-name b { color: var(--gold); font-weight: 800; }

/* Отступ пояснения под кнопкой в success (специфичнее, чем .reassure в медиа-запросе) */
.success .reassure-gap { margin-top: 26px; }

/* ============================================================
   Планшет
   ============================================================ */
@media (min-width: 700px) {
  :root { --pad: 32px; --gap: 20px; }
  body { font-size: 18px; }

  .section { padding: 68px 0; }
  .hero { padding: 64px 0 76px; }

  /* Кнопка крупнее, пояснение мельче и ПОД кнопкой (не сбоку) */
  .hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .hero-actions .btn { width: auto; }
  .hero-actions .btn-lg { padding: 26px 72px; font-size: 1.32rem; }
  .reassure { margin-top: 0; font-size: .82rem; }

  .cards-2 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }

  .form-shell { padding: 40px 38px 44px; }
  .options-row { grid-template-columns: repeat(2, 200px); }

  .footer-links { grid-template-columns: repeat(2, auto); justify-content: center; gap: 12px 32px; }
  .success .btn { width: auto; }

  .sticky-cta { left: auto; right: 24px; width: auto; padding: 16px 30px; }
}

/* ============================================================
   Десктоп
   ============================================================ */
@media (min-width: 1000px) {
  .header-cta { display: inline-flex; }

  .hero-grid { grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; }
  .hero-copy { text-align: left; }
  .hero-copy .eyebrow { justify-content: flex-start; }
  .hero-copy .lede { margin-left: 0; margin-right: 0; }
  /* Кнопка в hero — по центру своей колонки */
  .hero-actions { align-items: center; }
  .hero-actions .reassure { text-align: center; }
  .hero-facts { margin-top: 34px; }
  .hero-facts li { padding: 18px 20px; }
  .hero-photo img { aspect-ratio: 3/4; }

  .steps li { padding: 28px 32px; }
  .card { padding: 30px; }

  .section-head { margin-bottom: 46px; }
}

/* ============================================================
   Доступность: уважаем настройку системы
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
