/* ============================================================
   DiagPro — Corporate / Professional theme
   Font: Inter. Light surfaces, deep corporate blue accent.
   (variable names kept stable so inline styles keep working)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* surfaces */
  --bg: #ffffff;
  --bg-2: #f4f7fb;
  --panel: #ffffff;
  --panel-2: #f8fafc;
  --elev: #f1f5f9;
  --line: #e4e9f0;
  --line-strong: #cbd5e1;

  /* text */
  --text: #0f1e33;
  --text-2: #475569;
  --text-dim: #8a99ac;

  /* accents (kept names; repointed to corporate blue) */
  --cyan: #1d4ed8;
  --cyan-bright: #2563eb;
  --navy: #0f1e33;
  --amber: #b45309;
  --red: #dc2626;
  --green: #16a34a;

  /* fonts */
  --f-display: 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'Inter', system-ui, sans-serif;

  /* motion */
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1);
  --d-fast: 150ms;
  --d-std: 250ms;
  --d-slow: 400ms;

  --radius: 8px;
  --radius-lg: 14px;
  --maxw: 1180px;

  --shadow-sm: 0 1px 2px rgba(15,30,51,.05), 0 1px 3px rgba(15,30,51,.06);
  --shadow-md: 0 4px 12px -2px rgba(15,30,51,.08), 0 2px 6px -2px rgba(15,30,51,.06);
  --shadow-lg: 0 18px 40px -12px rgba(15,30,51,.18);
}

/* Тёмная тема — опциональная, включается атрибутом data-theme="dark" на <html> */
html[data-theme="dark"] {
  --bg: #0e1726;
  --bg-2: #0a1120;
  --panel: #14203a;
  --panel-2: #111c32;
  --elev: #1c2942;
  --line: #243250;
  --line-strong: #33456a;

  --text: #e6edf7;
  --text-2: #9fb0c8;
  --text-dim: #6b7c96;

  --cyan: #4f86f7;
  --cyan-bright: #6ea0ff;
  --navy: #cfe0ff;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 1px 3px rgba(0,0,0,.35);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,.45), 0 2px 6px -2px rgba(0,0,0,.4);
  --shadow-lg: 0 18px 40px -12px rgba(0,0,0,.6);
}
html[data-theme="dark"] body { background: var(--bg); }
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-footer { background: var(--panel); }
html[data-theme="dark"] .card,
html[data-theme="dark"] .modal,
html[data-theme="dark"] .filter-row input,
html[data-theme="dark"] .filter-row select,
html[data-theme="dark"] input,
html[data-theme="dark"] select { background: var(--panel); color: var(--text); }
html[data-theme="dark"] .modal { background: var(--panel-2); }

