/* ============================================================
   K-T AUTOMOTIVE MOBILE MECHANICS
   Composition: clashing warm neons on near-black · book spread
   with turn-page mechanic · mixed-weight collage headline ·
   dictated-quote signature · view-transition section changes ·
   one signature colour reveal on section markers.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #171717;
  --ink: #ffffff;
  --ink-soft: #b9b3b0;
  --ink-faint: #7d7876;
  --line: #2a2724;

  --accent-a: #ff2f92;   /* magenta */
  --accent-b: #ff8a00;   /* acid orange */
  --accent-c: #f4ff33;   /* electric yellow */
  --signal: #ffffff;

  --gutter-w: 4px;
  --radius: 2px;
  --maxw: 1440px;
  --pad: clamp(1.15rem, 4vw, 3.25rem);

  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease: cubic-bezier(.2, .7, .1, 1);
}

/* Light mode — same neon family, inverted ground. */
html[data-theme="light"] {
  --bg: #f6f2ee;
  --bg-2: #ffffff;
  --bg-3: #efe9e3;
  --ink: #0d0b0a;
  --ink-soft: #4a4441;
  --ink-faint: #7a736f;
  --line: #ddd4cc;
  --accent-a: #d4006e;
  --accent-b: #c25c00;
  --accent-c: #a89b00;
  --signal: #0d0b0a;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.0625rem);
  line-height: 1.62;
  font-variation-settings: "wdth" 100, "wght" 400;
  overflow-x: hidden;
  text-wrap: pretty;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3 { margin: 0; line-height: 1.02; text-wrap: balance; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent-c); color: #0a0a0a;
  padding: .7rem 1.1rem; font-weight: 700;
}
.skip:focus { left: .5rem; top: .5rem; }

:focus-visible {
  outline: 3px solid var(--accent-c);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- VIEW TRANSITIONS (cross-section reveal) ---------- */
@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: vt-out 320ms var(--ease) both;
}
::view-transition-new(root) {
  animation: vt-in 420ms var(--ease) both;
}
@keyframes vt-out {
  to { opacity: 0; transform: translateX(-2.5%) scale(.985); }
}
@keyframes vt-in {
  from { opacity: 0; transform: translateX(2.5%) scale(.985); }
}

/* ---------- TOP BAR ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .7rem var(--pad);
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; margin-right: auto;
}
.brand__mark {
  font-family: var(--font-mono);
  font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  background: var(--accent-a); color: #fff;
  padding: .42rem .5rem; border-radius: var(--radius);
  line-height: 1;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong {
  font-size: .95rem;
  font-variation-settings: "wdth" 88, "wght" 700;
}
.brand__text em {
  font-style: normal; font-size: .72rem; color: var(--ink-faint);
  font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase;
}

.nav {
  display: flex; gap: 1.15rem; flex-wrap: wrap;
  font-size: .82rem; font-family: var(--font-mono);
  letter-spacing: .02em;
}
.nav a {
  text-decoration: none; color: var(--ink-soft);
  padding: .55rem .1rem; position: relative;
  transition: color 180ms var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: .35rem;
  height: 2px; background: var(--accent-b);
  transition: right 240ms var(--ease);
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }

.topbar__actions { display: flex; align-items: center; gap: .5rem; }

.callbtn {
  display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none; line-height: 1.1;
  background: var(--accent-b); color: #0a0a0a;
  padding: .5rem .85rem; border-radius: var(--radius);
  min-height: 44px; justify-content: center;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}
.callbtn:hover, .callbtn:focus-visible { background: var(--accent-c); transform: translateY(-1px); }
.callbtn__label {
  font-family: var(--font-mono); font-size: .6rem;
  text-transform: uppercase; letter-spacing: .1em; opacity: .75;
}
.callbtn__num {
  font-weight: 700; font-size: .92rem;
  font-variation-settings: "wdth" 92, "wght" 700;
}

.theme-toggle {
  width: 44px; height: 44px; flex: 0 0 44px;
  border: 1px solid var(--line); background: var(--bg-2);
  border-radius: var(--radius); cursor: pointer;
  display: grid; place-items: center;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.theme-toggle:hover { border-color: var(--accent-a); }
.theme-toggle__icon {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--ink);
  box-shadow: inset -5px -3px 0 0 var(--bg-2);
  transition: box-shadow 220ms var(--ease), background 220ms var(--ease);
}
html[data-theme="light"] .theme-toggle__icon {
  box-shadow: inset 0 0 0 0 var(--bg-2), 0 0 0 3px color-mix(in srgb, var(--accent-b) 45%, transparent);
  background: var(--accent-b);
}

/* ---------- BOOK SPREAD LAYOUT ---------- */
.spread {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--pad);
  border-bottom: 1px solid var(--line);
  view-transition-name: none;
}

