/* ==========================================================================
   MoneyMojis — design system
   Modern static CSS: custom properties, fluid type, :has(), color-mix(),
   light/dark theming, View Transitions friendly. No framework, no build.
   ========================================================================== */

/* ---- Design tokens -------------------------------------------------------- */
:root {
  --accent: #6d5efc;
  --accent-2: #a855f7;
  --mint: #10b981;
  --amber: #f59e0b;
  --grad: linear-gradient(135deg, var(--accent), var(--accent-2));

  --bg: #ffffff;
  --bg-soft: #f5f6fc;
  --surface: #ffffff;
  --surface-2: #f7f8fd;
  --text: #11132a;
  --muted: #5b6178;
  --border: #e7e9f3;
  --shadow: 0 1px 2px rgba(17, 19, 42, .04), 0 12px 30px -12px rgba(17, 19, 42, .14);
  --shadow-lg: 0 24px 60px -20px rgba(80, 60, 200, .35);
  --ring: color-mix(in srgb, var(--accent) 45%, transparent);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw: 1080px;
  --pad: clamp(1rem, 4vw, 2rem);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

[data-theme="dark"] {
  --bg: #0a0c16;
  --bg-soft: #0e1020;
  --surface: #141829;
  --surface-2: #1a1f36;
  --text: #eef0fb;
  --muted: #9aa1c2;
  --border: #262c49;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 18px 40px -16px rgba(0, 0, 0, .6);
  --shadow-lg: 0 30px 70px -22px rgba(109, 94, 252, .5);
  --accent: #8b7dff;
  --ring: color-mix(in srgb, var(--accent) 55%, transparent);
}

@media (prefers-reduced-motion: no-preference) {
  :root { scroll-behavior: smooth; }
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 6px; }
::selection { background: color-mix(in srgb, var(--accent) 30%, transparent); }

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.15rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: .7rem 1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; gap: 1rem;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 900; font-size: 1.2rem; letter-spacing: -.03em; color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand .logo { width: 30px; height: 30px; flex: none; }
.nav-links { display: flex; align-items: center; gap: .35rem; margin-inline-start: auto; }
.nav-links a {
  color: var(--muted); font-weight: 600; font-size: .95rem;
  padding: .5rem .7rem; border-radius: 10px;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--accent); }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  transition: transform .15s ease, background .15s ease;
}
.icon-btn:hover { background: var(--bg-soft); transform: translateY(-1px); }
.icon-btn svg { width: 19px; height: 19px; }
.lang-btn {
  width: auto; padding-inline: .7rem; gap: .35rem; font-weight: 700; font-size: .85rem;
}
.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: block; }

.menu-toggle { display: none; }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; padding: .85rem 1.4rem; border-radius: 999px;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-lg); }
.btn-primary:hover { box-shadow: 0 30px 70px -18px rgba(109, 94, 252, .6); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: var(--shadow); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }

/* ---- Section scaffolding -------------------------------------------------- */
.section { padding-block: clamp(2.5rem, 7vw, 5rem); }
.section-head { max-width: 640px; margin-bottom: 1.8rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: .4rem; }
.eyebrow {
  display: inline-block; font-weight: 800; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  padding: .35rem .7rem; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent); margin-bottom: 1rem;
}

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(2.5rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 3rem); text-align: center; }
.hero::before {
  content: ""; position: absolute; inset: -20% 0 auto 0; height: 480px; z-index: -1;
  background: radial-gradient(60% 60% at 50% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  pointer-events: none;
}
.hero h1 { max-width: 16ch; margin-inline: auto; background: linear-gradient(180deg, var(--text), color-mix(in srgb, var(--text) 65%, var(--accent))); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { max-width: 56ch; margin: 1.1rem auto 0; color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.3rem); }
.hero-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-trust { margin-top: 1.4rem; color: var(--muted); font-size: .9rem; display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }

/* ---- Card grid ------------------------------------------------------------ */
.grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.card {
  position: relative; display: flex; flex-direction: column; gap: .5rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease;
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--card-accent, var(--grad)); opacity: .9;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); text-decoration: none; }
.card .ico { font-size: 2rem; line-height: 1; }
.card h3 { color: var(--text); font-size: 1.2rem; margin-top: .3rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card .go { margin-top: auto; padding-top: .8rem; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: .35rem; }
.card:hover .go { gap: .6rem; }
a.card:hover { color: inherit; }

.tag { font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }

/* ---- "Why" feature row ---------------------------------------------------- */
.features { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.feature { padding: 1.3rem; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--border); }
.feature .ico { font-size: 1.6rem; }
.feature h3 { margin: .5rem 0 .2rem; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ---- Daily promo band ----------------------------------------------------- */
.band {
  background: var(--grad); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem); display: flex; gap: 1.5rem; align-items: center;
  flex-wrap: wrap; justify-content: space-between; box-shadow: var(--shadow-lg);
}
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, .9); margin-top: .4rem; max-width: 46ch; }
.band .btn-ghost { background: rgba(255, 255, 255, .16); color: #fff; border-color: rgba(255, 255, 255, .3); backdrop-filter: blur(4px); }
.band .btn-ghost:hover { background: rgba(255, 255, 255, .26); }

/* ---- Article / prose ------------------------------------------------------ */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 1rem; color: var(--text); }
.prose h2 { margin: 1.8rem 0 .7rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.2rem; }
.prose li { margin-bottom: .4rem; }
.lead-tagline { font-size: clamp(1.1rem, 2.6vw, 1.45rem); color: var(--muted); font-weight: 500; max-width: 60ch; }

/* ---- Tool shell (quiz + calc) --------------------------------------------- */
.tool-head { text-align: center; max-width: 64ch; margin: 0 auto clamp(1.5rem, 4vw, 2.4rem); }
.tool-icon {
  width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center;
  font-size: 2.3rem; margin: 0 auto 1rem;
  background: color-mix(in srgb, var(--accent) 14%, var(--surface)); border: 1px solid var(--border);
}
.tool-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(1.3rem, 4vw, 2.4rem); max-width: 680px; margin-inline: auto;
}

/* progress */
.progress { height: 8px; background: var(--surface-2); border-radius: 999px; overflow: hidden; margin-bottom: 1.4rem; }
.progress > i { display: block; height: 100%; width: 0; background: var(--grad); border-radius: inherit; transition: width .35s cubic-bezier(.4, 0, .2, 1); }
.q-count { text-align: center; font-weight: 700; color: var(--muted); font-size: .9rem; margin-bottom: .6rem; }

.q-text { font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 800; text-align: center; margin-bottom: 1.4rem; letter-spacing: -.02em; }
.options { display: grid; gap: .7rem; }
.option {
  display: flex; align-items: center; gap: .8rem; text-align: left; width: 100%;
  padding: 1rem 1.1rem; border-radius: var(--radius-sm); border: 2px solid var(--border);
  background: var(--surface); color: var(--text); font-weight: 600; font-size: 1.02rem;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.option:hover { border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); background: var(--surface-2); }