.theme-toggle {
  background: none; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: color var(--d-fast), border-color var(--d-fast);
}
.theme-toggle:hover { color: var(--text); border-color: var(--line-strong); }
.theme-toggle svg { width: 18px; height: 18px; }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--d-fast) var(--ease-out); }
a:hover { color: var(--cyan-bright); }

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

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo {
  font-family: var(--f-display); font-size: 20px; font-weight: 700;
  letter-spacing: -.4px; color: var(--text); display: inline-flex; align-items: center; gap: 10px;
}
.logo .mark {
  width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--cyan); border-radius: 7px; color: #fff;
  box-shadow: 0 4px 10px -2px rgba(29,78,216,.4);
}
.logo .mark svg { width: 16px; height: 16px; }
.logo b { color: var(--cyan); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a.link { color: var(--text-2); font-size: 14.5px; font-weight: 500; }
.nav a.link:hover { color: var(--text); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius); font-family: var(--f-body);
  font-size: 14.5px; font-weight: 600; letter-spacing: .1px; border: 1px solid transparent;
  cursor: pointer; transition: transform var(--d-fast) var(--ease-out),
    background var(--d-fast) var(--ease-out), border-color var(--d-fast) var(--ease-out),
    box-shadow var(--d-fast) var(--ease-out), color var(--d-fast) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--cyan); color: #fff; font-weight: 600;
  box-shadow: 0 6px 16px -6px rgba(29,78,216,.5);
}
.btn-primary:hover { background: var(--cyan-bright); box-shadow: 0 10px 24px -6px rgba(29,78,216,.6); }
.btn-ghost { background: #fff; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--elev); border-color: var(--cyan); color: var(--cyan); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ===================== HERO ===================== */
.hero { padding: 100px 0 84px; position: relative; background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%); border-bottom: 1px solid var(--line); }
.hero-inner { max-width: 780px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase;
  color: var(--cyan); padding: 7px 14px; border: 1px solid var(--line-strong);
  border-radius: 100px; background: #fff; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
.hero h1 {
  font-family: var(--f-display); font-size: clamp(38px, 5.4vw, 60px); font-weight: 800;
  letter-spacing: -1.6px; line-height: 1.07; margin-bottom: 22px; color: var(--navy);
}
.hero h1 .accent { color: var(--cyan); }
.hero p.lead { font-size: 19px; color: var(--text-2); max-width: 620px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 44px; margin-top: 56px; flex-wrap: wrap; }
.hero-meta .num { font-family: var(--f-display); font-size: 28px; font-weight: 700; color: var(--navy); letter-spacing: -.8px; }
.hero-meta .num b { color: var(--cyan); }
.hero-meta .cap { font-size: 13.5px; color: var(--text-dim); margin-top: 2px; }

/* ===================== SECTIONS ===================== */
.section { padding: 88px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .tag { font-size: 12.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.section-head h2 { font-family: var(--f-display); font-size: clamp(27px, 3.6vw, 38px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--navy); }
.section-head p { color: var(--text-2); font-size: 17px; margin-top: 14px; }

/* ===================== FEATURES ===================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--panel); padding: 30px 28px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--d-std) var(--ease-out), transform var(--d-std) var(--ease-out), border-color var(--d-std) var(--ease-out);
  position: relative;
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-strong); }
.feature .ico {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 10px;
  color: var(--cyan); margin-bottom: 18px; background: rgba(29,78,216,.08);
}
.feature .ico svg { width: 23px; height: 23px; }
.feature h3 { font-family: var(--f-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.2px; color: var(--navy); }
.feature p { color: var(--text-2); font-size: 14.5px; }
.feature .idx { position: absolute; top: 24px; right: 26px; font-size: 13px; font-weight: 700; color: var(--line-strong); }

/* ===================== PRICING ===================== */
.pricing-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 46px; max-width: 480px; margin: 0 auto; position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--cyan);
}
.pricing-card .plan-tag { font-size: 12.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.pricing-card .price { font-family: var(--f-display); font-size: 56px; font-weight: 800; letter-spacing: -2px; display: flex; align-items: baseline; gap: 8px; color: var(--navy); }
.pricing-card .price small { font-family: var(--f-body); font-size: 18px; color: var(--text-dim); font-weight: 500; letter-spacing: 0; }
.pricing-card .note { color: var(--text-2); margin-top: 12px; font-size: 15px; }
.pricing-card ul { list-style: none; margin: 28px 0; }
.pricing-card ul li { padding: 12px 0; display: flex; align-items: center; gap: 12px; color: var(--text); border-bottom: 1px solid var(--line); font-size: 15px; }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

.months-select { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; }
.month-opt {
  min-width: 46px; padding: 11px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer; transition: all var(--d-fast) var(--ease-out); background: #fff;
  font-weight: 600; font-size: 14px; text-align: center; color: var(--text-2);
}
.month-opt:hover { border-color: var(--cyan); color: var(--cyan); }
.month-opt.active { background: var(--cyan); color: #fff; border-color: var(--cyan); }

/* ===================== AUTH ===================== */
.auth-wrap { min-height: calc(100vh - 70px); display: flex; align-items: center; justify-content: center; padding: 48px 24px; background: var(--bg-2); }
.auth-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 42px; width: 100%; max-width: 440px; position: relative; overflow: hidden;
}
.auth-card h1 { font-family: var(--f-display); font-size: 26px; font-weight: 700; letter-spacing: -.5px; text-align: center; color: var(--navy); }
.auth-card .sub { text-align: center; color: var(--text-2); margin-bottom: 28px; margin-top: 6px; font-size: 15px; }
.tabs { display: flex; background: var(--elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px; margin-bottom: 26px; }
.tab { flex: 1; padding: 11px; text-align: center; border-radius: 5px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--text-dim); transition: all var(--d-fast) var(--ease-out); }
.tab.active { background: #fff; color: var(--cyan); box-shadow: var(--shadow-sm); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 7px; }
.field input {
  width: 100%; padding: 12px 14px; background: #fff;
  border: 1px solid var(--line-strong); border-radius: var(--radius); color: var(--text);
  font-family: var(--f-body); font-size: 15px; transition: border-color var(--d-fast) var(--ease-out), box-shadow var(--d-fast) var(--ease-out);
}
.field input::placeholder { color: var(--text-dim); }
.field input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(29,78,216,.14); }
.row-2 { display: flex; gap: 12px; }
.row-2 .field { flex: 1; }

/* ===================== ALERTS ===================== */
.alert { padding: 13px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; display: none; border: 1px solid transparent; }
.alert.show { display: block; animation: alertIn var(--d-std) var(--ease-out); }
@keyframes alertIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.alert-error { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #b45309; }

/* ===================== DASHBOARD ===================== */
.dash { padding: 44px 0 80px; background: var(--bg-2); min-height: calc(100vh - 70px); }
.welcome { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 18px; margin-bottom: 28px; }
.welcome h1 { font-family: var(--f-display); font-size: 30px; font-weight: 800; letter-spacing: -.8px; color: var(--navy); }
.welcome .email { color: var(--text-dim); font-size: 14px; margin-top: 4px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); transition: box-shadow var(--d-std) var(--ease-out); }
.card:hover { box-shadow: var(--shadow-md); }
.card.full { grid-column: 1 / -1; }
.card h3 { font-family: var(--f-display); font-size: 17px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; letter-spacing: -.2px; color: var(--navy); }
.card h3 svg { width: 19px; height: 19px; color: var(--cyan); }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 12.5px; font-weight: 600; letter-spacing: .2px; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-active { background: #f0fdf4; color: var(--green); }
.badge-inactive { background: var(--elev); color: var(--text-dim); }
.badge-expired { background: #fef2f2; color: var(--red); }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line); }
.stat-row:last-child { border-bottom: none; }
.stat-row .k { color: var(--text-2); font-size: 14px; }
.stat-row .v { font-weight: 600; }
.ref-code {
  font-size: 24px; font-weight: 700; letter-spacing: 4px;
  background: var(--bg-2); padding: 16px; border-radius: var(--radius); text-align: center;
  border: 1px dashed var(--line-strong); color: var(--cyan); margin-bottom: 14px;
}

/* ===================== TABS ===================== */
.tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--f-body); font-size: 15px; font-weight: 600; color: var(--text-2);
  padding: 12px 20px; border-bottom: 2px solid transparent; margin-bottom: -1px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--d-fast) var(--ease-out), border-color var(--d-fast) var(--ease-out);
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.tab-count {
  display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 20px;
  padding: 0 7px; border-radius: 100px; font-size: 12px; font-weight: 700;
  background: var(--elev); color: var(--text-2);
}
.tab.active .tab-count { background: rgba(29,78,216,.12); color: var(--cyan); }

/* ===================== STAT GRID (admin overview) ===================== */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat-box {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--elev);
}
.stat-box .num { font-family: var(--f-mono); font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.1; }
.stat-box .lbl { font-size: 13px; color: var(--text-2); }
@media (max-width: 600px) { .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } .stat-box { padding: 13px 14px; } .stat-box .num { font-size: 19px; } }

