/* Horizon — "The Great Wave off Kanagawa" (Hokusai, c. 1831).
 *
 * The print works because it is disciplined: four or five colours, enormous
 * flat fields, and one bright mass — the foam — that the eye cannot avoid.
 * A dashboard wants exactly the same behaviour, so the mapping is literal:
 *
 *   deep Prussian blue (bero-ai) ... the page and its cards, banded darker
 *                                    towards the bottom like the trough
 *   unbleached paper cream ....... all type, and the urgent strip itself
 *   the foam crest ............... the urgent strip: the one light mass on a
 *                                  dark page, edged with scallops
 *   ochre sky band ............... "needs Sam" accents
 *   faded rose ................... errors (the print has no red; it has this)
 *   Mount Fuji ................... the brand mark, small and far away
 *
 * Nothing here uses a colour that is not in the woodblock. Old variable names
 * are kept and repointed so no markup depends on the palette's history.
 */

:root {
  /* Prussian blue, in the dilutions the printer would have mixed */
  --deep: #04121f;
  --sea: #072437;
  --night: #061d2e;      /* page ground */
  --night-2: #0a2c45;    /* raised sheet (the event drawer) */
  --card: #0b2a42;
  --card-2: #113c58;
  --swell: #1d5a7a;
  --shallow: #6fa8c4;
  --pale: #a8c3d6;

  /* the paper itself */
  --foam: #f2ead6;
  --paper: #e2d6b8;
  --ink: #f2ead6;
  --ink-2: #c3d0da;
  --muted: #8fa6ba;

  /* the sky, and the one warm note */
  --ochre: #d9af63;
  --rose: #c98e88;
  --jade: #86ad98;

  /* the key block: a hairline, never a heavy border */
  --line: rgba(242, 234, 214, 0.14);
  --line-strong: rgba(242, 234, 214, 0.28);

  /* legacy names, repointed */
  --amber: var(--ochre);
  --teal: var(--shallow);
  --lilac: var(--pale);
  --coral: var(--rose);
  --green: var(--jade);

  --radius: 16px;
  --gap: 14px;
  --capture-h: 76px;
  --font: "Inter", ui-sans-serif, -apple-system, "SF Pro Text", system-ui, sans-serif;

  /* the foam edge, and the seigaiha wave-scale pattern */
  /* Hokusai's crest is not a scallop border — the drops vary, and a few reach
     down as claws. Uneven depths across a long tile keep it from reading as
     lace. */
  --foam-edge: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H120 V4 C114 14 110 12 106 4 C101 13 97 11 92 4 C88 9 84 9 80 4 C74 15 70 12 66 4 C61 11 57 11 53 4 C48 14 44 12 40 4 C35 9 31 9 27 4 C22 15 18 12 14 4 C9 11 5 11 0 4 Z' fill='%23f2ead6'/%3E%3C/svg%3E");
  --seigaiha: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cg fill='none' stroke='%23f2ead6' stroke-width='1'%3E%3Cpath d='M0 20 A20 20 0 0 1 40 20'/%3E%3Cpath d='M6 20 A14 14 0 0 1 34 20'/%3E%3Cpath d='M12 20 A8 8 0 0 1 28 20'/%3E%3Cpath d='M17 20 A3 3 0 0 1 23 20'/%3E%3C/g%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

/* The print's vertical gradation: pale-ish sky at the top, the trough below. */
body {
  font-family: var(--font);
  background:
    linear-gradient(180deg, #0b3350 0%, var(--night) 34%, var(--sea) 72%, var(--deep) 100%) fixed;
  color: var(--ink);
  min-height: 100dvh;
  padding: max(env(safe-area-inset-top), 12px) 14px calc(var(--capture-h) + env(safe-area-inset-bottom) + 18px);
  font-size: 15px;
  line-height: 1.45;
}

[hidden] { display: none !important; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
h1, h2, h3 { font-weight: 650; letter-spacing: -0.015em; }

/* ------------------------------------------------------------------ topbar */
.topbar {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 2px 16px;
}
/* Wave scales, barely there — texture, not decoration. */
.topbar::before {
  content: ""; position: absolute; inset: -8px -14px 8px;
  background-image: var(--seigaiha), var(--seigaiha);
  background-position: 0 0, 20px 10px;
  opacity: 0.07;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent);
}
.brand { display: flex; align-items: center; gap: 11px; position: relative; }
.brand h1 { font-size: 19px; }

/* Fuji: small, distant, snow-capped — the calm thing behind the wave. */
.fuji {
  position: relative;
  width: 30px; height: 21px; flex: none;
  background: linear-gradient(180deg, #2c5f7e 0%, #14405f 55%, #0e3350 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.fuji::after {
  content: ""; position: absolute; inset: 0;
  background: var(--foam);
  clip-path: polygon(50% 0, 74% 46%, 62% 38%, 52% 52%, 42% 36%, 30% 48%);
}

.clock { font-size: 12px; color: var(--muted); white-space: nowrap; }
.topbar-actions { display: flex; align-items: center; gap: 8px; position: relative; }
.freshness { font-size: 11px; color: var(--muted); text-align: right; max-width: 68px; line-height: 1.25; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 11px;
  background: rgba(242, 234, 214, 0.06);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink-2); text-decoration: none;
}
.icon-btn:active { transform: scale(0.94); }
.icon-btn.spinning { animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.text-btn { font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------ urgent strip = the foam */
/* The one light mass on a dark page. Inverted on purpose: in the print the
   foam is the paper, and it is the only thing that stops your eye. */
.urgent {
  position: sticky; top: 0; z-index: 20;
  background: linear-gradient(180deg, var(--foam) 0%, var(--paper) 100%);
  color: #0a2a44;
  border-radius: var(--radius) var(--radius) 4px 4px;
  padding: 13px 16px 15px;
  margin-bottom: calc(var(--gap) + 6px);
  box-shadow: 0 16px 34px -20px #000;
}
/* the scalloped crest, breaking below the strip */
.urgent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -11px; height: 14px;
  background-image: var(--foam-edge);
  background-size: 120px 14px;
  background-repeat: repeat-x;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}
.urgent-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 9px; }
.urgent-head h2 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: #1d5a7a; }
.urgent .text-btn { color: #487d9b; }
.urgent-list { list-style: none; display: grid; gap: 10px; }
.urgent-list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.urgent-list .rank {
  color: #0e3350; font-weight: 800; font-variant-numeric: tabular-nums;
  font-size: 15px; line-height: 1.35;
}
.urgent-list .u-title { font-weight: 640; color: #0a2a44; }
.urgent-list .u-why { font-size: 12.5px; color: #40708c; }
/* Two ways out of every urgent item: go deal with it, or say it's handled. */
.urgent-actions { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.u-btn {
  font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 999px;
  border: 1px solid rgba(10, 42, 68, 0.28); color: #0e3350; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.u-btn.go { background: #0e3350; color: var(--foam); border-color: #0e3350; }
.u-btn:active { opacity: 0.65; }
.skeleton {
  height: 34px; border-radius: 8px;
  background: linear-gradient(90deg, #ded1b2, #eee3c8, #ded1b2);
  background-size: 200% 100%; animation: shimmer 1.4s ease infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* -------------------------------------------------------------------- grid */
/* align-items: start keeps every card its own natural height — otherwise the
   tallest in a row stretches its neighbours and the page balloons. */
.grid { display: grid; gap: var(--gap); align-items: start; }

/* Two columns on desktop: the left one is the narrative (what happened, what's
   moving, life, money), the right one the two live feeds. On a phone the
   columns dissolve and cards reorder — Calendar and Inbox must not end up below
   Money on the one screen Sam actually reads in the morning. */
.col { display: contents; }
.grid.columns .card { order: var(--order, 99); }

@media (min-width: 900px) {
  .grid.columns { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
  .col { display: flex; flex-direction: column; gap: var(--gap); min-width: 0; }
  .grid.columns .card { order: 0; }
}
.card {
  background: linear-gradient(180deg, rgba(242, 234, 214, 0.045), rgba(242, 234, 214, 0.012)), var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  min-width: 0;
}
.card > header {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 10px; padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.card > header h2 { font-size: 14px; }

/* The whole header is the collapse target — a small caret would be a poor tap
   target on a phone. Collapsed state is remembered per panel. */
.card-toggle { display: flex; align-items: center; gap: 8px; flex: 1; text-align: left; padding: 2px 0; }
.card-toggle .caret { font-size: 10px; color: var(--muted); transition: transform 0.18s ease; }
.card-toggle[aria-expanded="false"] .caret { transform: rotate(-90deg); }
.card.collapsed > header { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.card.collapsed .card-body,
.card.collapsed .filters { display: none; }

/* A section is its own band of the page, titled like a chapter. */
.section-head {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--shallow); margin: 26px 2px 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-head::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* --------------------------------------------------------------- pickers */
.filters { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.picker { position: relative; }
.picker > summary {
  list-style: none; cursor: pointer;
  font-size: 12px; padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(242, 234, 214, 0.05); color: var(--ink-2);
  white-space: nowrap;
}
.picker > summary::-webkit-details-marker { display: none; }
.picker > summary::after { content: " ▾"; color: var(--muted); }
.picker[open] > summary { background: var(--foam); color: #0a2a44; border-color: var(--foam); }
.picker-menu {
  position: absolute; z-index: 15; top: calc(100% + 6px); left: 0; min-width: 190px;
  background: var(--night-2); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 6px; box-shadow: 0 18px 34px -20px #000;
}
.picker-menu label {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 9px; border-radius: 8px; font-size: 13px; cursor: pointer;
}
.picker-menu label:hover { background: rgba(242, 234, 214, 0.06); }
.picker-menu input { accent-color: var(--ochre); width: 15px; height: 15px; }
.picker-menu .count { margin-left: auto; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.picker-menu .group-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); padding: 8px 9px 4px;
}
.picker-menu .hint { font-size: 11.5px; color: var(--muted); padding: 6px 9px 8px; line-height: 1.35; }

/* Segmented control: three states, one tap, no dropdown to open first. */
.segmented { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 999px; padding: 2px; gap: 2px; }
.segmented button { font-size: 12px; padding: 4px 12px; border-radius: 999px; color: var(--ink-2); }
.segmented button[aria-selected="true"] { background: var(--foam); color: #0a2a44; font-weight: 640; }

.stepper { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line-strong); border-radius: 999px; padding: 2px; }
.stepper button { font-size: 13px; padding: 4px 10px; border-radius: 999px; color: var(--ink-2); line-height: 1.2; }
.stepper button:active { background: rgba(242, 234, 214, 0.1); }
.stepper .today-btn { font-size: 12px; }

/* --------------------------------------------------------- calendar views */
.cal-title { font-size: 13px; font-weight: 640; margin-bottom: 2px; }
.cal-next {
  display: flex; align-items: baseline; gap: 8px;
  background: rgba(217, 175, 99, 0.1); border: 1px solid rgba(217, 175, 99, 0.3);
  border-radius: 12px; padding: 9px 12px; margin-bottom: 4px;
}
.cal-next .lead { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ochre); }
.cal-next .what { font-size: 13.5px; font-weight: 600; }
.cal-next .in { margin-left: auto; font-size: 12px; color: var(--ochre); white-space: nowrap; }

.month { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.month .dow { font-size: 10px; text-align: center; color: var(--muted); padding-bottom: 3px; }
.month .day {
  aspect-ratio: 1; border-radius: 9px; border: 1px solid transparent;
  background: rgba(242, 234, 214, 0.04);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 12px; color: var(--ink-2);
}
.month .day.other { opacity: 0.32; }
.month .day.today { border-color: var(--ochre); color: var(--ochre); font-weight: 700; }
.month .day.busy { background: rgba(111, 168, 196, 0.14); }
.month .dots { display: flex; gap: 2px; height: 4px; }
.month .dots i { width: 4px; height: 4px; border-radius: 50%; background: var(--shallow); }
.month .dots i.client_meeting { background: var(--shallow); }
.month .dots i.leave { background: var(--rose); }
.month .dots i.blocked { background: var(--ochre); }
.month .dots i.personal { background: var(--jade); }
.month .dots i.team_note { background: var(--pale); }

.merged { font-size: 10px; color: var(--muted); }
.hidden-note { font-size: 11.5px; color: var(--muted); padding-top: 6px; }

/* -------------------------------------------------------------- inbox groups */
.mail-group summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-2);
}
.mail-group summary::-webkit-details-marker { display: none; }
.mail-group summary::before { content: "▸"; font-size: 9px; color: var(--muted); transition: transform 0.15s ease; }
.mail-group[open] summary::before { transform: rotate(90deg); }
.mail-group summary .count { margin-left: auto; color: var(--muted); font-variant-numeric: tabular-nums; }
.mail-group .kind-dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.kind-person { background: var(--ochre); }
.kind-invite { background: var(--shallow); }
.kind-newsletter { background: var(--pale); }
.kind-notification { background: var(--muted); }
.kind-security { background: var(--rose); }

/* A newsletter that is only selling is still listed — just visibly demoted. */
.row.dim { opacity: 0.55; }
.value { font-size: 10px; padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.value-useful { background: rgba(134, 173, 152, 0.16); color: var(--jade); }
.value-skim { background: rgba(242, 234, 214, 0.07); color: var(--muted); }
.value-selling { background: rgba(201, 142, 136, 0.14); color: var(--rose); }
.highlights { margin: 4px 0 2px; padding-left: 15px; }
.highlights li { font-size: 12px; color: var(--ink-2); line-height: 1.4; }
.row .main:has(.highlights) .sub { white-space: normal; }
.badge { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.badge.alert { color: var(--ochre); }
.badge.bad { color: var(--rose); }
.card-body { display: grid; gap: 9px; }
.empty { color: var(--muted); font-size: 13px; }
.error-note { color: var(--rose); font-size: 12px; line-height: 1.4; }

/* The calendar is unbounded by nature; it scrolls inside its own card rather
   than pushing everything below it off the screen. */
/* Flat fill, not the gradient — a sticky day header has to match its backdrop
   exactly or it reads as a band sliding over the list. */
.card.scroll { background: #0d2c44; }
.card.scroll .card-body {
  max-height: 42vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--swell) transparent;
}
.card.scroll .card-body .day-head {
  position: sticky; top: 0; z-index: 1;
  background: #0d2c44; padding-bottom: 4px;
}

/* --------------------------------------------------------------- list rows */
.row { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: baseline; padding: 7px 0; border-top: 1px solid var(--line); }
.row:first-child { border-top: 0; }
.row .when { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.row .main { min-width: 0; }
.row .title { font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row .sub { font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row .right { font-size: 12px; color: var(--muted); white-space: nowrap; }
.clickable { cursor: pointer; }
.clickable:active { opacity: 0.6; }

.day-head { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--shallow); padding-top: 10px; }

/* ------------------------------------------------------------------- chips */
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.chip {
  font-size: 12px; padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(242, 234, 214, 0.05); color: var(--ink-2);
}
.chip[aria-pressed="true"] { background: var(--foam); color: #0a2a44; border-color: var(--foam); font-weight: 640; }
.chip .count { opacity: 0.55; margin-left: 5px; font-variant-numeric: tabular-nums; }

/* Categories drawn only from the print: two blues, the ochre sky, the rose
   horizon, the paper, and the grey of the boats. */
.tag { font-size: 10.5px; padding: 2px 8px; border-radius: 999px; white-space: nowrap; border: 1px solid transparent; }
.tag-client_meeting { background: rgba(111, 168, 196, 0.16); color: var(--shallow); }
.tag-leave { background: rgba(201, 142, 136, 0.16); color: var(--rose); }
.tag-team_note { background: rgba(168, 195, 214, 0.14); color: var(--pale); }
.tag-blocked { background: rgba(217, 175, 99, 0.16); color: var(--ochre); }
.tag-personal { background: rgba(134, 173, 152, 0.16); color: var(--jade); }
.tag-other, .tag-untagged { background: rgba(242, 234, 214, 0.06); color: var(--muted); }
.tag.sam::after { content: " ✓"; }

.ctx { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ------------------------------------------------------------------ today */
.brief { font-size: 14px; color: var(--ink-2); white-space: pre-wrap; }
.brief h3 { font-size: 13px; color: var(--ink); margin: 10px 0 3px; }
.brief strong { color: var(--ink); }

/* ---------------------------------------------------------------- capture */
.capture {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; gap: 8px; align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(4, 18, 31, 0.55), var(--deep) 60%);
  backdrop-filter: blur(12px);
}
.capture input {
  flex: 1; min-width: 0; font: inherit; color: var(--ink);
  background: rgba(242, 234, 214, 0.07); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 16px; outline: none;
}
.capture input:focus { border-color: var(--foam); background: rgba(242, 234, 214, 0.1); }
.capture input::placeholder { color: var(--muted); }
.capture button {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--foam); color: #0a2a44; font-size: 19px; font-weight: 700;
  display: grid; place-items: center;
}
.capture button:disabled { opacity: 0.5; }

/* ------------------------------------------------------------------ sheet */
.sheet-backdrop { position: fixed; inset: 0; background: rgba(4, 18, 31, 0.68); z-index: 40; }
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--night-2); border-top: 1px solid var(--line-strong);
  border-radius: 20px 20px 0 0; padding: 10px 18px calc(24px + env(safe-area-inset-bottom));
  max-height: 82dvh; overflow-y: auto;
  animation: rise 0.22s ease;
}
@keyframes rise { from { transform: translateY(16px); opacity: 0; } }
.sheet-grip { width: 40px; height: 4px; border-radius: 2px; background: var(--line-strong); margin: 2px auto 14px; }
.sheet h3 { font-size: 17px; margin-bottom: 4px; }
.sheet .meta { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.sheet .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--shallow); margin: 14px 0 8px; }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.cat-btn { padding: 11px; border-radius: 11px; border: 1px solid var(--line); background: rgba(242, 234, 214, 0.05); font-size: 13px; text-align: left; }
.cat-btn[aria-pressed="true"] { border-color: var(--foam); background: rgba(242, 234, 214, 0.13); font-weight: 640; }
.sheet .link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--shallow); }

/* ------------------------------------------------------------------ toast */
.toast {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(var(--capture-h) + env(safe-area-inset-bottom) + 12px);
  z-index: 60; background: var(--foam); color: #0a2a44;
  border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 560;
  box-shadow: 0 14px 30px -16px #000;
  animation: rise 0.2s ease;
}
.toast.bad { background: var(--rose); color: #2c0f0c; }
.toast.good { background: var(--jade); color: #08251a; }

/* --------------------------------------------------------------- desktop */
@media (min-width: 760px) {
  body { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card.wide { grid-column: span 2; }
  .urgent-list { grid-auto-flow: column; grid-auto-columns: 1fr; gap: 26px; }
}
@media (min-width: 1080px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card.wide { grid-column: span 2; }
  .capture { left: 50%; transform: translateX(-50%); max-width: 1240px; }
}

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