/* ============================================================
   Тарасофт-А — лендинг
   Инженерный минимализм: графит, гарнитура + моно, тонкие
   линейки, фирменный фиолетовый #7C5CF6 как редкий акцент.
   ============================================================ */

:root {
  --bg: #0c0d0f;
  --bg-soft: #101114;
  --bg-raise: #131418;
  --ink: #e9eaee;
  --muted: #9ba0ab;
  --faint: #61656e;
  --line: rgba(235, 238, 245, 0.09);
  --line-2: rgba(235, 238, 245, 0.18);
  --accent: #7c5cf6;
  --accent-ink: #a48bff;
  --ok: #3ecf8e;
  --warn: #e8b84b;
  --info: #58c7e0;
  --font: "Golos Text", "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Cascadia Mono", Consolas, monospace;
  --page: 1240px;
  --gut: clamp(20px, 4vw, 56px);
  --header-h: 64px;
  --ease: cubic-bezier(0.25, 0.6, 0.2, 1);
}

* , *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

::selection { background: rgba(124, 92, 246, 0.4); color: #fff; }

:focus-visible {
  outline: 1.5px solid var(--accent-ink);
  outline-offset: 3px;
}

/* Моноширинные служебные подписи */
.m {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Каркас: «рельсы» страницы ---------- */

.page {
  max-width: var(--page);
  margin-inline: auto;
  border-inline: 1px solid var(--line);
  position: relative;
}

.section {
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(64px, 9vw, 112px) var(--gut) clamp(72px, 9vw, 118px);
}

/* крестики на пересечениях линеек */
.tick::before,
.tick::after {
  content: "+";
  position: absolute;
  top: -0.72em;
  font: 400 15px/1 var(--mono);
  color: var(--faint);
  background: var(--bg);
  padding: 2px 1px;
  z-index: 3;
}

.tick::before { left: -7px; }
.tick::after { right: -7px; }

.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.sec-head .m { color: var(--faint); }

.sec-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
}

.sec-head .sec-note {
  max-width: 340px;
  font-size: 14.5px;
  color: var(--muted);
  text-align: right;
}

.kicker-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.kicker-line .m { color: var(--accent-ink); }

.kicker-line::after {
  content: "";
  flex: 0 0 40px;
  height: 1px;
  background: var(--line-2);
}

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: 500 12.5px/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn-solid {
  background: var(--accent);
  color: #fff;
}

.btn-solid:hover { background: #8d70f8; }

.btn-line {
  border-color: var(--line-2);
  color: var(--ink);
}

.btn-line:hover {
  border-color: var(--accent-ink);
  color: var(--accent-ink);
}

.arr { transition: transform 0.2s var(--ease); }
.btn:hover .arr, .row-link:hover .arr { transform: translateX(3px); }

/* ---------- Шапка ---------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
}

.header.scrolled {
  background: rgba(12, 13, 15, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--page);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  transition: color 0.2s;
}

.logo:hover { color: var(--accent-ink); }
.logo svg { height: 17px; width: auto; }

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.nav a {
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 2px;
  transition: color 0.2s;
}

.nav a:hover { color: var(--ink); }

.header .btn { padding: 10px 18px; }

.burger {
  display: none;
  position: relative;
  z-index: 60;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.6px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.15s, top 0.25s var(--ease);
}

.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  gap: 4px;
  background: rgba(12, 13, 15, 0.94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mobile-menu a .m { color: var(--faint); font-size: 11px; }
.mobile-menu a:hover { color: var(--accent-ink); }

.mobile-menu .btn {
  margin-top: 28px;
  border-bottom: none;
  font-size: 12.5px;
}

/* ---------- Герой ---------- */

.hero {
  position: relative;
  border-top: none;
  min-height: calc(92svh);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(40px, 6vw, 72px));
  overflow: clip;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 22%, transparent 70%, var(--bg) 100%),
    radial-gradient(70% 55% at 30% 45%, transparent 40%, rgba(12, 13, 15, 0.55) 100%);
  pointer-events: none;
}

.hero-text,
.spec-card {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--faint);
}

