/* Walzwerk — Designsystem nach CLAUDE.md §4.
   Nur Dark Mode. Kein Umschalter. */

@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/inter-tight.woff2") format("woff2-variations");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:        #101215;
  --surface:   #191C21;
  --surface-2: #22262C;
  --line:      #2E333A;
  --text:      #ECEFF2;
  --muted:     #8B939C;

  /* Glühender Stahl statt Amazon-Orange. Grauschema bleibt. */
  --signal:    #FF3D1F;
  --signal-2:  #D92E12;   /* gedrückt */
  --steel:     #6E829B;
  --hot:       #E24B4A;
  --hot-soft:  #A33736;
  --good:      #4FA86F;

  --radius: 6px;

  --font-num: "Space Grotesk", system-ui, sans-serif;
  --font-ui:  "Inter Tight", system-ui, sans-serif;

  /* Eine Skala, acht Stufen, keine Zwischenwerte. Jede Größe im Projekt
     kommt von hier — sonst wird es wieder ungleichmäßig. */
  --t-xs:   12px;   /* Kachel-Unterschrift */
  --t-sm:   13px;   /* Label */
  --t-md:   15px;   /* Buttons, Chips */
  --t-base: 16px;   /* Fließtext */
  --t-lg:   22px;   /* Überschrift, Uhr, Positionen */
  --t-xl:   30px;   /* Kachelwert */
  --t-2xl:  44px;   /* Kennzahl */
  --t-3xl:  64px;   /* aktives Gewicht */

  --tabbar-h: 56px;
  --pad: 16px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--t-base);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ── Layout ─────────────────────────────────────────────── */

#app {
  padding: calc(env(safe-area-inset-top) + 8px) var(--pad)
           calc(var(--tabbar-h) + env(safe-area-inset-bottom) + 24px);
  max-width: 560px;
  margin: 0 auto;
}

#tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 40;
}
#tabbar .tab {
  appearance: none;
  background: none;
  border: 0;
  height: var(--tabbar-h);
  font-size: var(--t-sm);
  letter-spacing: .02em;
  color: var(--muted);
  cursor: pointer;
}
#tabbar .tab[aria-selected="true"] { color: var(--text); }
#tabbar .tab[aria-selected="true"]::before {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--signal);
  margin: 0 auto 6px;
}
#tabbar .tab:not([aria-selected="true"])::before {
  content: "";
  display: block;
  height: 2px;
  margin: 0 auto 6px;
}

/* ── Typografie ─────────────────────────────────────────── */

.h1 { font-size: var(--t-lg); font-weight: 500; margin: 0 0 12px; letter-spacing: .01em; }
.h2 { font-size: var(--t-base); font-weight: 500; margin: 0 0 8px; }
.label {
  font-size: var(--t-sm);
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: none;
}
.muted { color: var(--muted); }
.num {
  font-family: var(--font-num);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: .01em;
}
.kpi { font-size: var(--t-2xl); line-height: 1; }

/* Direktzugriff auf die Skala, wenn eine Stelle aus der Reihe tanzen muss. */
.t-lg { font-size: var(--t-lg); line-height: 1.1; }
.t-xl { font-size: var(--t-xl); line-height: 1; }

.sheet-sub { display: block; font-size: var(--t-sm); font-weight: 400; opacity: .7; }

/* ── Bausteine ──────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 12px;
}
.card.flat { background: none; }

.row { display: flex; align-items: center; gap: 12px; }
.row.between { justify-content: space-between; }
.spacer { flex: 1; }
.stack > * + * { margin-top: 10px; }

.btn {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  /* Beschriftungen bleiben leicht — der 500er Schnitt wirkte plump. */
  font-size: var(--t-md);
  font-weight: 400;
  letter-spacing: .005em;
  cursor: pointer;
  transition: transform .06s ease, background .12s ease;
}
.btn:active { transform: scale(.98); background: var(--line); }
.btn.primary {
  background: var(--signal);
  border-color: var(--signal);
  color: #14100C;
  font-weight: 500;
}
.btn.primary:active { background: var(--signal-2); }
.btn.ghost { background: none; }
.btn.small { min-height: 44px; font-size: var(--t-md); font-weight: 400; }
.btn.quiet { background: none; border-color: transparent; color: var(--muted); }
.btn[disabled] { opacity: .4; pointer-events: none; }

.seg { display: grid; grid-auto-flow: column; gap: 8px; }
/* Zustand, keine Aktion — Orange gehört allein dem Startknopf. */
.seg .btn[aria-pressed="true"] {
  border-color: var(--text);
  background: var(--surface-2);
  color: var(--text);
}

