:root {
  --bg: #f4f1ea;
  --bg-soft: #fcfaf5;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-tint: rgba(176, 137, 72, 0.07);
  --panel-line: rgba(46, 39, 27, 0.12);
  --ink: #23201a;
  --ink-soft: #5d574c;
  --ink-faint: #938c7e;
  --gold: #a87c33;
  --gold-deep: #876226;
  --gold-soft: #c79a4f;
  --emerald: #1c8f68;
  --violet: #7a6df0;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px -34px rgba(60, 48, 24, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 560px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Editorial paper background ---------- */
.paper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbf9f3 0%, var(--bg) 38%, #efeae0 100%);
  pointer-events: none;
}
.paper__wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 70% at 50% -8%, rgba(199,154,79,0.10), transparent 60%);
}
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: multiply;
}

/* ---------- Shell / stages ---------- */
.shell {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: max(20px, env(safe-area-inset-top)) 20px max(28px, env(safe-area-inset-bottom));
  min-height: 100dvh;
}
.stage { display: none; animation: stageIn 0.6s var(--ease) both; }
.stage--active { display: block; }
@keyframes stageIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Masthead ---------- */
.masthead {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
  padding: 4px 2px 32px;
}
.masthead__rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--panel-line) 18%, var(--panel-line) 82%, transparent);
}
.masthead__name {
  font-family: "Fraunces", serif;
  font-size: 15px; letter-spacing: 0.04em;
  color: var(--ink); font-weight: 600;
  text-transform: uppercase;
}
.masthead__tag {
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}

/* ---------- Intro ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.intro__title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(34px, 10vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.intro__accent {
  font-style: italic;
  color: var(--gold-deep);
}
.intro__lede {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 42ch;
  margin-bottom: 30px;
}

/* ---------- Hero CTA (primary action) ---------- */
.hero-cta {
  position: relative;
  width: 100%;
  text-align: left;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid rgba(168,124,51,0.30);
  background: linear-gradient(180deg, rgba(199,154,79,0.10), rgba(255,255,255,0.85));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius);
  padding: 24px 22px;
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 34px;
}
.hero-cta:active { transform: scale(0.99); }
@media (hover: hover) {
  .hero-cta:hover { transform: translateY(-4px); border-color: rgba(168,124,51,0.55); }
  .hero-cta:hover .hero-cta__glow { opacity: 1; }
  .hero-cta:hover .hero-cta__go { transform: translateX(5px); }
}
.hero-cta__glow {
  position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 15% 0%, rgba(199,154,79,0.16), transparent 70%);
  opacity: 0.6; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.hero-cta__body { position: relative; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.hero-cta__tag {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.hero-cta__title { font-family: "Fraunces", serif; font-size: 27px; font-weight: 600; line-height: 1.1; }
.hero-cta__desc { color: var(--ink-soft); font-size: 14.5px; }
.hero-cta__go {
  position: relative;
  flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px; color: #fbf8f0;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  box-shadow: 0 8px 20px -10px rgba(135,98,38,0.5);
  transition: transform 0.3s var(--ease);
}

/* ---------- Presets (secondary) ---------- */
.presets__label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin-bottom: 14px;
}
.presets .card {
  padding: 16px 18px 15px;
  box-shadow: 0 18px 50px -34px rgba(60, 48, 24, 0.4);
}
.presets .card__title { font-size: 20px; }
.presets .card__desc { font-size: 13.5px; }

/* ---------- Cards ---------- */
.cards { display: flex; flex-direction: column; gap: 14px; }
.card {
  position: relative;
  text-align: left;
  border: 1px solid var(--panel-line);
  background: var(--panel);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 7px;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.card:active { transform: scale(0.985); }
@media (hover: hover) {
  .card:hover { transform: translateY(-4px); border-color: rgba(168,124,51,0.4); }
  .card:hover .card__glow { opacity: 1; }
}
.card__glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 20% 0%, rgba(199,154,79,0.12), transparent 70%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.card__tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.card__title { font-family: "Fraunces", serif; font-size: 24px; font-weight: 600; }
.card__desc { color: var(--ink-soft); font-size: 14.5px; }
.card__meta { color: var(--ink-faint); font-size: 12.5px; margin-top: 2px; }
.card__cta {
  margin-top: 8px; font-weight: 600; font-size: 14px; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}
.card__cta i { transition: transform 0.3s var(--ease); }
@media (hover: hover) { .card:hover .card__cta i { transform: translateX(5px); } }

/* ---------- Tim bio ---------- */
.bio { margin-top: 44px; }
.bio__divider {
  display: block; width: 100%; height: 1px; margin-bottom: 26px;
  background: linear-gradient(90deg, transparent, var(--panel-line) 15%, var(--panel-line) 85%, transparent);
}
.bio__eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 18px;
  text-align: center;
}
.bio__card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 4px;
}
.bio__photo {
  width: min(220px, 62vw); height: auto;
  display: block; margin-bottom: 16px;
  border: 0;
  box-shadow: none;
  filter: none;
  background: transparent;
}
.bio__name { font-family: "Fraunces", serif; font-size: 30px; font-weight: 600; letter-spacing: -0.01em; }
.bio__role {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin-bottom: 14px;
}
.bio__text { color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 46ch; }
.bio__quote {
  font-family: "Fraunces", serif; font-style: italic;
  font-size: 18px; line-height: 1.4; color: var(--ink);
  max-width: 38ch; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid var(--panel-line);
}

