/* ============================================================
   VCC, The 30-second movie
   Auto-advancing carousel, user-controllable
   5 stages, shared SVG canvas with cross-fading layers
   ============================================================ */

.movie {
  position: relative;
  padding-block: clamp(48px, 6vw, 88px);
  overflow: hidden;
}

/* Subtle ambient glow, top-right */
.movie::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(116, 219, 139, 0.08) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.movie__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-6);
}

.movie__head .eyebrow { margin-bottom: var(--space-4); }

.movie__head h2 {
  font-size: var(--fs-primary);
  font-weight: var(--fw-light);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin-bottom: var(--space-4);
  max-width: 20ch;
  margin-inline: auto;
  text-wrap: balance;
}

.movie__head h2 .accent { color: var(--accent); font-weight: var(--fw-bold); }

.movie__head .lead { margin-inline: auto; max-width: 54ch; }

/* ---------- Carousel frame ---------- */

.movie__frame {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  background: rgba(46, 63, 50, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ---------- Stage tabs ---------- */

.movie__tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  border-bottom: 1px solid var(--border);
}

.movie__tab {
  position: relative;
  padding: 20px 18px;
  text-align: left;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  font-family: var(--font-brand);
  border-right: 1px solid var(--border);
}

.movie__tab:last-child { border-right: none; }
.movie__tab:hover { color: var(--text-primary); background: rgba(255,255,255,0.02); }

.movie__tab.is-active { color: var(--text-primary); background: rgba(116, 219, 139, 0.04); }
.movie__tab.is-past { color: var(--text-secondary); }

.movie__tab-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--ls-label);
  color: var(--text-dim);
  margin-bottom: 4px;
}

.movie__tab.is-active .movie__tab-num,
.movie__tab.is-past .movie__tab-num { color: var(--accent); }

.movie__tab-label {
  display: block;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-regular);
  letter-spacing: -0.01em;
}

/* Progress fill inside the active tab area */
.movie__tab-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(116, 219, 139, 0.5);
  transition: width 80ms linear;
}

.movie.is-paused .movie__tab-fill {
  background: var(--ew-green-400);
  box-shadow: none;
}

@media (max-width: 720px) {
  .movie__tab { padding: 12px 8px; }
  .movie__tab-num { font-size: 10px; }
  .movie__tab-label { font-size: 12px; }
}

/* ---------- Stage body ---------- */

.movie__body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(32px, 4vw, 56px);
  align-items: center;
  min-height: 520px;
}

@media (max-width: 960px) {
  .movie__body {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    min-height: auto;
    padding: var(--space-6);
  }
}

/* ---------- Copy column ---------- */

.movie__copy {
  position: relative;
  min-height: 360px;
}

@media (max-width: 960px) {
  .movie__copy { min-height: auto; order: 2; }
}

.movie__copy-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease-out),
              transform 500ms var(--ease-out);
  pointer-events: none;
}

.movie__copy-inner.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 100ms;
}

@media (max-width: 960px) {
  .movie__copy-inner { position: relative; inset: auto; }
  .movie__copy-inner:not(.is-active) { display: none; }
  .movie__copy-inner.is-active { display: flex; }
}

.movie__stage-num {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-label);
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.movie__stage-num::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(116, 219, 139, 0.6);
}

.movie__stage-title {
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-light);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin-bottom: var(--space-4);
  max-width: 32ch;
  text-wrap: balance;
}

.movie__stage-title .accent { color: var(--accent); font-weight: var(--fw-bold); }

.movie__stage-body {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--text-secondary);
  max-width: 46ch;
  margin-bottom: var(--space-5);
}

.movie__stage-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2) var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: var(--fs-caption);
  font-family: var(--font-mono);
  max-width: 380px;
}

.movie__stage-meta dt { color: var(--text-dim); letter-spacing: var(--ls-mono); }
.movie__stage-meta dd { color: var(--text-primary); }
.movie__stage-meta dd.accent { color: var(--accent); }

/* ---------- Controls row ---------- */

.movie__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: rgba(20, 28, 23, 0.4);
}

.movie__nav {
  display: flex;
  gap: var(--space-2);
}

.movie__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-mono);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.movie__nav-btn:hover:not([disabled]) {
  border-color: var(--border-accent);
  color: var(--accent);
}

.movie__nav-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.movie__nav-btn svg { transition: transform var(--dur-fast) var(--ease-out); }
.movie__nav-btn--next:hover:not([disabled]) svg { transform: translateX(2px); }
.movie__nav-btn--prev:hover:not([disabled]) svg { transform: translateX(-2px); }

.movie__play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-mono);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.movie__play:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.movie__play-icon {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
}

