/* =========================================================
   PRINTOLOGIA — Hoja de prueba
   Sistema visual: pliego de prueba de imprenta sobre papel frío.
   Metodología: clases planas (BEM), especificidad de 1 clase.
   Nunca selectores de tipo para layout; cada bloque controla
   su propio padding/margin. Sin anidación de tipo.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --paper: #ECEDE8;        /* sustrato gris-papel frío */
  --surface: #FFFFFF;      /* tarjetas */
  --ink: #15171A;          /* tinta / texto */
  --muted: #5F635F;        /* texto tenue; AA ≥ 4.5:1 sobre papel (#ECEDE8) y blanco */
  --filete: rgba(21, 23, 26, .12);
  --filete-strong: rgba(21, 23, 26, .22);

  /* CMYK como tinta sólida, nunca degradado */
  --c: #0098D8;
  --m: #E5007E;
  --y: #FFD400;
  --k: #15171A;

  --sheet-max: 1200px;
  --pad-x: clamp(20px, 5vw, 56px);

  /* Ritmo vertical único para hero y secciones (ritmo de pliego) */
  --section-pad: clamp(56px, 8vw, 104px);

  /* Escala mono de 3 pasos (orden de trabajo) */
  --mono-xs: 10px;
  --mono-sm: 11px;
  --mono-md: 13px;

  /* Texto-puente (eyebrow → contenido): mismo rol en hero y secciones */
  --lead: clamp(16px, 1.3vw, 18px);

  /* Tinta cian SOLO para texto sobre fondo claro (AA ≥ 4.5:1 sobre blanco) */
  --c-ink: #0F6F9E;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --focus: var(--c);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }

/* ---------- Utilidades ---------- */
.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  font: 500 var(--mono-md)/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Foco visible global, color cian de la paleta */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 1px;
}
:focus:not(:focus-visible) { outline: none; }

/* ---------- El pliego ---------- */
.sheet {
  width: 100%;
  max-width: var(--sheet-max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Cada sección grande = un cuadro de prueba con filetes de corte */
.sheet-section {
  position: relative;
}
.sheet-section + .sheet-section,
.footer.sheet-section {
  border-top: 1px solid var(--filete);
}

/* ---------- Marcas de registro (cruces en las 4 esquinas) ---------- */
.reg {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 3;
  pointer-events: none;
  color: var(--ink);
  background:
    linear-gradient(currentColor, currentColor) center / 1px 100% no-repeat,
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat;
  opacity: .55;
  transition: color .18s var(--ease), opacity .18s var(--ease);
}
.reg--tl { top: 14px; left: 14px; }
.reg--tr { top: 14px; right: 14px; }
.reg--bl { bottom: 14px; left: 14px; }
.reg--br { bottom: 14px; right: 14px; }

/* ---------- Header sticky ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--filete);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__logo { width: 26px; height: 26px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .01em; /* wordmark all-caps: tracking neutro/positivo, no negativo */
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .18s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta {
  font: 500 var(--mono-md)/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 18px;
  border: 1px solid var(--ink);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__cta:hover { background: transparent; color: var(--ink); }

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--filete);
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav móvil */
.nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 8px var(--pad-x) 18px;
  border-top: 1px solid var(--filete);
  background: var(--paper);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile__link {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--filete);
}
.nav-mobile__cta {
  margin-top: 16px;
  text-align: center;
  font: 500 14px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 15px 18px;
}

/* =========================================================
   Botones (un solo bloque; variantes no se cancelan)
   ========================================================= */
.btn {
  --btn-pad-y: 14px;
  --btn-pad-x: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 500 14px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), transform .12s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: transparent; color: var(--ink); }

.btn--ink {
  background: transparent;
  color: var(--ink);
}
.btn--ink:hover { background: var(--ink); color: var(--paper); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-block: var(--section-pad);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  font-size: var(--mono-sm);
  color: var(--muted);
  margin: 0 0 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero__title-ink {
  /* Subrayado de tinta que rompe limpio por línea (a diferencia del box-shadow) */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
}

.hero__sub {
  font-size: var(--lead);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--filete);
}
.datum {
  padding: 18px 16px 4px 0;
}
.datum__label {
  font-size: var(--mono-xs);
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.datum__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ---------- FIRMA: barra de control de color ---------- */
.control-bar {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--filete);
  padding: 18px;
}
.control-bar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: var(--mono-xs);
  color: var(--muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.control-bar__status {
  color: var(--ink);
  transition: opacity .2s var(--ease);
}
/* Cian como tinta de texto sobre blanco: usar el tono oscuro (AA ≥ 4.5:1) */
.control-bar__status.is-approved { color: var(--c-ink); }

.control-bar__strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.patch {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7px 6px;
  background: var(--surface);
  border: 1px solid var(--filete);
}
/* La tinta vive en ::before y se revela con scaleX (entintado) */
.patch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transform: scaleX(1);
  transform-origin: left center;
  z-index: 0;
}
.patch__id, .patch__pct {
  position: relative;
  z-index: 1;
  font-size: var(--mono-xs);
  letter-spacing: .04em; /* mono más apretado en la firma para que quepa en columnas estrechas */
}
.patch__id { font-weight: 600; }
.patch__pct { font-variant-numeric: tabular-nums; }

