@font-face {
  font-family: "Inter Var";
  src: url("../fonts/inter-lat.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}

@font-face {
  font-family: "Inter Metric";
  src: local("Arial"), local("Helvetica Neue"), local("Liberation Sans");
  size-adjust: 106%;
  ascent-override: 91.2%;
  descent-override: 22.7%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Jost Med";
  src: url("../fonts/jost-med-lat.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}

@font-face {
  font-family: "Jost Metric";
  src: local("Arial"), local("Helvetica Neue"), local("Liberation Sans");
  size-adjust: 98%;
  ascent-override: 109.2%;
  descent-override: 38.3%;
  line-gap-override: 0%;
}

:root {
  --ink: #111111;
  --paper: #ffffff;
  --mist: #f5f5f5;
  --hair: #e5e5e5;
  --muted: #707072;
  --onink: rgba(255, 255, 255, 0.74);
  --sans: "Inter Var", "Inter Metric", Helvetica, Arial, sans-serif;
  --disp: "Jost Med", "Jost Metric", Helvetica, Arial, sans-serif;
  --hold: 1440px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --step: clamp(3.5rem, 7vw, 6.5rem);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 500; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
blockquote, figure { margin: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.cxm-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
}
.cxm-skip:focus { left: 1rem; top: 1rem; }

#contenuto:focus { outline: none; }

.cxm-hold {
  width: 100%;
  max-width: var(--hold);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.cxm-lede {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.cxm-eyebrow {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cxm-h2 {
  font-family: var(--sans);
  font-size: clamp(1.625rem, 3.4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 22em;
}

.cxm-h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* ---- controls ---- */

.cxm-act {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.625rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.cxm-act--fill { background: var(--ink); color: var(--paper); }
.cxm-act--fill:hover { transform: translateY(-2px); background: #2c2c2c; }

.cxm-act--light { background: var(--paper); color: var(--ink); }
.cxm-act--light:hover { transform: translateY(-2px); background: var(--mist); }

.cxm-act--line {
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.cxm-act--line:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 2px var(--paper);
}

.cxm-act--quiet {
  background: var(--mist);
  color: var(--ink);
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}
.cxm-act--quiet:hover { transform: translateY(-2px); background: var(--hair); }

.cxm-tag {
  display: inline-block;
  padding: 0.4375rem 1rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ---- base of the page ---- */

.cxm-base {
  background: var(--paper);
  padding-block: var(--step) 3rem;
}

.cxm-base__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 3rem 2.5rem;
}

.cxm-base__blurb {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 24rem;
  margin-top: 1rem;
}

.cxm-base__head {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cxm-base__list { display: grid; gap: 0.25rem; }

.cxm-base__list a {
  display: inline-block;
  padding-block: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
}
.cxm-base__list a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.cxm-base__note {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.cxm-base__note a { display: inline-block; padding-block: 0.375rem; }

.cxm-base__legal a { display: inline-block; padding-block: 0.5rem; }

.cxm-base__legal {
  margin-top: 3.5rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.875rem;
}

/* ---- top bar ---- */

.cxm-topbar {
  position: relative;
  z-index: 20;
  background: var(--paper);
}

.cxm-topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.cxm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  font-family: var(--disp);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.cxm-brand__mark { width: 26px; height: 26px; flex: none; }

.cxm-brand__tag {
  font-family: var(--sans);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.4375rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}

.cxm-menu { display: flex; align-items: center; gap: 1.75rem; }

.cxm-menu a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}
.cxm-menu a:hover { color: var(--muted); }

.cxm-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--mist);
  cursor: pointer;
}

.cxm-drawer {
  display: none;
  padding-block: 0.5rem 1.5rem;
}
.cxm-drawer[data-open="yes"] { display: block; }
.cxm-drawer ul { display: grid; gap: 0.25rem; }
.cxm-drawer a {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 500;
}

/* ---- stage ---- */

.cxm-stage { background: var(--ink); color: var(--paper); }

.cxm-stage__frame {
  position: relative;
  min-height: min(88vh, 44rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cxm-stage__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.cxm-stage__copy {
  position: relative;
  width: 100%;
  padding-block: 5rem 3.5rem;
}

.cxm-stage__copy .cxm-eyebrow { color: var(--onink); }

.cxm-stage__title {
  font-family: var(--disp);
  font-weight: 500;
  font-size: clamp(2.5rem, 7.4vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-block: 1.25rem 1.5rem;
  max-width: 14em;
}
.cxm-stage__title span { display: block; }

.cxm-stage__lede {
  max-width: 34rem;
  color: var(--onink);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.cxm-stage__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

.cxm-figures {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-block: 2.75rem 3.25rem;
}

.cxm-figures__num {
  font-family: var(--disp);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cxm-figures__cap {
  margin-top: 0.5rem;
  color: var(--onink);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ---- roster ---- */

.cxm-roster { padding-block: var(--step); }

.cxm-roster__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem 4rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.cxm-tagrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block: 1.5rem 3rem;
}

.cxm-roster__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem 1.5rem;
}

.cxm-person--lead { grid-column: span 2; grid-row: span 2; }

.cxm-person__shot {
  position: relative;
  margin-bottom: 1rem;
  background: var(--mist);
}

.cxm-person__shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cxm-person__mark {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.cxm-person__name { margin-bottom: 0.375rem; }
.cxm-person--lead .cxm-person__name { font-size: 1.625rem; }

.cxm-person__what {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cxm-person__meta {
  margin-top: 0.875rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
}

.cxm-person__meta b { font-weight: 500; color: var(--ink); }

/* ---- slate ---- */

.cxm-slate {
  background: var(--mist);
  padding-block: var(--step);
}

.cxm-slate__head { margin-bottom: 2.5rem; }

.cxm-slate__wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cxm-slate__table {
  width: 100%;
  min-width: 56rem;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
}

.cxm-slate__table caption {
  text-align: left;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  padding-bottom: 1.25rem;
  max-width: 52rem;
}

.cxm-slate__table thead th {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 1rem 0.875rem;
  border-bottom: 1px solid var(--hair);
}

.cxm-slate__table tbody th,
.cxm-slate__table tbody td {
  padding: 1.125rem 1rem;
  vertical-align: top;
}

.cxm-slate__table tbody th {
  font-weight: 500;
  white-space: nowrap;
}

.cxm-slate__table tbody td { color: var(--muted); }

.cxm-slate__table tbody tr:nth-child(odd) { background: var(--paper); }

.cxm-slate__table thead th:first-child,
.cxm-slate__table tbody th { padding-left: 1.25rem; }

.cxm-slate__note {
  margin-top: 1.75rem;
  max-width: 52rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---- proof ---- */

.cxm-proof { padding-block: var(--step); }

.cxm-reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 1.5rem;
  margin-block: 2.5rem 0;
}

.cxm-reason--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 1.5rem 3rem;
  align-items: start;
  background: var(--mist);
  padding: 2.5rem;
}

.cxm-reason__no {
  font-family: var(--disp);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.cxm-reason p {
  margin-top: 0.625rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.cxm-reason--wide h3 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); line-height: 1.25; }
.cxm-reason--wide .cxm-reason__no { font-size: 1.75rem; }
.cxm-reason--wide p { margin-top: 0; font-size: 1rem; }

.cxm-voices__head {
  margin-top: var(--step);
  margin-bottom: 2.25rem;
}

.cxm-voices {
  columns: 3;
  column-gap: 1.5rem;
}

.cxm-voice {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  padding: 1.75rem;
  background: var(--mist);
}

.cxm-voice:nth-child(3n + 2) { background: var(--ink); color: var(--paper); }
.cxm-voice:nth-child(3n + 2) .cxm-voice__who { color: var(--onink); }
.cxm-voice:nth-child(3n + 2) .cxm-stars { color: var(--paper); }

.cxm-stars {
  display: flex;
  gap: 0.1875rem;
  color: var(--ink);
  margin-bottom: 0.875rem;
}
.cxm-stars svg { width: 14px; height: 14px; }
.cxm-stars svg:last-child { opacity: 0.28; }
.cxm-stars[data-full="5"] svg:last-child { opacity: 1; }

.cxm-voice__text {
  font-size: 1rem;
  line-height: 1.65;
}

.cxm-voice__who {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- reel + desk ---- */

.cxm-reel { padding-block: var(--step) 0; }

.cxm-reel__head { margin-bottom: 2.5rem; }

.cxm-reel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 13rem;
  gap: 1rem;
}

.cxm-shot { position: relative; overflow: hidden; background: var(--mist); }

.cxm-shot img { width: 100%; height: 100%; object-fit: cover; }

.cxm-shot--tall { grid-row: span 2; }
.cxm-shot--wide { grid-column: span 2; }
.cxm-shot--big { grid-column: span 3; grid-row: span 2; }

.cxm-shot__cap {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.3125rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.88);
  color: var(--paper);
  font-size: 0.75rem;
  line-height: 1.4;
}

.cxm-reel__aside {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 46rem;
}

.cxm-desk {
  margin-top: var(--step);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 4rem;
  align-items: start;
}

.cxm-desk .cxm-eyebrow { color: var(--onink); }

.cxm-desk h2 {
  font-family: var(--disp);
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cxm-desk p {
  color: var(--onink);
  font-size: 1rem;
  line-height: 1.75;
}
.cxm-desk p + p { margin-top: 1rem; }

.cxm-desk__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.75rem;
  padding: 0.9375rem 1.75rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.cxm-desk__mail:hover { transform: translateY(-2px); background: var(--mist); }

.cxm-desk__who {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--onink);
}

/* ---- notice ---- */

.cxm-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  max-width: 34rem;
  background: var(--ink);
  color: var(--paper);
  padding: 1.5rem;
  display: none;
}
.cxm-notice[data-show="yes"] { display: block; }

.cxm-notice h2 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.cxm-notice p {
  color: var(--onink);
  font-size: 0.875rem;
  line-height: 1.65;
}

.cxm-notice__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.cxm-notice .cxm-act { padding: 0.625rem 1.375rem; font-size: 0.875rem; }

.cxm-up {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: transform 0.18s ease;
}
.cxm-up[data-show="yes"] { display: flex; }
.cxm-up:hover { transform: translateY(-3px); }

/* ---- long-form pages ---- */

.cxm-paper { padding-block: 3.5rem var(--step); }

.cxm-paper__head {
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.cxm-paper__title {
  font-family: var(--disp);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-block: 1rem 1.25rem;
}

.cxm-doc {
  max-width: 52rem;
  margin-inline: auto;
}

.cxm-doc h2 {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-top: 2.75rem;
  margin-bottom: 0.875rem;
}

.cxm-doc h3 {
  font-size: 1rem;
  line-height: 1.45;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.cxm-doc p,
.cxm-doc li {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.cxm-doc p + p { margin-top: 0.875rem; }
.cxm-doc ul + p,
.cxm-doc .cxm-doc__wrap + p { margin-top: 1.25rem; }

.cxm-doc ul {
  margin-top: 0.875rem;
  display: grid;
  gap: 0.5rem;
}

.cxm-doc li { padding-left: 1.25rem; position: relative; }
.cxm-doc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.5rem;
  height: 1px;
  background: var(--muted);
}

.cxm-doc a { color: var(--ink); text-underline-offset: 3px; }

.cxm-doc table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  text-align: left;
}

.cxm-doc caption {
  text-align: left;
  color: var(--muted);
  font-size: 0.875rem;
  padding-bottom: 0.875rem;
}

.cxm-doc thead th {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0.875rem 0.75rem 0;
  border-bottom: 1px solid var(--hair);
}

.cxm-doc tbody th,
.cxm-doc tbody td {
  padding: 0.875rem 0.875rem 0.875rem 0;
  vertical-align: top;
  color: var(--muted);
  font-weight: 400;
}

.cxm-doc tbody th { color: var(--ink); font-weight: 500; }

.cxm-doc__wrap { width: 100%; overflow-x: auto; }
.cxm-doc__wrap table { min-width: 34rem; }

.cxm-lost {
  min-height: 60vh;
  display: grid;
  align-content: center;
  gap: 1.5rem;
  padding-block: var(--step);
}

.cxm-lost__code {
  font-family: var(--disp);
  font-size: clamp(4rem, 16vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

/* ---- narrower ---- */

@media (max-width: 1080px) {
  .cxm-roster__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cxm-person--lead { grid-column: span 2; grid-row: auto; }
  .cxm-person--lead .cxm-person__shot img { aspect-ratio: 16 / 10; }
  .cxm-voices { columns: 2; }
  .cxm-base__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cxm-reel__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cxm-shot--big { grid-column: span 2; }
}

@media (max-width: 860px) {
  .cxm-menu { display: none; }
  .cxm-burger { display: inline-flex; }
  .cxm-roster__head { grid-template-columns: minmax(0, 1fr); }
  .cxm-figures { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; }
  .cxm-reasons { grid-template-columns: minmax(0, 1fr); }
  .cxm-reason--wide { grid-column: auto; grid-template-columns: minmax(0, 1fr); padding: 1.75rem; }
  .cxm-desk { grid-template-columns: minmax(0, 1fr); }
}

/* Breakpoint sits at 620px, not 640: the two-up gallery keeps its 11rem rows
   readable down to 620 and only then is worth collapsing to one column. */
@media (max-width: 620px) {
  .cxm-voices { columns: 1; }
  .cxm-roster__grid { grid-template-columns: minmax(0, 1fr); }
  .cxm-person--lead { grid-column: auto; }
  .cxm-reel__grid { grid-template-columns: minmax(0, 1fr); grid-auto-rows: 13rem; }
  .cxm-shot--wide, .cxm-shot--big { grid-column: auto; }
  .cxm-shot--tall, .cxm-shot--big { grid-row: span 2; }
  .cxm-base__top { grid-template-columns: minmax(0, 1fr); gap: 2.25rem; }
  .cxm-stage__frame { min-height: 34rem; }
  .cxm-notice { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
