:root {
  --ivory: #faf6f0;
  --cream: #fff3e5;
  --paper: #fffdf9;
  --soot: #1a0e00;
  --bark: #3d3228;
  --muted: #5c534c;
  --line: #e8dfd4;
  --ember: #c43208;
  --ember-hot: #ff470d;
  --ember-soft: #ffebe5;
  --indigo: #3f38a0;
  --footer: #12100d;
  --focus: #3f38a0;
  --ok: #1f6b45;
  --fail: #9b1c1c;
  --radius: 12px;
  --radius-sm: 8px;
  --pill: 999px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 7rem;
  --wrap: min(1120px, calc(100% - 2rem));
  --wrap-wide: min(1280px, calc(100% - 2rem));
  --page-gutter: max(1rem, calc((100vw - 1280px) / 2));
  --type-display: "Urbanist", "Segoe UI", sans-serif;
  --type-body: "Manrope", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --z-skip: 80;
  --z-mast: 40;
  --z-drawer: 50;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--soot);
  font-family: var(--type-body);
  font-size: 1.05rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.drawer-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--ember); }
button, input, textarea, select { font: inherit; }
h1, h2, h3 {
  font-family: var(--type-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; color: var(--bark); text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
::selection { background: var(--ember-soft); color: var(--soot); }

.skip {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  z-index: var(--z-skip);
  padding: 0.7rem 1rem;
  background: var(--soot);
  color: var(--paper);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}
.skip:focus { transform: none; }

.wrap { width: var(--wrap); margin-inline: auto; }
.wrap-wide { width: var(--wrap-wide); margin-inline: auto; }
.cluster { margin-top: var(--space-4); }
.cluster-tight { margin-top: var(--space-3); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: var(--pill);
  background: var(--ember);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms var(--ease-out), transform 140ms var(--ease-out);
}
.act-ghost {
  background: transparent;
  color: var(--soot);
  border: 1.5px solid var(--soot);
}
.act-light { background: var(--paper); color: var(--soot); }
.act:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .act:hover { background: #a32906; }
  .act-ghost:hover { background: var(--soot); color: var(--paper); }
  .act-light:hover { background: var(--soot); color: var(--paper); }
}

/* Header: mark isolated left, grouped nav island, CTA separate */
.mast {
  position: absolute;
  inset: 0 0 auto;
  z-index: var(--z-mast);
  padding: var(--space-4) 0 0;
}
.mast-pill {
  width: var(--wrap-wide);
  margin-inline: auto;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0;
  border: 0;
  background: transparent;
}
.mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
}
.mark img { width: 28px; height: 28px; }
.lane {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-left: auto;
  flex: 0 1 auto;
  padding: 0.2rem;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--pill);
}
.lane a {
  color: var(--soot);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
  min-height: 44px;
  padding: 0 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: color 160ms var(--ease-out), background-color 160ms var(--ease-out);
}
.lane a + a { box-shadow: inset 1px 0 0 var(--line); }
.lane a[aria-current="page"] {
  color: var(--ember);
  background: color-mix(in srgb, var(--ember-soft) 70%, transparent);
  border-radius: var(--pill);
}
.lane .act { display: none; }
.mast-end { display: flex; align-items: center; gap: var(--space-2); }
.mast-end .act { min-height: 44px; padding-inline: 1.1rem; }
.drawer-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  place-content: center;
  gap: 5px;
}
.drawer-toggle span { width: 18px; height: 2px; background: var(--soot); border-radius: 2px; }
@media (hover: hover) and (pointer: fine) {
  .lane a:hover {
    color: var(--ember);
    background: color-mix(in srgb, var(--ember-soft) 55%, transparent);
    border-radius: var(--pill);
  }
  .mark:hover { border-color: var(--ember); }
  .ticket summary:hover { color: var(--ember); }
  .colophon nav a:hover { color: #fff; }
}

/* Hero: photo fills the right column at copy height — no empty well beside the tiles */
.stage {
  padding: clamp(5.75rem, 8vw, 7rem) 0 var(--space-6);
  background: var(--ivory);
}
.stage-grid {
  display: grid;
  grid-template-columns: minmax(22rem, 1.05fr) minmax(16rem, 0.95fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(1rem, 2.5vw, 1.75rem);
  row-gap: var(--space-4);
  align-items: stretch;
}
.stage-copy { grid-column: 1; grid-row: 1; max-width: none; padding-bottom: var(--space-2); align-self: start; }
.stage h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.35rem);
  max-width: 11ch;
  letter-spacing: -0.03em;
}
.stage .lede {
  margin-top: var(--space-5);
  font-size: 1.08rem;
  max-width: 38ch;
  color: var(--soot);
}
.stage-acts { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.float-row {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  max-width: 28rem;
}
.float-tile {
  padding: var(--space-3) 0;
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  box-shadow: none;
  min-width: 0;
  transform: none;
  border-radius: 0;
}
.float-tile strong { display: block; font-size: 0.95rem; }
.float-tile span { display: block; color: var(--muted); font-size: 0.84rem; }
.rails-strip {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
  max-width: 28rem;
}
.rails-strip li {
  list-style: none;
  padding: 0 var(--space-4) 0 0;
  border-radius: 0;
  background: none;
  color: var(--soot);
  font-size: 0.82rem;
  font-weight: 700;
}
.rails-strip li + li { padding-left: var(--space-3); box-shadow: inset 1px 0 0 var(--line); }
.press-frame {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: relative;
  align-self: stretch;
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #d4c8bb;
}
.press-frame picture {
  position: absolute;
  inset: 0;
  display: block;
  height: auto;
  min-height: 0;
}
.press-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 68% 46%;
  border-radius: 0;
  background: #d4c8bb;
}

