/* ============================================================
   Scratcher — Fiction Tribe brand system
   Beige light theme, ink text, purple accent. Gilroy + Space Mono.
   ============================================================ */

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --ft-beige: #FEF7ED;
  --ft-ink: #131313;
  --ft-purple: #4C00FF;
  --ft-purple-deep: #4605DE;
  --ft-aqua: #278DD8;
  --ft-blue: #3680F6;
  --ft-red: #FF562F;
  --ft-orange: #D99A01;
  --ft-green: #2F8F5B;
  --gilroy: 'Gilroy', 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease-ft: cubic-bezier(0.13, 0.6, 0.23, 0.98);
  --hairline: rgba(19, 19, 19, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ft-beige);
  color: var(--ft-ink);
  font-family: var(--gilroy);
  font-weight: 400;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* faint 64px grid over the beige, same as the rest of the tool family */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(19,19,19,0.043) 1px, transparent 1px),
    linear-gradient(rgba(19,19,19,0.043) 1px, transparent 1px);
  background-size: 64px 64px;
}
::selection { background: var(--ft-purple); color: var(--ft-beige); }

main, header.site, footer.site { position: relative; z-index: 1; }

a { color: inherit; }
button { font: inherit; letter-spacing: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }

.micro {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: relative; z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px 18px;
}
@media (min-width: 1024px) { .site-header { padding: 26px 40px 20px; } }

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wordmark .logo-img { display: block; height: 48px; width: auto; }
@media (min-width: 1024px) { .wordmark .logo-img { height: 56px; } }
.brand-tag {
  margin-top: 14px;
  max-width: 44ch;
  color: rgba(19,19,19,0.85);
}
.header-side {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-shrink: 0;
}
.counter { text-align: right; }
.counter .label { color: rgba(19,19,19,0.65); }
.counter .value {
  font-family: var(--mono);
  font-size: 30px;
  line-height: 1;
  margin-top: 4px;
  color: var(--ft-purple);
}

/* ============================================================
   Layout
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .wrap { padding: 0 40px; } }

main { flex: 1; }

.hero { padding: 40px 0 8px; }
.hero h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.02;
}
.hero h2 em { font-style: normal; color: var(--ft-purple); }
.hero p {
  margin-top: 16px;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(19,19,19,0.8);
}
.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 7px 16px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  background: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(19,19,19,0.7);
}
.privacy-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ft-green);
}

/* ============================================================
   Buttons — pills, 3px borders, purple on hover
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border: 3px solid var(--ft-ink);
  border-radius: 100px;
  background: transparent;
  color: var(--ft-ink);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s var(--ease-ft), color 0.25s var(--ease-ft), border-color 0.25s var(--ease-ft), opacity 0.25s;
}
.btn:hover { background: var(--ft-purple); border-color: var(--ft-purple); color: var(--ft-beige); }
.btn--purple { background: var(--ft-purple); border-color: var(--ft-purple); color: var(--ft-beige); }
.btn--purple:hover { background: var(--ft-purple-deep); border-color: var(--ft-purple-deep); }
.btn--sm { padding: 7px 18px; font-size: 0.85rem; border-width: 2px; }
.btn:disabled { opacity: 0.3; pointer-events: none; }
.btn:focus-visible, .tab:focus-visible, a:focus-visible {
  outline: 2px solid var(--ft-purple);
  outline-offset: 2px;
}

/* ============================================================
   Tabs
   ============================================================ */
.tabs {
  display: flex;
  gap: 10px;
  margin: 30px 0 18px;
}
.tab {
  padding: 10px 24px;
  border: 3px solid var(--ft-ink);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s var(--ease-ft), color 0.25s var(--ease-ft), border-color 0.25s var(--ease-ft);
}
.tab[aria-selected="true"] {
  background: var(--ft-ink);
  color: var(--ft-beige);
}
.tab:not([aria-selected="true"]):hover {
  background: var(--ft-purple);
  border-color: var(--ft-purple);
  color: var(--ft-beige);
}
.panel[hidden] { display: none; }

