/* MinuteBox motion — bracket-grid + wordmark reveal
 * Brand: Cyber Yellow #FFD504 on Graphite #262F3C
 * Storyboard: 18 keyframes, see /reference/
 */

:root {
  --mb-yellow: #ffd504;
  --mb-yellow-soft: #ffd50488;
  --mb-graphite: #262f3c;
  --mb-graphite-deep: #1d242f;
  --cell-dim: #36404e;      /* dim graphite for the resting bracket field */
  --cell-mid: #4a5564;      /* slightly brighter dim for in-between states */
  --white-soft: #f4f6fa;

  /* Grid sizing — derived at runtime from JS via custom props */
  --cols: 20;
  --rows: 11;

  /* Animation tempo (override via JS to slow-mo / speed up) */
  --tempo: 1;

  /* Wordmark "small" scale — the scale at which the wordmark's element
     width exactly matches the centre grid cell's width. Computed at
     runtime by JS so the wordmark grows from / shrinks back to the
     exact cell footprint. */
  --wm-scale: 0.5;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--mb-graphite);
  color: var(--mb-yellow);
  font-family: "Rubik", system-ui, sans-serif;
  min-height: 100vh;
  overflow: hidden;
}

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(
    ellipse at center,
    #2c3645 0%,
    var(--mb-graphite) 55%,
    var(--mb-graphite-deep) 100%
  );
}

/* ---------- Layer 1: the bracket grid ---------- */
.grid {
  /* Centered exactly at the viewport midpoint — the same recipe the
     wordmark uses. Previous attempt (inset:0 + justify-content:center)
     left-aligned the tracks when the grid content was wider than the
     container, because browsers can fall back to start alignment for
     overflowing flex/grid content. With this recipe the grid sizes to
     its own content and its centre is always at (50%, 50%) of .stage,
     so the centre cell aligns with the wordmark's centre exactly. */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  /* intrinsic-width tracks so each cell hugs its [ ] content;
     tiny gaps between pairs keep the matrix feel from the Figma. */
  grid-template-columns: repeat(var(--cols), max-content);
  grid-template-rows: repeat(var(--rows), max-content);
  column-gap: 0.35em;
  row-gap: 0.1em;
}

.cell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;                /* fixed [ ↔ ] distance — glyph never affects it */
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 3.4vmin, 2.8rem);
  line-height: 1;
  color: var(--cell-dim);
  letter-spacing: -0.03em;
  user-select: none;
  white-space: nowrap;
  /* default state: dim, almost invisible */
  opacity: 0.22;
  transition:
    color 280ms ease-out,
    opacity 650ms ease-out,
    transform 480ms cubic-bezier(.34, 1.4, .64, 1);
  /* Isolate each cell's layout/style/paint so a state change on one cell
     doesn't invalidate the whole grid's paint tree. Big win for a 1353-
     cell grid that's constantly toggling state classes. */
  contain: layout style paint;
}

/* Sprite pre-state: cell is fully invisible and slightly shrunken.
   JS adds this to every cell, then removes it on a random per-cell delay
   so the field "pops in" like a swarm of sprites. */
.cell.materializing {
  opacity: 0 !important;
  transform: scale(0.5);
}

/* The cell's content is built from three spans so we can colour brackets
   separately from the inner glyph. */
.cell .lb,
.cell .rb {
  display: inline-block;
  font-weight: 700;
  transition: color 280ms ease-out, transform 320ms cubic-bezier(.2,.7,.2,1);
}
.cell .gl {
  /* Glyph slot — perfectly centred between the brackets via absolute
     positioning + a translate. SVG children fill this box so visual
     alignment is pixel-perfect regardless of font metrics. */
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.65em;
  height: 0.65em;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--white-soft);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  transition: opacity 200ms ease-out, transform 280ms cubic-bezier(.2,.7,.2,1);
}
.cell .gl svg {
  width: 100%;
  height: 100%;
  display: block;
  color: currentColor;
}

/* States — set via JS by toggling classes on cells. */

/* baseline grid visible at low opacity */
.grid.lit .cell { opacity: 0.55; color: var(--cell-dim); }

/* a single cell glowing yellow with no content */
.cell.on { opacity: 1; color: var(--mb-yellow); }
.cell.on .lb, .cell.on .rb { color: var(--mb-yellow); }

