/* Retatrutide Dr — Zapier Warm Automation aesthetic
   Crisp near-white ground, single warm-orange accent (#FF4F00)
   Bricolage Grotesque headings + Figtree body + Space Mono identifiers */

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  --primary:        #FF4F00;
  --primary-50:     #FFF1EA;
  --primary-100:    #FFE0D1;
  --primary-700:    #C43A00;
  --primary-900:    #7A2400;
  --secondary:      #1F2430;
  --accent:         #FF7A38;
  --neutral-50:     #FCFCFD;
  --neutral-100:    #F4F5F7;
  --neutral-200:    #E6E8EC;
  --neutral-300:    #D4D7DE;
  --neutral-500:    #6B7280;
  --neutral-700:    #3A3F4B;
  --neutral-900:    #1A1D24;
  --bg:             #FCFCFD;
  --surface:        #FFFFFF;
  --surface-inset:  #F4F5F7;
  --border:         #E6E8EC;
  --border-strong:  #D4D7DE;
  --text:           #1A1D24;
  --text-muted:     #5A6072;
  --success:        #1F7A4D;
  --warning:        #9A5B12;
  --danger:         #B4321F;

  --max-width:      72rem;
  --container-px:   clamp(1.25rem, 4vw, 2.5rem);
  --reading-col:    52rem;

  --font-heading:   'Bricolage Grotesque', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-body:      'Figtree', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-mono:      'Space Mono', 'IBM Plex Mono', ui-monospace, 'Courier New', monospace;

  --radius-button:  9999px;
  --radius-card:    1rem;
  --radius-callout: 1rem;
  --radius-chip:    9999px;

  --transition-hover: 180ms ease-out;
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ================================================================
   TYPOGRAPHY SCALE
   ================================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.12;
  color: var(--text);
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
h3 {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1.0625rem;
  font-weight: 600;
}

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

/* Superscript citations */
sup a {
  font-family: var(--font-mono);
  font-size: 0.7em;
  font-weight: 700;
  color: var(--primary-700);
  text-decoration: none;
  vertical-align: super;
  line-height: 0;
}
sup a:hover { color: var(--primary); text-decoration: underline; }

code, .mono {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--surface-inset);
  border-radius: 0.375rem;
  padding: 0.0625rem 0.375rem;
}

/* ================================================================
   LAYOUT — CONTAINER
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.reading-col {
  max-width: var(--reading-col);
}

/* ================================================================
   SITE HEADER
   ================================================================ */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-brand::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 3px;
  flex-shrink: 0;
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.site-nav li a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  position: relative;
  transition: color var(--transition-hover);
}

.site-nav li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-hover);
}

.site-nav li a:hover::after,
.site-nav li a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-700);
  background: var(--primary-50);
  border: 1.5px solid var(--primary-100);
  border-radius: var(--radius-button);
  padding: 0.4rem 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-hover), border-color var(--transition-hover);
}
.nav-cta:hover {
  background: var(--primary-100);
  border-color: var(--primary-700);
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-hover), opacity var(--transition-hover);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open */
.site-nav.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.site-nav.open ul {
  flex-direction: column;
  align-items: stretch;
  padding: 0.75rem var(--container-px);
  gap: 0;
}
.site-nav.open li a {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
}
.site-nav.open li:last-child a { border-bottom: none; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-header { position: relative; }
  .site-nav {
    display: block !important;
  }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--surface);
  padding: 4rem 0 3rem;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-text {
  max-width: 46rem;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-700);
  background: var(--primary-50);
  border-radius: var(--radius-chip);
  padding: 0.3125rem 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero .subheadline {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* hero figure */
.hero-figure {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.hero-figure img {
  width: 100%;
  display: block;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-hover), border-color var(--transition-hover), color var(--transition-hover);
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid var(--primary-900);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  border: 2px solid transparent;
}
.btn-primary:hover { background: var(--primary-700); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-700);
}

/* ================================================================
   CONTENT AREA
   ================================================================ */
.content-area {
  padding: 3rem 0 4rem;
}

/* Section divider / H2 marker rule */
.section-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.section-block:last-child { border-bottom: none; }

.section-block h2 {
  position: relative;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.section-block h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--primary);
}

.intro-lede {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}

.card-inset {
  background: var(--surface-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}

.card-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-700);
  background: var(--primary-50);
  border-radius: var(--radius-chip);
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.card h3, .card-inset h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ================================================================
   CALLOUTS
   ================================================================ */
.callout {
  background: var(--primary-50);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-callout);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.callout-warning {
  background: var(--neutral-100);
  border-left-color: var(--warning);
}
.callout-warning .callout-label { color: var(--warning); }