.list { border-top: 1px solid var(--line); }
.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.list-item .grow { flex: 1; min-width: 0; }
.list-item .tag {
  flex: none;
  width: 1.4em;
  text-align: center;
  font-family: var(--font-num);
  font-weight: 600;
  font-size: var(--t-lg);
  color: var(--muted);
}
.list-item .name { display: block; }
.list-item .sub { display: block; font-size: var(--t-sm); color: var(--muted); }

.empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  color: var(--muted);
}
.empty .btn { margin-top: 14px; }

.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: var(--t-md);
  color: var(--muted);
}
.notice .dismiss {
  appearance: none; background: none; border: 0;
  color: var(--muted); font-size: var(--t-base); line-height: 1;
  padding: 0 2px; cursor: pointer;
}

.pill {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2px 7px;
  font-size: var(--t-sm);
  color: var(--muted);
}
.pill.pr { border-color: var(--signal); color: var(--signal); }

/* ── Trainingsscreen ────────────────────────────────────── */

.session-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: calc(-1 * (env(safe-area-inset-top) + 8px)) calc(-1 * var(--pad)) 12px;
  padding: calc(env(safe-area-inset-top) + 8px) var(--pad) 8px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.session-bar .ring { flex: none; width: 40px; height: 40px; display: block; }
