
/* ---- Brass Observatory tokens (DESIGN.md §Colors — OKLCH only) ---- */
:root {
  /* Ground and surfaces: warm lacquer, never pure black. */
  --lacquer: oklch(7% 0.006 95);
  --lacquer-deep: oklch(4.5% 0.005 95);
  --raised: oklch(11% 0.007 95);
  --graphite: oklch(15% 0.008 95);
  --graphite-2: oklch(19% 0.009 95);
  /* Kinpaku gold: the single primary accent. */
  --gold: oklch(84% 0.19 80.46);
  --gold-rich: oklch(77% 0.13 82);
  --gold-deep: oklch(68% 0.11 80);
  --gold-pale: oklch(86% 0.07 84);
  --ink-on-gold: oklch(14% 0.018 95);
  /* Verdigris patina: state and model identity, never decoration. */
  --patina: oklch(70% 0.12 188);
  --patina-text: oklch(76% 0.088 190);
  --patina-deep: oklch(56% 0.09 190);
  /* Neutral text ramp; warmth lives in surfaces, not copy. Meaningful text
     stops at --muted (AA on every surface); --faint is decorative only. */
  --champagne: oklch(91% 0 0);
  --text: oklch(88% 0 0);
  --muted: oklch(72% 0 0);
  --faint: oklch(62% 0 0);
  /* Rules */
  --hairline: oklch(78% 0 0 / 0.16);
  --hairline-gold: oklch(74% 0.09 82 / 0.6);
  /* Genuine warnings/errors only. */
  --vermilion: oklch(58% 0.15 35);
  /* Typography: system stacks only — no remote font requests. */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  /* Geometry: small radii, 1280px data canvas. */
  --canvas: 1280px;
  --pad-x: 20px;
  --header-h: 56px;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  /* Elevation, hairline-first: catch-light on raised surfaces; the deep
     setback is written once on the hero frame only. */
  --catch-light: inset 0 1px 0 oklch(100% 0 0 / 0.04);
  /* Alias: the spark curve stroke (pre-redesign markup) reads patina —
    data visualization stays off gold (QA round 1). */
  --accent: var(--patina);
}
@media (min-width: 721px) { :root { --pad-x: 28px; } }

/* ---- base ---- */
* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  background: var(--lacquer);
  color: var(--text);
  font: 0.9375rem/1.65 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--hairline-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--gold-pale); text-decoration-color: var(--gold-pale); }
/* Focus ring: 2px gold, shape+offset make it non-color-only (spec §8). */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
/* Data is measurement: every numeral ships as tabular mono. */
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }
.mono { font-family: var(--font-mono); }
.muted { color: var(--muted); }
.right { text-align: right; }

/* 1280px shared data canvas; Layout applies it to <main>. */
.wrap { max-width: var(--canvas); margin: 0 auto; padding: 0 var(--pad-x); }

/* ---- skip link ---- */
.skip-link {
  position: absolute; left: -100vw; top: 0; z-index: 100;
  background: var(--raised); color: var(--text);
  padding: 10px 16px;
  border: 1px solid var(--hairline-gold); border-radius: 0 0 var(--radius-lg) 0;
  font-weight: 550; text-decoration: none;
}
.skip-link:focus-visible { left: 0; color: var(--text); }

/* ---- sticky header: raised lacquer seam, hairline rule, no blur ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(11% 0.007 95 / 0.92);
  border-bottom: 1px solid var(--hairline);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px 16px;
  min-height: var(--header-h); padding-top: 6px; padding-bottom: 6px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.0625rem; font-weight: 550; letter-spacing: -0.01em;
  color: var(--champagne); text-decoration: none;
}
.brand:hover { color: var(--champagne); }
.brand-mark { color: var(--gold); flex: none; }
.nav { display: flex; gap: 2px; }
.nav a {
  display: inline-flex; align-items: center;
  min-height: calc(var(--header-h) - 12px); padding: 0 12px;
  color: var(--muted); text-decoration: none; font-size: 0.8125rem;
}
.nav a:hover { color: var(--text); }
/* Active tab: gold text over a hairline-gold seam, never a filled pill. */
.nav a.is-active { color: var(--gold); box-shadow: inset 0 -2px 0 var(--hairline-gold); }

