:root {
  --bg: #0b0a14;
  --panel: rgba(240, 236, 247, 0.03);
  --ink: #f0ecf7;
  --ink-dim: rgba(240, 236, 247, 0.58);
  --ink-faint: rgba(240, 236, 247, 0.3);
  --accent: #ffc94d;
  --line: rgba(240, 236, 247, 0.14);
  --serif: "Fraunces", Georgia, serif;
  --mono: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

::selection { background: rgba(255, 201, 77, 0.85); color: #0b0a14; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 201, 77, 0.35) #0b0a14;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0b0a14; }
::-webkit-scrollbar-thumb { background: rgba(240, 236, 247, 0.22); border-radius: 6px; border: 2px solid #0b0a14; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 201, 77, 0.5); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 300;
  transition: background 1.2s ease;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#view {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
  touch-action: pan-y;
  z-index: 1;
}

/* ---------- atmosphere overlays ---------- */
.veil {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 80;
  pointer-events: none;
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
body.ready .veil { opacity: 0; }

.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(120% 90% at 50% 42%, transparent 55%, rgba(0, 0, 0, 0.42) 100%);
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.4s steps(3) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1.4%); }
  66% { transform: translate(1.6%, -1.2%); }
  100% { transform: translate(0, 0); }
}

/* ---------- sticky nav (appears after the hero) ---------- */
.sitenav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px clamp(18px, 3.4vw, 42px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-102%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.sitenav.show { transform: translateY(0); }

.nav-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}
.mark-dot.sm { width: 8px; height: 8px; }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 30px); }
.nav-links a {
  position: relative;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1px;
  background: var(--accent);
  transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-links .nav-guide { color: var(--ink); }
.nav-links .arr { display: inline-block; transition: transform 0.3s ease; }
.nav-links .nav-guide:hover .arr { transform: translateX(3px); }

/* ---------- hero shell ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  z-index: 2;
  pointer-events: none; /* let taps/drags fall through to the fixed canvas */
}

.ui { position: absolute; z-index: 20; }

.top {
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 34px) clamp(18px, 3.4vw, 42px) 0;
  pointer-events: none;
}
.top > * { pointer-events: auto; }

.wordmark { display: flex; align-items: center; gap: 14px; }
.mark-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px 2px var(--accent);
  transition: background 0.8s ease, box-shadow 0.8s ease;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
.kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 3px;
  white-space: nowrap;
}
h1 {
  font-family: var(--serif);
  font-weight: 420;
  font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: 0.01em;
  line-height: 1;
}