.session-bar .ring circle { fill: none; stroke-width: 3; }
.session-bar .ring .track { stroke: var(--line); }
.session-bar .ring .head {
  stroke: var(--signal);
  stroke-linecap: butt;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.session-bar.idle .ring { opacity: .3; }
.session-bar.over .ring .head { stroke: var(--muted); }
.session-bar .clock { font-family: var(--font-num); font-weight: 600; font-size: var(--t-lg); font-variant-numeric: tabular-nums; }
.session-bar.idle .clock { color: var(--muted); }
.session-bar.over .clock { color: var(--muted); }
.session-bar .meta { font-size: var(--t-sm); color: var(--muted); margin-left: auto; text-align: right; }
.session-bar .barbtn {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
.session-bar .hold {
  flex: none;
  width: auto;
  min-height: 44px;
  padding: 0 12px;
  margin-left: 12px;
  font-size: var(--t-md);
  font-weight: 400;
}
.session-bar.held .clock { color: var(--muted); }
.session-bar.held { border-bottom-color: var(--steel); }

.ex-head { display: flex; align-items: baseline; gap: 10px; }
.ex-head .pos { font-family: var(--font-num); font-weight: 600; font-size: var(--t-lg); color: var(--muted); }
.ex-head .name { font-size: var(--t-lg); font-weight: 500; line-height: 1.15; }

.setup {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0 0;
  font-size: var(--t-sm);
  color: var(--muted);
}
.setup .photo {
  flex: none;
  width: 56px; height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface);
}
.flag { margin: 6px 0 0; font-size: var(--t-sm); color: var(--muted); }

/* Die Anzeige. Ein Kasten wie an einer Maschine, die Zahl trägt den Screen. */
.bignum {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  padding: 10px 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bignum input {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0;
  font-family: var(--font-num);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: var(--text);
  min-width: 0;
}
/* Das Gewichtsfeld nimmt den Rest der Zeile, statt eine feste Zeichenbreite zu
   raten — sonst schneidet ein Schriftwechsel dreistellige Gewichte ab.
   Rechtsbündig, damit die Ziffern beim Tippen auf − und + nicht springen. */
/* Basis 0, damit die Eigenbreite eines Eingabefelds (rund zwanzig Zeichen)
   nicht mitrechnet — sonst schrumpfen alle Teile anteilig und das Gewicht
   bekommt zu wenig. So nimmt es schlicht den Rest der Zeile. */
.bignum .weight { font-size: var(--t-3xl); line-height: 1; flex: 1 1 0; min-width: 0; }
.bignum .unit { font-family: var(--font-num); font-weight: 600; font-size: var(--t-lg); color: var(--muted); }
.bignum .times { font-family: var(--font-num); font-weight: 600; font-size: var(--t-xl); color: var(--muted); }
.bignum .reps { font-size: var(--t-2xl); line-height: 1; flex: 0 0 60px; text-align: center; }
.bignum .unit, .bignum .times { flex: none; }
.bignum input:focus { outline: none; border-bottom-color: var(--signal); }

/* Beide Stepper-Reihen teilen sich ein Raster, damit − und + in einer Spalte stehen. */
.pad {
  display: grid;
  grid-template-columns: 76px 1fr 76px;
  grid-auto-rows: 64px;
  gap: 8px;
  margin-top: 8px;
}
.pad .btn { min-height: 0; height: 100%; font-size: var(--t-lg); padding: 0; }
/* Wiederholungen sind zweitrangig: gleiche Trefferfläche, weniger Gewicht. */
.pad .reps { background: none; border-color: transparent; color: var(--muted); font-size: var(--t-lg); }
.pad .reps:active { background: var(--surface-2); color: var(--text); }
.pad .mid {
  display: flex; align-items: center; justify-content: center;
  font-size: var(--t-sm); color: var(--muted); text-align: center;
}
.pad .book { font-size: var(--t-lg); font-weight: 500; }

.underpad {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}

.setlist { margin-top: 12px; }
.setrow {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  border-bottom: 1px solid var(--line);
  font-size: var(--t-md);
}
.setrow .idx { color: var(--muted); width: 4.5em; }
.setrow .val { font-family: var(--font-num); font-weight: 600; font-size: var(--t-base); font-variant-numeric: tabular-nums; }
.setrow.open .val { color: var(--muted); }
.setrow .warm { font-size: var(--t-sm); color: var(--muted); }
.setrow .del {
  appearance: none; background: none; border: 0;
  color: var(--muted); font-size: var(--t-base); padding: 4px 6px; cursor: pointer;
  margin-left: auto;
}
.setrow .done { margin-left: auto; color: var(--good); }

.toggle {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: var(--t-md);
  color: var(--muted);
  cursor: pointer;
}
.toggle .box {
  width: 18px; height: 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  display: grid; place-items: center;
  font-size: var(--t-xs);
  color: var(--signal);
}
.toggle[aria-pressed="true"] .box::after { content: "×"; }
.toggle[aria-pressed="true"] { color: var(--text); }

/* §9: jedes Tap-Ziel im Trainingsscreen mindestens 64 px.
   Einzige bewusste Ausnahme ist das ✕ zum Löschen eines Satzes — ein Ziel,
   das man mit nassen Fingern gerade nicht versehentlich treffen soll. */
.session-actions { margin-top: 14px; display: grid; gap: 8px; }
.session-actions .btn { min-height: 64px; font-size: var(--t-md); font-weight: 400; }
.session-actions .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* ── Sheet ──────────────────────────────────────────────── */

#sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8, 9, 11, .72);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#sheet[hidden] { display: none; }
#sheet .panel {
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 16px var(--pad) calc(16px + env(safe-area-inset-bottom));
  animation: rise .16s ease-out;
}
@keyframes rise { from { transform: translateY(14px); } to { transform: none; } }
#sheet .panel > * + * { margin-top: 10px; }

/* ── Charts / Bodymap ───────────────────────────────────── */

.chart { width: 100%; height: auto; display: block; }
.chart .axis { stroke: var(--line); stroke-width: 1; }
.chart .grid { stroke: var(--line); stroke-width: 1; stroke-dasharray: 2 4; opacity: .7; }
.chart .tick { fill: var(--muted); font-family: var(--font-num); font-weight: 600; font-size: var(--t-xs); }
.chart .line { fill: none; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.chart .dot { stroke: var(--bg); stroke-width: 1.5; }

.legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; font-size: var(--t-sm); color: var(--muted); }
.legend .key { display: inline-flex; align-items: center; gap: 6px; }
.legend .swatch { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }

.bodymap { width: 100%; max-width: 300px; height: auto; display: block; margin: 0 auto; }
.bodymap .body { fill: var(--surface); stroke: #4A525C; stroke-width: .8; }
.bodymap .mus { fill: var(--steel); }
.bodymap .m1 { fill: var(--hot); }
.bodymap .m2 { fill: var(--hot-soft); }
/* Die Stufen müssen sich auf einen Blick unterscheiden, sonst sagt die Karte nichts. */
.bodymap .v0 { fill: var(--steel); fill-opacity: .08; }
.bodymap .v1 { fill: var(--steel); fill-opacity: .5; }
.bodymap .v2 { fill: var(--steel); fill-opacity: 1; }
.bodymap .v3 { fill: var(--good); }
.bodymap .v4 { fill: var(--hot); }

.volbar {
  display: grid;
  grid-template-columns: 8.5em 1fr 2.4em;
  align-items: center;
  gap: 10px;
  min-height: 26px;
  font-size: var(--t-sm);
}
.volbar .track { display: block; height: 8px; background: var(--surface-2); border-radius: 2px; overflow: hidden; }
.volbar .fill { display: block; height: 100%; min-width: 3px; background: var(--steel); }
.volbar .fill.v3 { background: var(--good); }
.volbar .fill.v4 { background: var(--hot); }
.volbar .n { font-family: var(--font-num); font-weight: 600; text-align: right; color: var(--muted); }

/* ── Startbildschirm ────────────────────────────────────── */

#splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  transition: opacity .3s ease;
}
#splash.done { opacity: 0; pointer-events: none; }

#splash .mark {
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 96px;   /* bewusste Ausnahme: einmaliger Auftritt beim Start */
  line-height: .8;
  color: var(--signal);
  animation: mark-in .45s cubic-bezier(.2, .8, .2, 1) both;
}
#splash .word {
  font-size: var(--t-sm);
  letter-spacing: .52em;
  text-indent: .52em;
  color: var(--muted);
  text-transform: uppercase;
  animation: word-in .5s ease .18s both;
}
#splash .mill { width: 150px; height: auto; margin-top: 6px; }
#splash .slab { fill: var(--surface-2); stroke: var(--line); stroke-width: 1; }
#splash .roller circle { fill: var(--surface); stroke: var(--steel); stroke-width: 1.6; }
#splash .roller line { stroke: var(--steel); stroke-width: 1.6; stroke-linecap: round; }
#splash .roller { transform-box: fill-box; transform-origin: 50% 50%; }
#splash .roller.top { animation: roll 1.1s linear .3s infinite; }
#splash .roller.bot { animation: roll-back 1.1s linear .3s infinite; }
#splash .spark {
  fill: var(--signal);
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: through 1.1s ease-in-out .3s infinite;
}