/* ---- page intro ---- */
.page-intro { padding-top: 24px; }
/* The hero frame (homepage only): raised lacquer with a faint radial
   vignette as instrument texture and the system's one deep setback. */
.page-intro--hero {
  margin-top: 16px; padding: 24px;
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 50% -10%, oklch(15% 0.008 95 / 0.55), oklch(7% 0.006 95 / 0) 62%),
    var(--raised);
  box-shadow: 0 24px 70px oklch(2% 0.004 95 / 0.42), var(--catch-light);
}
.eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.page-title {
  margin: 0 0 8px;
  color: var(--champagne);
}
.page-lede { margin: 0 0 12px; max-width: 72ch; color: var(--muted); font-size: 0.9375rem; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 4px; font-size: 0.8125rem; }
.action-primary { color: var(--gold); font-weight: 550; }

/* ---- metric strip: hairline-separated cells on one raised surface — no
   card chrome inside the strip ---- */
.metric-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 16px 0 0; padding: 0;
  background: var(--raised);
  border: 1px solid var(--hairline); border-radius: var(--radius-md);
  box-shadow: var(--catch-light);
}
.metric {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0; padding: 12px 16px;
  border-right: 1px solid var(--hairline);
}
.metric:last-child { border-right: 0; }
/* Count-aware modifier: three-metric strips fill their grid exactly. */
.metric-strip--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.metric-value { margin: 0; font-size: 1.125rem; font-weight: 450; }
.metric-context { margin: 0; font-size: 0.6875rem; color: var(--muted); }

/* ---- entity identity: typographic + sourced lab marks ---- */
.entity-identity { display: flex; align-items: center; gap: 10px; min-width: 0; }
/* Monochrome inline provider mark (DESIGN.md §Lab marks): 20px gold-deep in
   rows, 28px champagne on detail identity headers. currentColor only. */
.lab-mark {
  display: block; width: 20px; height: 20px; flex: none;
  color: var(--gold-deep);
}
.lab-mark--detail { width: 28px; height: 28px; color: var(--champagne); }
.entity-text { display: flex; flex-direction: column; min-width: 0; }
.entity-name { font-weight: 550; }
/* Directory/feed identity names stay calm champagne; gold is the interactive
   state (QA round 1 gold discipline). Detail headers invert this below. */
.entity-name a { color: var(--champagne); }
.entity-name a:hover { color: var(--gold); }
.entity-meta { font-size: 0.75rem; color: var(--muted); }
.entity-id { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--muted); overflow-wrap: anywhere; }

/* ---- breadcrumbs ---- */
.breadcrumbs { margin: 18px 0 0; }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 0; padding: 0; list-style: none;
  font-size: 0.75rem; color: var(--muted);
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: "/"; color: var(--faint); }
.breadcrumb-current { color: var(--text); }

/* ---- freshness ---- */
.freshness {
  display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: 6px;
  margin: 0; font-size: 0.75rem; color: var(--muted);
}
.freshness time { color: var(--text); font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.freshness-note { color: var(--muted); }
.freshness--compact { font-size: 0.6875rem; }
.freshness-warning { color: var(--vermilion); font-weight: 600; }

/* ---- status badges: hairline-bordered, 2px radius, mono caps.
   Tone mapping (DESIGN.md): new sighting = gold, model identity = patina,
   established = patina-text, neutral evidence = muted, errors = vermilion. */
.badge {
  display: inline-block; padding: 1px 8px;
  border: 1px solid var(--hairline); border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.625rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); vertical-align: middle; white-space: nowrap;
}
.badge-gold { color: var(--gold); border-color: var(--hairline-gold); }
.badge-patina { color: var(--patina); border-color: var(--patina-deep); }
.badge-patina-text { color: var(--patina-text); border-color: var(--patina-deep); }
.badge-muted { color: var(--muted); border-color: var(--hairline); }
.badge-vermilion { color: var(--vermilion); border-color: color-mix(in oklab, var(--vermilion) 45%, transparent); }