/* ===================== FILTER ROW ===================== */
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.filter-row input, .filter-row select {
  padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; background: #fff;
  font-family: var(--f-body); font-size: 14px; color: var(--text);
}
.filter-row input { flex: 1 1 200px; min-width: 0; }
.filter-row select { flex: 0 0 auto; cursor: pointer; }
@media (max-width: 600px) { .filter-row { flex-direction: column; } .filter-row input, .filter-row select { width: 100%; } }

/* ===================== MODAL ===================== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(15, 23, 42, .5); backdrop-filter: blur(2px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  width: 100%; max-width: 440px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 26px 24px; box-shadow: 0 20px 60px rgba(15, 23, 42, .25);
}
.modal h3 { margin: 0 0 6px; font-size: 19px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
@media (max-width: 600px) { .modal { padding: 22px 18px; } .modal-actions { flex-direction: column-reverse; } .modal-actions .btn { width: 100%; } }

/* ===================== FOOTER ===================== */
.site-footer { border-top: 1px solid var(--line); padding: 38px 0; color: var(--text-dim); font-size: 14px; background: #fff; }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.site-footer .logo { font-size: 16px; }

/* ===================== UTIL ===================== */
.hidden { display: none !important; }
.text-dim { color: var(--text-dim); }
.text-2 { color: var(--text-2); }
.mt-16 { margin-top: 16px; }
.center { text-align: center; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--d-slow) var(--ease-out), transform var(--d-slow) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 70ms; }
.reveal[data-delay="2"] { transition-delay: 140ms; }
.reveal[data-delay="3"] { transition-delay: 210ms; }
.reveal[data-delay="4"] { transition-delay: 280ms; }
.reveal[data-delay="5"] { transition-delay: 350ms; }

