/* ============================================================================
   FactoryOS — marketing site
   Dark industrial theme · Swiss grid · engineering-drawing motifs.
   The scroll film (scrub-engine.js) carries the spectacle; the chrome stays quiet.
   ========================================================================== */

/* ----------  Self-hosted fonts  ---------- */
@font-face {
  font-family: "Archivo";
  font-style: normal; font-weight: 400 600; font-display: swap;
  src: url("fonts/archivo-600.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/archivo-700.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/public-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/public-sans-500.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/jetbrains-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/jetbrains-mono-500.woff2") format("woff2");
}

/* ----------  Tokens (also feed the engine's --sw-* vars; unlayered wins over @layer sw)  ---------- */
:root,
.sw-root {
  --bg: #101318;          /* == the measured film background (avg of rendered scenes) — seamless posters */
  --ink: #F2EFE7;
  --ink-soft: #AEB4BC;    /* steel-tinted secondary, never flat gray */
  --accent: #FF6A00;
  --steel: #3E5C76;
  --hairline: rgba(242, 239, 231, 0.12);
  --hairline-strong: rgba(242, 239, 231, 0.20);

  --font-display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Public Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Feed the engine */
  --sw-bg: var(--bg);
  --sw-ink: var(--ink);
  --sw-ink-soft: var(--ink-soft);
  --sw-accent: var(--accent);
  --sw-font-display: var(--font-display);
  --sw-font-body: var(--font-body);
}

/* ----------  Base  ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; }
p { margin: 0; }
a { color: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

:where(a, button, .block):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  transform: translateY(-160%);
  background: var(--accent); color: #15181D;
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500;
  padding: 10px 16px; border-radius: 6px; text-decoration: none;
  transition: transform 0.16s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ----------  Fixed nav (our single, minimal top nav)  ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: clamp(14px, 2.2vw, 22px) clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(21, 24, 29, 0.82) 0%, rgba(21, 24, 29, 0.42) 62%, rgba(21, 24, 29, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.nav__mark { display: block; flex: none; }
.nav__word {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.12rem; letter-spacing: -0.01em;
}
.nav__right { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); }
.nav__mail {
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.01em;
  color: var(--ink-soft); text-decoration: none;
  transition: color 0.16s ease;
}
.nav__mail:hover { color: var(--ink); }
.nav__cta {
  font-family: var(--font-display); font-weight: 500; font-size: 0.9rem;
  color: #15181D; background: var(--accent);
  padding: 10px 18px; border-radius: 999px; text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.28);
}

/* ----------  Engine theme overrides (dark-theme corrections; engine file untouched)  ---------- */
/* We provide our own fixed nav, so suppress the engine's built-in topbar. */
.sw-topbar { display: none !important; }
.sw-copy__num { display: none !important; } /* user call 2026-07-30: no 01/06 section counters */

/* Mono numerals + eyebrows to match the data/engineering voice. */
.sw-copy__num { font-family: var(--font-mono); }
.sw-copy__eyebrow {
  font-family: var(--font-mono);
  font-weight: 500; letter-spacing: 0.14em;
}
.sw-copy__title { letter-spacing: -0.02em; text-wrap: balance; }

/* Dark-theme tags: hairline chips, not light pills. */
.sw-copy__tags li {
  font-family: var(--font-mono); font-weight: 400;
  font-size: 0.76rem; letter-spacing: 0.02em;
  color: var(--ink);
  background: color-mix(in srgb, var(--sw-accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--sw-accent) 42%, transparent);
  border-radius: 4px; padding: 6px 11px;
}

/* Dark-theme film CTA button: charcoal-on-orange, not white-on-cream. */
.sw-btn--primary { color: #15181D; background: var(--accent); }
.sw-btn--ghost {
  color: var(--ink);
  border: 1.5px solid color-mix(in srgb, var(--ink) 30%, transparent);
}

/* UA default button padding pushed the 9px dot ~3.5px off the rail's center line. */
.sw-route__dot { padding: 0; }

/* Dark-theme route hover label. */
.sw-route__label {
  color: var(--ink);
  background: color-mix(in srgb, #15181D 90%, transparent);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(6px);
}

/* ----------  Post-film content sits above the pinned film  ---------- */
.below {
  position: relative; z-index: 80;
  background: var(--bg);
}

.wrap {
  width: min(100% - clamp(36px, 10vw, 128px), 1200px);
  margin-inline: auto;
}

.section { padding-block: clamp(84px, 12vh, 168px); }
.section + .section { padding-top: 0; }

.section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.1rem, 1.3rem + 3.6vw, 4.5rem);
  line-height: 1.02; letter-spacing: -0.025em;
  text-wrap: balance;
}
.section__head { max-width: 44rem; margin-bottom: clamp(40px, 6vh, 72px); }
.section__lede {
  margin-top: 22px; max-width: 62ch;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  color: var(--ink-soft);
}
.accent-text { color: var(--accent); }