/* ---- toolbar (search, result count, anchor link) ---- */
.toolbar { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 16px 0 12px; }
.toolbar-search {
  flex: 1 1 220px; max-width: 340px; padding: 7px 10px;
  background: var(--graphite); color: var(--text);
  border: 1px solid var(--hairline); border-radius: var(--radius-sm);
  font: inherit;
}
.toolbar-search::placeholder { color: var(--muted); }
/* Visually hidden but real label for contextual search fields (spec §8). */
.field-label {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.result-count { font-size: 0.75rem; color: var(--muted); }
.pagination { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px;
  margin: 12px 0 0; font-size: 0.75rem; color: var(--muted); }
.toolbar-link { margin-left: auto; font-size: 0.75rem; }

/* ---- sort toggle (homepage directory; Atlas polish). Quiet mono caps per
   DESIGN.md §Typography; the active sort is the interaction gold moment
   (nav-active convention), inactive links stay muted. ---- */
.sort-toggle { display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.sort-toggle a { color: var(--muted); }
.sort-toggle a[aria-current] { color: var(--gold); }
.sort-sep { color: var(--muted); }

/* ---- infinite scroll sentinel (/apps; DESIGN.md §Components — Infinite
   list): a quiet hairline strip below the directory table; the muted mono
   LOADING MORE label surfaces only while a page fetch is in flight. The
   global reduced-motion block already collapses the opacity transition. ---- */
#infinite-sentinel {
  margin: 12px 0 0; padding: 8px 0 0; border-top: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.16em;
  text-transform: uppercase; text-align: center; color: var(--muted);
  opacity: 0; transition: opacity 160ms ease;
}
#infinite-sentinel.is-loading { opacity: 1; }

/* ---- headings: display ramp (DESIGN.md §Typography). Weight inversion is
   deliberate — the display h1 is the lightest voice on the page. ---- */
h1 {
  margin: 24px 0 10px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 200;
  letter-spacing: -0.015em; line-height: 1.05;
  color: var(--champagne);
}
h1 a { color: inherit; text-decoration: none; }
h2 { margin: 32px 0 12px; font-size: 1.5rem; font-weight: 300; line-height: 1.15; color: var(--text); }
.section-note { margin: -6px 0 12px; font-size: 0.75rem; color: var(--muted); }

/* ---- surfaces: hairline-first elevation, catch-light on raised panels ---- */
.surface { background: var(--raised); border: 1px solid var(--hairline); border-radius: var(--radius-md); box-shadow: var(--catch-light); }
.panel { background: var(--raised); border: 1px solid var(--hairline); border-radius: var(--radius-sm); box-shadow: var(--catch-light); padding: 16px; }
.empty {
  margin-top: 8px; padding: 22px;
  background: var(--lacquer-deep);
  border: 1px dashed var(--hairline); border-radius: var(--radius-md);
  color: var(--muted);
}

/* ---- tables (spec §5.6) ---- */
table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
th {
  padding: 8px 10px; text-align: left;
  font-family: var(--font-mono);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline-gold);
}
td { padding: 10px; border-bottom: 1px solid var(--hairline); vertical-align: baseline; }
tbody tr:hover td { background: var(--graphite); }
/* Desktop directory tables: sticky column header under the page header,
   stronger first-column identity, right-aligned tabular metrics. */
.data-table {
  border-collapse: separate; border-spacing: 0;
  background: var(--raised);
  border: 1px solid var(--hairline); border-radius: var(--radius-md);
  box-shadow: var(--catch-light);
}
.data-table thead th {
  position: sticky; top: var(--header-h); z-index: 10;
  background: var(--raised);
}
.data-table td:first-child, .data-table th:first-child { padding-left: 16px; }
.data-table td:first-child { font-weight: 550; }
/* Client filtering toggles the hidden attribute (no runtime inline styles);
   explicit rule because the ≤720px grid display would otherwise beat the UA
   [hidden] default and keep filtered rows visible. */