/* ============================================================
   Panels / cards
   ============================================================ */
.card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--hairline);
  border-radius: 8px;
}

textarea#textInput {
  width: 100%;
  min-height: 260px;
  resize: vertical;
  padding: 18px 20px;
  border: 1px solid rgba(19,19,19,0.25);
  border-radius: 8px;
  background: rgba(255,255,255,0.7);
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ft-ink);
  transition: border-color 0.25s var(--ease-ft);
}
textarea#textInput:focus { outline: none; border-color: var(--ft-purple); }
textarea#textInput::placeholder { color: rgba(19,19,19,0.35); }

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 16px 0;
}
.opt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(19,19,19,0.75);
  user-select: none;
}
.opt input {
  appearance: none;
  width: 17px; height: 17px;
  border: 2px solid var(--ft-ink);
  border-radius: 4px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s var(--ease-ft), border-color 0.2s var(--ease-ft);
  flex-shrink: 0;
}
.opt input:checked { background: var(--ft-purple); border-color: var(--ft-purple); }
.opt input:checked::after {
  content: "";
  width: 9px; height: 5px;
  border-left: 2px solid var(--ft-beige);
  border-bottom: 2px solid var(--ft-beige);
  transform: translateY(-1px) rotate(-45deg);
}
.opt input:disabled { opacity: 0.55; cursor: default; }
.opt input:disabled + span { opacity: 0.55; }

.sample-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ft-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease-ft);
}
.sample-link:hover { color: var(--ft-purple-deep); }

/* ---- verification summary ---- */
.verify { margin-top: 16px; padding: 16px 20px; }
.verify__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 12px;
}
.verify__head .micro { color: var(--ft-purple); }
.verify__scanned {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(19,19,19,0.55);
}
.verify ul {
  list-style: none;
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .verify ul { grid-template-columns: 1fr 1fr; } }
.verify li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
}
.verify .v-ico {
  flex-shrink: 0;
  min-width: 22px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 100px;
}
.v-ok .v-ico { background: rgba(47,143,91,0.15); color: var(--ft-green); }
.v-hit .v-ico { background: var(--ft-purple); color: var(--ft-beige); }
.v-off { opacity: 0.45; }
.v-off .v-ico { background: rgba(19,19,19,0.1); color: var(--ft-ink); }
.verify .v-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(19,19,19,0.5);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---- results ---- */
.results { margin-top: 26px; }
.result-stat {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.result-stat .num { color: var(--ft-purple); font-family: var(--mono); }
.result-stat.clean .num { color: var(--ft-green); }

.findings {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.finding {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  padding: 10px 16px;
}
.finding .cp {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ft-purple);
  min-width: 74px;
}
.finding .name { font-weight: 500; font-size: 0.95rem; }
.finding .count {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(19,19,19,0.6);
  margin-left: auto;
}
.badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  color: #fff;
}
.badge--invisible { background: var(--ft-purple); }
.badge--bidi      { background: var(--ft-red); }
.badge--space     { background: var(--ft-aqua); }
.badge--punct     { background: var(--ft-orange); }
.badge--exif      { background: var(--ft-orange); }
.badge--xmp       { background: var(--ft-blue); }
.badge--icc       { background: var(--ft-aqua); }
.badge--c2pa      { background: var(--ft-red); }
.badge--other     { background: rgba(19,19,19,0.55); }

.preview {
  margin-top: 18px;
  padding: 18px 20px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 340px;
  overflow: auto;
}
.preview mark {
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 1px 6px;
  margin: 0 1px;
  border-radius: 4px;
  color: var(--ft-beige);
  background: var(--ft-purple);
  vertical-align: 0.12em;
}
.preview mark.m-bidi  { background: var(--ft-red); }
.preview mark.m-space { background: var(--ft-aqua); }
.preview mark.m-punct { background: var(--ft-orange); color: var(--ft-ink); }
.preview-label { margin-top: 20px; color: rgba(19,19,19,0.5); }

