/*
  PII Gate — Editorial Ink (Wired production).

  Layer 1: tokens (design-mine references/tokens.css, reconciled 2026-08-19)
  Layer 2: portable base (design-mine references/wired-base.css)
  Layer 3: this app's chrome — menu, sheets, workspace, review rows.

  The rules that must not be negotiated away:
    warm paper ground; white only where you type or where the next action is
    square corners, hairline rules, softened ink
    EXACTLY ONE filled (--ink) element per screen
    one accent (--link), never two
    serif carries narrative, sans carries structure
    mobile-first, 44px minimum touch targets — a FINGER floor
    light only; no dark theme, no toggle
*/

/* ================================================================ tokens */
:root {
  --ink: #1c1a17;
  --ink-soft: #3f3a33;
  --body: #3f3a33;
  --muted: #6b6459;
  --hairline: #ddd7ca;
  --border: #cfcabf;
  --canvas: #f5f2ec;          /* warm paper — the page ground */
  --canvas-soft: #ede9e0;
  --surface: #ffffff;         /* inputs + the card holding the next action */
  --link: #057dbc;            /* the only accent — never two per screen */
  --on-ink: #ffffff;

  /* Kind swatches — classification pigments only, never accents. */
  --kind-person: #b5714f;     /* clay */
  --kind-number: #7d8c6f;     /* sage */
  --kind-place: #7b89a3;      /* dusty slate */

  --status-ok: #1f7a3d;
  --status-warn: #a8730a;
  --status-danger: #a3231f;

  --serif-display: "Lora", Georgia, "Times New Roman", serif;
  --serif-body: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  --touch-target: 44px;
  --input-min-font: 16px;
  --header-height: 3.75rem;
  --measure: 680px;
  --duration-fast: 100ms;
  --duration-normal: 150ms;
  --duration-modal: 300ms;
}

/* ========================================================= portable base */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/lora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/lora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

/* No scrollbar is ever drawn. Scrolling itself is untouched; the layout's
   counterpart rule is that no scroll region may end flush at its boundary. */
* { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { width: 0; height: 0; display: none; }

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
/* contain, never none: none kills pull-to-refresh on an installed PWA. */
html, body { overscroll-behavior-y: contain; }

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

/* ONE measure, every page. */
main {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 32px calc(24px + env(safe-area-inset-right, 0px)) 96px calc(24px + env(safe-area-inset-left, 0px));
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}
.site-header__inner.center { justify-content: center; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__name { font-family: var(--serif-display); font-size: 18px; font-weight: 500; color: var(--ink); }
.brand__suffix { color: var(--muted); }

/* ------------------------------------------------------------ typography */
h1 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 14px 0 0;
}
h2 { font-family: var(--serif-display); font-weight: 400; font-size: 26px; line-height: 1.15; margin: 12px 0 8px; }
h3 { font-family: var(--serif-body); font-weight: 400; font-size: 20px; line-height: 1.25; margin: 8px 0; }
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--muted);
}
.lead { font-family: var(--serif-body); font-size: 19px; line-height: 1.6; color: var(--ink-soft); margin: 16px 0 0; }
.muted { color: var(--muted); font-size: 15px; }
.small { font-size: 14px; }
a { color: var(--link); }
a:hover { color: var(--ink); }
code, .mono { font-family: var(--mono); font-size: 0.92em; }

@media (min-width: 768px) {
  h1 { font-size: 42px; }
}

