/* =================================================================
   1Focus relaunch — "Signal", branded
   Real brand: Plum #461a63 · Fuscia #ad0c7a · Aqua #009ba1 · Lato
   Color hierarchy (60/30/10):
     Plum   = anchor / authority / dark grounds
     Fuscia = action / CTAs / the lighthouse beam
     Aqua   = illumination / highlights / the wave / data
   Hero treatment switches via [data-treatment] on .site:
     plum  (solid plum) · beam (plum + light beam) · light (white)
   ================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }

.site {
  /* brand palette */
  --plum: #461a63;
  --plum-deep: #2f1145;
  --fuscia: #ad0c7a;
  --aqua: #009ba1;
  --lavender: #ded6da;

  --bg: #ffffff;
  --bg-2: #f6f3f8;
  --surface: #ffffff;
  --ink: #241433;
  --ink-2: #6a6276;
  --ink-3: #9a93a5;
  --line: #e9e3ee;
  --line-strong: #1c1228;

  --accent: var(--fuscia);
  --accent-2: var(--aqua);
  --accent-ink: #ffffff;

  --hero-bg: var(--plum);
  --hero-ink: #ffffff;

  --chip-bg: #f3eef7;
  --chip-ink: #4a3b59;

  --font-display: "Lato", system-ui, sans-serif;
  --font-body: "Lato", system-ui, sans-serif;
  --font-mono: "Lato", system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(36,20,51,.05), 0 10px 34px rgba(36,20,51,.07);
  --shadow-lg: 0 34px 80px -34px rgba(36,20,51,.30);

  --display-spacing: -0.025em;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.site ::selection { background: var(--fuscia); color: #fff; }

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fuscia); font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: var(--display-spacing); line-height: 1.04; margin: 0; }
h1 { font-weight: 900; }
h2, .h-sec { font-weight: 900; }
h3 { font-weight: 700; }
.h-sec { font-size: clamp(30px, 4vw, 50px); letter-spacing: -.03em; }
.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--ink-2); max-width: 56ch; font-weight: 400; }
.muted { color: var(--ink-2); }

/* ---------- buttons ---------- */
.btn {
  --bh: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--bh); padding: 0 26px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .15s ease, background-color .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--fuscia); color: #fff; }
