/* ============================================================
   Snowball — engagement shell
   Motion-first, game-graphics aesthetic
   ============================================================ */

:root {
  --bg: #04060d;
  --ink: #eaf4ff;
  --ink-dim: rgba(234, 244, 255, 0.55);
  --ink-faint: rgba(234, 244, 255, 0.3);
  --line: rgba(148, 197, 255, 0.16);
  --ice: #7dd3fc;
  --ice-deep: #38bdf8;
  --violet: #a78bfa;
  --grad: linear-gradient(115deg, #7dd3fc 0%, #818cf8 55%, #c084fc 100%);
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
}

::selection { background: rgba(125, 211, 252, 0.35); }
a { color: inherit; text-decoration: none; }

/* ---------- layers ---------- */
#bg { position: fixed; inset: 0; z-index: 0; }
.noise {
  position: fixed; inset: -50%; z-index: 40; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
  animation: grain 0.6s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); } 75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- cursor ---------- */
.cursor { position: fixed; inset: 0; z-index: 100; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot {
  position: absolute; width: 6px; height: 6px; margin: -3px;
  border-radius: 50%; background: var(--ice);
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.9);
}
.cursor__ring {
  position: absolute; width: 34px; height: 34px; margin: -17px;
  border-radius: 50%; border: 1px solid rgba(125, 211, 252, 0.5);
  transition: width 0.25s, height 0.25s, margin 0.25s, border-color 0.25s, background 0.25s;
}
.cursor.is-hover .cursor__ring {
  width: 62px; height: 62px; margin: -31px;
  border-color: rgba(192, 132, 252, 0.7);
  background: rgba(125, 211, 252, 0.06);
}

/* ---------- progress ---------- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; }
.progress i {
  display: block; height: 100%; width: 0;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(125, 211, 252, 0.8);
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem clamp(1.2rem, 4vw, 3rem);
  mix-blend-mode: screen;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem; letter-spacing: 0.02em;
}
.nav__tld { color: var(--ink-faint); font-weight: 400; }
.nav__orb {
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, var(--ice) 45%, var(--ice-deep));
  box-shadow: 0 0 16px rgba(125, 211, 252, 0.9);
  animation: orbBreathe 3.5s ease-in-out infinite;
}
@keyframes orbBreathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.nav__talk {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.55rem 1.3rem; border: 1px solid var(--line); border-radius: 999px;
  transition: border-color 0.3s, background 0.3s;
}
.nav__talk:hover { border-color: rgba(125, 211, 252, 0.6); background: rgba(125, 211, 252, 0.08); }

/* ---------- pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.14em;
  padding: 0.9rem 1.8rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-dim);
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.pill:hover { color: var(--ink); border-color: rgba(125, 211, 252, 0.5); }
.pill--solid {
  background: var(--grad); color: #fff; border: none;
  box-shadow: 0 10px 40px rgba(99, 141, 248, 0.35);
}
.pill--solid:hover { box-shadow: 0 14px 55px rgba(99, 141, 248, 0.55); color: #fff; }
.pill--big { font-size: 0.95rem; padding: 1.2rem 2.6rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 6rem 1rem 4rem; gap: 1.6rem;
}
.hero__kicker {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.5em;
  color: var(--ice);
}

/* mega headline: stroked outline + cursor-revealed gradient fill */
.mega {
  position: relative;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.4rem, 14vw, 12.5rem);
  line-height: 0.95; letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(160, 205, 255, 0.4);
  user-select: none;
}
.mega::before {
  content: attr(data-text);
  position: absolute; inset: 0;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-stroke: 0;
  color: transparent;
  clip-path: circle(var(--spot, 130px) at var(--mx, 50%) var(--my, 50%));
}
/* soft halo that rides with the spotlight, drawn behind the text */
.mega::after {
  content: "";
  position: absolute; inset: -20%;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(125, 211, 252, 0.10), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
@media (hover: none) {
  .mega::before { clip-path: none; animation: megaShift 6s ease-in-out infinite; background-size: 220% 220%; }
}
@keyframes megaShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.mega--small { font-size: clamp(2.6rem, 9vw, 7.5rem); }

.hero__line { font-size: clamp(1.05rem, 2.2vw, 1.45rem); color: var(--ink-dim); font-weight: 400; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 0.6rem; }
.hero__hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1.5px solid var(--line); border-radius: 999px;
}
.hero__hint span {
  position: absolute; top: 7px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px;
  border-radius: 3px; background: var(--ice);
  animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- marquee ---------- */
.marquee {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: rgba(125, 211, 252, 0.02);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1rem, 2.4vw, 1.6rem); letter-spacing: 0.3em;
  white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(160, 205, 255, 0.5);
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee--dim { border: none; background: none; opacity: 0.35; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- panels ---------- */
.panel {
  position: relative; z-index: 1;
  min-height: 92svh;
  display: grid; place-items: center;
  padding: clamp(6rem, 12vw, 9rem) clamp(1.2rem, 5vw, 3rem);
  overflow: hidden;
}
.panel__inner { max-width: 900px; text-align: center; width: 100%; }
.panel--wide .panel__inner { max-width: 1080px; }

.ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(16rem, 42vw, 38rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(148, 197, 255, 0.07);
  pointer-events: none; user-select: none;
  will-change: transform;
}

.tag {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.45em;
  color: var(--ice); margin-bottom: 1.6rem;
}
.panel h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1.04; letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.thin { color: var(--ink-dim); font-size: clamp(1rem, 1.8vw, 1.2rem); margin-bottom: 3rem; }

/* ---------- split text ---------- */
[data-split] .w { display: inline-block; white-space: nowrap; }
[data-split] .ch {
  display: inline-block;
  opacity: 0; transform: translateY(0.7em) rotate(6deg);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i) * 22ms);
}
[data-split].in .ch { opacity: 1; transform: none; }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(34px) scale(0.985);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
/* cards that jump out with an overshoot */
.reveal--pop {
  transform: translateY(52px) scale(0.86);
  transition-timing-function: cubic-bezier(0.3, 1.55, 0.45, 1);
}