/* -------------------------------------------------------------- buttons */
.btn, .btn-outline, .btn-quiet {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  margin: 0;
  padding: 12px 20px;
  border-radius: 0;               /* square corners are non-negotiable */
  border: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  background: var(--ink);
  color: var(--surface);
}
.btn-outline { background: var(--surface); color: var(--ink); }
.btn-quiet { background: transparent; color: var(--ink); border-color: var(--border); font-weight: 400; }
.btn:hover, .btn:focus-visible { color: var(--surface); }
.btn-outline:hover, .btn-outline:focus-visible { color: var(--ink); }
.btn-quiet:focus-visible { color: var(--ink); border-color: var(--ink); }
.btn:disabled, .btn-outline:disabled, .btn-quiet:disabled { opacity: 0.35; cursor: default; }
.btn-block { display: block; width: 100%; }
.btn-lg { font-size: 18px; padding: 18px 20px; min-height: 58px; }
.btn-sm { font-size: 14px; padding: 10px 14px; min-height: 44px; font-weight: 400; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.btn-text {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 12px 0;
  min-height: 44px;
  cursor: pointer;
}
.btn-text:hover, .btn-text:focus-visible { color: var(--ink); }
.btn-text.is-link { color: var(--link); }
.btn-text.is-link:hover, .btn-text.is-link:focus-visible { color: var(--ink); }

/* The dock — one of the kit's TWO sanctioned shadows. Sticky, not fixed. */
.action-bar {
  position: sticky;
  bottom: 0;
  background: var(--canvas);
  margin: 40px calc(-24px - env(safe-area-inset-right, 0px)) 0 calc(-24px - env(safe-area-inset-left, 0px));
  padding: 16px calc(24px + env(safe-area-inset-right, 0px)) calc(18px + env(safe-area-inset-bottom, 0px)) calc(24px + env(safe-area-inset-left, 0px));
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 20px -12px rgba(28, 26, 23, 0.18);
  z-index: 20;
}
/* Terminal docks: foot of the viewport on short pages, flush at full scroll
   on long ones (main's 96px bottom pad is given back). Scoped to the shapes
   this app actually has — never mid-form. */
main > .action-bar:last-child,
main > [data-login-step]:not([hidden]) > form > .action-bar:last-child,
main > [data-workspace] > section:not([hidden]) > .action-bar:last-child {
  margin-top: auto;
  margin-bottom: -96px;
  padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px));
}
/* The visible stage grows so its bar can sit at the foot. */
main > [data-login-step]:not([hidden]),
main > [data-login-step]:not([hidden]) > form,
main > [data-workspace],
main > [data-workspace] > section:not([hidden]) {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
main > [data-workspace] > section > *:not(.action-bar) { flex: none; }

.action-link { text-align: center; margin: 16px 0 0; font-size: 16px; }
.action-hint { text-align: center; margin: 12px 0 0; font-size: 15px; color: var(--muted); }

/* Indeterminate progress under the dock button while a run is out. */
.progress {
  height: 3px;
  margin-top: 12px;
  background: var(--canvas-soft);
  overflow: hidden;
}
.progress::before {
  content: "";
  display: block;
  height: 100%;
  width: 40%;
  background: var(--ink);
  animation: progress-slide 1.2s infinite ease-in-out;
}
@keyframes progress-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

/* ---------------------------------------------------------------- forms */
/* 16px is the iOS zoom floor for anything a finger can put a cursor in. */
input, textarea, select { font-size: max(16px, 1em); }
label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin: 28px 0 10px;
}
label.inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="number"], input[type="search"], textarea, select {
  width: 100%;
  font-family: var(--sans);
  font-size: 19px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  min-height: 56px;
}
/* Prose runs full height; the page or sheet scrolls. */
textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--ink); outline-offset: -1px; }
input[type="checkbox"] { width: 20px; height: 20px; min-height: 0; accent-color: var(--ink); }
.field-error {
  color: var(--ink);
  background: var(--canvas-soft);
  border-left: 3px solid var(--ink);
  padding: 8px 12px;
  font-size: 14px;
  margin-top: 6px;
}
.code-input { font-size: 28px; letter-spacing: 10px; text-align: center; min-height: 68px; }

/* The document editor: full height, never capped. */
textarea[data-doc-text] { min-height: 40vh; font-size: 17px; }

/* --------------------------------------------------------- the one card */
.next-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  margin-top: 24px;
}

