/* GoStreak marketing site — shared styles.
   Dark-first, mirrors the app's "gentle gamification · social streaks · calm" identity.
   No build step, no framework. Every page is static server-rendered HTML.
   Motion is layered on top and fully disabled under prefers-reduced-motion. */

:root {
  --ground: #0B0716;
  --surface: #15102B;
  --surface-2: #1F1743;
  --ink: #F2F0FF;
  --ink-dim: #A8A2CE;
  --ink-faint: #746E9C;
  --line: #2A2350;
  --accent: #8B7BFF;
  --accent-2: #C56CFF;
  --accent-ink: #0B0716;
  --go: #00E08A;
  --flame: #FF9F45;
  --stop: #FF6FA5;
  --maxw: 46rem;
  --wide: 66rem;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --spring: cubic-bezier(0.2, 1.4, 0.35, 1);
}

@media (prefers-color-scheme: light) {
  :root {
    --ground: #FBFAFE;
    --surface: #FFFFFF;
    --surface-2: #F2EFFB;
    --ink: #17132A;
    --ink-dim: #574F76;
    --ink-faint: #8A84A6;
    --line: #E6E2F3;
    --accent: #5A48D6;
    --accent-2: #9A3FE0;
    --accent-ink: #FFFFFF;
    --go: #0E9A63;
    --flame: #A9660A;
    --stop: #C82F6B;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.16;
  text-wrap: balance;
  margin: 0;
  letter-spacing: -0.014em;
}
h1 { font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.3rem); font-weight: 600; line-height: 1.06; }
h2 { font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem); font-weight: 600; }
p { margin: 0; }
strong { font-weight: 600; }

.eyebrow, .kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow { color: var(--ink-faint); }
.kicker { color: var(--accent); }

/* ---- layout ---- */
.site {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 0.6rem + 2vw, 2rem);
}
.site.wide { max-width: var(--wide); }

main { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) 5rem; display: flex; flex-direction: column; gap: clamp(2.6rem, 2rem + 2vw, 3.8rem); }
section { display: flex; flex-direction: column; gap: 1rem; }
.prose { max-width: 63ch; }
.prose > * + * { margin-top: 0.9rem; }

/* ---- header / nav ---- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), backdrop-filter 0.25s var(--ease);
}
header.scrolled {
  background: color-mix(in srgb, var(--ground) 82%, transparent);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1rem clamp(1.1rem, 0.6rem + 2vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1rem 1.4rem;
  flex-wrap: wrap;
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand b { color: var(--accent); }
.nav-links { display: flex; gap: 1.1rem 1.4rem; flex-wrap: wrap; font-size: 0.92rem; margin-right: auto; }
.nav-links a { color: var(--ink-dim); text-decoration: none; transition: color 0.18s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { display: none; }
@media (min-width: 46rem) { .nav-cta { display: inline-flex; } }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.72rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--spring), filter 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px -12px var(--accent);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 16px 44px -14px var(--accent-2); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; border-radius: 10px; }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1rem; border-radius: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }
.note { font-size: 0.82rem; color: var(--ink-faint); }

/* ---- generic hero (sub-pages) ---- */
.hero { display: flex; flex-direction: column; gap: 1.1rem; padding-top: 0.5rem; }
.hero p.stand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink-dim);
  max-width: 34ch;
}

/* ================================================================
   HOME PAGE
   ================================================================ */
main.home { display: block; padding: 0; }
.home > section { display: block; position: relative; overflow: clip; padding-block: clamp(2.8rem, 2rem + 3.6vw, 5.2rem); }
.home .wrap {
  position: relative;
  z-index: 1;
  max-width: var(--wide);
  margin: 0 auto;
  padding-inline: clamp(1.1rem, 0.6rem + 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.home .wrap > * { min-width: 0; max-width: 100%; }
.home .wrap.narrow { max-width: 48rem; }
.home > section h2 { font-size: clamp(1.7rem, 1.3rem + 1.9vw, 2.7rem); font-weight: 600; max-width: 22ch; }
.lede {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1rem + 0.55vw, 1.42rem);
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: min(48ch, 100%);
}
.home .prose { max-width: min(63ch, 100%); }

/* ---- aurora backdrop ---- */
.aurora {
  position: absolute;
  inset: -25% -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 46% at 20% 26%, color-mix(in srgb, var(--accent) 46%, transparent), transparent 70%),
    radial-gradient(36% 42% at 84% 20%, color-mix(in srgb, var(--accent-2) 42%, transparent), transparent 70%),
    radial-gradient(52% 52% at 64% 92%, color-mix(in srgb, var(--go) 22%, transparent), transparent 72%);
  filter: blur(48px) saturate(1.2);
  opacity: 0.9;
  animation: auroraDrift 24s ease-in-out infinite alternate;
}
@media (prefers-color-scheme: light) { .aurora { opacity: 0.5; filter: blur(64px) saturate(1.1); } }
@keyframes auroraDrift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.09); }
  100% { transform: translate3d(-1%, 3%, 0) scale(1.05); }
}