/* ---- before/after compare ---- */
.compare { margin-top: 18px; }
.compare .preview { margin-top: 0; }
.compare-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 10px;
}
.segmented--sm .seg { padding: 6px 16px; font-size: 0.8rem; }
.legend { display: inline-flex; gap: 8px; }
.lg {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}
.lg-del { background: rgba(255,86,47,0.16); color: #a03214; text-decoration: line-through; }
.lg-chg { background: rgba(217,154,1,0.2); color: #7a5600; }
.lg-add { background: rgba(47,143,91,0.16); color: #1d6b41; }
.legend-note { margin-left: auto; color: rgba(19,19,19,0.45); }

/* after-view marks for the scratch pass: a struck chip where an invisible
   character was removed, a highlight on what a space/punct became */
.preview mark.af-del {
  background: rgba(255,86,47,0.16);
  color: #a03214;
  text-decoration: line-through;
}
.preview mark.af-chg {
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
  padding: 0 2px;
  margin: 0;
  border-radius: 3px;
  background: rgba(217,154,1,0.28);
  color: var(--ft-ink);
}

/* word-diff marks for the deep rewrite: inline text highlights, not chips */
.preview mark.df {
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
  padding: 0 1px;
  margin: 0;
  border-radius: 3px;
}
.preview mark.df-del { background: rgba(255,86,47,0.16); color: #a03214; text-decoration: line-through; }
.preview mark.df-chg { background: rgba(217,154,1,0.24); color: var(--ft-ink); }
.preview mark.df-add { background: rgba(47,143,91,0.18); color: #14532d; }

/* ============================================================
   Dropzone + file cards
   ============================================================ */
.dropzone {
  border: 2px dashed rgba(19,19,19,0.35);
  border-radius: 8px;
  background: rgba(255,255,255,0.45);
  padding: 58px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s var(--ease-ft), background 0.25s var(--ease-ft);
}
.dropzone:hover, .dropzone.is-over {
  border-color: var(--ft-purple);
  background: rgba(76,0,255,0.05);
}
.dropzone h3 { font-size: 1.25rem; }
.dropzone p { margin-top: 8px; color: rgba(19,19,19,0.6); font-size: 0.92rem; }
.dropzone .micro { display: block; margin-top: 14px; color: rgba(19,19,19,0.45); }

.file-cards { margin-top: 20px; display: grid; gap: 14px; }
.file-card { padding: 18px 20px; }
.file-card .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.file-card .fname { font-weight: 700; font-size: 1.02rem; word-break: break-all; }
.file-card .fsize {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(19,19,19,0.6);
}
.file-card .top .btn { margin-left: auto; }
.file-card ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 6px;
}
.file-card li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(19,19,19,0.85);
}
.file-card .note {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(19,19,19,0.55);
}
.file-card .clean-line { margin-top: 12px; font-weight: 500; color: var(--ft-green); }

/* ============================================================
   Info sections
   ============================================================ */
.section { padding: 64px 0 0; }
.section > .eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ft-purple);
  margin-bottom: 12px;
}
.section h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); line-height: 1.08; }
.section .lede {
  margin-top: 12px;
  max-width: 64ch;
  line-height: 1.6;
  color: rgba(19,19,19,0.75);
}