.top-actions { display: flex; align-items: center; gap: 18px; }
.hud {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ---------- hint ---------- */
.hint {
  left: 50%;
  top: clamp(96px, 14vh, 150px);
  transform: translateX(-50%);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  text-align: center;
  white-space: nowrap;
  transition: opacity 1s ease, transform 1s ease;
  pointer-events: none;
  max-width: 92vw;
  background: rgba(8, 6, 16, 0.45);
  border: 1px solid rgba(240, 236, 247, 0.1);
  border-radius: 999px;
  padding: 11px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hint em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.hint.gone { opacity: 0 !important; transform: translateX(-50%) translateY(-10px); }

/* ---------- bottom dock ---------- */
.bottom {
  left: 0; right: 0; bottom: 0;
  padding: 0 clamp(18px, 3.4vw, 42px) clamp(14px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.bottom > * { pointer-events: auto; }

.palette-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  pointer-events: none;
}
.palette-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.palette-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.palette-name.swap { animation: nameIn 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes nameIn {
  from { opacity: 0; transform: translateY(12px) skewY(1.2deg); }
  to { opacity: 1; transform: none; }
}

.dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.chips { display: flex; gap: 9px; }
.chip {
  --c1: #fff; --c2: #888; --c3: #444;
  width: 34px; height: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(100deg, var(--c1) 0 33%, var(--c2) 33% 66%, var(--c3) 66% 100%);
  cursor: pointer;
  opacity: 0.5;
  transform-origin: center;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  padding: 0;
}
.chip:hover { opacity: 0.9; transform: translateY(-2px); }
.chip.active {
  opacity: 1;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 0 1.5px var(--bg), 0 0 0 3px var(--accent), 0 6px 18px rgba(0, 0, 0, 0.45);
}

.controls { display: flex; gap: 9px; flex-wrap: wrap; }

.btn {
  appearance: none;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(240, 236, 247, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.btn:hover {
  color: var(--ink);
  border-color: rgba(240, 236, 247, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.btn:active { transform: translateY(0) scale(0.97); }
.btn.primary {
  color: var(--bg);
  background: var(--ink);
  border-color: var(--ink);
}
.btn.primary:hover { background: var(--accent); border-color: var(--accent); color: #14100a; }
.btn.on { color: var(--accent); border-color: var(--accent); }
.btn .state { color: var(--ink-faint); letter-spacing: 0.1em; }
.btn.on .state { color: var(--accent); }
.btn.ghost { background: transparent; }
.btn .arr { transition: transform 0.3s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }
.btn.lg { padding: 14px 26px; font-size: 11.5px; }

.underdock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.keys {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  pointer-events: none;
}
.scrollcue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.scrollcue:hover { color: var(--ink); }
.scrollcue i {
  position: relative;
  width: 44px; height: 1px;
  background: rgba(240, 236, 247, 0.22);
  overflow: hidden;
  display: block;
}
.scrollcue i::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 100%;
  background: var(--accent);
  animation: cueSlide 2.2s cubic-bezier(0.6, 0, 0.3, 1) infinite;
}
@keyframes cueSlide {
  0% { transform: translateX(-18px); }
  60%, 100% { transform: translateX(46px); }
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  z-index: 75;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%) translateY(16px);
  background: rgba(10, 8, 18, 0.82);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ================================================================
   CONTENT SECTIONS
   ================================================================ */
main {
  position: relative;
  z-index: 10;
  background: var(--bg);
  transition: background 1.2s ease;
  border-top: 1px solid var(--line);
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.55);
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.sec {
  padding: clamp(84px, 11vw, 150px) 0;
  scroll-margin-top: 40px;
}
.sec + .sec { border-top: 1px solid var(--line); }

.num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.sec h2 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 22px;
}
.sec h2 em { font-style: italic; color: var(--ink); }
.sec .lede {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.75;
  color: var(--ink-dim);
  max-width: 62ch;
}
.sec .lede strong, .step p strong { color: var(--ink); font-weight: 500; }
.sec-head { margin-bottom: clamp(40px, 5vw, 64px); }

code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
  color: var(--accent);
  background: rgba(255, 201, 77, 0.08);
  border-radius: 5px;
  padding: 1px 6px;
}

.factline {
  margin-top: clamp(38px, 4vw, 54px);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}

/* ---------- 01 mechanism ---------- */
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.steps { list-style: none; display: grid; gap: 16px; }
.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 24px 26px 24px 78px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, background 0.4s ease;
}
.step:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 236, 247, 0.3);
  background: rgba(240, 236, 247, 0.05);
}
.step-num {
  position: absolute;
  left: 26px; top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}
.step h3 {
  font-family: var(--serif);
  font-weight: 420;
  font-size: 21px;
  margin-bottom: 8px;
}
.step p { font-size: 14px; line-height: 1.75; color: var(--ink-dim); }

.demo-panel {
  position: sticky;
  top: 84px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: 18px;
  text-align: center;
}
#physDemo {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border-radius: 12px;
  cursor: pointer;
}
.demo-panel figcaption {
  padding: 14px 8px 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  line-height: 1.8;
}
.demo-panel figcaption em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

/* ---------- 02 compositions ---------- */
.comps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}
.comp {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 20px;
  padding: 12px 12px 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--mono);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.45s ease;
}
.comp:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 236, 247, 0.34);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.7);
}
.comp:active { transform: translateY(-2px) scale(0.99); }
.comp-canvas {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  border-radius: 12px;
  background: #08070f;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.comp.rendered .comp-canvas { opacity: 1; transform: none; }
.comp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 8px 16px;
}
.comp-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.15;
}
.comp-tag {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.comp-play {
  flex: none;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.comp:hover .comp-play {
  color: #14100a;
  background: var(--accent);
  border-color: var(--accent);
}

/* ---------- 03 poster ---------- */
.export-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.poster-wrap { text-align: center; }
.poster-frame {
  display: inline-block;
  padding: clamp(12px, 1.6vw, 20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 34px 70px -24px rgba(0, 0, 0, 0.8);
  transform: rotate(-1.2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
}
.poster-wrap:hover .poster-frame {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 44px 90px -24px rgba(0, 0, 0, 0.85);
}
#posterPrev {
  display: block;
  width: min(100%, 380px);
  height: auto;
  border-radius: 4px;
}
.poster-wrap figcaption {
  margin-top: 18px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.export-copy .lede { margin-bottom: 26px; }
.spec {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}
.spec li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink-dim);
}
.spec li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- footer ---------- */
.site-foot {
  position: relative;
  z-index: 10;
  background: var(--bg);
  transition: background 1.2s ease;
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 110px) 0 56px;
  text-align: center;
}
.foot-big {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(30px, 5vw, 56px);
  color: var(--ink);
  text-decoration: none;
  transition: color 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.foot-big:hover { color: var(--accent); transform: translateY(-4px); }
.foot-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  flex-wrap: wrap;
}
.foot-links a {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.foot-links a:hover { color: var(--ink); }
.foot-note {
  margin-top: 34px;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.foot-keys {
  margin-top: 12px;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0.7;
}

/* ---------- entrance choreography ---------- */
.ui { opacity: 0; }
.top { transform: translateY(-14px); }
.bottom { transform: translateY(14px); }
.hint { opacity: 0; }
body.ready .ui {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
body.ready .top { transition-delay: 0.25s; }
body.ready .bottom { transition-delay: 0.45s; }
body.ready .hint { transition-delay: 1s; transform: translateX(-50%); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .how-grid { grid-template-columns: 1fr; }
  .demo-panel { position: static; max-width: 560px; margin: 0 auto; width: 100%; }
  .comps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .export-grid { grid-template-columns: 1fr; }
  .poster-wrap { order: 2; }
}
@media (max-width: 720px) {
  .kicker { letter-spacing: 0.22em; }
  .hud { display: none; }
  .keys { display: none; }
  .underdock { justify-content: center; }
  .hint { font-size: 11px; letter-spacing: 0.08em; white-space: normal; padding: 10px 18px; }
  .hint-more { display: none; }
  .palette-name { font-size: 34px; }
  .dock { gap: 12px; }
  .controls { gap: 7px; }
  .btn { padding: 8px 13px; font-size: 10px; }
  .btn.lg { padding: 12px 20px; font-size: 10.5px; }
  .toast { bottom: 190px; width: max-content; max-width: 88vw; text-align: center; }
  .nav-links a:not(.nav-guide) { display: none; }
  .comps { grid-template-columns: 1fr; }
  .comp { max-width: 420px; margin: 0 auto; width: 100%; }
  .step { padding: 20px 20px 20px 64px; }
  .step-num { left: 20px; top: 22px; font-size: 19px; }
  .cta-row { justify-content: center; }
  .export-copy { text-align: center; }
  .export-copy .spec { text-align: left; max-width: 340px; margin-left: auto; margin-right: auto; margin-bottom: 34px; }
  .factline { line-height: 2; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .mark-dot, .scrollcue i::after { animation: none; }
  .veil, .ui, .btn, .chip, .toast, .sitenav, .comp, .step, .poster-frame { transition-duration: 0.01s !important; transition-delay: 0s !important; }
  .palette-name.swap { animation: none; }
  .comp-canvas { transition: none; }
}