/* Sólidos: tinta sobre todo el parche.
   El cian sobre blanco no da AA con texto blanco (3.24:1); su rótulo va en tinta. */
.patch--c { background: var(--c); color: var(--ink); }
.patch--m { background: var(--m); color: #fff; }
.patch--y { background: var(--y); color: var(--ink); }
.patch--k { background: var(--k); color: #fff; }

/* Sobreimpresiones: dos planchas de proceso, multiply = trapping honesto */
.patch--cm { background: var(--surface); color: #fff; }
.patch--my { background: var(--surface); color: var(--ink); }
.patch--cm::before { background: var(--c); }
.patch--my::before { background: var(--m); }
.patch--cm::after,
.patch--my::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  mix-blend-mode: multiply;
  transform: scaleX(1);
  transform-origin: left center;
}
.patch--cm::after { background: var(--m); }
.patch--my::after { background: var(--y); }

/* 7º parche: objetivo de registro (star target) */
.patch--reg {
  background: var(--surface);
  color: var(--ink);
}
.patch--reg::before { background: var(--surface); }
.patch__star {
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: auto;
  width: 58%;
  height: 58%;
  align-self: center;
  background:
    /* anillo */
    radial-gradient(circle, transparent 38%, var(--ink) 39%, var(--ink) 46%, transparent 47%) center / 100% 100% no-repeat,
    /* cruz vertical y horizontal */
    linear-gradient(var(--ink), var(--ink)) center / 1.5px 100% no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 100% 1.5px no-repeat;
}
.patch--reg .patch__id { align-self: flex-end; }

.control-bar__foot {
  font-size: var(--mono-xs);
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.4;
}

/* Entintado en secuencia cuando entra en viewport.
   NOTA: la duración (.42s = 420ms) y el paso por parche (85ms) están atados a
   FILL_DUR y PATCH_DELAY en js/main.js; si cambias uno, cambia el otro. */
.control-bar.is-inking .patch::before,
.control-bar.is-inking .patch--cm::after,
.control-bar.is-inking .patch--my::after {
  transform: scaleX(0);
  animation: ink .42s var(--ease) forwards;
  animation-delay: calc(var(--i) * 85ms);
}
@keyframes ink {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* =========================================================
   Secciones genéricas — cada una declara su propio padding
   ========================================================= */
.section {
  padding-block: var(--section-pad);
}

.section__head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-top: 12px;
  margin-bottom: 14px;
}
.section__lead {
  font-size: var(--lead);
  color: var(--muted);
  margin-bottom: 24px;
}

/* ---------- Qué hacemos ---------- */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cap {
  background: var(--surface);
  border: 1px solid var(--filete);
  padding: 26px 24px 30px;
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.cap:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 var(--filete), 0 10px 26px rgba(21, 23, 26, .06);
}
.cap__tag {
  font-size: var(--mono-xs);
  color: var(--muted);
  margin-bottom: 22px;
  /* micro-etiqueta de clasificación; acento cian no-textual a la izquierda */
  padding-left: 14px;
  position: relative;
}
.cap__tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--c);
}
.cap__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.cap__body {
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Muestras / especímenes ---------- */
.specimens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.specimen {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--filete);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.specimen .reg {
  width: 12px;
  height: 12px;
  opacity: .5;
}
.specimen .reg--tl { top: 8px; left: 8px; }
.specimen .reg--tr { top: 8px; right: 8px; }
.specimen .reg--bl { bottom: 8px; left: 8px; }
.specimen .reg--br { bottom: 8px; right: 8px; }

.specimen__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  padding: 16px;
  height: 100%;
}
.specimen__shot {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  margin-bottom: 16px;
  overflow: hidden;
}
.specimen__shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.specimen__ficha {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: var(--mono-xs);
  letter-spacing: .07em;
}
/* Nº de espécimen en tinta (AA) con un mini-parche cian como viñeta no-textual */
.specimen__no {
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.specimen__no::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c);
  flex: none;
}
.specimen__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  text-transform: none;
  margin: 2px 0 6px;
}
.specimen__method { color: var(--ink); font-weight: 600; }
.specimen__ink { color: var(--muted); }
.specimen__cta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--filete);
  font-size: var(--mono-xs);
  color: var(--muted);
  transition: color .18s var(--ease);
}