.data-table tr[hidden] { display: none; }

/* Mobile ≤720px: each <tr> becomes a stacked semantic grid; data-label
   attributes supply metric labels; the identity cell spans the full row and
   metric cells stay visible in a two-column grid — nothing core is hidden. */
@media (max-width: 720px) {
  .data-table { background: transparent; border: 0; box-shadow: none; }
  .data-table thead {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
  }
  .data-table, .data-table tbody { display: block; }
  .data-table tr {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 16px;
    margin: 10px 0; padding: 10px 12px;
    background: var(--raised);
    border: 1px solid var(--hairline); border-radius: var(--radius-md);
  }
  .data-table td {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
    padding: 3px 0; border-bottom: 0;
  }
  .data-table td:first-child {
    grid-column: 1 / -1;
    padding: 0 0 6px;
    border-bottom: 1px solid var(--hairline);
  }
  .data-table td[data-label]::before {
    content: attr(data-label);
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted);
  }
  .metric-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric { border-bottom: 1px solid var(--hairline); }
  .metric:nth-child(even) { border-right: 0; }
  /* Drop the bottom border on the final grid row only (row-start cell is
     odd-numbered and second-to-last; its neighbor is the last cell). */
  .metric:last-child,
  .metric:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}

/* ---- activity timeline: one <section> date group per day, <ol> items.
   The group header band holds the single date heading plus the
   Historical import / New sighting classification badge. ---- */