/* Scroll-reveal (progressive: hidden state only applies when JS is present). */
.js .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ----------  The idea  ---------- */
.idea__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
  margin-top: clamp(36px, 5vh, 60px);
}
.idea__resolve {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.4rem);
  line-height: 1.18; letter-spacing: -0.015em;
  text-wrap: balance;
}
.pains { list-style: none; margin: 0; padding: 0; }
.pain { padding: 22px 0; border-top: 1px solid var(--hairline); }
.pain:last-child { border-bottom: 1px solid var(--hairline); }
.pain__label {
  display: block; margin-bottom: 8px;
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
}
.pain p { color: var(--ink-soft); max-width: 46ch; }

/* ----------  Proof stats band  ---------- */
.proof { padding-block: clamp(56px, 8vh, 104px); }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  padding: clamp(28px, 3vw, 44px) clamp(16px, 2.4vw, 40px);
  display: flex; flex-direction: column; gap: 10px;
}
.stat + .stat { border-left: 1px solid var(--hairline); }
.stat__tick { width: 34px; height: 2px; background: var(--accent); }
.stat__figure {
  font-family: var(--font-mono); font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.4rem, 1.4rem + 3.4vw, 4rem);
  line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.stat__label { font-size: 0.94rem; color: var(--ink-soft); }
.proof__note {
  margin-top: 22px; max-width: 60ch;
  font-family: var(--font-mono); font-size: 0.82rem;
  letter-spacing: 0.01em; color: var(--ink-soft);
}

/* ----------  The blocks (engineering spec-sheet grid)  ---------- */
.blocks-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline);
}
.js .blocks-grid.reveal.is-visible .block {
  opacity: 1; transform: none;
}
.js .blocks-grid.reveal .block {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i) * 42ms);
}
.block {
  background: var(--bg);
  padding: clamp(22px, 2.2vw, 32px);
  display: flex; flex-direction: column; gap: 10px;
  outline: 1px solid transparent; outline-offset: -1px;
  transition: background-color 0.18s ease, outline-color 0.18s ease;
}
.block__idx {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: color 0.18s ease;
}
.block__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.16rem; letter-spacing: -0.01em; color: var(--ink);
}
.block__desc { font-size: 0.95rem; color: var(--ink-soft); }
.block:hover {
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
  outline-color: var(--accent);
}
.block:hover .block__idx { color: var(--accent); }
.block--missing {
  grid-column: 1 / -1;
  padding: 0;
  outline: 1px dashed var(--hairline-strong); outline-offset: -7px;
}
.block--missing .block__fill {
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(26px, 2.6vw, 38px);
  height: 100%; box-sizing: border-box;
  color: inherit; text-decoration: none;
  max-width: 44rem;
}
.block--missing .block__idx { color: var(--accent); font-size: 1rem; }
.block--missing .block__go {
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--accent); margin-top: 8px; width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.block--missing .block__go::after { content: " \2192"; }
.block--missing:hover {
  outline: 1px dashed var(--accent); outline-offset: -7px;
  background: color-mix(in srgb, var(--accent) 7%, var(--bg));
}
.block--missing:hover .block__go { border-color: var(--accent); }

/* ----------  How it works  ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.steps__line {
  position: absolute; left: 0; right: 0; top: 7px; height: 1px;
  background: color-mix(in srgb, var(--accent) 55%, transparent);
  transform-origin: left center;
}
.js .steps.reveal .steps__line { transform: scaleX(0); transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.js .steps.reveal.is-visible .steps__line { transform: scaleX(1); }
.step { position: relative; padding-top: 26px; }
.step::before {
  content: ""; position: absolute; top: 3px; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
}
.step__num {
  display: block; font-family: var(--font-mono); font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.1em; color: var(--ink-soft);
  margin-bottom: 12px;
}
.step__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.2rem; letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 8px;
}
.step__desc { font-size: 0.96rem; color: var(--ink-soft); max-width: 26ch; }

/* ----------  CTA  ---------- */
.cta { padding-bottom: clamp(100px, 14vh, 180px); }
.cta__wrap { max-width: 46rem; }
.cta__title { font-size: clamp(2.4rem, 1.4rem + 4.4vw, 5.2rem); }
.cta__body {
  margin-top: 24px; max-width: 54ch;
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem); color: var(--ink-soft);
}
.cta__button {
  display: inline-block; margin-top: 40px;
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  color: #15181D; background: var(--accent);
  padding: 18px 34px; border-radius: 999px; text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.30);
}
.cta__mail { margin-top: 26px; font-family: var(--font-mono); font-size: 0.9rem; color: var(--ink-soft); }
.cta__mail-label { opacity: 0.7; }
.cta__mail a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--hairline-strong); }
.cta__mail a:hover { color: var(--accent); border-color: var(--accent); }