.btn--primary:hover { box-shadow: 0 12px 30px -8px color-mix(in srgb, var(--fuscia) 65%, transparent); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--fuscia); color: var(--fuscia); }
.btn--sm { --bh: 44px; padding: 0 20px; font-size: 14px; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12.5px; font-weight: 600; letter-spacing: .01em;
  padding: 6px 12px; border-radius: 7px; background: var(--chip-bg); color: var(--chip-ink);
  border: 1px solid color-mix(in srgb, var(--plum) 10%, transparent);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; transition: background-color .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
/* at top: sits over hero, transparent */
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__logo { height: 50px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: 14.5px; font-weight: 600; text-decoration: none; position: relative; padding: 4px 0; color: var(--nav-link, #fff); opacity: .85; }
.nav__link:hover { opacity: 1; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--aqua); transition: width .22s ease; }
.nav__link:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }

/* scrolled: solid white */
.nav.is-stuck { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav.is-stuck .nav__link { color: var(--ink); opacity: .8; }
.nav.is-stuck .nav__link:hover { opacity: 1; color: var(--fuscia); }
/* logo swap */
.brand__logo--white { display: block; }
.brand__logo--color { display: none; }
.nav.is-stuck .brand__logo--white { display: none; }
.nav.is-stuck .brand__logo--color { display: block; }
/* light hero treatment: nav over white hero shows dark text + color logo from the start */
.site[data-treatment="light"] .nav:not(.is-stuck) .nav__link { color: var(--ink); }
.site[data-treatment="light"] .nav:not(.is-stuck) .brand__logo--white { display: none; }
.site[data-treatment="light"] .nav:not(.is-stuck) .brand__logo--color { display: block; }
@media (max-width: 860px) { .nav__links { display: none; } }

/* ---------- hero ---------- */
.hero { background: var(--hero-bg); color: var(--hero-ink); position: relative; overflow: hidden; margin-top: -84px; padding-top: 84px; }
.hero__in { padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(60px, 8vw, 108px); position: relative; z-index: 3; }
.hero h1 { font-size: clamp(46px, 7.6vw, 98px); font-weight: 900; letter-spacing: -.035em; line-height: .98; }
.hero h1 .l2 { display: block; color: var(--aqua); }
.hero__sub { margin-top: 28px; font-size: clamp(18px, 1.7vw, 22px); max-width: 60ch; color: color-mix(in srgb, var(--hero-ink) 78%, transparent); font-weight: 400; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero .btn--ghost { color: #fff; border-color: color-mix(in srgb, #fff 36%, transparent); }
.hero .btn--ghost:hover { border-color: #fff; color: #fff; }
.hero .eyebrow { color: var(--aqua); }

/* trust strip */
.trust { background: var(--plum-deep); }
.trust__in { display: flex; align-items: center; gap: 20px 34px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; }
.trust__label { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: color-mix(in srgb, #fff 52%, transparent); white-space: nowrap; }
.trust__logos { display: flex; flex-wrap: wrap; gap: 18px 36px; align-items: center; flex: 1; }
.trust__logo { width: auto; opacity: .8; transition: opacity .2s, transform .2s; display: block; }
.trust__logo:hover { opacity: 1; transform: translateY(-1px); }
.trust__lockup { display: inline-flex; align-items: center; gap: 10px; }
.trust__word { font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: 25px; color: #fff; letter-spacing: -.005em; line-height: 1; }

/* ---------- maturity ---------- */
.mat { display: grid; gap: 34px; }
.mat__head { max-width: 60ch; }
.mat__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mat__stage {
  text-align: left; cursor: pointer; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 18px 18px; position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s; font-family: inherit; color: inherit;
}
.mat__stage:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mat__stage.is-active { border-color: var(--fuscia); }
.mat__stage.is-active::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--fuscia), var(--aqua)); }
.mat__bar { height: 4px; border-radius: 999px; background: var(--line); margin-bottom: 16px; overflow: hidden; }
.mat__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--fuscia), var(--aqua)); border-radius: 999px; transition: width .5s cubic-bezier(.2,.7,.2,1); }
.mat__k { font-weight: 900; font-size: 21px; letter-spacing: -.02em; }
.mat__num { font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: .04em; }
.mat__blurb { margin-top: 8px; color: var(--ink-2); font-size: 14.5px; min-height: 3.2em; }
@media (max-width: 760px) { .mat__track { grid-template-columns: repeat(2, 1fr); } }

/* ---------- gap ---------- */
.gap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.gap__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.gap__list li { display: flex; gap: 13px; align-items: baseline; font-size: 16.5px; }
.gap__list .dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--fuscia); transform: translateY(-1px); }
@media (max-width: 820px) { .gap { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 30px 26px; position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .25s, border-color .25s;
}
.svc::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--fuscia), var(--aqua)); transform: scaleY(0); transform-origin: top; transition: transform .3s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc:hover::before { transform: scaleY(1); }
.svc__n { font-weight: 900; font-size: 15px; color: var(--fuscia); letter-spacing: .04em; }
.svc__t { font-size: 23px; margin: 14px 0 10px; font-weight: 900; letter-spacing: -.02em; }
.svc__d { color: var(--ink-2); font-size: 15.5px; margin-bottom: 18px; }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- capabilities (systems shipped) ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cap {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 30px; position: relative; transition: transform .2s, box-shadow .25s, border-color .25s;
}
.cap:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.cap__t { font-size: 20px; font-weight: 900; color: var(--plum); letter-spacing: -.02em; margin: 0 0 10px; }
.cap__t::before { content: ""; display: block; width: 30px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--aqua), var(--fuscia)); margin-bottom: 16px; }
.cap__d { color: var(--ink-2); font-size: 15px; margin: 0; }
@media (max-width: 760px) { .cap-grid { grid-template-columns: 1fr; } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 22px 4px; border-top: 4px solid var(--aqua); }
.stat:nth-child(2) { border-top-color: var(--fuscia); }
.stat:nth-child(3) { border-top-color: var(--plum); }
.stat__v { font-weight: 900; font-size: clamp(34px, 4.6vw, 56px); letter-spacing: -.04em; line-height: 1; color: var(--plum); }
.stat__l { color: var(--ink-2); font-size: 14px; margin-top: 8px; }
@media (max-width: 680px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- work ---------- */
.work-list { display: grid; border-top: 1px solid var(--line); }
.work {
  display: grid; grid-template-columns: 0.8fr 1.4fr auto; gap: 28px; align-items: center;
  padding: 30px 8px; border-bottom: 1px solid var(--line); transition: background-color .25s, padding .25s; position: relative;
}
.work:hover { background: var(--bg-2); padding-left: 22px; padding-right: 22px; }
.work__client { font-weight: 900; font-size: 25px; letter-spacing: -.025em; color: var(--plum); }
.work__domain { font-size: 12px; font-weight: 700; color: var(--fuscia); text-transform: uppercase; letter-spacing: .14em; margin-top: 6px; }
.work__d { color: var(--ink-2); font-size: 15.5px; }
.work__result { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.work__metric { white-space: nowrap; font-size: 12.5px; font-weight: 700; color: var(--aqua); border: 1.5px solid color-mix(in srgb, var(--aqua) 35%, transparent); padding: 7px 13px; border-radius: 8px; }
@media (max-width: 820px) { .work { grid-template-columns: 1fr; gap: 10px; } .work__metric { justify-self: start; } }

/* ---------- approach ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--plum); }
.step__n { font-weight: 900; font-size: 14px; color: var(--fuscia); letter-spacing: .04em; }
.step__t { font-size: 20px; margin: 12px 0 8px; font-weight: 900; letter-spacing: -.02em; }
.step__d { color: var(--ink-2); font-size: 15px; }
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; } }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 820px; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 8px; }
.plan.is-featured { border-color: var(--plum); background: color-mix(in srgb, var(--plum) 4%, var(--surface)); }
.plan__name { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--fuscia); }
.plan__price { font-weight: 900; font-size: 44px; letter-spacing: -.03em; color: var(--plum); }
.plan__price span { font-size: 15px; font-weight: 600; color: var(--ink-2); letter-spacing: 0; }
.plan__d { color: var(--ink-2); font-size: 15px; flex: 1; margin: 6px 0 18px; }
@media (max-width: 680px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about__photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(160deg, var(--plum), var(--plum-deep)); border: 1px solid var(--line);
  display: flex; align-items: flex-end; padding: 22px;
}
.about__photo .ph { font-size: 12px; font-weight: 600; color: color-mix(in srgb, #fff 55%, transparent); position: relative; z-index: 2; }
.about__photo::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(color-mix(in srgb, var(--aqua) 40%, transparent) 1.2px, transparent 1.2px); background-size: 17px 17px; opacity: .3; }
.about__photo.has-img { padding: 0; }
.about__photo.has-img::after { display: none; }
.about__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about__name { font-size: clamp(30px, 3.6vw, 42px); font-weight: 900; color: var(--plum); letter-spacing: -.03em; }
.about__role { font-size: 13px; font-weight: 700; color: var(--fuscia); text-transform: uppercase; letter-spacing: .14em; margin: 10px 0 18px; }
.about__cred { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.about__cred li { display: flex; gap: 12px; align-items: baseline; color: var(--ink-2); font-size: 15.5px; }
.about__cred li::before { content: ""; flex: none; width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--aqua); transform: translateY(2px); }
@media (max-width: 780px) { .about { grid-template-columns: 1fr; } .about__photo { aspect-ratio: 4/5; max-width: 300px; margin-inline: auto; } }

/* ---------- contact ---------- */
.contact { background: linear-gradient(125deg, var(--plum), var(--fuscia)); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 72px); position: relative; overflow: hidden; }
.contact h2 { font-size: clamp(34px, 5vw, 60px); font-weight: 900; }
.contact__sub { max-width: 52ch; margin: 18px 0 0; font-size: 19px; color: rgba(255,255,255,.88); }
.contact__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 56px); align-items: center; position: relative; z-index: 2; }
.contact__form { display: grid; gap: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); padding: 22px; backdrop-filter: blur(6px); }
.field { display: grid; gap: 6px; }
.field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.8); }
.field input, .field textarea { font-family: var(--font-body); font-size: 15px; color: #fff; background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.26); border-radius: 10px; padding: 12px 14px; outline: none; transition: border-color .2s, background-color .2s; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.55); }
.field input:focus, .field textarea:focus { border-color: #fff; background: rgba(0,0,0,.28); }
.contact__meta { display: grid; gap: 14px; }
.contact__meta a, .contact__meta span { color: #fff; text-decoration: none; display: flex; gap: 10px; align-items: center; font-size: 16px; }
.contact__meta .k { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .72; width: 64px; }
.btn--on-accent { background: #fff; color: var(--fuscia); }
.btn--on-accent:hover { box-shadow: 0 12px 30px -10px rgba(0,0,0,.4); transform: translateY(-2px); }
.contact__deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .6; }
.contact__deco::before { content: ""; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%; background: radial-gradient(closest-side, rgba(0,155,161,.5), transparent 70%); filter: blur(40px); }
.sent { display: flex; align-items: center; gap: 12px; font-size: 17px; padding: 8px 0; }
.sent .ok { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--fuscia); display: grid; place-items: center; font-size: 14px; font-weight: 900; flex: none; }
@media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.foot { background: var(--plum-deep); color: #fff; padding: 52px 0 44px; }
.foot__in { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; align-items: flex-start; }
.foot__logo { height: 56px; width: auto; }
.foot__links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot__links a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 14.5px; font-weight: 600; }
.foot__links a:hover { color: var(--aqua); }
.foot__legal { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 22px; }

/* =================================================================
   HERO TREATMENTS
   ================================================================= */
/* plum (default) — solid, authoritative */
.site[data-treatment="plum"] .hero__deco {
  background:
    radial-gradient(1000px 520px at 88% -10%, color-mix(in srgb, var(--fuscia) 42%, transparent), transparent 62%),
    radial-gradient(760px 420px at 6% 116%, color-mix(in srgb, var(--aqua) 30%, transparent), transparent 64%);
  opacity: .85;
}

/* beam — the lighthouse beam, most distinctive */
.site[data-treatment="beam"] { --hero-bg: #2f1145; }
.site[data-treatment="beam"] .hero h1 .l2 {
  background: linear-gradient(100deg, var(--fuscia) 5%, #ff5cc0 38%, var(--aqua) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site[data-treatment="beam"] .hero__deco::before {
  content: ""; position: absolute; left: -6%; top: -28%; width: 150%; height: 88%;
  background: conic-gradient(from 78deg at 12% 30%,
    transparent 0deg,
    color-mix(in srgb, var(--fuscia) 46%, transparent) 8deg,
    color-mix(in srgb, var(--aqua) 22%, transparent) 20deg,
    transparent 34deg);
  filter: blur(8px); opacity: .55; transform-origin: 12% 30%;
  animation: sweep 14s ease-in-out infinite alternate;
}
.site[data-treatment="beam"] .hero__deco::after {
  content: ""; position: absolute; left: 8%; top: 22%; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 30px 10px color-mix(in srgb, var(--fuscia) 70%, transparent), 0 0 90px 30px color-mix(in srgb, var(--fuscia) 40%, transparent);
}
@keyframes sweep { from { transform: rotate(-7deg); } to { transform: rotate(6deg); } }

/* light — airy, white hero, nods to brand-guide Lato-Light */
.site[data-treatment="light"] { --hero-bg: #ffffff; --hero-ink: var(--ink); }
.site[data-treatment="light"] .hero h1 .l2 { color: var(--fuscia); }
.site[data-treatment="light"] .hero .eyebrow { color: var(--fuscia); }
.site[data-treatment="light"] .hero__sub { color: var(--ink-2); }
.site[data-treatment="light"] .hero .btn--ghost { color: var(--ink); border-color: var(--line-strong); }
.site[data-treatment="light"] .hero .btn--ghost:hover { color: var(--fuscia); border-color: var(--fuscia); }
.site[data-treatment="light"] .hero { border-bottom: 1px solid var(--line); }
.site[data-treatment="light"] .hero__deco {
  background:
    radial-gradient(900px 480px at 92% -16%, color-mix(in srgb, var(--fuscia) 12%, transparent), transparent 60%),
    radial-gradient(700px 420px at 0% 120%, color-mix(in srgb, var(--aqua) 10%, transparent), transparent 62%);
}

/* small phones: keep the oversized hero headline inside the padded container */
@media (max-width: 520px) {
  .hero h1 { font-size: clamp(38px, 12vw, 60px); }
}

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