/* ---------- Wizard ---------- */
.wizard { display: flex; flex-direction: column; min-height: calc(100dvh - 90px); }
.wizard__top {
  display: flex; align-items: center; gap: 14px; padding: 6px 0 30px;
}
.ghost-btn {
  background: none; border: none; color: var(--ink-soft);
  font: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
  padding: 6px 0; -webkit-tap-highlight-color: transparent;
  transition: color 0.2s;
}
.ghost-btn:hover { color: var(--ink); }
.ghost-btn--center { display: block; margin: 14px auto 0; }
.progress {
  flex: 1; height: 4px; border-radius: 99px;
  background: rgba(46,39,27,0.10); overflow: hidden;
}
.progress__fill {
  display: block; height: 100%; width: 16%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 99px;
  transition: width 0.5s var(--ease);
}
.wizard__count { font-size: 12.5px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }

#wizard-form { flex: 1; position: relative; }
.step { display: none; animation: stepIn 0.5s var(--ease) both; }
.step--active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.step__kicker {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.step__q {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: clamp(26px, 7vw, 34px); line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.step__hint { color: var(--ink-soft); font-size: 15px; margin-bottom: 26px; max-width: 40ch; }

/* ---------- Helper tips ---------- */
.tip {
  display: flex; gap: 11px; margin-top: 22px;
  padding: 13px 15px;
  border: 1px solid var(--panel-line);
  background: var(--panel-tint);
  border-radius: var(--radius-sm);
  font-size: 13.5px; line-height: 1.5; color: var(--ink-soft);
}
.tip__icon {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Fraunces", serif; font-style: italic; font-weight: 600;
  font-size: 12.5px; color: var(--gold-deep);
  background: rgba(168,124,51,0.14);
  border: 1px solid rgba(168,124,51,0.30);
}
.tip strong { color: var(--ink); font-weight: 600; }

/* ---------- Fields ---------- */
.field {
  display: flex; align-items: center;
  border: 1px solid var(--panel-line);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 0 18px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field:focus-within {
  border-color: rgba(232,200,122,0.6);
  box-shadow: 0 0 0 4px rgba(232,200,122,0.10);
}
.field__prefix, .field__suffix { color: var(--ink-faint); font-size: 22px; font-weight: 500; }
.field__suffix { font-size: 16px; }
.field__input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--ink); font: inherit;
  font-family: "Fraunces", serif; font-size: 34px; font-weight: 600;
  padding: 18px 6px; width: 100%;
  font-variant-numeric: tabular-nums;
}
.field__input--rate { padding-left: 0; }

.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.chip {
  border: 1px solid var(--panel-line); background: rgba(255,255,255,0.55);
  color: var(--ink-soft); font: inherit; font-size: 14px; font-weight: 500;
  padding: 9px 16px; border-radius: 99px; cursor: pointer;
  transition: all 0.25s var(--ease); -webkit-tap-highlight-color: transparent;
}
.chip:hover { color: var(--ink); border-color: rgba(46,39,27,0.24); }
.chip.is-active {
  background: rgba(168,124,51,0.12); border-color: var(--gold);
  color: var(--gold-deep);
}

/* ---------- Segmented ---------- */
.seg {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 4px;
}
.seg--stack { grid-template-columns: 1fr; }
.seg__opt {
  border: 1px solid var(--panel-line); background: var(--bg-soft);
  color: var(--ink-soft); font: inherit; font-size: 15px; font-weight: 500;
  padding: 15px 16px; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.25s var(--ease); -webkit-tap-highlight-color: transparent;
}
.seg__opt:hover { color: var(--ink); border-color: rgba(46,39,27,0.24); }
.seg__opt.is-active {
  background: rgba(168,124,51,0.12);
  border-color: var(--gold); color: var(--gold-deep); font-weight: 600;
  box-shadow: 0 0 0 1px var(--gold) inset;
}

/* ---------- Dial (slider block) ---------- */
.dial {
  margin-top: 16px;
  padding: 18px 18px 14px;
  border: 1px solid var(--panel-line);
  background: linear-gradient(180deg, rgba(199,154,79,0.08), rgba(255,255,255,0.6));
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.dial__tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin-bottom: 18px;
}
.dial__tag i { color: var(--gold); font-style: normal; font-size: 14px; }
.dial .slider { margin-top: 2px; }

/* ---------- Slider ---------- */
.slider-wrap { padding-top: 6px; }
.slider-out {
  display: block; font-family: "Fraunces", serif;
  font-size: 56px; font-weight: 600; color: var(--gold);
  margin-bottom: 22px; font-variant-numeric: tabular-nums;
}
.slider-out small { font-family: "Inter"; font-size: 16px; color: var(--ink-soft); font-weight: 500; }
.slider-sub { margin: -12px 0 22px; font-size: 15px; color: var(--ink-soft); }
.slider-sub strong { color: var(--gold); font-weight: 600; font-variant-numeric: tabular-nums; }
.slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 99px; outline: none; cursor: pointer;
  background-color: rgba(46,39,27,0.12);
  background-image: linear-gradient(90deg, var(--gold-deep), var(--gold));
  background-repeat: no-repeat;
  background-size: var(--fill, 0%) 100%;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e7c585, var(--gold) 55%, var(--gold-deep));
  border: 3px solid var(--bg);
  box-shadow: 0 4px 12px rgba(135,98,38,0.35);
  transition: transform 0.2s var(--ease);
}
.slider::-webkit-slider-thumb:active { transform: scale(1.15); }
.slider::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%; border: 3px solid var(--bg);
  background: radial-gradient(circle at 35% 30%, #fff3d4, var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 6px 18px rgba(232,200,122,0.45); cursor: pointer;
}
.slider-scale {
  display: flex; justify-content: space-between; margin-top: 12px;
  font-size: 12px; color: var(--ink-faint); font-variant-numeric: tabular-nums;
}