/* ----------  Footer  ---------- */
.site-footer {
  position: relative; z-index: 80; overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(56px, 9vh, 104px);
}
.footer-main {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  justify-content: space-between; gap: clamp(32px, 5vw, 72px);
}
.footer-brand { max-width: 30rem; }
.footer-mark { display: block; height: auto; margin-bottom: 28px; }
.footer-statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.footer-cols { display: flex; gap: clamp(40px, 6vw, 96px); flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.footer-mail {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 2px; width: fit-content;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.footer-mail:hover { color: var(--accent); border-color: var(--accent); }
.footer-cta-link, .footer-col nav a, nav.footer-col a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 0.94rem; width: fit-content;
  transition: color 0.16s ease;
}
.footer-cta-link:hover, nav.footer-col a:hover { color: var(--accent); }
.footer-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 12px;
  margin-top: clamp(40px, 6vh, 72px);
  padding-block: 22px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--ink-soft);
}
.footer-meta a { color: var(--ink-soft); text-decoration: none; transition: color 0.16s ease; }
.footer-meta a:hover { color: var(--accent); }
.footer-watermark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(64px, 14.5vw, 250px);
  line-height: 0.78; text-align: center;
  color: #171B22;
  letter-spacing: -0.03em;
  margin-bottom: -0.12em;
  user-select: none; pointer-events: none;
  white-space: nowrap;
}

/* ----------  Intro loader  ---------- */
html.is-loading { overflow: hidden; }
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.7s;
}
.loader--open { opacity: 0; transform: scale(1.55); visibility: hidden; pointer-events: none; }
.loader__stage { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader__mark { overflow: visible; filter: drop-shadow(0 0 0 rgba(255, 106, 0, 0)); animation: lp-glow 0.9s ease 1.5s; }
.loader .lp { opacity: 0; }
.lp-left   { animation: lp-in-left  0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; }
.lp-right  { animation: lp-in-right 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.32s forwards; }
.lp-top    { animation: lp-in-top   0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards; }
.lp-slot   { animation: lp-in-fade  0.4s ease 0.68s forwards; }
.lp-module { animation: lp-drop     0.55s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards; }
.loader__word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0; transform: translateY(14px);
  animation: lp-word 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.62s forwards;
}
@keyframes lp-in-left  { from { opacity: 0; transform: translate(-13px, 9px); }  to { opacity: 1; transform: none; } }
@keyframes lp-in-right { from { opacity: 0; transform: translate(13px, 9px); }   to { opacity: 1; transform: none; } }
@keyframes lp-in-top   { from { opacity: 0; transform: translateY(-11px); }      to { opacity: 1; transform: none; } }
@keyframes lp-in-fade  { from { opacity: 0; }                                    to { opacity: 1; } }
@keyframes lp-drop     { from { opacity: 0; transform: translateY(-24px); }      to { opacity: 1; transform: none; } }
@keyframes lp-word     { from { opacity: 0; transform: translateY(14px); }       to { opacity: 1; transform: none; } }
@keyframes lp-glow     { 40% { filter: drop-shadow(0 6px 22px rgba(255, 106, 0, 0.45)); } 100% { filter: drop-shadow(0 0 0 rgba(255, 106, 0, 0)); } }
@media (prefers-reduced-motion: reduce) { .loader { display: none; } }

/* ----------  Responsive  ---------- */
@media (max-width: 900px) {
  .idea__grid { grid-template-columns: 1fr; }
  .blocks-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps__line { display: none; }
}
@media (max-width: 560px) {
  .nav__mail { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--hairline); }
  .blocks-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

/* ----------  Reduced motion — content parity, no reveal transforms  ---------- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .blocks-grid.reveal .block { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js .steps.reveal .steps__line { transform: scaleX(1) !important; transition: none !important; }
  .nav__cta, .cta__button, .block, .nav__mail, .footer-mail, .footer-cta-link, nav.footer-col a, .footer-meta a { transition: none !important; }
}

/* ----------  Lead intake form  ---------- */
.lead { margin-top: 40px; max-width: 46rem; }
.lead__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
.lead__field { display: flex; flex-direction: column; gap: 8px; }
.lead__field--full { margin-top: 22px; }
.lead__label {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.lead__input {
  background: transparent; border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  color: var(--ink); font: inherit; font-size: 1rem;
  padding: 8px 2px; border-radius: 0;
  transition: border-color 0.16s ease;
}
.lead__input:focus-visible { outline: none; border-color: var(--accent); }
textarea.lead__input { border: 1px solid var(--hairline-strong); padding: 10px 12px; resize: vertical; }
.lead__chipset { border: 0; margin: 28px 0 0; padding: 0; }
.lead__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chip span {
  display: inline-block; padding: 8px 14px;
  border: 1px solid var(--hairline-strong); border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-soft);
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
  cursor: pointer; user-select: none;
}
.chip input:checked + span {
  border-color: var(--accent); color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.lead__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead__actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.lead__status { font-size: 0.9rem; color: var(--ink-soft); max-width: 26rem; }
.lead__status a { color: var(--accent); }
.lead__done { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--ink); }
.lead__done-mark { color: var(--accent); margin-right: 8px; }
@media (max-width: 640px) { .lead__grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .lead__input, .chip span { transition: none !important; } }