.grid-cards {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-cards.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.info-card {
  padding: 22px;
  border-top: 3px solid var(--accent, var(--ft-purple));
}
.info-card .micro { color: var(--accent, var(--ft-purple)); }
.info-card h3 { margin-top: 10px; font-size: 1.12rem; }
.info-card p { margin-top: 8px; font-size: 0.92rem; line-height: 1.6; color: rgba(19,19,19,0.75); }

.honest-note {
  margin-top: 14px;
  padding: 18px 22px;
  border-left: 3px solid var(--ft-ink);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(19,19,19,0.8);
}

/* ============================================================
   Deep rewrite (Layer B) — server-side Gemini pass
   ============================================================ */
.deep {
  margin-top: 34px;
  padding: 26px;
  border-top: 3px solid var(--ft-purple);
}
.deep__head .micro { color: var(--ft-purple); }
.deep__head h3 { margin-top: 10px; font-size: 1.3rem; letter-spacing: -0.02em; }
.deep__head em { font-style: normal; color: var(--ft-purple); }
.deep__head p {
  margin-top: 10px;
  max-width: 64ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(19,19,19,0.78);
}
.deep__controls {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.segmented {
  display: inline-flex;
  border: 2px solid var(--ft-ink);
  border-radius: 100px;
  overflow: hidden;
}
.seg {
  padding: 9px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ft-ink);
  transition: background 0.25s var(--ease-ft), color 0.25s var(--ease-ft);
}
.seg + .seg { border-left: 2px solid var(--ft-ink); }
.seg[aria-checked="true"] { background: var(--ft-ink); color: var(--ft-beige); }
.seg:not([aria-checked="true"]):hover { background: rgba(76,0,255,0.08); color: var(--ft-purple); }
.deep__note {
  margin-top: 14px;
  color: rgba(19,19,19,0.5);
  max-width: 70ch;
  line-height: 1.6;
}
#rewriteResults:not(:empty) { margin-top: 22px; }
.rewrite-out {
  padding: 20px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ft-ink);
}
.rewrite-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 14px;
}
.rewrite-head .stat { font-weight: 700; margin-right: auto; }
.rewrite-head .stat .num { color: var(--ft-purple); font-family: var(--mono); }
.rewrite-error {
  padding: 16px 20px;
  border-left: 3px solid var(--ft-red);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(19,19,19,0.85);
}
.spinner {
  display: inline-block;
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--ft-beige);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -2px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- more from the lab ---- */
.tool-cards {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .tool-cards { grid-template-columns: 1fr 1fr; } }

.tool-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  text-decoration: none;
  transition: border-color 0.25s var(--ease-ft), transform 0.25s var(--ease-ft);
}
.tool-card:hover { border-color: var(--ft-purple); transform: translateY(-2px); }
.tool-card .micro { color: rgba(19,19,19,0.5); }
.tool-card h3 { margin-top: 12px; font-size: 1.5rem; }
.tool-card p { margin-top: 10px; font-size: 0.97rem; line-height: 1.6; color: rgba(19,19,19,0.75); flex: 1; }
.tool-card .open {
  margin-top: 18px;
  font-weight: 700;
  color: var(--ft-purple);
}
.tool-card:hover .open { text-decoration: underline; text-underline-offset: 4px; }

.tool-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tool-links a {
  color: rgba(19,19,19,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease-ft);
}
.tool-links a:hover { color: var(--ft-purple); }

/* ============================================================
   Footer — always dark
   ============================================================ */
.site-footer {
  margin-top: 80px;
  background: var(--ft-ink);
  color: #fff;
  padding: 48px 24px;
}
@media (min-width: 1024px) { .site-footer { padding: 48px 40px; } }
.site-footer .cols {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.site-footer .jp {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-footer .blurb {
  margin-top: 12px;
  max-width: 60ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}
.site-footer .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.site-footer .runs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ft-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s var(--ease-ft);
}
.ft-credit:hover { color: #fff; }
.ft-credit .micro { letter-spacing: 0.18em; font-size: 11px; }
.ft-credit svg { height: 14px; width: auto; }
.footer-nav {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease-ft);
}
.footer-nav a:hover { color: #fff; }
.footer-nav .current { color: rgba(255,255,255,0.45); }

@media (max-width: 640px) {
  .site-header { flex-direction: column; }
  .header-side { width: 100%; justify-content: space-between; flex-direction: row-reverse; }
  .header-links { align-items: flex-start; }
  .counter { text-align: left; }
}

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