/* ---- hero ---- */
.home .hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(1.6rem, 1rem + 3vw, 3.6rem);
  padding-block: clamp(2.6rem, 1.6rem + 6vw, 5.5rem);
}
.hero-copy { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; align-self: stretch; min-width: 0; }
.hero-copy > * { max-width: min(46ch, 100%); }
.hero-copy > h1 { max-width: 100%; }
.home .hero h1 {
  font-size: clamp(2.4rem, 1.7rem + 3.6vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.0;
}
.home .hero h1 em {
  font-style: normal;
  color: var(--accent);
  background: linear-gradient(100deg, var(--accent), var(--accent-2) 55%, var(--go));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.evo-cap {
  grid-column: 1 / -1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}
.evo-cap b { color: var(--ink-dim); }

.evo-stage {
  position: relative;
  width: clamp(150px, 34vw, 224px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 38% 32%, color-mix(in srgb, var(--accent) 68%, transparent), color-mix(in srgb, var(--accent-2) 42%, transparent) 58%, transparent 74%);
  box-shadow: 0 0 0 1px var(--line), 0 34px 90px -32px var(--accent);
}
.evo-stage::after {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  animation: ring 3.4s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.28); opacity: 0; }
}
.evo-face {
  font-size: clamp(3.4rem, 9vw, 5.4rem);
  line-height: 1;
  filter: drop-shadow(0 12px 26px color-mix(in srgb, var(--accent) 55%, transparent));
}
.evo-face.pop { animation: pop 0.6s var(--spring); }
@keyframes pop {
  0%   { transform: scale(0.55) rotate(-8deg); }
  60%  { transform: scale(1.18) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}
.spark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  pointer-events: none;
  animation: spark 0.72s ease-out forwards;
}
@keyframes spark {
  0%   { transform: translate(-50%, -50%) translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) translate(var(--x), var(--y)) scale(0.2); opacity: 0; }
}
@media (max-width: 52rem) {
  .home .hero .wrap { grid-template-columns: 1fr; }
  .evo-stage { order: -1; justify-self: center; }
  .hero-copy { align-items: flex-start; justify-self: stretch; }
}

/* ---- the loop ---- */
.loop { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; counter-reset: step; margin-top: 0.4rem; }
.loop-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.loop-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}
.loop-emoji { font-size: 1.6rem; line-height: 1; }
.loop-step h3 { font-family: "IBM Plex Sans", sans-serif; font-size: 0.98rem; font-weight: 700; letter-spacing: 0; }
.loop-step p { font-size: 0.86rem; color: var(--ink-dim); }
@media (max-width: 54rem) { .loop { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 34rem) { .loop { grid-template-columns: 1fr; } }

/* ---- marquee ---- */
.marquee {
  margin-top: 1.4rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 0.6rem;
  padding-block: 0.2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-dim);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-family: "IBM Plex Mono", monospace;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- feature tiles ---- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-top: 0.4rem; }
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tile:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 16px 44px -20px var(--accent);
}
.tile-emoji {
  font-size: 1.9rem;
  line-height: 1;
  filter: drop-shadow(0 6px 16px color-mix(in srgb, var(--accent) 42%, transparent));
}
.tile h3 { font-family: "IBM Plex Sans", sans-serif; font-size: 1.02rem; font-weight: 700; letter-spacing: 0; }
.tile p { font-size: 0.9rem; color: var(--ink-dim); }
@media (max-width: 62rem) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 40rem) { .tiles { grid-template-columns: 1fr; } }

/* ---- streak band ---- */
.streak-band { text-align: left; background: linear-gradient(180deg, var(--surface), var(--ground)); border-block: 1px solid var(--line); }
.counter {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3.6rem, 2rem + 9vw, 7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.counter span[data-count] {
  background: linear-gradient(120deg, var(--flame), var(--accent-2) 70%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--flame);
  font-variant-numeric: tabular-nums;
}
.counter::before { content: "🔥"; font-size: 0.6em; -webkit-text-fill-color: initial; }
.counter-unit { font-family: "IBM Plex Mono", monospace; font-size: 0.9rem; font-weight: 500; color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---- final CTA ---- */
.cta-final {
  text-align: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 24%, var(--ground)), color-mix(in srgb, var(--accent-2) 20%, var(--ground)));
  border-block: 1px solid var(--line);
}
.cta-final .wrap { align-items: center; text-align: center; }
.cta-final h2 { max-width: 18ch; }
.garden-float { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: clip; }
.float {
  position: absolute;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  opacity: 0.5;
  animation: bob 7s ease-in-out infinite;
}
.float:nth-child(1) { left: 6%;  top: 20%; animation-duration: 7s; }
.float:nth-child(2) { left: 15%; top: 66%; animation-duration: 9s;  animation-delay: -2s; }
.float:nth-child(3) { left: 30%; top: 28%; animation-duration: 6.5s; animation-delay: -1s; }
.float:nth-child(4) { right: 27%; top: 22%; animation-duration: 8s;  animation-delay: -3s; }
.float:nth-child(5) { right: 13%; top: 60%; animation-duration: 7.5s; animation-delay: -1.5s; }
.float:nth-child(6) { right: 6%;  top: 34%; animation-duration: 9.5s; animation-delay: -4s; }
.float:nth-child(7) { left: 46%; top: 74%; animation-duration: 8.5s; animation-delay: -2.5s; }
.float:nth-child(8) { right: 40%; top: 72%; animation-duration: 7s;  animation-delay: -0.5s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-16px) rotate(4deg); }
}
@media (max-width: 40rem) { .float:nth-child(n+6) { display: none; } }