.movie__play-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
  transition: all var(--dur-fast) var(--ease-out);
}

.movie.is-playing .movie__play-icon::before {
  border-width: 0;
  width: 3px;
  height: 10px;
  background: currentColor;
  box-shadow: 5px 0 0 currentColor;
  left: 1px;
}

.movie.is-playing .movie__play-label::after { content: "Pause"; }
.movie:not(.is-playing) .movie__play-label::after { content: "Play"; }

.movie__counter {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--text-muted);
  letter-spacing: var(--ls-mono);
}

.movie__counter-current { color: var(--accent); }

@media (max-width: 560px) {
  .movie__controls { padding: 12px 16px; flex-wrap: wrap; gap: 8px; }
  .movie__nav-btn, .movie__play { padding: 6px 10px; }
}

/* ============================================================
   Right column, shared SVG stage
   ============================================================ */

.movie__visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 5 / 4;
  justify-self: center;
}

@media (max-width: 960px) {
  .movie__visual { order: 1; }
}

.mv-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mv-layer {
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}

.mv-layer.is-active { opacity: 1; }

/* Stage visibility controlled by stage class on .movie__visual */
.mv-stage1 .mv-enterprise      { opacity: 0.95; }
.mv-stage1 .mv-submit-pipe     { opacity: 1; }
.mv-stage1 .mv-gateway         { opacity: 0.8; }
.mv-stage1 .mv-submit-particle { opacity: 1; }

.mv-stage2 .mv-enterprise    { opacity: 0.5; }
.mv-stage2 .mv-submit-pipe   { opacity: 0.4; }
.mv-stage2 .mv-gateway       { opacity: 1; }
.mv-stage2 .mv-method-pkg    { opacity: 1; }
.mv-stage2 .mv-method-line   { opacity: 0.6; }

.mv-stage2 .mv-method-anchor { opacity: 1; }

.mv-stage3 .mv-gateway          { opacity: 0.5; }
.mv-stage3 .mv-method-pkg       { opacity: 0.8; }
.mv-stage3 .mv-method-line      { opacity: 0.6; }
.mv-stage3 .mv-method-anchor    { opacity: 0.6; }
.mv-stage3 .mv-compute-link     { opacity: 0.75; }
.mv-stage3 .mv-compute-anchor   { opacity: 1; }
.mv-stage3 .mv-operators        { opacity: 1; }
.mv-stage3 .mv-consensus-ring-m { opacity: 1; }
.mv-stage3 .mv-chain-link       { opacity: 0.75; }
.mv-stage3 .mv-chain-anchor     { opacity: 1; }
.mv-stage3 .mv-chain-chip       { opacity: 1; }

.mv-stage4 .mv-operators        { opacity: 0.7; }
.mv-stage4 .mv-consensus-ring-m { opacity: 0.5; }
.mv-stage4 .mv-gateway          { opacity: 0.45; }
.mv-stage4 .mv-enterprise       { opacity: 0.35; }
.mv-stage4 .mv-auditor          { opacity: 1; }
.mv-stage4 .mv-attest-link      { opacity: 0.85; }
.mv-stage4 .mv-attest-privateline { opacity: 0.85; }
.mv-stage4 .mv-attest-sealline  { opacity: 0.7; }
.mv-stage4 .mv-seal             { opacity: 1; }

.mv-stage5 .mv-operators        { opacity: 0.45; }
.mv-stage5 .mv-consensus-ring-m { opacity: 0.3; }
.mv-stage5 .mv-auditor          { opacity: 0.7; }
.mv-stage5 .mv-seal             { opacity: 0.85; }
.mv-stage5 .mv-explorer         { opacity: 1; }
.mv-stage5 .mv-verify-line      { opacity: 0.75; }
.mv-stage5 .mv-publish-line     { opacity: 0.85; }

/* Scene element styles */
.mv-enterprise rect.bg  { fill: var(--bg-elevated); stroke: var(--border); stroke-width: 1; }
.mv-enterprise text.hd  { fill: var(--text-dim); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.mv-enterprise text.nm  { fill: var(--text-primary); font-family: var(--font-brand); font-size: 14px; font-weight: 500; }
.mv-enterprise rect.r   { fill: rgba(229, 99, 118, 0.35); }
.mv-enterprise .lock    { fill: none; stroke: var(--unverified); stroke-width: 1.2; }

.mv-submit-pipe { fill: none; stroke: var(--border-strong); stroke-width: 1.2; stroke-dasharray: 4 4; }
/* Decorative alt pipes inherit the hidden-by-default .mv-layer opacity, only dimmed in stage 1 alongside the main pipe */
.mv-submit-pipe.mv-submit-alt { stroke-width: 1; }
.mv-stage1 .mv-submit-pipe.mv-submit-alt { opacity: 0.5; }
.mv-submit-particle { fill: var(--accent); filter: drop-shadow(0 0 6px rgba(116, 219, 139, 0.8)); opacity: 0; }
.mv-stage1 .mv-submit-particle { opacity: 1; }

/* Stage 2 methodology particle */
.mv-method-particle { fill: var(--accent); filter: drop-shadow(0 0 6px rgba(116, 219, 139, 0.8)); opacity: 0; }
.mv-stage2 .mv-method-particle { opacity: 1; }

/* Stage 2 methodology-to-gateway anchor dot (marks where L-line lands on Gateway top) */
.mv-method-anchor {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px rgba(116, 219, 139, 0.8));
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}