@keyframes mark-in  { from { opacity: 0; transform: translateY(10px); } }
@keyframes word-in  { from { opacity: 0; letter-spacing: .9em; } }
@keyframes roll      { to { transform: rotate(360deg); } }
@keyframes roll-back { to { transform: rotate(-360deg); } }
@keyframes through {
  0%   { transform: translateX(-24px) scaleY(1);   opacity: 0; }
  18%  { opacity: 1; }
  100% { transform: translateX(150px) scaleY(.42); opacity: 0; }
}

/* ── Heute: Hero und Kacheln ────────────────────────────── */

.hero {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
}
.hero.live { border-color: var(--signal); }
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  color: var(--muted);
  margin-bottom: 10px;
}
.hero .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero.held .dot { background: var(--muted); animation: none; }
@keyframes pulse { 50% { opacity: .25; } }

.hero .big {
  font-family: var(--font-num);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: var(--t-2xl);
  line-height: .95;
}
.hero .side { font-size: var(--t-sm); color: var(--muted); text-align: right; line-height: 1.5; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 10px;
}
.tile .v {
  font-family: var(--font-num);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: var(--t-xl);
  line-height: 1;
}
.tile .v.dim { color: var(--muted); }
.tile .k { font-size: var(--t-xs); color: var(--muted); margin-top: 5px; }

.minibars { display: grid; gap: 5px; }
.minibar { display: grid; grid-template-columns: 7.5em 1fr 2em; gap: 8px; align-items: center; font-size: var(--t-sm); }
.minibar .t { height: 6px; background: var(--surface-2); border-radius: 2px; overflow: hidden; }
.minibar .f { display: block; height: 100%; min-width: 3px; background: var(--steel); }
.minibar .f.good { background: var(--good); }
.minibar .f.over { background: var(--hot); }
.minibar .n { font-family: var(--font-num); font-weight: 600; text-align: right; color: var(--muted); }

/* ── Abschluss und Feedback ─────────────────────────────── */

.done-mark {
  width: 64px; height: 64px;
  margin: 6px auto 14px;
  border: 2px solid var(--good);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--good);
  font-size: var(--t-xl);
  animation: pop .4s cubic-bezier(.2, .9, .3, 1.4) both;
}
@keyframes pop { from { transform: scale(.6); opacity: 0; } }

.pct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pct-grid .btn {
  min-height: 58px;
  padding: 0;
  font-family: var(--font-num);
  font-weight: 600;
  font-size: var(--t-lg);
}
.pct-grid .btn.top { border-color: var(--signal); color: var(--signal); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  appearance: none;
  min-height: 48px;
  padding: 0 14px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: var(--t-md);
  cursor: pointer;
}
.chip[aria-pressed="true"] { border-color: var(--text); background: var(--surface-2); }
.chip[aria-pressed="true"]::before { content: "✓ "; color: var(--good); }

.steps { display: flex; gap: 5px; margin-bottom: 14px; }
.steps i { flex: 1; height: 2px; background: var(--line); border-radius: 1px; }
.steps i.on { background: var(--signal); }

/* ── Formular ───────────────────────────────────────────── */

.field { display: block; margin-bottom: 14px; }
.field > .label { display: block; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  appearance: none;
}
.field textarea { min-height: 74px; padding: 11px 12px; resize: vertical; line-height: 1.4; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--steel);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.sheet-scroll { max-height: 74vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* ── Bewegung ───────────────────────────────────────────── */

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