/* ---------- logic spine ---------- */
main { position: relative; }
.spine {
  position: absolute; left: 50%; width: 2px; margin-left: -1px; z-index: 0;
  background: linear-gradient(180deg, transparent, rgba(148, 197, 255, 0.10) 5%, rgba(148, 197, 255, 0.10) 95%, transparent);
  pointer-events: none;
}
.spine__fill {
  position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.05), rgba(125, 211, 252, 0.6));
  box-shadow: 0 0 14px rgba(125, 211, 252, 0.45);
}
.spine__dot {
  position: absolute; left: 50%; width: 9px; height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(148, 197, 255, 0.4);
  background: var(--bg);
  transition: background 0.5s, box-shadow 0.5s, border-color 0.5s;
}
.spine__dot.on {
  background: var(--ice);
  border-color: #e0f2fe;
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.9);
}

/* ---------- verdict (glitch) ---------- */
.verdict-stage {
  position: relative; display: inline-block;
  padding: 2.6rem 4rem 2.2rem;
  border: 1px solid var(--line); border-radius: 24px;
  background: linear-gradient(160deg, rgba(125, 211, 252, 0.05), rgba(167, 139, 250, 0.04));
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}
.verdict-stage__label {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint);
}
.verdict-stage__label--bottom { color: rgba(248, 160, 160, 0.75); }
.verdict {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(4.5rem, 12vw, 8.5rem); line-height: 1.05;
  margin: 0.4rem 0;
}
.verdict__num {
  display: inline-block; min-width: 1.1ch;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.verdict__num.glitch { animation: glitch 0.38s steps(2) both; }
@keyframes glitch {
  0% { transform: translate(0); clip-path: inset(0 0 0 0); text-shadow: none; }
  20% { transform: translate(-6px, 3px); clip-path: inset(12% 0 48% 0); text-shadow: 4px 0 #f87171, -4px 0 #38bdf8; }
  40% { transform: translate(5px, -4px); clip-path: inset(52% 0 8% 0); text-shadow: -5px 0 #f87171, 5px 0 #a78bfa; }
  60% { transform: translate(-4px, 2px); clip-path: inset(30% 0 32% 0); text-shadow: 3px 0 #38bdf8, -3px 0 #f87171; }
  80% { transform: translate(3px, -2px); clip-path: inset(5% 0 62% 0); text-shadow: -3px 0 #a78bfa, 3px 0 #38bdf8; }
  100% { transform: translate(0); clip-path: inset(0 0 0 0); text-shadow: none; }
}
.verdict__den { color: var(--ink-faint); font-weight: 500; }

/* glare that follows the cursor on tilt cards */
.glare {
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(240px circle at var(--gx, 50%) var(--gy, 50%), rgba(180, 220, 255, 0.14), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.tilt:hover .glare { opacity: 1; }

/* ---------- anatomy of a verdict ---------- */
.anatomy {
  position: relative;
  max-width: 700px; margin: 0 auto 4rem;
}
.anatomy svg { width: 100%; height: auto; display: block; overflow: visible; }
.anatomy line {
  stroke: rgba(148, 197, 255, 0.28); stroke-width: 1;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.anatomy.in line {
  transition: stroke-dashoffset 1.1s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s);
  stroke-dashoffset: 0;
}
.anatomy circle.halo { fill: rgba(125, 211, 252, 0.09); }
.anatomy circle.n {
  fill: #bfdbfe;
  transform-box: fill-box; transform-origin: center;
  transition: transform 0.3s;
}
.anatomy circle.n:hover { transform: scale(1.9); }
.anatomy circle.core { fill: url(#coreG); }
.anatomy text {
  font-family: var(--mono); font-size: 11px;
  fill: rgba(234, 244, 255, 0.42);
  animation: symFlicker 6s steps(1) infinite;
}
.anatomy text:nth-of-type(2n) { animation-delay: 2.1s; }
.anatomy text:nth-of-type(3n) { animation-delay: 3.7s; }
@keyframes symFlicker {
  0%, 88%, 100% { opacity: 1; }
  90% { opacity: 0.2; }
  92% { opacity: 1; }
  94% { opacity: 0.45; }
  96% { opacity: 1; }
}
.anatomy__caption {
  margin-top: 0.9rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- chips ---------- */
.chips {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
  margin-top: 4rem;
}
@media (max-width: 780px) { .chips { grid-template-columns: 1fr; } }
.chip {
  position: relative;
  padding: 2rem 1.6rem 1.8rem;
  border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(165deg, rgba(125, 211, 252, 0.05), rgba(4, 6, 13, 0.35));
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
  text-align: center;
}
.chip h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.45rem;
  margin-bottom: 0.6rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.chip p { color: var(--ink-dim); font-size: 0.9rem; line-height: 1.6; }

/* ---------- countdown ---------- */
.countdown {
  position: relative; display: inline-block;
  padding: 2.5rem 4.5rem;
  border: 1px solid var(--line); border-radius: 24px;
  background: rgba(4, 6, 13, 0.5);
  overflow: hidden;
}
.countdown__digits { display: flex; gap: 0.7rem; justify-content: center; }
.countdown__digits b {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(4.2rem, 11vw, 8rem); line-height: 1;
  min-width: 1.05ch;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  border-bottom: 3px solid rgba(125, 211, 252, 0.25);
  padding: 0.6rem 0.9rem 0.9rem;
  border-radius: 12px;
  background-color: rgba(125, 211, 252, 0.04);
  animation: digitFlicker 4s linear infinite;
}
.countdown__digits b:nth-child(2) { animation-delay: 1.2s; }
@keyframes digitFlicker {
  0%, 96%, 100% { opacity: 1; }
  97% { opacity: 0.65; }
  98% { opacity: 1; }
  99% { opacity: 0.8; }
}
.countdown__caption {
  margin-top: 1.1rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-faint);
}
.countdown__scan {
  position: absolute; left: 0; right: 0; height: 70px; top: 0;
  background: linear-gradient(180deg, transparent, rgba(125, 211, 252, 0.09), transparent);
  animation: scan 3.4s linear infinite;
}
@keyframes scan {
  from { transform: translateY(-80px); }
  to { transform: translateY(320px); }
}

/* ---------- flow (pipeline) ---------- */
.flow { position: relative; margin-top: 1.5rem; }
.flow__rail {
  position: absolute; left: 6%; right: 6%; top: 29px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(148, 197, 255, 0.25) 12%, rgba(148, 197, 255, 0.25) 88%, transparent);
  overflow: visible;
}
.flow__pulse {
  position: absolute; top: -3px; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: #cfeaff;
  box-shadow: 0 0 14px rgba(125, 211, 252, 1), 0 0 40px rgba(125, 211, 252, 0.6);
  animation: pulseRun 3.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.flow__pulse:nth-child(2) { animation-delay: 1.05s; }
.flow__pulse:nth-child(3) { animation-delay: 2.1s; }
@keyframes pulseRun {
  0% { left: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.flow__nodes { display: flex; justify-content: space-between; position: relative; }
.node {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  width: 25%;
  opacity: 0.25; transform: translateY(14px);
  transition: opacity 0.7s, transform 0.7s;
}
.node.lit { opacity: 1; transform: none; }
.node__core {
  width: 60px; height: 60px; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.85), rgba(125, 211, 252, 0.35) 40%, rgba(56, 122, 223, 0.15) 70%);
  border: 1px solid rgba(148, 197, 255, 0.4);
  box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.4);
  position: relative; z-index: 1;
}
.node.lit .node__core { animation: coreRing 2.6s ease-out infinite; }
.node:nth-child(2).lit .node__core { animation-delay: 0.65s; }
.node:nth-child(3).lit .node__core { animation-delay: 1.3s; }
.node:nth-child(4).lit .node__core { animation-delay: 1.95s; }
@keyframes coreRing {
  0% { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.45); }
  100% { box-shadow: 0 0 0 26px rgba(125, 211, 252, 0); }
}
.node__label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.3em; color: var(--ink-dim);
}
.flow__oversight {
  margin: 3rem auto 0; width: fit-content; max-width: 100%;
  padding: 0.85rem 2.2rem;
  border: 1px dashed rgba(167, 139, 250, 0.45); border-radius: 999px;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.3em;
  color: var(--violet);
  opacity: 0.25; transition: opacity 0.7s;
  animation: oversightGlow 4s ease-in-out infinite;
}
.flow__oversight.lit { opacity: 1; }
@keyframes oversightGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(167, 139, 250, 0); }
  50% { box-shadow: 0 0 30px rgba(167, 139, 250, 0.18); }
}
@media (max-width: 700px) {
  .flow__rail { display: none; }
  .flow__nodes { flex-direction: column; gap: 2rem; align-items: center; }
  .node { width: auto; }
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 780px) { .stats { grid-template-columns: 1fr; } }
.stat {
  position: relative;
  padding: 2.6rem 1.6rem 2.2rem;
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(165deg, rgba(125, 211, 252, 0.05), rgba(4, 6, 13, 0.3));
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}
.stat__big {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.4rem); line-height: 1; margin-bottom: 0.8rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat p { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); }
.stat p em { color: var(--ink-faint); font-style: normal; }

/* ---------- CTA ---------- */
.cta {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1.8rem; text-align: center;
  padding: 6rem 1.2rem;
  overflow: hidden;
}
.cta .marquee { position: absolute; top: 14%; left: 0; right: 0; transform: rotate(-3deg) scale(1.05); }
.cta .thin { margin-bottom: 0.4rem; }

/* ---------- footer ---------- */
.footer {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding: 1.6rem clamp(1.2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em;
  color: var(--ink-faint);
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, [data-split] .ch { opacity: 1 !important; transform: none !important; }
  #bg, .noise, .cursor { display: none; }
  body, a, button { cursor: auto; }
}