.spread__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.gutter { display: none; }

.page { min-width: 0; }

/* ---------- COVER ---------- */
.spread--cover { padding-top: clamp(2rem, 5vw, 4rem); }

.eyebrow {
  font-family: var(--font-mono); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: 1.4rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-a);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-a) 70%, transparent);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-a) 65%, transparent); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* Mixed-weight collage headline */
.collage {
  font-size: clamp(2.7rem, 11.5vw, 6.4rem);
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  display: flex; flex-wrap: wrap;
  column-gap: .22em; row-gap: .02em;
}
.collage .w { display: inline-block; }
.collage .w1 { font-variation-settings: "wdth" 78, "wght" 300; }
.collage .w2 { font-variation-settings: "wdth" 100, "wght" 800; color: var(--accent-b); }
.collage .w3 { font-variation-settings: "wdth" 82, "wght" 400; }
.collage .w4 { font-variation-settings: "wdth" 100, "wght" 800; }
.collage .w5 { font-variation-settings: "wdth" 75, "wght" 200; font-style: italic; }
.collage .w6 {
  font-variation-settings: "wdth" 100, "wght" 800;
  color: var(--accent-a);
}

.lede {
  font-size: clamp(1.02rem, 1.1vw + .8rem, 1.2rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}

.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.2rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .8rem 1.4rem;
  font-family: var(--font-mono); font-size: .82rem;
  letter-spacing: .04em; text-decoration: none;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: background 180ms var(--ease), color 180ms var(--ease),
              border-color 180ms var(--ease), transform 180ms var(--ease);
}
.btn--primary {
  background: var(--accent-a); color: #fff; font-weight: 600;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--signal); color: var(--bg); transform: translateY(-2px);
}
.btn--ghost {
  border-color: var(--line); color: var(--ink); background: transparent;
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--accent-b); color: var(--accent-b);
}
.btn--sm { min-height: 44px; padding: .6rem 1.05rem; font-size: .76rem; }
.btn--wide { width: 100%; }

.trust {
  display: grid; gap: .9rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.trust li { display: flex; align-items: baseline; gap: .8rem; }
.trust strong {
  font-family: var(--font-mono); font-size: .95rem;
  color: var(--accent-c); flex: 0 0 auto; min-width: 3.4rem;
}
.trust span { font-size: .88rem; color: var(--ink-soft); }

/* ---------- PLATES / IMAGES ---------- */
.plate { margin: 0; }
.plate img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--line);
  filter: saturate(1.05) contrast(1.04);
}
.plate figcaption {
  font-family: var(--font-mono); font-size: .7rem;
  color: var(--ink-faint); margin-top: .6rem; line-height: 1.5;
}
.plate--tall img { aspect-ratio: 4 / 3; object-fit: cover; }
.plate--mini img { aspect-ratio: 4 / 3; object-fit: cover; }

.mini-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .9rem; margin-top: 1.1rem;
}

/* ---------- DICTATED QUOTE (signature) ---------- */
.quote-card {
  margin-top: 1.6rem;
  border-left: 3px solid var(--accent-b);
  padding: .3rem 0 .3rem 1.15rem;
}
.quote-card--alt { border-left-color: var(--accent-a); }

.dictated {
  font-size: clamp(1.15rem, 1.6vw + .8rem, 1.6rem);
  line-height: 1.28;
  font-variation-settings: "wdth" 92, "wght" 500;
  letter-spacing: -.01em;
  margin: 0 0 .6rem;
}
.dictated span {
  display: inline-block;
  opacity: 0;
  transform: translateY(.35em);
  animation: dictate-in 420ms var(--ease) both;
  animation-delay: calc(var(--d, 0) * 1ms);
}
@keyframes dictate-in {
  to { opacity: 1; transform: translateY(0); }
}
.dictated::after {
  content: "";
  display: inline-block;
  width: .5ch; height: 1em;
  background: var(--accent-c);
  vertical-align: -.12em;
  margin-left: .12em;
  animation: caret 1.05s steps(1, end) infinite;
}
@keyframes caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.quote-card__by {
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--ink-faint); margin: 0;
}