.band { padding: var(--space-6) 0; }
.band-cream { background: var(--cream); }
.band-paper { background: var(--paper); }
.band-soot { background: var(--soot); color: var(--paper); }
.band-soot p, .band-soot h2 { color: var(--paper); }
.band-methods { padding: var(--space-6) 0 var(--space-7); }
.band-bench { padding: var(--space-6) 0 var(--space-7); }
.band-ops { padding: var(--space-6) 0 var(--space-7); }
.band-hook { padding: var(--space-6) 0 var(--space-7); }
.band-faq { padding: var(--space-7) 0; }
.band-ask { padding: 0; background: var(--ember); }

.caption {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ember);
  margin-bottom: var(--space-2);
}

/* Methods: medium crop paired with copy — no leftover empty column */
.rail-case {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(20rem, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}
.rail-case picture,
.rail-case img {
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 0;
}
.rail-case img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  object-position: 18% 50%;
}
.rail-case > picture {
  width: 100%;
  max-width: none;
  margin-left: 0;
  display: block;
}
.band-methods .rail-case > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-4);
  align-items: start;
}
.band-methods .caption {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
  align-self: stretch;
  padding-bottom: var(--space-2);
}
.rail-note { font-size: 1.2rem; color: var(--soot); max-width: 22ch; }
.rail-copy { max-width: 42ch; }
.band-methods .rail-note { grid-column: 2; max-width: none; }
.band-methods .cluster { grid-column: 2; }

/* Bench: medium pair that occupies the wrap, not two small islands */
.bench-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  grid-template-areas: "visual copy";
  gap: var(--space-5);
  align-items: center;
}
.bench-grid > div:first-child {
  grid-area: copy;
  position: relative;
  z-index: 2;
  margin-left: 0;
  padding: var(--space-5) var(--space-5);
  background: var(--paper);
  border: 1px solid var(--line);
  max-width: none;
}
.bench-visual {
  grid-area: visual;
  position: relative;
  margin-left: 0;
  max-width: none;
}
.bench-visual img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: 12% 48%;
  clip-path: none;
  border-radius: 0;
}
.slip {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--ivory);
  border: 1px dashed var(--bark);
  border-radius: 0;
  transform: none;
}
[data-bench][data-skin-active="ember"] .slip { box-shadow: inset 0 -3px 0 var(--ember); }
[data-bench][data-skin-active="soot"] .slip { box-shadow: inset 0 -3px 0 var(--soot); }
[data-bench][data-skin-active="indigo"] .slip { box-shadow: inset 0 -3px 0 var(--indigo); }
.slip-head { font-family: var(--type-display); font-size: 1.05rem; }
.slip-meta { color: var(--muted); font-size: 0.85rem; margin-top: var(--space-1); }
.skins { display: flex; gap: var(--space-2); margin-top: var(--space-4); }
.skins button {
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), border-color 160ms var(--ease-out);
}
.skins button:active { transform: scale(0.96); }
.skins button[aria-pressed="true"] { border-color: var(--soot); }
.skins button[data-skin="ember"] { background: var(--ember); }
.skins button[data-skin="soot"] { background: var(--soot); }
.skins button[data-skin="indigo"] { background: var(--indigo); }