/* cell holds a faint dot (gray seed) — same size as the dot/on state. */
.cell.seed { opacity: 0.8; }
.cell.seed .gl { opacity: 1; color: var(--cell-mid); transform: translate(-50%, -50%) scale(1); }

/* cell lit yellow with a white dot */
.cell.dot { opacity: 1; color: var(--mb-yellow); }
.cell.dot .lb, .cell.dot .rb { color: var(--mb-yellow); }
.cell.dot .gl { opacity: 1; color: var(--white-soft); transform: translate(-50%, -50%) scale(1); }

/* cell lit yellow with a white check */
.cell.check { opacity: 1; color: var(--mb-yellow); }
.cell.check .lb, .cell.check .rb { color: var(--mb-yellow); }
.cell.check .gl { opacity: 1; color: var(--white-soft); transform: translate(-50%, -50%) scale(1); }

/* composition-shape cells (white brackets, no inner glyph) */
.cell.frame-y { opacity: 1; color: var(--mb-yellow); }
.cell.frame-y .lb, .cell.frame-y .rb { color: var(--mb-yellow); }
.cell.frame-w { opacity: 1; color: var(--white-soft); }
.cell.frame-w .lb, .cell.frame-w .rb { color: var(--white-soft); }

/* Brief flicker burst applied when a cell first lights up. The animation
   runs once and is removed by JS so the underlying state class takes over
   for the steady-on appearance. */
@keyframes flicker-burst {
  0%   { opacity: 1; }
  10%  { opacity: 0.15; }
  18%  { opacity: 1; }
  28%  { opacity: 0.1; }
  38%  { opacity: 1; }
  52%  { opacity: 0.25; }
  62%  { opacity: 1; }
  76%  { opacity: 0.4; }
  88%  { opacity: 1; }
  100% { opacity: 1; }
}
.cell.flicker {
  animation: flicker-burst 220ms steps(1, jump-end);
}

/* ---------- Layer 2: wordmark reveal ---------- */
.wordmark {
  /* Anchor at the viewport centre using the classic top/left 50% +
     translate(-50%, -50%) recipe. The wordmark starts at scale(0.5) so
     the bracket character width visually matches the small lit grid-cell
     bracket that phaseScatter leaves behind — then grows out from there. */
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.6rem, 1.8vmin, 1.6rem);
  font-family: "Archivo", system-ui, sans-serif;
  /* 10% smaller than the original clamp(1.6rem, 5.6vmin, 5rem). */
  font-size: clamp(1.44rem, 5.04vmin, 4.5rem);
  /* Text weight (inherited by .wm-content); brackets override to 800. */
  font-weight: 600;
  color: var(--white-soft);
  opacity: 0;
  transform: translate(-50%, -50%) scale(var(--wm-scale, 0.5));
  transition:
    opacity 1000ms ease-out,
    transform 1500ms cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
}
.wordmark.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* Exit state — applied right before the wordmark hands off to the grid
   cell at the end of phaseReveal. Faster opacity fade than the standard
   1000ms so the crossfade-to-cell window stays tight. Transform value
   is set inline by JS to scale(--wm-scale). */
.wordmark.exiting {
  opacity: 0;
  transition:
    opacity 400ms ease-out,
    transform 1500ms cubic-bezier(.2, .7, .2, 1);
}
.wm-bracket {
  color: var(--mb-yellow);
  font-weight: 800;
  font-size: 1.35em;
  line-height: 1;
  transform: translateY(-0.04em);
}
.wm-content {
  display: inline-block;
  min-width: 1ch;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  /* Width is set explicitly by JS per-line so the brackets (flex siblings)
     glide between text widths instead of snapping. */
  transition:
    width 520ms cubic-bezier(.2, .7, .2, 1),
    opacity 240ms ease-out,
    transform 240ms ease-out,
    font-size 520ms cubic-bezier(.2, .7, .2, 1),
    color 240ms ease-out;
}
.wm-content.swap { opacity: 0; transform: translateY(2px); }

/* ---------- Waitlist CTA ---------- */
/* Gentle vertical float — runs continuously while the CTA is visible.
   Built on top of the static translateX(-50%) so the horizontal
   centring is preserved. */
@keyframes cta-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}
/* Subtle glow pulse on the pill background — synced with the float. */
@keyframes cta-pulse {
  0%, 100% {
    background: rgba(20, 26, 35, 0.45);
    box-shadow: 0 4px 22px -8px rgba(255, 213, 4, 0.18);
  }
  50% {
    background: rgba(20, 26, 35, 0.55);
    box-shadow: 0 6px 28px -6px rgba(255, 213, 4, 0.32);
  }
}