/* ---------- SECTION MARKERS + SIGNATURE REVEAL ---------- */
.section-marker {
  font-family: var(--font-mono); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.1rem;
}
.accent-block {
  display: inline-block;
  background: var(--accent-c);
  color: #0a0a0a;
  font-weight: 600;
  padding: .22rem .5rem;
  border-radius: var(--radius);
  transform-origin: left center;
  animation: revealFromLeft 800ms var(--ease) both;
  animation-timeline: view();
  animation-range: entry 0% cover 26%;
}
@keyframes revealFromLeft {
  from { transform: scaleX(.06); opacity: .25; }
  to { transform: scaleX(1); opacity: 1; }
}

.h2 {
  font-size: clamp(1.75rem, 4.4vw, 3rem);
  font-variation-settings: "wdth" 88, "wght" 700;
  letter-spacing: -.025em;
  margin-bottom: 1.2rem;
}

.body { color: var(--ink-soft); max-width: 58ch; }

.note {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-a);
  background: var(--bg-2);
  padding: 1rem 1.15rem;
  font-size: .9rem;
  color: var(--ink-soft);
  max-width: 58ch;
}
.note strong { color: var(--ink); }

/* ---------- SERVICES ---------- */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--line); }

.svc {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
  position: relative;
  transition: padding-left 220ms var(--ease);
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent-b);
  transform: scaleY(0); transform-origin: top;
  transition: transform 260ms var(--ease);
}
.svc:hover { padding-left: 1rem; }
.svc:hover::before { transform: scaleY(1); }

.svc h3 {
  font-size: 1.12rem;
  font-variation-settings: "wdth" 92, "wght" 700;
  margin-bottom: .45rem;
}
.svc p { font-size: .9rem; color: var(--ink-soft); margin-bottom: .5rem; }
.svc__meta {
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--accent-c); margin: 0;
}

/* ---------- STEPS ---------- */
.steps { display: grid; gap: 1.5rem; margin-top: 1.6rem; }
.steps li { display: flex; gap: 1rem; }
.steps__n {
  font-family: var(--font-mono); font-size: .8rem; font-weight: 600;
  flex: 0 0 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--accent-a); color: var(--accent-a);
  border-radius: 50%;
}
.steps h3 {
  font-size: 1.05rem;
  font-variation-settings: "wdth" 92, "wght" 700;
  margin-bottom: .35rem;
}
.steps p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- FACTS ---------- */
.facts {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.facts li {
  display: flex; flex-wrap: wrap; gap: .3rem 1rem;
  padding: .8rem 0; border-bottom: 1px solid var(--line);
  font-size: .88rem;
}
.facts span {
  font-family: var(--font-mono); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-faint); flex: 0 0 6.5rem;
}
.facts strong { font-weight: 500; color: var(--ink); }

/* ---------- AREA ---------- */
.area-list { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.area-list li {
  padding: .95rem 0; border-bottom: 1px solid var(--line);
}
.area-list strong {
  display: block; font-size: .98rem;
  font-variation-settings: "wdth" 92, "wght" 700;
  margin-bottom: .2rem;
}
.area-list span { font-size: .86rem; color: var(--ink-soft); }

.map-card {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.3rem 1.25rem;
  border-radius: var(--radius);
}
.map-card h3 {
  font-size: 1rem;
  font-variation-settings: "wdth" 92, "wght" 700;
  margin-bottom: .4rem;
}
.map-card p { font-size: .88rem; color: var(--ink-soft); margin-bottom: .9rem; }
.map-card__hint {
  font-family: var(--font-mono); font-size: .7rem;
  color: var(--ink-faint); margin: .9rem 0 0;
}

/* ---------- HOURS ---------- */
.hours {
  width: 100%; border-collapse: collapse; margin-top: 1.5rem;
  font-size: .9rem;
}
.hours th, .hours td {
  text-align: left; padding: .72rem 0;
  border-bottom: 1px solid var(--line);
}
.hours th {
  font-weight: 500; color: var(--ink-soft);
  font-family: var(--font-mono); font-size: .78rem;
  letter-spacing: .04em;
}
.hours td {
  text-align: right; color: var(--accent-c);
  font-family: var(--font-mono); font-size: .78rem;
}

/* ---------- CONTACT CARD ---------- */
.contact-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, var(--accent-a), var(--accent-b), var(--accent-c));
}
.contact-card__kicker {
  font-family: var(--font-mono); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-faint); margin-bottom: .35rem;
}
.contact-card__phone {
  display: block;
  font-size: clamp(1.6rem, 5.5vw, 2.5rem);
  font-variation-settings: "wdth" 88, "wght" 800;
  letter-spacing: -.02em;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 1.4rem;
  transition: color 180ms var(--ease);
}
.contact-card__phone:hover, .contact-card__phone:focus-visible { color: var(--accent-b); }