.timeline {
  background: var(--raised);
  border: 1px solid var(--hairline); border-radius: var(--radius-md);
  box-shadow: var(--catch-light);
  overflow: hidden;
}
.timeline-day { border-bottom: 1px solid var(--hairline); }
.timeline-day:last-child { border-bottom: 0; }
.timeline-day-header {
  display: flex; align-items: baseline; gap: 8px;
  padding: 10px 16px; background: var(--graphite);
  border-bottom: 1px solid var(--hairline);
}
.timeline-day-header h2 {
  margin: 0; font-family: var(--font-mono);
  font-size: 0.8125rem; font-weight: 450; letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.timeline-day ol { margin: 0; padding: 0; list-style: none; }
.timeline-item {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px;
  padding: 10px 16px; font-size: 0.8125rem;
  border-bottom: 1px solid var(--hairline);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item a { color: var(--champagne); }
.timeline-item a:hover { color: var(--gold); }
.item-verb { color: var(--muted); }
.item-tokens { margin-left: auto; color: var(--muted); }

/* ---- detail identity header: h1 inherits the display ramp; the mark is
   sized by .lab-mark--detail ---- */
.detail-header {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px;
  margin: 8px 0 2px;
}
.detail-header .entity-name { margin: 0; color: var(--gold); }
.detail-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-link { margin: 6px 0 0; font-size: 0.75rem; color: var(--muted); }

/* ---- "What it is" write-up (app detail, spec 2026-08-28): hairline panel,
   calm typography, one quiet source link — never a date or label rider ---- */
.whatit {
  margin: 16px 0 24px;
  padding: 16px;
  background: var(--raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  box-shadow: var(--catch-light);
}
.whatit .eyebrow { margin: 0 0 8px; }
.whatit-text { margin: 0 0 8px; max-width: 72ch; line-height: 1.65; }
.whatit-source { font-size: 0.75rem; color: var(--muted); }
.whatit-source:hover { color: var(--gold); }

/* ---- chart surface ---- */
.chart-surface {
  margin-top: 8px; padding: 16px;
  background: var(--raised);
  border: 1px solid color-mix(in oklab, var(--patina) 30%, transparent);
  border-radius: var(--radius-md);
  box-shadow: var(--catch-light);
}
.chart-surface svg { display: block; width: 100%; height: auto; }
.chart-context {
  display: flex; flex-wrap: wrap; gap: 4px 16px;
  margin: 10px 0 0; padding: 0; list-style: none;
  font-size: 0.75rem; color: var(--muted);
}

/* ---- CSS share bars: width is a class step, never an inline style ---- */
.share-bar {
  /* Sized box: width/height do not apply to the default inline span. */
  position: relative; display: block; width: 100%; max-width: 220px; height: 8px;
  background: var(--lacquer-deep);
  border: 1px solid var(--hairline); border-radius: var(--radius-xs);
  overflow: hidden;
}
.share-bar > i { position: absolute; inset: 0 auto 0 0; background: var(--patina); border-radius: var(--radius-xs); }
.share-bar > i.w-05 { width: 5%; }
.share-bar > i.w-10 { width: 10%; }
.share-bar > i.w-15 { width: 15%; }
.share-bar > i.w-20 { width: 20%; }
.share-bar > i.w-25 { width: 25%; }
.share-bar > i.w-30 { width: 30%; }
.share-bar > i.w-35 { width: 35%; }
.share-bar > i.w-40 { width: 40%; }
.share-bar > i.w-45 { width: 45%; }
.share-bar > i.w-50 { width: 50%; }
.share-bar > i.w-55 { width: 55%; }
.share-bar > i.w-60 { width: 60%; }
.share-bar > i.w-65 { width: 65%; }
.share-bar > i.w-70 { width: 70%; }
.share-bar > i.w-75 { width: 75%; }
.share-bar > i.w-80 { width: 80%; }
.share-bar > i.w-85 { width: 85%; }
.share-bar > i.w-90 { width: 90%; }
.share-bar > i.w-95 { width: 95%; }
.share-bar > i.w-100 { width: 100%; }

/* Detail-page source honesty without the full provenance panel. */
.data-attribution {
  margin: 40px 0 24px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.6;
}
.data-attribution a { color: var(--muted); }
.data-attribution a:hover { color: var(--gold); }

/* ---- provenance panel: calm, hairline-framed, never below AA ---- */
.provenance {
  margin: 40px 0; padding: 16px 20px;
  background: var(--raised);
  border: 1px solid var(--hairline); border-radius: var(--radius-sm);
  box-shadow: var(--catch-light);
}
.provenance-heading {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.provenance dl { display: grid; grid-template-columns: max-content 1fr; gap: 4px 16px; margin: 0; }
.provenance dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem; font-weight: 550; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); align-self: baseline;
}
.provenance dd { margin: 0 0 10px; font-size: 0.8125rem; }
.provenance-note {
  margin: 12px 0 0; padding-top: 12px;
  border-top: 1px solid var(--hairline);
  font-size: 0.75rem; color: var(--muted);
}
@media (max-width: 720px) {
  .provenance dl { grid-template-columns: 1fr; gap: 0; }
  .provenance dt { margin-top: 8px; }
}

/* ---- legacy attribution line (pre-ProvenancePanel pages) ---- */
.attribution { margin: 24px 0 0; font-size: 0.8125rem; color: var(--muted); }

/* ---- spark curve (model pages) ---- */
.spark { width: 100%; height: auto; margin: 6px 0 2px; }

/* ---- Gauntlet QA 2026-08-28: touch-target floor (WCAG 2.5.8, >=24px) and
   scanability no-wrap rules. Inline links gain vertical padding so a tap
   lands on a real target; dense rows keep their rhythm (padding collapses
   into existing row height via negative margin compensation). ---- */
.data-table a,
.entity-name a,
.timeline-item a,
.pagination a,
.toolbar a,
.toolbar-link,
.provenance dd a,
.whatit-source,
.detail-link {
  display: inline-block;
  min-height: 24px;
  padding: 5px 2px;
  margin: -5px -2px; /* optical alignment unchanged; hit area grows */
}
.data-table td.num,
.data-table td[data-label]::before { white-space: nowrap; }
.apps-observed,
.nowrap { white-space: nowrap; }
/* Pricing may wrap as two non-breaking units at the middle dot only. */
.pricing-pair { white-space: normal; }
/* Grid blowout guards: long values break inside their cell, never bleed. */
.metric { min-width: 0; }
.metric-value { overflow-wrap: anywhere; }

/* ---- reduced motion (spec §8): no nonessential animation ships ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