.specimen:hover,
.specimen:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 var(--filete), 0 10px 26px rgba(21, 23, 26, .06);
}
.specimen:hover .reg,
.specimen:focus-within .reg { color: var(--c); opacity: 1; }
.specimen:hover .specimen__cta,
.specimen:focus-within .specimen__cta { color: var(--ink); }

/* ---------- Catálogos ---------- */
.catalog__copy {
  font-size: var(--lead);
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--filete);
}
.catalog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.catalog__note {
  font-size: var(--mono-xs);
  color: var(--muted);
}

/* ---------- Contacto / orden de trabajo ---------- */
.order__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--filete);
  background: var(--surface);
}
.order__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--filete);
  border-right: 1px solid var(--filete);
}
.order__row:nth-child(2n) { border-right: 0; }
.order__row:nth-last-child(-n+2) { border-bottom: 0; }
.order__label {
  font-size: var(--mono-xs);
  color: var(--muted);
}
.order__value {
  font-size: 17px;
  color: var(--ink);
}
.order__value a {
  text-decoration: none;
  box-shadow: inset 0 -1px 0 var(--filete-strong);
  transition: box-shadow .18s var(--ease);
}
.order__value a:hover { box-shadow: inset 0 -1px 0 var(--ink); }

.order__instr {
  font-size: var(--mono-xs);
  color: var(--muted);
  margin: 22px 0 22px;
  line-height: 1.6;
}
.order__cta {
  align-self: flex-start;
  margin-top: 0;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  padding-block: clamp(36px, 5vw, 56px);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 32px;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer .brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .01em;
}
.footer__bar {
  display: inline-flex;
  gap: 3px;
}
.mini {
  width: 16px;
  height: 9px;
  display: block;
}
.mini.c { background: var(--c); }
.mini.m { background: var(--m); }
.mini.y { background: var(--y); }
.mini.k { background: var(--k); }

.footer__tag {
  grid-column: 1 / -1;
  font-size: var(--mono-xs);
  color: var(--muted);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
}
.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px; /* área táctil cómoda */
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s var(--ease);
}
.footer__nav a:hover { color: var(--ink); }
.footer__legal {
  grid-column: 1 / -1;
  font-size: var(--mono-xs);
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid var(--filete);
  line-height: 1.6;
}

/* =========================================================
   Reveal en scroll
   ========================================================= */
/* Visible por defecto: el estado oculto solo aplica cuando hay JS para revelarlo
   (la clase .js la añade main.js al cargar). Sin JS, el contenido nunca se oculta. */
.js .reveal {
  opacity: .001;
  transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Responsive
   ========================================================= */
/* La firma (barra de control) pide ancho: pasa a una sola columna antes,
   para que los parches y sus rótulos mono respiren en lugar de apretarse. */
@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .cards3 { grid-template-columns: 1fr; }
  .specimens { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .nav { display: none; }
  .burger { display: inline-flex; }

  .section__head { margin-bottom: 32px; }

  .order__grid { grid-template-columns: 1fr; }
  .order__row { border-right: 0; }
  .order__row:nth-last-child(-n+2) { border-bottom: 1px solid var(--filete); }
  .order__row:last-child { border-bottom: 0; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .specimens { grid-template-columns: 1fr; }

  .hero__actions .btn,
  .catalog__actions .btn { flex: 1 1 100%; }

  .hero__stats { grid-template-columns: 1fr; }
  .datum {
    padding: 14px 0;
    border-bottom: 1px solid var(--filete);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }
  .datum__label { margin-bottom: 0; }
}

@media (max-width: 390px) {
  :root { --pad-x: 18px; }

  /* La barra colapsa a 4 columnas; las sobreimpresiones y REG envuelven */
  .control-bar__strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .control-bar { padding: 14px; }
  /* Columnas estrechas: bajar el rótulo para que 'C+M'/'M+Y' no se recorten */
  .patch__id, .patch__pct { font-size: 9px; letter-spacing: .02em; }
  .order__cta { align-self: stretch; width: 100%; }
}

/* =========================================================
   Reduced motion: estado final estático, sin entintado/reveal
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
  }
  .reveal,
  .js .reveal { opacity: 1; transform: none; }
  .control-bar.is-inking .patch::before,
  .control-bar.is-inking .patch--cm::after,
  .control-bar.is-inking .patch--my::after { transform: scaleX(1); animation: none; }
}