/* Operators: numbered open list, no cards */
.ops {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
.ops-side h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.03em;
  max-width: 8ch;
}
.ops-stack {
  position: relative;
  min-height: 0;
  counter-reset: ops;
  border-top: 1px solid var(--line);
}
.ops-card {
  position: relative;
  counter-increment: ops;
  padding: var(--space-4) 0 var(--space-4) 4.25rem;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  max-width: none;
  margin: 0;
  border-radius: 0;
}
.ops-card::before {
  content: counter(ops, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--space-4);
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ember);
  letter-spacing: -0.02em;
}
.ops-card:nth-child(3) { background: none; }
.ops-card:nth-child(3) h3,
.ops-card:nth-child(3) p { color: inherit; }
.ops-card h3 { font-size: 1.25rem; margin-bottom: var(--space-2); }

/* Connect: code-led, heading offset small */
.hook {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(14rem, 0.55fr);
  grid-template-areas: "code copy";
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.hook > div:first-child { grid-area: copy; }
.hook .snippet { grid-area: code; }
.hook h2 { font-size: 1.35rem; max-width: 12ch; }
.snippet {
  margin: 0;
  padding: var(--space-6) var(--space-5);
  background: #161310;
  color: #f3e7d8;
  border-radius: 0;
  overflow-x: auto;
  font: 500 0.88rem/1.7 ui-monospace, Consolas, monospace;
}
.snippet small { display: block; color: #c9b8a4; margin-bottom: var(--space-3); }

/* FAQ: editorial numbered column, no ticket cards */
.ticket-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.6fr);
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-5);
}
.ticket-head h2 { max-width: 12ch; font-size: clamp(2rem, 5vw, 3.4rem); }
.ticket-finder {
  min-height: 48px;
  min-width: min(18rem, 100%);
  padding: 0.7rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--soot);
  border-radius: 0;
  background: transparent;
}
.tickets {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: faq;
  border-top: 1px solid var(--line);
}
.ticket {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  clip-path: none;
  position: relative;
  padding-left: 3.25rem;
}
.ticket::before {
  content: counter(faq, decimal-leading-zero);
  counter-increment: faq;
  position: absolute;
  left: 0;
  top: 1.15rem;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--ember);
}
.ticket summary {
  list-style: none;
  cursor: pointer;
  min-height: 56px;
  padding: 1.1rem 0;
  font-weight: 750;
  font-family: var(--type-display);
  transition: color 160ms var(--ease-out);
}
.ticket summary::marker,
.ticket summary::-webkit-details-marker { display: none; content: none; }
.ticket[open] summary { color: var(--ember); }
.ticket p { padding: 0 0 1.2rem; max-width: 62ch; }

/* Final CTA: full-bleed band, not a rounded card */
.ask {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  width: var(--wrap-wide);
  margin-inline: auto;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  background: transparent;
  color: #fff;
  border-radius: 0;
}
.ask h2, .ask p { color: #fff; }
.ask h2 { font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 12ch; letter-spacing: -0.03em; }
.ask p { margin-top: var(--space-4); max-width: 36ch; }
.ask .act-light { justify-self: end; align-self: end; }

/* Footer: oversized line + stacked links */
.colophon {
  background: var(--footer);
  color: #efe7dc;
  padding: var(--space-7) 0 var(--space-5);
}
.colophon .wrap-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(12rem, 0.7fr);
  gap: var(--space-6);
  align-items: end;
}
.colophon-line {
  font-family: var(--type-display);
  font-size: clamp(2.1rem, 6vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: 12ch;
  color: #fff;
  margin: 0;
  grid-column: 1;
}
.colophon nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  grid-column: 2;
}
.colophon nav a {
  color: #efe7dc;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}
.colophon a { color: #efe7dc; text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.colophon-meta {
  grid-column: 1 / -1;
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  color: #c9b8a4;
  font-size: 0.85rem;
}

.crumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: var(--muted); margin-bottom: var(--space-5); }
.crumbs a { color: var(--muted); text-decoration: none; }
.page-top { padding: 8rem 0 3rem; }
.page-top h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 16ch; }
.page-top p { margin-top: var(--space-4); max-width: 46ch; }
.prose { max-width: 46rem; }
.prose h2 { margin: 2.4rem 0 0.8rem; font-size: 1.7rem; }
.prose h3 { margin: 1.6rem 0 0.5rem; font-size: 1.2rem; }
.prose p + p { margin-top: var(--space-4); }
.prose ul, .prose ol { color: var(--bark); }
.stack { display: grid; gap: var(--space-4); }
.stack article {
  padding: var(--space-5) 0;
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}
.stack article:last-child { border-bottom: 1px solid var(--line); }
.stack h2, .stack h3 { font-size: 1.25rem; margin-bottom: var(--space-2); }