.option:active { transform: scale(.99); }
.option .dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); flex: none; display: grid; place-items: center; }
.option.is-correct { border-color: var(--mint); background: color-mix(in srgb, var(--mint) 12%, var(--surface)); }
.option.is-wrong { border-color: #ef4444; background: color-mix(in srgb, #ef4444 12%, var(--surface)); }
.option.is-correct .dot { border-color: var(--mint); background: var(--mint); }
.option.is-wrong .dot { border-color: #ef4444; background: #ef4444; }
.option.is-correct .dot::after { content: "✓"; color: #fff; font-size: .8rem; font-weight: 900; }
.option.is-wrong .dot::after { content: "✕"; color: #fff; font-size: .75rem; font-weight: 900; }
.option:disabled { cursor: default; }
.explain {
  margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border); font-size: .96rem; color: var(--text);
}
.explain b { color: var(--accent); }

/* result */
.result-hero { text-align: center; animation: pop .5s cubic-bezier(.2, .8, .2, 1); }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
.result-badge { font-size: clamp(2.6rem, 9vw, 4.2rem); line-height: 1; }
.result-title { font-size: clamp(1.6rem, 5vw, 2.4rem); margin: .4rem 0 .2rem; }
.result-summary { color: var(--muted); font-size: 1.15rem; max-width: 50ch; margin: .3rem auto 0; }
.score-ring { font-size: clamp(3rem, 12vw, 5rem); font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.result-body { text-align: left; margin-top: 1.4rem; }
.result-body p { margin-bottom: .9rem; }
.result-watchout { padding: 1rem 1.2rem; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--amber) 14%, var(--surface)); border: 1px solid color-mix(in srgb, var(--amber) 35%, var(--border)); font-weight: 600; }
.career-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.career-list li { list-style: none; padding: .45rem .9rem; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); font-size: .92rem; font-weight: 600; }
.result-actions { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; }

/* ---- Calculator inputs ---------------------------------------------------- */
.field { margin-bottom: 1.1rem; }
.field > label { display: block; font-weight: 700; margin-bottom: .4rem; font-size: .98rem; }
.input-wrap { display: flex; align-items: center; border: 2px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .15s ease; }
.input-wrap:focus-within { border-color: var(--accent); }
.input-wrap .affix { padding: 0 .8rem; color: var(--muted); font-weight: 700; background: var(--surface-2); align-self: stretch; display: grid; place-items: center; }
.input-wrap input, .input-wrap select { border: 0; background: transparent; color: var(--text); padding: .85rem .9rem; font-size: 1.05rem; font-weight: 600; width: 100%; }
.input-wrap input:focus, .input-wrap select:focus { outline: none; }
.input-wrap select { cursor: pointer; }
.calc-results { display: grid; gap: .9rem; margin-top: 1.6rem; grid-template-columns: 1fr; }
.stat {
  padding: 1.2rem 1.3rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface-2);
}
.stat .label { color: var(--muted); font-weight: 700; font-size: .9rem; }
.stat .value { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 900; letter-spacing: -.02em; margin-top: .2rem; }
.stat.hero-stat { background: var(--grad); border-color: transparent; color: #fff; box-shadow: var(--shadow-lg); }
.stat.hero-stat .label { color: rgba(255, 255, 255, .85); }
.stat .sub { color: var(--muted); font-size: .88rem; margin-top: .3rem; }
.stat.hero-stat .sub { color: rgba(255, 255, 255, .85); }
.calc-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; text-align: center; }

/* ---- Daily ---------------------------------------------------------------- */
.streak-bar { display: flex; gap: .8rem; justify-content: center; margin-bottom: 1.4rem; flex-wrap: wrap; }
.streak-chip { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); font-weight: 800; }
.streak-chip b { font-size: 1.25rem; }
.emoji-grid { font-size: 1.8rem; letter-spacing: .15rem; text-align: center; margin: 1rem 0; }
.daily-done { text-align: center; padding: 1.5rem; }

/* ---- FAQ ------------------------------------------------------------------ */
.faq { max-width: 70ch; margin-inline: auto; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .2rem 1.1rem; margin-bottom: .7rem; background: var(--surface); }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { font-weight: 700; padding: .9rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 800; font-size: 1.3rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--muted); padding-bottom: .9rem; }