/* ----------------------------------------------------------------- tabs */
.tabs {
  display: flex;
  gap: 4px;
  margin-top: 26px;
  border-bottom: 1px solid var(--hairline);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tabs a, .tabs button {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.tabs a:hover, .tabs button:hover { color: var(--ink); }
.tabs a.on, .tabs button.on { color: var(--ink); font-weight: 700; border-bottom-color: var(--ink); }

/* ------------------------------------------------------------ list rows */
.list-row { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--hairline); }
.list-row:last-child { border-bottom: 1px solid var(--hairline); }
.list-row-link { flex: 1; min-width: 0; display: block; padding: 16px 0; text-decoration: none; color: var(--ink); }
.list-row-link:hover .list-row-title { color: var(--link); }
.list-row-title { display: block; font-family: var(--serif-body); font-size: 19px; line-height: 1.3; }
.list-row-sub { display: block; font-size: 14px; color: var(--muted); margin-top: 4px; }
.list-row-body { flex: 1; min-width: 0; padding: 16px 0; }

/* ----------------------------------------------------------- disclosure */
.disclosure-toggle {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 12px 0;
  min-height: 44px;
  cursor: pointer;
}
.disclosure-toggle::before { content: "+ "; }
.disclosure-toggle[aria-expanded="true"]::before { content: "\2013  "; }
.disclosure-toggle:hover { color: var(--ink); }

.kind-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 0;
  background: var(--muted);
}

/* Status is never carried by color alone — pair the mark with a word. */
.status-ok { color: var(--status-ok); }
.status-warn { color: var(--status-warn); }
.status-danger { color: var(--status-danger); }

/* ============================================================ app chrome */

/* ---- hamburger + full-window menu */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
}
.menu-toggle__bar { width: 22px; height: 1px; background: var(--ink); }
.menu-toggle:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  flex: none;
  padding: 0 24px;
}
.menu-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-family: var(--sans);
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}
.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px;
}
.menu-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 16px;
  font-family: var(--serif-display);
  font-size: 30px;
  line-height: 1.2;
  color: var(--muted);
  text-decoration: none;
}
.menu-nav a:hover { color: var(--ink); }
/* Two changes, not one: colour AND weight. */
.menu-nav a.on { color: var(--ink); font-weight: 600; }
.menu-foot {
  flex: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 24px 24px calc(32px + env(safe-area-inset-bottom, 0px));
}
.menu-signout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
}
body.menu-open { overflow: hidden; }
@media (min-width: 900px) {
  .menu-panel__head { max-width: var(--measure); margin-inline: auto; width: 100%; }
}

/* ---- bottom sheet: a quick errand, not a change of place */
.bsheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(31, 27, 20, 0.35);
}
.bsheet-panel {
  width: 100%;
  max-width: 720px;
  max-height: 82dvh;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-bottom: 0;
  display: flex;
  flex-direction: column;
}
.bsheet-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 20px;
  border-bottom: 1px solid var(--hairline);
}
.bsheet-head strong { flex: 1; font-size: 16px; }
.bsheet-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 14px 20px 20px;
}
.bsheet-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--canvas);
}
.vsheet-x {
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  min-width: 44px;
  min-height: 44px;
}
.bsheet-add {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: transparent;
  border: 1px dashed var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  min-height: 44px;
  text-align: center;
}
.bsheet-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  margin: 0;
}
.bsheet-field { margin-top: 16px; }
.bsheet-field:first-child { margin-top: 0; }
.bsheet-field > label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin: 0 0 8px;
}

/* A layer that covers the window means the page underneath must stop being
   a second thing to scroll. Lands on <html>: body's overflow only propagates
   when html's is visible. */
html:has(.bsheet:not([hidden])),
html:has(.menu-panel:not([hidden])) { overflow-y: hidden; }

/* ---- toast */
.toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  background: var(--ink);
  color: var(--surface);
  font-size: 15px;
  padding: 10px 20px;
  z-index: 80;
  max-width: calc(100% - 32px);
}
.toast__action {
  flex: none;
  background: none;
  border: 0;
  padding: 0;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--surface);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ---- document output */
.doc-pre {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
  border-top: 1px solid var(--hairline);
  margin-top: 10px;
  padding: 14px 0 24px;
}
.doc-pre.mono { font-family: var(--mono); font-size: 13px; }