/* ---------- Buttons ---------- */
.wizard__nav { padding-top: 24px; }
.primary-btn {
  width: 100%; border: none; cursor: pointer;
  font: inherit; font-size: 16px; font-weight: 600; color: #fbf8f0;
  letter-spacing: 0.01em;
  padding: 17px 22px; border-radius: 99px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  box-shadow: 0 12px 28px -14px rgba(135,98,38,0.55);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(135,98,38,0.6); }
.primary-btn:active { transform: translateY(0) scale(0.99); }
.primary-btn i { transition: transform 0.3s var(--ease); }
.primary-btn:hover i { transform: translateX(4px); }

/* ---------- Results ---------- */
.result { padding-top: 8px; }
.result__eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 26px;
}
.result__label { color: var(--ink-soft); font-size: 15px; margin-bottom: 6px; }
.result__figure {
  font-family: "Fraunces", serif; font-weight: 700;
  font-size: clamp(46px, 15vw, 76px); line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.result__figure.pop { animation: pop 0.6s var(--ease); }
@keyframes pop { 0% { transform: scale(0.9); opacity: 0.4; } 60% { transform: scale(1.03); } 100% { transform: scale(1); opacity: 1; } }
.result__sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; max-width: 44ch; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.stat {
  border: 1px solid var(--panel-line); background: var(--panel);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-sm); padding: 16px 16px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat--accent {
  background: linear-gradient(180deg, rgba(28,143,104,0.12), rgba(255,255,255,0.55));
  border-color: rgba(28,143,104,0.30);
}
.stat:last-child { grid-column: 1 / -1; }
.stat__k { font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); }
.stat__v {
  font-family: "Fraunces", serif; font-size: 26px; font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.stat--accent .stat__v { color: var(--emerald); }

/* ---------- Split bar ---------- */
.split { margin-bottom: 30px; }
.split__bar {
  display: flex; height: 16px; border-radius: 99px; overflow: hidden;
  background: rgba(46,39,27,0.08);
}
.split__seg { height: 100%; transition: width 1s var(--ease); width: 0; }
.split__seg--contrib { background: linear-gradient(90deg, #8b8f9c, #b9bdc8); }
.split__seg--growth { background: linear-gradient(90deg, var(--emerald), #7df0c8); }
.split__legend {
  display: flex; gap: 20px; margin-top: 12px;
  font-size: 13px; color: var(--ink-soft);
}
.split__legend span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--contrib { background: #b9bdc8; }
.dot--growth { background: var(--emerald); }

/* ---------- Chart ---------- */
.chart {
  border: 1px solid var(--panel-line); background: var(--panel);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius); padding: 22px 20px 18px; margin-bottom: 28px;
}
.chart__head h3 { font-family: "Fraunces", serif; font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.chart__head p { color: var(--ink-faint); font-size: 13px; margin-bottom: 22px; }
.chart__bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 200px;
}
.bar {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  height: 100%; justify-content: flex-end; min-width: 0;
}
.bar__col {
  width: 100%; max-width: 34px; border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  height: 0; transition: height 0.9s var(--ease);
  position: relative;
}
.bar:last-child .bar__col { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); }
.bar__val {
  font-size: 10.5px; color: var(--ink-soft); font-weight: 600;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.bar__yr { font-size: 11px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }

/* ---------- What-if comparison ---------- */
.whatif {
  border-top: 1px solid var(--panel-line);
  padding-top: 26px; margin-bottom: 30px;
}
.whatif__head h3 { font-family: "Fraunces", serif; font-size: 22px; font-weight: 600; margin-bottom: 5px; }
.whatif__head p { color: var(--ink-faint); font-size: 13.5px; margin-bottom: 18px; max-width: 48ch; }
.whatif__cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.whatif__card {
  display: flex; align-items: baseline; gap: 14px;
  border: 1px solid var(--panel-line);
  background: var(--panel);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.whatif__add {
  flex: none; min-width: 88px;
  font-family: "Fraunces", serif; font-size: 22px; font-weight: 600;
  color: var(--gold-deep); font-variant-numeric: tabular-nums;
}
.whatif__add small { font-family: "Inter"; font-size: 12px; font-weight: 500; color: var(--ink-faint); }
.whatif__end {
  flex: 1; text-align: right;
  font-family: "Fraunces", serif; font-size: 24px; font-weight: 600;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.whatif__lift {
  flex: none; text-align: right; min-width: 96px;
  font-size: 12.5px; font-weight: 600; color: var(--emerald);
  font-variant-numeric: tabular-nums;
}

.result__note {
  font-size: 12.5px; line-height: 1.55; color: var(--ink-faint);
  margin-bottom: 22px; max-width: 50ch;
}

.result__actions { padding-bottom: 10px; }

@media (min-width: 600px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat:last-child { grid-column: auto; }
}

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