.hero-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.45rem, 5.6vw, 4.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  max-width: 15ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-ink);
}

.hero-sub {
  margin-top: 22px;
  max-width: 480px;
  font-size: clamp(1rem, 1.4vw, 1.11rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* Спец-карточка компании */

.spec-card {
  justify-self: end;
  width: min(100%, 430px);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(16, 17, 20, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: 13px;
  overflow: hidden;
}

.spec-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
  letter-spacing: 0.06em;
}

.spec-top .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ok);
  font-size: 11.5px;
  text-transform: uppercase;
}

.spec-top .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1.5px;
  background: var(--ok);
}

.spec-body { padding: 18px 18px 16px; }

.spec-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  padding: 7px 0;
}

.spec-row dt {
  color: var(--faint);
  letter-spacing: 0.04em;
}

.spec-row dd {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.spec-row dd .acc { color: var(--accent-ink); }

.cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  margin-top: 10px;
  background: var(--accent-ink);
  animation: blink 1.15s steps(2, start) infinite;
}

@keyframes blink { to { visibility: hidden; } }

/* ---------- Бегущая строка стека ---------- */

.ticker {
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 46s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.ticker-track span::after {
  content: "/";
  margin-left: 48px;
  color: var(--line-2);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- Продукты: каталожные строки ---------- */

.rows { border-top: 1px solid var(--line); }

.row {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr minmax(260px, 330px);
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.25s;
}

.row:hover { background: rgba(235, 238, 245, 0.016); }

.row-num {
  font: 400 13px/2 var(--mono);
  color: var(--faint);
  transition: color 0.25s;
}

.row:hover .row-num { color: var(--accent-ink); }

.row-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.row-head h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.02em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1.5px;
  background: var(--c, var(--faint));
}

.status.ok   { --c: var(--ok); }
.status.info { --c: var(--info); }
.status.warn { --c: var(--warn); }
.status.dev  { --c: var(--accent-ink); }

.row-cat {
  display: block;
  margin-top: 8px;
  font: 500 12px/1.6 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.row-desc {
  margin-top: 14px;
  max-width: 560px;
  font-size: 15.5px;
  color: var(--muted);
}

.row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.03em;
  color: var(--faint);
}

.row-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font: 500 12.5px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.row-link:hover { color: #c0aeff; }

.row-link.dim {
  color: var(--faint);
  cursor: default;
}

.row-media {
  position: relative;
  align-self: center;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.88);
  transform: scale(1.01);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}

.row:hover .row-media img {
  filter: grayscale(0.1) contrast(1.02) brightness(0.96);
  transform: scale(1.045);
}

/* уголки-риски на рамке фото */
.row-media::before,
.row-media::after,
.corner::before,
.corner::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-2);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.3s;
}