.contact-card__list { margin: 0 0 1.5rem; display: grid; gap: .95rem; }
.contact-card__list dt {
  font-family: var(--font-mono); font-size: .68rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-faint); margin-bottom: .18rem;
}
.contact-card__list dd { margin: 0; font-size: .92rem; color: var(--ink-soft); }

.contact-card__fine {
  font-family: var(--font-mono); font-size: .7rem;
  color: var(--ink-faint); margin: .9rem 0 0; line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--pad) 4.5rem;
}
.site-footer__inner {
  display: grid; gap: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.site-footer__brand { display: flex; gap: .75rem; align-items: flex-start; }
.site-footer__brand strong {
  font-size: .95rem;
  font-variation-settings: "wdth" 90, "wght" 700;
}
.site-footer__brand p {
  font-size: .82rem; color: var(--ink-soft); margin: .3rem 0 0;
}
.site-footer__brand a { color: var(--accent-b); text-decoration: none; }
.site-footer__brand a:hover { text-decoration: underline; }

.site-footer__nav {
  display: flex; flex-wrap: wrap; gap: .5rem 1.15rem;
  font-family: var(--font-mono); font-size: .76rem;
}
.site-footer__nav a {
  color: var(--ink-soft); text-decoration: none;
  padding: .35rem 0;
}
.site-footer__nav a:hover { color: var(--accent-c); }

.site-footer__legal {
  font-family: var(--font-mono); font-size: .68rem;
  color: var(--ink-faint); margin: 0;
}

.claim-wrap { margin: 1.6rem 0 0; }
.claim-banner {
  display: inline-block;
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--ink-soft);
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: .55rem .85rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}
.claim-banner:hover, .claim-banner:focus-visible {
  border-color: var(--accent-b); color: var(--ink);
}

.muted.attribution {
  position: static;
  margin: 1.1rem 0 0;
  font-family: var(--font-mono);
  font-size: .68rem;
  opacity: .55;
}
.muted.attribution a { color: inherit; text-decoration: none; }
.muted.attribution a:hover { text-decoration: underline; }

/* ============================================================
   BOOK SPREAD — wide screens get the two-page spread + spine
   ============================================================ */
@media (min-width: 900px) {
  .spread__inner {
    grid-template-columns: 1fr var(--gutter-w) 1fr;
    gap: 0;
    align-items: start;
  }

  .gutter {
    display: block;
    align-self: stretch;
    width: var(--gutter-w);
    background: linear-gradient(
      180deg,
      transparent,
      var(--line) 8%,
      var(--line) 92%,
      transparent
    );
    position: relative;
  }
  .gutter::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--bg) 92%, #000) 0%,
      transparent 45%,
      transparent 55%,
      color-mix(in srgb, var(--bg) 92%, #000) 100%
    );
  }

  .page--left { padding-right: clamp(1.5rem, 3.2vw, 3.25rem); }
  .page--right { padding-left: clamp(1.5rem, 3.2vw, 3.25rem); }

  .spread--cover .page--right { padding-top: .4rem; }
}

/* Turn-page mechanic: sections slide in from the spine as they enter */
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .page--left {
    animation: turn-left 700ms var(--ease) both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  .page--right {
    animation: turn-right 700ms var(--ease) both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes turn-left {
    from { opacity: 0; transform: translateX(-2.2%) rotateY(3deg); }
    to { opacity: 1; transform: none; }
  }
  @keyframes turn-right {
    from { opacity: 0; transform: translateX(2.2%) rotateY(-3deg); }
    to { opacity: 1; transform: none; }
  }
}

/* ---------- MID RANGE ---------- */
@media (min-width: 620px) and (max-width: 899px) {
  .trust { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .trust li { flex-direction: column; gap: .2rem; }
  .trust strong { min-width: 0; }
  .mini-grid { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__inner { grid-template-columns: 1fr auto; align-items: start; }
  .site-footer__legal { grid-column: 1 / -1; }
}

/* ---------- WIDE ---------- */
@media (min-width: 1100px) {
  .collage { font-size: clamp(3.6rem, 6.6vw, 6.4rem); }
  .svc-list { grid-template-columns: 1fr; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .dictated span { opacity: 1; transform: none; }
  .dictated::after { display: none; }
  .accent-block { transform: none; opacity: 1; }
  .dot { animation: none; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: view()) {
  .dictated span { opacity: 1; transform: none; }
  .accent-block { transform: none; opacity: 1; }
}