/* ================================================================
   CHIP / STATUS TAG
   ================================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-chip);
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chip-orange { background: var(--primary-50); color: var(--primary-700); }
.chip-neutral { background: var(--neutral-100); color: var(--text-muted); }
.chip-status { background: var(--surface-inset); }
.chip-status.investigational { color: var(--warning); }
.chip-status.not-approved { color: var(--danger); }

/* ================================================================
   FIGURE
   ================================================================ */
figure.content-figure {
  margin: 2rem 0;
}
figure.content-figure img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}
figure.content-figure figcaption {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}
figure.content-figure figcaption strong {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ================================================================
   TABLES
   ================================================================ */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
thead tr {
  background: var(--surface-inset);
  border-bottom: 1.5px solid var(--primary);
}
thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: left;
  padding: 0.75rem 0.875rem;
  color: var(--text);
}
tbody td {
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
.num { font-family: var(--font-mono); text-align: right; }

/* ================================================================
   LISTS
   ================================================================ */
.prose-list {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
}
.prose-list li {
  padding-left: 1.375rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.prose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 2px;
}

ol.numbered-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1.25rem;
}
ol.numbered-list li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
ol.numbered-list li::marker {
  font-weight: 600;
  color: var(--text);
}

/* ================================================================
   REFERENCES LIST
   ================================================================ */
.references-list {
  list-style: none;
  counter-reset: ref-counter;
  margin: 0;
}
.references-list li {
  counter-increment: ref-counter;
  display: flex;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.references-list li:last-child { border-bottom: none; }

.references-list li::before {
  content: counter(ref-counter);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-700);
  background: var(--primary-50);
  border-radius: 0.375rem;
  padding: 0.125rem 0.5rem;
  min-width: 2rem;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.7;
  height: fit-content;
}

.ref-citation { font-size: 0.9375rem; }
.ref-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-family: var(--font-mono);
}
.ref-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--primary-700);
  text-decoration: underline;
  word-break: break-all;
  margin-top: 0.125rem;
}
.ref-link:hover { color: var(--primary); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  list-style: none;
  margin: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.faq-question:focus-visible {
  outline: 2px solid var(--primary-900);
  outline-offset: 2px;
  border-radius: 4px;
}
.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition-hover), opacity var(--transition-hover);
}
.faq-icon::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); top: 0; }
.faq-icon::after  { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); left: 0; }

.faq-item.open .faq-icon::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  line-height: 1.65;
  color: var(--text);
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer a { color: var(--primary-700); text-decoration: underline; }
.faq-answer a:hover { color: var(--primary); }

.faq-item.open .faq-answer { display: block; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: var(--primary-700);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border-strong); }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-form {
  max-width: 40rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--text);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color var(--transition-hover);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
}
.form-textarea {
  resize: vertical;
  min-height: 7rem;
}
.form-disclaimer {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ================================================================
   SITE FOOTER
   ================================================================ */
.site-footer {
  background: var(--surface-inset);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-hover);
}
.footer-col-links a:hover { color: var(--primary-700); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ================================================================
   PAGE-SPECIFIC — INDEX stats strip
   ================================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .stats-strip { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.375rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ================================================================
   CHART CONTAINERS
   ================================================================ */
.chart-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.chart-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}
.chart-caption {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ================================================================
   TIPPY TOOLTIP OVERRIDES
   ================================================================ */
.tippy-box[data-theme~='retatrutide'] {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(26,29,36,0.08);
}
.tippy-box[data-theme~='retatrutide'] .tippy-content {
  padding: 0.625rem 0.875rem;
}
.tippy-box[data-theme~='retatrutide'] .tippy-arrow { color: var(--border); }

/* ================================================================
   404 PAGE
   ================================================================ */
.error-page {
  padding: 6rem 0;
  text-align: center;
}
.error-code {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.error-page h1 { margin-bottom: 1rem; }
.error-page p { color: var(--text-muted); margin-bottom: 2rem; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro {
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-card);
  padding: 2rem;
  margin-bottom: 2.5rem;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 767px) {
  .hero { padding: 2.5rem 0 2rem; }
  .content-area { padding: 2rem 0 3rem; }
  .site-footer { padding: 2rem 0 1.5rem; margin-top: 2.5rem; }
  .section-block { padding: 2rem 0; }
}

@media (min-width: 1024px) {
  .content-area { padding: 4rem 0 5rem; }
}

/* Flush variant — removes top padding when hero sits above */
.content-area--flush { padding-top: 0; }

/* Stacked card — adds margin-top for sequential card groups */
.card-stacked { margin-top: 1rem; }

/* Section lede — small top margin for first paragraph after a chip */
.section-lede { margin-top: 1rem; }

/* Section note — paragraph with top spacing inside a section */
.section-note { margin-top: 1.5rem; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