/* ---- feature grid (sub-pages) ---- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid > .cell { background: var(--surface); padding: 1.15rem 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.cell h3 { font-family: "IBM Plex Sans", sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.cell p { font-size: 0.9rem; color: var(--ink-dim); }
.cell .k {
  font-family: "IBM Plex Mono", monospace; font-size: 0.7rem;
  color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase;
}

/* ---- callout ---- */
.callout {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 1.1rem 1.3rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.callout .eyebrow { color: var(--accent); }

/* ---- tables ---- */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
table { border-collapse: collapse; width: 100%; font-size: 0.9rem; min-width: 34rem; }
caption { text-align: left; font-size: 0.8rem; color: var(--ink-faint); padding: 0.6rem 0.85rem; }
th, td { text-align: left; padding: 0.72rem 0.9rem; vertical-align: top; border-bottom: 1px solid var(--line); }
th {
  font-family: "IBM Plex Mono", monospace; font-weight: 500;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint); background: var(--surface-2);
}
tbody tr:last-child td { border-bottom: none; }
td:first-child, th:first-child { font-weight: 600; }
.yes { color: var(--go); font-weight: 600; }
.no { color: var(--ink-faint); }

/* scoreboard variant (home comparison) */
.tablewrap.score {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  box-shadow: 0 24px 70px -34px var(--accent);
}
.score table th:nth-child(2), .score table td:nth-child(2) {
  background: color-mix(in srgb, var(--accent) 13%, var(--surface));
  color: var(--ink);
}
.score table td:nth-child(2) { font-weight: 600; }

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 1.6rem; }
.faq .qa { display: flex; flex-direction: column; gap: 0.5rem; }
.faq .qa h2, .faq .qa h3 { font-size: 1.12rem; font-family: "IBM Plex Sans", sans-serif; font-weight: 700; letter-spacing: 0; }
.faq p { color: var(--ink-dim); max-width: 62ch; }

/* ---- glossary ---- */
.terms { display: flex; flex-direction: column; gap: 1.7rem; }
.term { display: flex; flex-direction: column; gap: 0.5rem; }
.term h2 { font-size: 1.15rem; font-family: "IBM Plex Sans", sans-serif; font-weight: 700; letter-spacing: 0; }
.term p { color: var(--ink-dim); max-width: 62ch; }
.term .src { font-size: 0.78rem; color: var(--ink-faint); }

/* ---- misc ---- */
hr { border: none; border-top: 1px solid var(--line); margin: 0; }
.q {
  font-family: "IBM Plex Mono", monospace; font-size: 0.8rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 3px; padding: 0.12rem 0.45rem; color: var(--ink-dim);
  display: inline-block; line-height: 2;
}
.updated { font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; color: var(--ink-faint); letter-spacing: 0.04em; }

footer { border-top: 1px solid var(--line); margin-top: 2rem; }
.foot {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2rem clamp(1.1rem, 0.6rem + 2vw, 2rem) 3rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem; color: var(--ink-faint);
}
.foot a { color: var(--ink-dim); text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot .cols { display: flex; gap: 1.5rem 2rem; flex-wrap: wrap; }

@media (max-width: 40rem) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ================================================================
   SCROLL REVEAL — only active when JS present; visible otherwise
   ================================================================ */
.js main > section:not(.hero):not(.in),
.js .reveal:not(.in) {
  opacity: 0;
  transform: translateY(18px);
}
.js main > section:not(.hero),
.js .reveal {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js main > section.in,
.js .reveal.in { opacity: 1; transform: none; }

.js .score:not(.in) tbody tr { opacity: 0; transform: translateX(-12px); }
.js .score tbody tr { transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.js .score.in tbody tr { opacity: 1; transform: none; }
.js .score.in tbody tr:nth-child(1) { transition-delay: 0.04s; }
.js .score.in tbody tr:nth-child(2) { transition-delay: 0.10s; }
.js .score.in tbody tr:nth-child(3) { transition-delay: 0.16s; }
.js .score.in tbody tr:nth-child(4) { transition-delay: 0.22s; }
.js .score.in tbody tr:nth-child(5) { transition-delay: 0.28s; }
.js .score.in tbody tr:nth-child(6) { transition-delay: 0.34s; }

/* ================================================================
   REDUCED MOTION — kill every animation and reveal offset
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js main > section, .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .score tbody tr { opacity: 1 !important; transform: none !important; }
  .marquee-track { transform: none !important; }
}