/* Stage 3 compute link (Gateway-to-Operators) */
.mv-compute-link {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
.mv-compute-anchor {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px rgba(116, 219, 139, 0.8));
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
.mv-compute-particle {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(116, 219, 139, 0.8));
  opacity: 0;
}
.mv-stage3 .mv-compute-particle { opacity: 1; }

/* Stage 3 on-chain commit chip + return path */
.mv-chain-chip rect.bg {
  fill: var(--bg-elevated);
  stroke: var(--border-accent);
  stroke-width: 1.2;
}
.mv-chain-chip text.hd {
  fill: var(--accent);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.mv-chain-chip text.nm {
  fill: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3px;
}
.mv-chain-chip-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(116, 219, 139, 0.9));
  animation: mv-chain-dot-pulse 2.2s ease-in-out infinite;
}
@keyframes mv-chain-dot-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}
.mv-chain-link {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
.mv-chain-anchor {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px rgba(116, 219, 139, 0.8));
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
.mv-chain-particle {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(116, 219, 139, 0.8));
  opacity: 0;
}
.mv-stage3 .mv-chain-particle { opacity: 1; }

/* Stage 4 attest particles (public proof + private data) */
.mv-attest-particle { fill: var(--ew-purple-100); filter: drop-shadow(0 0 6px rgba(203, 190, 203, 0.7)); opacity: 0; }
.mv-stage4 .mv-attest-particle { opacity: 1; }

.mv-attest-privateline {
  fill: none;
  stroke: var(--ew-purple-200);
  stroke-width: 1;
  stroke-dasharray: 2 3;
}
.mv-attest-private-particle {
  fill: var(--ew-purple-100);
  filter: drop-shadow(0 0 6px rgba(203, 190, 203, 0.7));
  opacity: 0;
}
.mv-stage4 .mv-attest-private-particle { opacity: 1; }

/* Stage 5 publish + verify particles (two streams land on Explorer) */
.mv-publish-particle { fill: var(--accent); filter: drop-shadow(0 0 6px rgba(116, 219, 139, 0.8)); opacity: 0; }
.mv-stage5 .mv-publish-particle { opacity: 1; }

.mv-verify-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  stroke-dasharray: 3 3;
}
.mv-verify-particle {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(116, 219, 139, 0.8));
  opacity: 0;
}
.mv-stage5 .mv-verify-particle { opacity: 1; }

/* Central EWX consensus hub */
.mv-ewx-hub circle { fill: rgba(116, 219, 139, 0.12); stroke: var(--accent); stroke-width: 1.5; }
.mv-ewx-hub text.ewx-label { fill: var(--accent); font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.5px; }
.mv-ewx-hub text.ewx-sub { fill: var(--text-dim); font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.8px; text-transform: uppercase; }

/* Vote submission lines, thin dashed from nodes to hub */
.mv-vote-lines line {
  stroke: var(--accent);
  stroke-width: 0.8;
  stroke-dasharray: 2 2;
  opacity: 0.4;
}
.mv-stage3 .mv-vote-lines line {
  animation: mv-vote-pulse 3s ease-in-out infinite;
}
@keyframes mv-vote-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* Operator node variants, most agree (green), one dissents (amber) */
.op-node text.nop {
  fill: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 7.5px;
  font-weight: 500;
  text-anchor: middle;
  letter-spacing: 0.3px;
}
.op-node text.nres {
  fill: var(--accent);
  font-family: var(--font-mono);
  font-size: 7.5px;
  text-anchor: middle;
  letter-spacing: 0.3px;
}
.op-node.op-ok circle.node {
  fill: rgba(116, 219, 139, 0.14);
  stroke: var(--accent);
  stroke-width: 1.5;
}
.op-node.op-dissent circle.node {
  fill: rgba(232, 168, 64, 0.14);
  stroke: #E8A840;
  stroke-width: 1.5;
}
.op-node.op-dissent text.nres {
  fill: #E8A840;
}