.waitlist-cta {
  position: fixed;
  z-index: 6;
  left: 50%;
  bottom: clamp(1.5rem, 6vh, 4rem);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: clamp(0.3rem, 1vmin, 0.8rem);
  /* Pill background — translucent, rounded. */
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(20, 26, 35, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 213, 4, 0.16);
  box-shadow: 0 4px 22px -8px rgba(255, 213, 4, 0.18);
  /* 30% smaller — old clamp values × 0.7 (with bottom anchor unchanged). */
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(0.74rem, 2.24vmin, 1.47rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--white-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 600ms ease-out,
    color 200ms ease-out,
    border-color 200ms ease-out;
}
.waitlist-cta.show {
  opacity: 1;
  pointer-events: auto;
  animation:
    cta-float 3.6s ease-in-out infinite,
    cta-pulse 3.6s ease-in-out infinite;
}
.waitlist-cta:hover {
  color: #fff;
  border-color: rgba(255, 213, 4, 0.45);
  /* Pause both animations on hover so the click target stays still. */
  animation-play-state: paused;
}
.waitlist-cta .cta-bracket {
  color: var(--mb-yellow);
  font-size: 1.35em;
  line-height: 1;
  transform: translateY(-0.04em);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.waitlist-cta:hover .cta-bracket:first-child {
  transform: translateY(-0.04em) translateX(-3px);
}
.waitlist-cta:hover .cta-bracket:last-child {
  transform: translateY(-0.04em) translateX(3px);
}

/* ---------- Form overlay ---------- */
.form-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  /* `safe center` keeps the form centred when it fits, and avoids the
     start-alignment fallback that left-anchors overflowing content. */
  place-items: safe center;
  /* Padding shrinks on small screens so the 92vw form never overruns
     the overlay's content box (which would left-anchor it). */
  padding: clamp(0.75rem, 4vw, 2rem);
  background: rgba(20, 26, 35, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease-out;
}
.form-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.waitlist-form {
  position: relative;
  /* `100%` fits exactly within the overlay's padded content box, so the
     form is never wider than the area `place-items: center` is centring
     it in. */
  width: min(460px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vmin, 2.5rem);
  background: var(--mb-graphite);
  border: 1px solid rgba(255, 213, 4, 0.22);
  border-radius: 14px;
  color: var(--white-soft);
  font-family: "Rubik", system-ui, sans-serif;
  transform: translateY(12px);
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}
.form-overlay.show .waitlist-form {
  transform: translateY(0);
}
.form-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  background: transparent;
  border: 0;
  color: rgba(244, 246, 250, 0.6);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.form-close:hover { color: var(--mb-yellow); }

.form-title {
  margin: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3.2vmin, 1.8rem);
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  color: var(--white-soft);
}
.form-title .cta-bracket {
  color: var(--mb-yellow);
  font-size: 1.3em;
  line-height: 1;
}
.form-sub {
  margin: 0 0 0.4rem;
  color: rgba(244, 246, 250, 0.65);
  font-size: 0.92rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.field-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mb-yellow);
  font-weight: 500;
}
.field input[type="text"],
.field input[type="email"] {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease-out, background 160ms ease-out;
}
.field input:focus {
  border-color: var(--mb-yellow);
  background: rgba(255, 213, 4, 0.06);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 90, 90, 0.55);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.7rem;
  align-items: start;
  cursor: pointer;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(244, 246, 250, 0.8);
}
.checkbox-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 160ms, background 160ms;
}
.checkbox-field input[type="checkbox"]:checked {
  background: var(--mb-yellow);
  border-color: var(--mb-yellow);
}
.checkbox-field input[type="checkbox"]:checked::after {
  content: "✓";
  font-size: 14px;
  color: var(--mb-graphite);
  font-weight: 700;
  line-height: 1;
}
.checkbox-label { flex: 1; }