.desk-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: start;
}
.desk-form {
  display: grid;
  gap: var(--space-3);
  padding: 0;
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding-top: var(--space-5);
  position: relative;
}
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.desk-form label { display: grid; gap: 0.35rem; font-weight: 700; font-size: 0.88rem; }
.desk-form input, .desk-form textarea, .desk-form select {
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--soot);
}
.desk-form textarea { min-height: 8rem; resize: vertical; }
.desk-form small { color: var(--muted); font-weight: 500; }
.honeypot { position: absolute; left: -9999px; height: 1px; width: 1px; overflow: hidden; }
.desk-form[data-state="sent"] [data-desk-status] { color: var(--ok); }
.desk-form[data-state="fail"] [data-desk-status] { color: var(--fail); }
.desk-form[data-state="busy"] [data-desk-status] { color: var(--muted); }

.lost { min-height: 80svh; display: grid; place-items: center; text-align: center; padding: 8rem 1rem 3rem; }
.lost span { font-family: var(--type-display); font-size: clamp(4rem, 16vw, 9rem); color: var(--ember); }

@media (max-width: 68rem) {
  .rail-case,
  .bench-grid,
  .ops,
  .hook,
  .ask,
  .desk-grid,
  .ticket-head,
  .colophon .wrap-wide,
  .band-methods .rail-case > div { grid-template-columns: 1fr; }
  .rail-case > picture {
    width: min(100%, 22rem);
    max-width: none;
    margin-left: 0;
  }
  .bench-visual { margin-left: 0; margin-right: 0; max-width: none; }
  .bench-visual img { height: 16rem; max-height: none; }
  .bench-grid { grid-template-areas: "visual" "copy"; }
  .bench-grid > div:first-child { margin-left: 0; max-width: none; }
  .hook { grid-template-areas: "copy" "code"; }
  .ops-card:nth-child(n) { margin: 0; max-width: none; }
  .ops-stack { display: block; min-height: 0; }
  .band-methods .caption { writing-mode: horizontal-tb; transform: none; }
  .colophon-line,
  .colophon nav,
  .colophon-meta { grid-column: 1; }
  .ask .act-light { justify-self: start; }
}
@media (max-width: 52rem) {
  .lane, .mast-end .act { display: none; }
  .drawer-toggle { display: grid; }
  .lane {
    position: fixed;
    inset: 5.5rem 1rem auto;
    z-index: var(--z-drawer);
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: var(--space-4);
    background: var(--paper);
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
  .lane a + a { box-shadow: none; }
  .lane[data-open="true"] { display: flex; }
  .lane a { min-height: 44px; }
  .lane[data-open="true"] .act { display: inline-flex; }
  .stage { padding-top: 6.25rem; }
  .stage-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
    row-gap: var(--space-4);
  }
  .stage-copy,
  .float-row,
  .rails-strip,
  .press-frame { grid-column: auto; grid-row: auto; }
  .stage-copy { align-self: start; }
  .press-frame {
    width: min(100%, 22rem);
    margin-top: 0;
    min-height: 0;
    height: auto;
    max-height: 18rem;
    aspect-ratio: 5 / 4;
  }
  .press-frame picture {
    position: absolute;
    inset: 0;
  }
  .press-frame img {
    min-height: 0;
    height: 100%;
    object-position: 62% 48%;
  }
  .pair { grid-template-columns: 1fr; }
  .ticket-head { grid-template-columns: 1fr; }
}
@media (max-width: 36rem) {
  .wrap, .wrap-wide, .mast-pill { width: min(100% - 1.2rem, var(--wrap)); }
  .stage h1 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .ask { padding-block: var(--space-7); }
  .ops-card { padding-left: 2.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .act:active,
  .skins button:active { transform: none; }
}