/* page-load stagger for hero */
.load-anim { opacity: 0; transform: translateY(16px); animation: loadUp var(--d-slow) var(--ease-out) forwards; }
.load-anim[data-delay="1"] { animation-delay: 80ms; }
.load-anim[data-delay="2"] { animation-delay: 160ms; }
.load-anim[data-delay="3"] { animation-delay: 240ms; }
.load-anim[data-delay="4"] { animation-delay: 320ms; }
@keyframes loadUp { to { opacity: 1; transform: none; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 880px) {
  .features { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 56px; }
  .hero-meta { gap: 28px; }
  .section { padding: 60px 0; }
  .auth-card, .pricing-card { padding: 32px 24px; }
}

@media (max-width: 600px) {
  /* Жёсткая защита от горизонтальной прокрутки на мобильных */
  html, body { overflow-x: hidden; max-width: 100%; }

  .container { padding: 0 16px; max-width: 100%; }
  .site-header .container { height: 60px; gap: 8px; }
  .logo { font-size: 16px; gap: 7px; flex-shrink: 0; }
  .logo .mark { width: 26px; height: 26px; }
  .nav { gap: 10px; flex-shrink: 0; }
  .nav a.link { font-size: 13.5px; }
  .nav .btn { padding: 8px 14px; font-size: 13.5px; }

  /* Личный кабинет */
  .dash { padding: 28px 0 56px; }
  .welcome { align-items: stretch; gap: 14px; margin-bottom: 22px; }
  .welcome h1 { font-size: 24px; }
  .welcome .btn { width: 100%; }
  .dash-grid { gap: 14px; }
  .card { padding: 20px 18px; }
  .card h3 { font-size: 16px; margin-bottom: 14px; }

  .stat-row .k { font-size: 13.5px; min-width: 0; word-break: break-word; }
  .stat-row .v { min-width: 0; }

  /* Строки админки (у них инлайн flex-wrap) — на мобильном вертикальная раскладка,
     чтобы кнопки/поля гарантированно не вылезали за карточку.
     !important перебивает инлайн-стили в admin.html (display:flex;gap) */
  .stat-row[style*="flex-wrap"] { flex-wrap: wrap !important; gap: 8px 10px !important; }
  .stat-row[style*="flex-wrap"] .k { flex: 1 1 100%; }
  .stat-row[style*="flex-wrap"] .v {
    display: flex !important; flex-direction: column !important; align-items: stretch !important;
    gap: 8px !important; width: 100%; min-width: 0;
  }
  .stat-row[style*="flex-wrap"] .v input { width: 100%; box-sizing: border-box; }
  .stat-row[style*="flex-wrap"] .v .btn { width: 100%; min-width: 0; padding: 10px 12px; font-size: 14px; }
  .stat-row[style*="flex-wrap"] .v .badge { align-self: flex-start; }

  .ref-code { font-size: 19px; letter-spacing: 2px; padding: 13px; }
  .btn-lg { padding: 12px 20px; font-size: 14.5px; }

  /* Вкладки админки на мобильном — компактнее */
  .tabs { gap: 2px; }
  .tab { padding: 11px 14px; font-size: 14px; }

  /* Поиск в админке: поле и кнопка в столбик */
  .field[style*="flex"] { flex-wrap: wrap; }
  .field[style*="flex"] input { flex: 1 1 100%; }
  .field[style*="flex"] .btn { width: 100%; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .load-anim { opacity: 1; transform: none; }
}