.form-submit {
  margin-top: 0.4rem;
  background: transparent;
  color: var(--white-soft);
  border: 0;
  padding: 0.85rem 1.2rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.6vmin, 1.4rem);
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border-radius: 8px;
  transition:
    background 200ms ease-out,
    transform 240ms cubic-bezier(.2,.7,.2,1),
    color 160ms;
}
.form-submit .cta-bracket {
  color: var(--mb-yellow);
  font-size: 1.3em;
  line-height: 1;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.form-submit:hover {
  background: rgba(255, 213, 4, 0.08);
}
.form-submit:hover .cta-bracket:first-child { transform: translateX(-3px); }
.form-submit:hover .cta-bracket:last-child { transform: translateX(3px); }
.form-submit[disabled] {
  cursor: progress;
  opacity: 0.65;
}

.form-error {
  margin: 0;
  font-size: 0.85rem;
  color: #ff8585;
}

/* ---------- Thank-you overlay ---------- */
.thankyou-overlay {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(20, 26, 35, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease-out;
}
.thankyou-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.thankyou-mark {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vmin, 1.2rem);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 12vmin, 9rem);
  margin-bottom: clamp(1rem, 3vh, 2rem);
  transform: scale(0.6);
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(.34, 1.56, .64, 1),
    opacity 400ms ease-out;
}
.thankyou-overlay.show .thankyou-mark {
  transform: scale(1);
  opacity: 1;
  transition-delay: 120ms;
}
.ty-bracket {
  color: var(--mb-yellow);
  line-height: 1;
}
.ty-check {
  color: var(--white-soft);
  font-size: 0.85em;
  line-height: 1;
}
.thankyou-title {
  margin: 0 0 0.4rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3.6vmin, 2.4rem);
  color: var(--white-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease-out, transform 400ms cubic-bezier(.2,.7,.2,1);
}
.thankyou-overlay.show .thankyou-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 360ms;
}
.thankyou-sub {
  margin: 0;
  font-family: "Rubik", system-ui, sans-serif;
  font-size: clamp(0.9rem, 2vmin, 1.1rem);
  color: rgba(244, 246, 250, 0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease-out, transform 400ms cubic-bezier(.2,.7,.2,1);
}
.thankyou-overlay.show .thankyou-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 480ms;
}

/* ---------- Dev control panel (hideable) ---------- */
.devpanel {
  position: fixed;
  z-index: 5;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem 0.7rem 1rem;
  background: rgba(20, 26, 35, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 213, 4, 0.18);
  border-radius: 14px;
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--white-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 220ms ease-out, transform 260ms cubic-bezier(.2,.7,.2,1);
}
.devpanel.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(120%);
  pointer-events: none;
}
.dev-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.dev-row label {
  color: var(--mb-yellow);
  font-weight: 500;
  min-width: 3.2rem;
}
.dev-row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.dev-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mb-yellow);
  cursor: grab;
  border: 0;
  box-shadow: 0 0 0 2px rgba(255, 213, 4, 0.22);
  transition: transform 120ms ease-out;
}
.dev-row input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.dev-row input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mb-yellow);
  cursor: grab;
  border: 0;
  box-shadow: 0 0 0 2px rgba(255, 213, 4, 0.22);
}
.speed-val, .frame-val {
  min-width: 3.4rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: var(--mb-yellow);
  font-weight: 500;
}
.frame-name {
  flex: 1;
  min-width: 8rem;
  color: rgba(244, 246, 250, 0.75);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}
.play-btn {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  color: var(--mb-yellow);
  border: 1.5px solid rgba(255, 213, 4, 0.45);
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease-out, color 160ms ease-out, border-color 160ms ease-out;
}
.play-btn:hover { background: rgba(255, 213, 4, 0.12); border-color: var(--mb-yellow); }
.play-btn.paused { color: rgba(244, 246, 250, 0.85); border-color: rgba(255, 255, 255, 0.3); }
.dev-hide,
.speed-reset {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
}
.dev-hide { font-size: 1.2rem; margin-left: 0.1rem; }
.dev-hide:hover,
.speed-reset:hover { color: var(--mb-yellow); }

/* Morph-style pill buttons (one for each MORPH_STYLES entry). */
.morph-group {
  display: flex;
  gap: 0.25rem;
  flex: 1;
}
.morph-btn {
  flex: 1;
  padding: 0.35rem 0.45rem;
  background: transparent;
  color: rgba(244, 246, 250, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.morph-btn:hover {
  color: var(--white-soft);
  border-color: rgba(255, 213, 4, 0.4);
}
.morph-btn.active {
  background: rgba(255, 213, 4, 0.12);
  color: var(--mb-yellow);
  border-color: var(--mb-yellow);
}


/* ---------- Accessibility: respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .cell, .cell .lb, .cell .rb, .cell .gl,
  .wordmark, .wm-content {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
