:root {
  color-scheme: dark;
  --bg: #080a0f;
  --bg-soft: #0c1017;
  --surface: #111720;
  --surface-2: #161e2a;
  --surface-3: #1c2634;
  --text: #f4f6fa;
  --muted: #aeb8c8;
  --muted-strong: #d3d9e3;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ff9a57;
  --accent-bright: #ffbd88;
  --accent-dark: #d8661e;
  --teal: #6bd8d1;
  --violet: #afa4ff;
  --warning: #ffd47e;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --radius-small: 13px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 2%, rgba(255, 130, 60, 0.1), transparent 28rem),
    radial-gradient(circle at 82% 26%, rgba(92, 188, 202, 0.07), transparent 30rem),
    var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #19120c;
  background: var(--accent-bright);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: #111;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 4rem;
}

.hero::after {
  position: absolute;
  top: 8rem;
  left: 50%;
  z-index: -1;
  width: min(900px, 92vw);
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-glow {
  position: absolute;
  top: -260px;
  left: 50%;
  z-index: -1;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(238, 103, 30, 0.19), rgba(238, 103, 30, 0) 66%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 2.25rem;
}

.hero-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.section-kicker,
.resource-type,
.strip-label,
.abstract-label,
.note-title {
  color: var(--accent-bright);
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(255, 154, 87, 0.25);
  border-radius: 999px;
  background: rgba(255, 154, 87, 0.06);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 154, 87, 0.11);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.13;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(3rem, 7.4vw, 6rem);
  font-weight: 800;
}

h1 span {
  display: block;
  margin-top: 0.14em;
  padding-bottom: 0.1em;
  color: transparent;
  background: linear-gradient(100deg, #fff1e6, var(--accent-bright) 44%, #ef7d3b 92%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.52em;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-tagline {
  max-width: 830px;
  margin: 1.35rem auto 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.authors {
  margin: 1.45rem 0 0;
  color: var(--muted-strong);
  font-size: 1rem;
}

.authors a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 154, 87, 0.48);
  text-underline-offset: 4px;
}

.authors span {
  margin-inline: 0.4rem;
  color: var(--muted);
}

.affiliation {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--muted-strong);
  background: rgba(17, 23, 32, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

a.button:hover {
  border-color: rgba(255, 154, 87, 0.56);
  background: rgba(255, 154, 87, 0.08);
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--accent-dark);
  color: #1a110b;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
}

a.button-primary:hover {
  border-color: var(--accent-bright);
  background: linear-gradient(135deg, #ffd2ac, #ffa468);
}

.button-disabled {
  cursor: default;
  opacity: 0.54;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 42px;
  margin-top: 1.35rem;
}

.hero-logos a {
  display: inline-flex;
  opacity: 0.82;
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero-logos a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.hero-logos img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-card {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: center;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: linear-gradient(145deg, rgba(24, 32, 44, 0.9), rgba(14, 19, 27, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  text-align: center;
}

.stat-value {
  color: var(--accent-bright);
  font-family: "DM Mono", monospace;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.stat-label {
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.stat-note {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-figure {
  margin: 0;
  padding: 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(13, 18, 25, 0.9);
  box-shadow: var(--shadow);
}

.figure-button {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
  background: #080b11;
  cursor: zoom-in;
}

.figure-button img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) hue-rotate(180deg);
  transition: transform 260ms ease;
}

.figure-button:hover img {
  transform: scale(1.008);
}

.zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 10, 15, 0.78);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.figure-button:hover .zoom-hint,
.figure-button:focus-visible .zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

figcaption {
  margin-top: 0.65rem;
  padding-inline: 0.4rem;
  color: var(--muted);
  font-size: 0.79rem;
  text-align: center;
}

.section {
  padding-block: 6.2rem;
}

.section-tinted {
  border-block: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(180deg, rgba(16, 22, 31, 0.82), rgba(9, 12, 18, 0.78));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.4rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 0.8rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  font-weight: 800;
}

.section-lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
}

.abstract-panel {
  position: relative;
  max-width: 1030px;
  margin-inline: auto;
  padding: 2rem 2.2rem 2rem 2.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 154, 87, 0.035), transparent 35%),
    rgba(16, 22, 31, 0.84);
}

.abstract-panel::before {
  position: absolute;
  top: 1.9rem;
  bottom: 1.9rem;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(var(--accent), rgba(255, 154, 87, 0));
  border-radius: 99px;
}

.abstract-label {
  margin-bottom: 0.75rem;
}

.abstract-panel p {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1rem;
}

.abstract-panel strong {
  color: var(--text);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.method-card {
  position: relative;
  min-height: 280px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 154, 87, 0.08), transparent 15rem),
    var(--surface);
}