.row-media::before { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.row-media::after { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

.row:hover .row-media::before,
.row:hover .row-media::after { border-color: var(--accent-ink); }

/* ---------- Экспертиза ---------- */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.exp {
  background: var(--bg);
  padding: 26px 24px 30px;
  transition: background-color 0.25s;
}

.exp:hover { background: var(--bg-soft); }

.exp .m { color: var(--faint); }

.exp h3 {
  margin-top: 42px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.exp p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.exp-tech {
  display: block;
  margin-top: 18px;
  font: 400 12px/1.7 var(--mono);
  color: var(--faint);
}

.exp-tech b {
  font-weight: 400;
  color: var(--accent-ink);
}

/* ---------- О компании ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.about-text h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  max-width: 16ch;
}

.about-text > p {
  margin-top: 20px;
  max-width: 520px;
  color: var(--muted);
}

.principles {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.principles li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.principles li:last-child { border-bottom: 1px solid var(--line); }

.principles .m { color: var(--faint); padding-top: 4px; }

.principles b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.principles span:not(.m) {
  display: block;
  margin-top: 2px;
  font-size: 13.5px;
  color: var(--faint);
}

.about-photo { position: sticky; top: calc(var(--header-h) + 24px); }

.about-photo .corner {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}

.corner::before { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.corner::after { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.86);
  transition: filter 0.6s var(--ease);
}

.about-photo:hover img { filter: grayscale(0.15) contrast(1.02) brightness(0.95); }

.photo-cap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  font: 400 11.5px/1.7 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- Контакты ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 56px);
}

.giant-mail {
  display: inline-block;
  margin-top: 6px;
  font: 500 clamp(1.35rem, 4.6vw, 3.1rem)/1.25 var(--mono);
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
  overflow-wrap: anywhere;
  transition: color 0.25s, text-decoration-color 0.25s;
}

.giant-mail:hover {
  color: var(--accent-ink);
  text-decoration-color: var(--accent-ink);
}

.contact-side {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.requisites {
  margin: 0;
  border-top: 1px solid var(--line);
}

.req-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.req-row dt {
  font: 500 11.5px/1.9 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--faint);
}

.req-row dd {
  margin: 0;
  font-size: 14.5px;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

/* ---------- Подвал ---------- */

.footer {
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.footer-mark {
  display: block;
  width: min(920px, 92%);
  margin: clamp(40px, 6vw, 64px) auto 0;
  color: var(--ink);
  opacity: 0.07;
  pointer-events: none;
}

.footer-mark svg { width: 100%; height: auto; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 26px var(--gut) 30px;
  border-top: 1px solid var(--line);
  margin-top: clamp(36px, 5vw, 56px);
  font: 400 12px/1.8 var(--mono);
  letter-spacing: 0.05em;
  color: var(--faint);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner a { transition: color 0.2s; }
.footer-inner a:hover { color: var(--ink); }

/* ---------- Боковая линейка прогресса ---------- */

.scroll-rail {
  position: fixed;
  right: calc((100vw - var(--page)) / 4);
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rail-track {
  position: relative;
  width: 1px;
  height: 148px;
  background: var(--line-2);
}

.rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
}

.rail-dot {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: var(--accent-ink);
}

.scroll-rail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-rail a {
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.08em;
  color: var(--faint);
  transition: color 0.2s;
}

.scroll-rail a:hover { color: var(--ink); }
.scroll-rail a.active { color: var(--accent-ink); }

.rail-pct {
  font: 400 10.5px/1 var(--mono);
  letter-spacing: 0.08em;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1360px) {
  .scroll-rail { display: none; }
}

/* ---------- Параллакс-обёртка фото ----------
   Обёртка с запасом по вертикали двигается при скролле,
   само фото сохраняет hover-эффекты. */

.pw {
  position: absolute;
  left: 0;
  right: 0;
  top: -9%;
  bottom: -9%;
  will-change: transform;
}

.pw img { height: 100%; }

@media (prefers-reduced-motion: reduce) {
  .pw { top: 0; bottom: 0; }
}

/* ---------- Появление при скролле ----------
   Скрываем блоки только когда JS точно работает (html.js) —
   без скриптов страница остаётся полностью видимой. */

html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--d, 0s);
}

html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Ссылка «к содержанию» ---------- */

.skip-link {
  position: absolute;
  top: -64px;
  left: 16px;
  z-index: 100;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Адаптив ---------- */

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 44px;
    min-height: auto;
    padding-bottom: 56px;
  }

  .spec-card { justify-self: start; }

  .exp-grid { grid-template-columns: repeat(2, 1fr); }

  .row { grid-template-columns: 48px 1fr minmax(220px, 280px); }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 620px; }
}

@media (max-width: 820px) {
  .nav, .header .btn { display: none; }
  .burger { display: block; }

  .tick::before, .tick::after { display: none; }

  .sec-head { flex-direction: column; gap: 10px; }
  .sec-head .sec-note { text-align: left; max-width: 100%; }

  .row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .row-num { line-height: 1; }

  .row-media {
    order: -1;
    aspect-ratio: 16 / 9;
    max-width: 100%;
  }

  .row-desc { max-width: 100%; }

  .exp-grid { grid-template-columns: 1fr; }
  .exp h3 { margin-top: 26px; }

  .req-row { grid-template-columns: 1fr; gap: 2px; padding: 12px 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Доступность: меньше движения ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .ticker-track { animation: none; }
  .cursor { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