/* Consensus badge below ring */
.mv-consensus-badge rect {
  fill: rgba(116, 219, 139, 0.1);
  stroke: var(--accent);
  stroke-width: 1;
}
.mv-consensus-badge text.cbt {
  fill: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Per-stage centering removed, use SVG-internal positioning instead */
.mv-svg {
  transition: opacity 300ms var(--ease-out);
}

.mv-gateway rect.bg    { fill: var(--bg-elevated); stroke: var(--border-accent); stroke-width: 1.2; }
.mv-gateway text.hd    { fill: var(--accent); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.mv-gateway text.nm    { fill: var(--text-primary); font-family: var(--font-brand); font-size: 14px; font-weight: 500; }
.mv-gateway .hash      { fill: var(--text-muted); font-family: var(--font-mono); font-size: 10.5px; }

.mv-method-pkg rect.bg { fill: var(--bg-elevated); stroke: var(--border); stroke-width: 1; }
.mv-method-pkg text.hd { fill: var(--text-dim); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.mv-method-pkg text.nm { fill: var(--text-primary); font-family: var(--font-brand); font-size: 13px; font-weight: 500; }
.mv-method-pkg text.ver { fill: var(--accent); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.5px; }
.mv-method-pkg rect.code-bar-1 { fill: rgba(116, 219, 139, 0.3); }
.mv-method-pkg rect.code-bar-2 { fill: rgba(170, 193, 175, 0.25); }
.mv-method-pkg rect.code-bar-3 { fill: rgba(170, 193, 175, 0.18); }
.mv-method-line { fill: none; stroke: var(--accent); stroke-width: 1; stroke-dasharray: 3 3; }

/* Note: circle.node styling now per-variant via .op-node.op-ok and .op-node.op-dissent */
.mv-consensus-ring-m { fill: none; stroke: var(--accent); stroke-width: 1; stroke-dasharray: 4 4; transform-origin: center; }
.mv-stage3 .mv-consensus-ring-m { animation: mv-ring-pulse 2.6s ease-in-out infinite; }
@keyframes mv-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.05); opacity: 1; }
}

.mv-auditor rect.bg   { fill: var(--bg-elevated); stroke: var(--border); stroke-width: 1; }
.mv-auditor text.hd   { fill: var(--text-dim); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.mv-auditor text.nm   { fill: var(--text-primary); font-family: var(--font-brand); font-size: 13px; font-weight: 500; }
.mv-auditor .badge    { fill: rgba(170, 160, 169, 0.22); stroke: var(--ew-purple-200); stroke-width: 1; }
.mv-auditor text.lab  { fill: var(--ew-purple-100); font-family: var(--font-mono); font-size: 9.5px; }

.mv-attest-link { fill: none; stroke: var(--ew-purple-200); stroke-width: 1; stroke-dasharray: 3 3; }
.mv-attest-sealline { stroke-dasharray: 2 2; }
.mv-seal { fill: rgba(116, 219, 139, 0.1); stroke: var(--accent); stroke-width: 1.5; }
.mv-seal-check { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.mv-explorer rect.bg   { fill: var(--bg-elevated); stroke: var(--border-accent); stroke-width: 1.2; }
.mv-explorer text.hd   { fill: var(--accent); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.mv-explorer text.nm   { fill: var(--text-primary); font-family: var(--font-brand); font-size: 14px; font-weight: 500; }
.mv-explorer .row      { fill: var(--bg); stroke: var(--border); stroke-width: 0.75; }
.mv-explorer text.rlab { fill: var(--text-muted); font-family: var(--font-mono); font-size: 10px; }
.mv-explorer text.rval { fill: var(--accent); font-family: var(--font-mono); font-size: 10px; }
.mv-explorer circle.ok { fill: var(--accent); filter: drop-shadow(0 0 6px rgba(116, 219, 139, 0.6)); }
.mv-publish-line { fill: none; stroke: var(--accent); stroke-width: 1; stroke-dasharray: 3 3; }

/* Reduced motion, skip particle loop and ring pulse */
@media (prefers-reduced-motion: reduce) {
  .mv-submit-particle,
  .mv-method-particle,
  .mv-compute-particle,
  .mv-chain-particle,
  .mv-attest-particle,
  .mv-attest-private-particle,
  .mv-verify-particle,
  .mv-publish-particle { opacity: 0 !important; }
  .mv-stage3 .mv-consensus-ring-m { animation: none !important; }
  .mv-chain-chip-dot { animation: none !important; }
  .mv-layer { transition: opacity 0ms; }
  .movie__copy-inner { transition: opacity 0ms, transform 0ms; }
  .mv-svg { transition: opacity 0ms; }
}