.method-card::after {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.card-index {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(255, 154, 87, 0.28);
  border-radius: 9px;
  color: var(--accent-bright);
  background: rgba(255, 154, 87, 0.06);
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
}

.method-card h3,
.insight-card h3,
.resource-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.18rem;
  font-weight: 750;
}

.method-card p,
.insight-card p,
.resource-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.formula {
  position: absolute;
  right: 1.55rem;
  bottom: 1.4rem;
  left: 1.55rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--accent-bright);
  font-family: "DM Mono", monospace;
  font-size: 0.77rem;
}

.transfer-strip {
  display: grid;
  grid-template-columns: 1fr auto 1.25fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.25rem 1.45rem;
  border: 1px solid rgba(175, 164, 255, 0.24);
  border-radius: var(--radius-small);
  background: rgba(79, 65, 139, 0.09);
}

.transfer-strip div {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.strip-label {
  color: #c8c0ff;
}

.transfer-strip strong {
  font-size: 0.84rem;
}

.strip-arrow {
  color: var(--violet);
}

.result-summary {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.result-copy,
.protocol-note {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.large-copy {
  max-width: 720px;
  margin-bottom: 1.25rem;
  color: var(--muted-strong);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.large-copy strong {
  color: var(--text);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.result-tags span {
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(107, 216, 209, 0.18);
  border-radius: 999px;
  color: #bce9e5;
  background: rgba(45, 139, 133, 0.07);
  font-family: "DM Mono", monospace;
  font-size: 0.69rem;
}

.protocol-note {
  background:
    linear-gradient(145deg, rgba(255, 154, 87, 0.06), transparent 75%),
    var(--surface);
}

.protocol-note .note-title {
  display: block;
  margin-bottom: 0.65rem;
}

.protocol-note p {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.protocol-note a,
.resource-link {
  color: var(--accent-bright);
  font-size: 0.79rem;
  font-weight: 700;
}

.interaction-hint {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  text-align: right;
}

.plot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.plot-card {
  margin: 0;
  padding: 0.65rem 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.plot-wide {
  grid-column: 1 / -1;
}

.interactive-plot {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius) - 9px);
  background: #080b11;
}

.interactive-plot-wide {
  min-height: 520px;
}

.plot-fallback {
  display: block;
  width: 100%;
  max-height: 510px;
  padding: 0.4rem;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg);
}

.interactive-plot-wide .plot-fallback {
  max-height: 600px;
}

.plot-loading {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(8, 11, 17, 0.84);
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  backdrop-filter: blur(8px);
}

.plot-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.interactive-plot.is-ready .plot-canvas {
  opacity: 1;
}

.interactive-plot.is-ready .plot-loading,
.interactive-plot.is-ready .plot-fallback {
  display: none;
}

.interactive-plot.is-error .plot-loading {
  display: none;
}

.interactive-plot .modebar {
  padding: 3px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(13, 18, 25, 0.88) !important;
}

.interactive-plot .modebar-btn path {
  fill: #cfd6e2 !important;
}

.interactive-plot .modebar-btn:hover path {
  fill: var(--accent-bright) !important;
}

.ablation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.insight-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.insight-number {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--accent-bright);
  font-family: "DM Mono", monospace;
  font-size: 1.55rem;
}

.insight-caution {
  border-color: rgba(255, 212, 126, 0.22);
  background: linear-gradient(145deg, rgba(255, 212, 126, 0.05), var(--surface));
}

.insight-caution .insight-number {
  color: var(--warning);
}

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

.resource-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.resource-card:hover {
  border-color: rgba(255, 154, 87, 0.42);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.resource-card .resource-type {
  margin-bottom: 1.3rem;
}

.resource-card .resource-link {
  margin-top: auto;
  padding-top: 1.2rem;
}

.clone-panel {
  display: flex;
  max-width: 760px;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto 0;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #07090d;
}

.clone-panel code {
  flex: 1;
  overflow-x: auto;
  color: #d7dce5;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  white-space: nowrap;
}

.clone-panel button {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--muted-strong);
  background: var(--surface-2);
  cursor: pointer;
}

.clone-panel button:hover {
  border-color: rgba(255, 154, 87, 0.5);
}

.citation-panel {
  display: flex;
  max-width: 760px;
  align-items: flex-start;
  gap: 1rem;
  margin: 0.75rem auto 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #07090d;
}

.citation-content {
  min-width: 0;
  flex: 1;
}

.citation-panel span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--accent-bright);
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.citation-panel pre {
  margin: 0;
  overflow-x: auto;
}

.citation-panel code {
  color: #d7dce5;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.65;
}

.citation-panel button {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--muted-strong);
  background: var(--surface-2);
  cursor: pointer;
}

.citation-panel button:hover {
  border-color: rgba(255, 154, 87, 0.5);
}

.footer {
  padding-block: 1.8rem;
  border-top: 1px solid var(--line);
  background: #06080c;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.figure-dialog {
  width: min(1400px, calc(100vw - 34px));
  max-height: calc(100vh - 34px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  background: #0b0e14;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}

.figure-dialog::backdrop {
  background: rgba(2, 3, 5, 0.84);
  backdrop-filter: blur(8px);
}

.dialog-media {
  display: grid;
  max-height: calc(100vh - 120px);
  place-items: center;
  overflow: auto;
  padding: 1rem;
  background: #080b11;
}

.dialog-media img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  filter: invert(1) hue-rotate(180deg);
}

.figure-dialog p {
  margin: 0;
  padding: 0.85rem 3.5rem 0.95rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.dialog-close {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--text);
  background: var(--surface-2);
  cursor: pointer;
  font-size: 1.25rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-stats,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-summary,
  .ablation-grid {
    grid-template-columns: 1fr;
  }

  .transfer-strip {
    grid-template-columns: 1fr;
  }

  .strip-arrow {
    transform: rotate(90deg);
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 24px, 1180px);
    --radius: 16px;
  }

  .hero {
    padding: 3.4rem 0 2.8rem;
  }

  .hero::after {
    display: none;
  }

  .hero-tagline {
    font-size: 0.96rem;
  }

  .hero-stats,
  .method-grid,
  .plot-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 118px;
  }

  .section {
    padding-block: 4.3rem;
  }

  .section-heading {
    margin-bottom: 1.7rem;
  }

  .abstract-panel {
    padding: 1.4rem 1.3rem 1.4rem 1.55rem;
  }

  .abstract-panel p {
    font-size: 0.91rem;
  }

  .method-card {
    min-height: 300px;
  }

  .plot-wide {
    grid-column: auto;
  }

  .interactive-plot,
  .interactive-plot-wide {
    min-height: 360px;
  }

  .interaction-hint {
    text-align: left;
  }

  .result-tags span {
    width: 100%;
    text-align: center;
  }

  .clone-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .clone-panel button {
    min-height: 42px;
  }

  .citation-panel,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .figure-dialog p {
    padding-right: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