/* ---- review rows (Found / Stand-ins) */
.term-group { margin-top: 18px; }
.term-group > .eyebrow { display: flex; align-items: center; gap: 8px; }
.term-row {
  border-top: 1px solid var(--hairline);
  padding: 12px 0;
}
.term-row:last-child { border-bottom: 1px solid var(--hairline); }
.term-row-head { display: flex; align-items: center; gap: 10px; }
.term-row-title { flex: 1; min-width: 0; font-family: var(--serif-body); font-size: 18px; line-height: 1.3; overflow-wrap: anywhere; }
.term-row-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.term-row-kept .term-row-title { text-decoration: line-through; color: var(--muted); }
.term-row select { min-height: 44px; padding: 8px 10px; font-size: 16px; width: auto; max-width: 46%; }
.term-row-actions { display: flex; gap: 4px 14px; flex-wrap: wrap; margin-top: 4px; }
.term-row-actions .btn-text { font-size: 14px; padding: 8px 0; min-height: 36px; }
.term-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

.occ-list { margin-top: 8px; }
.occ-row { font-size: 14px; color: var(--muted); padding: 6px 0 6px 12px; border-left: 2px solid var(--hairline); margin-top: 6px; }
.occ-row b { color: var(--ink); font-weight: 700; }

.context-panel {
  margin-top: 14px;
  padding: 12px;
  background: var(--canvas-soft);
  font-size: 14px;
  line-height: 1.5;
}
.context-panel p { margin: 0 0 8px; }
.context-panel p:last-child { margin-bottom: 0; }
.context-panel b { color: var(--ink); }

/* definition rows for Case details / Check */
.def-row { border-top: 1px solid var(--hairline); padding: 10px 0; }
.def-row:last-child { border-bottom: 1px solid var(--hairline); }
.def-row .def-k { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }
.def-row .def-v { margin-top: 2px; overflow-wrap: anywhere; }

/* ---- install panel */
.install-steps { font-size: 15px; }

/* ====================================================== pointer handling */
html { -webkit-tap-highlight-color: transparent; }

/* Tap response — a tap must show it landed wherever a finger exists. */
@media (any-pointer: coarse) {
  .btn:active { background: var(--ink-soft); border-color: var(--ink-soft); transform: scale(0.985); transition: transform 0.05s ease-out; }
  .btn-outline:active, .btn-quiet:active { background: var(--canvas-soft); transform: scale(0.985); transition: transform 0.05s ease-out; }
  .list-row-link:active, .menu-nav a:active, .tabs button:active, .bsheet-row:active { background: var(--canvas-soft); }
}

/* Hover, quarantined behind a real pointer. Every background- or border-
   changing :hover lives HERE and nowhere else. */
@media (hover: hover) and (pointer: fine) {
  .btn:hover { background: var(--ink-soft); border-color: var(--ink-soft); }
  .btn-outline:hover { background: var(--canvas-soft); }
  .btn-quiet:hover { background: var(--canvas-soft); }
  .list-row-link:hover { background: var(--canvas-soft); }
  .bsheet-add:hover { background: var(--canvas-soft); }
  .menu-toggle:hover .menu-toggle__bar { background: var(--link); }
  .menu-signout:hover { color: var(--ink); border-color: var(--ink); }
}

/* Desktop density. 44px targets are right for a thumb and a third too big
   for a mouse. Failing toward 44px is the safe direction. The 16px field
   floor is never touched. */
@media (min-width: 900px) and (pointer: fine) and (not (any-pointer: coarse)) {
  body { font-size: 16px; }
  h1 { font-size: 36px; }
  main { padding-top: 40px; }
  .btn, .btn-outline, .btn-quiet { min-height: 36px; padding: 8px 16px; font-size: 15px; }
  .btn-lg { min-height: 44px; padding: 12px 20px; font-size: 16px; }
  .btn-sm { min-height: 32px; padding: 6px 12px; font-size: 13.5px; }
  .btn-text { min-height: 36px; padding: 8px 0; }
  .disclosure-toggle { min-height: 36px; padding: 8px 0; }
  input[type="text"], input[type="email"], input[type="url"], input[type="password"],
  input[type="number"], input[type="search"], textarea, select { min-height: 42px; padding: 10px 13px; font-size: 16px; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