/* ---- Ads ------------------------------------------------------------------ */
.ad-slot { margin: 1.6rem auto; max-width: 720px; text-align: center; min-height: 90px; display: grid; place-items: center; }
.ad-slot .ad-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); opacity: .7; margin-bottom: .3rem; }
.ad-placeholder { width: 100%; border: 1px dashed var(--border); border-radius: var(--radius-sm); color: var(--muted); padding: 1.8rem; background: var(--surface-2); font-size: .85rem; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); margin-top: 3rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr 1fr; padding-block: 2.6rem; }
.footer-brand p { color: var(--muted); margin-top: .6rem; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .8rem; }
.footer-col a { display: block; color: var(--text); padding: .25rem 0; font-weight: 500; font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-block: 1.3rem; display: flex; gap: 1rem; justify-content: space-between; flex-wrap: wrap; align-items: center; }
.footer-bottom p { color: var(--muted); font-size: .85rem; }
.disclaimer { font-size: .8rem; color: var(--muted); opacity: .85; }
.footer-sister { margin-top: .5rem; font-size: .9rem; color: var(--muted); }
.footer-sister a { font-weight: 700; }

/* ---- Sister-site cross-link callout ----------------------------------------- */
.sister-cta {
  display: flex; align-items: center; gap: 1rem; max-width: 680px; margin: 2.5rem auto 0;
  padding: 1.1rem 1.3rem; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface-2); color: var(--text);
  transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.sister-cta:hover { text-decoration: none; border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); transform: translateY(-2px); box-shadow: var(--shadow); }
.sister-cta .ico { font-size: 1.9rem; line-height: 1; flex: none; }
.sister-cta .txt { display: flex; flex-direction: column; flex: 1; }
.sister-cta .txt strong { font-weight: 800; }
.sister-cta .txt span { color: var(--muted); font-size: .95rem; }
.sister-cta .go { font-weight: 700; color: var(--accent); white-space: nowrap; }
@media (max-width: 520px) { .sister-cta { flex-wrap: wrap; } .sister-cta .go { width: 100%; } }

/* ---- Consent banner ------------------------------------------------------- */
.consent {
  position: fixed; inset: auto 1rem 1rem 1rem; z-index: 80; max-width: 460px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.2rem; transform: translateY(150%); transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
.consent.show { transform: none; }
.consent p { font-size: .9rem; color: var(--muted); margin-bottom: .8rem; }
.consent .row { display: flex; gap: .6rem; flex-wrap: wrap; }
.consent .btn { padding: .6rem 1.1rem; font-size: .9rem; }

/* ---- Breadcrumb / back ---------------------------------------------------- */
.crumb { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; display: inline-flex; gap: .4rem; align-items: center; }
.crumb a { color: var(--muted); font-weight: 600; }
.crumb a:hover { color: var(--accent); }

/* ---- Related -------------------------------------------------------------- */
.related { margin-top: 3rem; }

/* ---- Toast ---------------------------------------------------------------- */
.toast { position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 150%); z-index: 90; background: var(--text); color: var(--bg); padding: .8rem 1.3rem; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow-lg); transition: transform .35s cubic-bezier(.2, .8, .2, 1); }
.toast.show { transform: translate(-50%, 0); }

/* ---- 404 ------------------------------------------------------------------ */
.center-page { min-height: 56vh; display: grid; place-content: center; text-align: center; gap: 1rem; }
.center-page .big { font-size: clamp(4rem, 18vw, 9rem); font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- Utilities ------------------------------------------------------------ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1.4rem; }
.stack > * + * { margin-top: 1rem; }

/* ---- Responsive nav ------------------------------------------------------- */
@media (max-width: 760px) {
  .menu-toggle { display: inline-grid; margin-inline-start: auto; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0; margin: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: .6rem var(--pad) 1rem;
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease; z-index: 40;
  }
  .nav.open .nav-links { transform: none; }
  .nav-links a { padding: .9rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .nav-tools { display: flex; gap: .5rem; margin-inline-start: .4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 761px) {
  .menu-toggle { display: none; }
  .nav-tools { display: flex; gap: .5rem; }
}

/* ---- View Transitions ----------------------------------------------------- */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
