/* FomoRobo — 1-bit pixel UI. Two colours only: ink (white) on paper (black). */

@font-face { font-family: 'Silkscreen'; src: url('../fonts/silkscreen-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Silkscreen'; src: url('../fonts/silkscreen-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'VT323'; src: url('../fonts/vt323-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }

:root {
  --ink: #ffffff;
  --paper: #000000;
  --px: 4px;
  --display: 'Silkscreen', ui-monospace, monospace;
  --body: 'VT323', ui-monospace, monospace;
  --dither: repeating-conic-gradient(var(--ink) 0 25%, transparent 0 50%) 0 0 / 4px 4px;
  --cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 11 11' shape-rendering='crispEdges'%3E%3Cpath fill='%23000' d='M0 0h2v1h1v1h1v1h1v1h1v1h1v1h1v1H5v1h1v1h1v2H5v-1H4V9H3v1H2v1H0z'/%3E%3Cpath fill='%23fff' d='M1 1h1v1h1v1h1v1h1v1h1v1h1v1H4v1h1v1h1v1H5V9H4V8H3v1H2v1H1z'/%3E%3C/svg%3E") 0 0, auto;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 22px;
  line-height: 1.25;
  cursor: var(--cursor);
  -webkit-font-smoothing: none;
  font-smooth: never;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--paper); }
a { color: inherit; }
img, svg { display: block; }
button, input { font: inherit; color: inherit; }
strong { font-weight: 400; background: var(--ink); color: var(--paper); padding: 0 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 50; background: var(--ink); color: var(--paper); padding: 8px 12px; font-family: var(--display); }
.skip:focus { left: 8px; }

#stars { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; image-rendering: pixelated; }

/* ---------- pixel primitives ---------- */
.px {
  background: var(--paper);
  box-shadow:
    0 calc(-1 * var(--px)) 0 0 var(--ink),
    0 var(--px) 0 0 var(--ink),
    calc(-1 * var(--px)) 0 0 0 var(--ink),
    var(--px) 0 0 0 var(--ink);
  margin: var(--px);
}
.dither-shadow { position: relative; }
/* dithered drop shadow: the box shifted 14px, clipped to the L-shaped strip that sticks out
   past the 4px pixel border, so it never sits under the content */
.dither-shadow::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  background: var(--dither);
  pointer-events: none;
  -webkit-clip-path: polygon(calc(100% - 10px) 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 10px), calc(100% - 10px) calc(100% - 10px));
  clip-path: polygon(calc(100% - 10px) 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 10px), calc(100% - 10px) calc(100% - 10px));
}
.icon { width: 24px; height: 24px; flex: none; }
.btn .icon { width: 16px; height: 16px; }
.btn-small .icon { width: 14px; height: 14px; }
.bot { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  padding: 13px 18px;
  min-height: 44px;
  margin: var(--px);
  cursor: pointer;
  box-shadow:
    0 calc(-1 * var(--px)) 0 0 var(--ink),
    0 var(--px) 0 0 var(--ink),
    calc(-1 * var(--px)) 0 0 0 var(--ink),
    var(--px) 0 0 0 var(--ink),
    8px 8px 0 0 var(--ink);
  transition: none;
  user-select: none;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn:active { transform: translate(4px, 4px); box-shadow:
    0 calc(-1 * var(--px)) 0 0 var(--ink),
    0 var(--px) 0 0 var(--ink),
    calc(-1 * var(--px)) 0 0 0 var(--ink),
    var(--px) 0 0 0 var(--ink),
    4px 4px 0 0 var(--ink); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--paper); color: var(--ink); }
.btn[disabled], .btn[aria-disabled='true'] {
  cursor: not-allowed;
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
  outline: 4px dashed var(--ink);
  outline-offset: -4px;
  transform: none;
}
.btn-small { font-size: 12px; padding: 10px 12px; min-height: 40px; }
:focus-visible { outline: 4px dashed var(--ink); outline-offset: 6px; }
.btn:focus-visible { outline-offset: 8px; }

/* ---------- top bar ---------- */
.demo-badge {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  z-index: 40; font-family: var(--display); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  background: var(--ink); color: var(--paper); padding: 8px 12px; white-space: nowrap;
}
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 24px;
  background: var(--paper);
  border-bottom: 4px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-bot { width: 48px; height: 48px; }
.brand-bot svg { width: 100%; height: 100%; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: 2px; }
.nav { display: flex; gap: 6px; }
.nav a {
  font-family: var(--display); font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none; padding: 10px 12px;
}
.nav a:hover { background: var(--ink); color: var(--paper); }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.btn-menu { display: none; }
.user-chip { display: flex; align-items: center; gap: 10px; padding: 6px 12px 6px 6px; text-decoration: none; }
.user-chip:hover { background: var(--ink); color: var(--paper); }
.user-chip .avatar { width: 32px; height: 32px; }
.chip-name { font-family: var(--display); font-size: 13px; }
.chip-status { font-family: var(--display); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.chip-status .icon { width: 16px; height: 16px; }

.avatar { image-rendering: pixelated; filter: grayscale(1) contrast(40) brightness(1.1); background: var(--ink); object-fit: cover; }
.avatar-bot { background: var(--paper); }
.avatar-bot svg { width: 100%; height: 100%; }

/* ---------- hero ---------- */
.hero { padding: 56px 0 0; border-bottom: 4px solid var(--ink); overflow: hidden; }
.hero-row {
  max-width: 1296px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr minmax(0, 720px) 1fr; align-items: center; gap: 24px;
}
.hero-bot { display: flex; justify-content: center; }
.hero-bot .bot { width: 224px; height: 224px; }
.hero-bot svg { width: 100%; height: 100%; }
.hero-copy { text-align: center; background: var(--paper); padding: 8px 0; }
.hero-title { margin: 0 auto; width: 100%; color: var(--ink); }
.title-art { position: relative; display: block; width: 720px; max-width: 100%; margin: 0 auto; }
.title-art .pixel-text { position: relative; width: 100%; height: auto; }
/* dithered drop shadow: a screen-aligned 2px checker, masked by the same letters shifted one font pixel */
.title-shadow {
  position: absolute; inset: 0; background: var(--dither);
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.hero-tag {
  font-family: var(--display); font-size: clamp(14px, 2.2vw, 22px); letter-spacing: 3px; text-transform: uppercase;
  margin: 22px 0 10px;
}
.hero-sub { max-width: 560px; margin: 0 auto 26px; font-size: 24px; }
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }

.marquee { border-top: 4px dashed var(--ink); padding: 18px 0 8px; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: march 60s linear infinite; }
.marquee-track .bot { width: 96px; height: 96px; flex: none; margin-right: 28px; } /* margin, not gap: keeps the -50% loop seamless */
.marquee-track .bot svg { width: 100%; height: 100%; }
@keyframes march { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats {
  max-width: 1240px; margin: 0 auto; padding: 64px 24px 8px;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 22px 12px; text-align: center; }
.stat-num { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 3vw, 34px); }
.stat-label { font-size: 20px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- sections ---------- */
.section { max-width: 1240px; margin: 0 auto; padding: 88px 24px 8px; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.section-title {
  font-family: var(--display); font-weight: 700; font-size: clamp(26px, 4vw, 40px);
  text-transform: uppercase; letter-spacing: 2px; margin: 0;
  display: flex; align-items: center; gap: 16px;
}
.section-title::before { content: ''; width: 20px; height: 20px; background: var(--ink); box-shadow: 8px 8px 0 0 var(--paper), 8px 8px 0 4px var(--ink); flex: none; }
.section-note { font-family: var(--display); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.section-sub { font-size: 24px; max-width: 780px; width: fit-content; margin: 14px 0 34px; background: var(--paper); }
.section-title, .section-note { background: var(--paper); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 24px; }
.robot-card {
  display: flex; flex-direction: column; align-items: stretch; gap: 0;
  padding: 0; border: 0; background: var(--paper); cursor: pointer; text-align: left;
}
.robot-card .bot { aspect-ratio: 1; width: 100%; }
.robot-card .bot svg { width: 100%; height: 100%; }
.robot-card .robot-id {
  font-family: var(--display); font-size: 13px; letter-spacing: 1px; padding: 8px 10px;
  border-top: 4px solid var(--ink); display: flex; justify-content: space-between;
}
.robot-card .robot-id { align-items: center; }
.robot-card .robot-id .icon { width: 14px; height: 14px; }
.robot-card:hover .robot-id, .robot-card:focus-visible .robot-id { background: var(--ink); color: var(--paper); }

/* ---------- quests ---------- */
.quest-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; align-items: start; }
.quest-list { display: flex; flex-direction: column; gap: 20px; }
.quest { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 16px; }
.quest-icon { width: 64px; height: 64px; display: grid; place-items: center; background: var(--ink); color: var(--paper); }
.quest-icon .icon { width: 32px; height: 32px; }
.quest-title { font-family: var(--display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 4px; }
.quest-desc { margin: 0; font-size: 21px; }
.quest-reward { font-family: var(--display); font-size: 13px; display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.quest-reward .icon { width: 14px; height: 14px; }
.quest-actions { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.quest.done { background: var(--dither); }
.quest.done > * { position: relative; }
.quest.done .quest-body { background: var(--paper); padding: 4px 8px; }
.quest.done .quest-icon { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 4px var(--ink); }
.done-tag { font-family: var(--display); font-size: 13px; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper); padding: 12px 14px; }
.done-tag .icon { width: 16px; height: 16px; }
.quest-extra { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: flex-end;
  padding-top: 16px; border-top: 4px dashed var(--ink); }
.quest-extra .field { flex: 1 1 300px; }
.quest.done .quest-extra { background: var(--paper); padding: 16px; border-top: 0; }
.quest-extra-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.quest-error .quest-desc code { font-family: var(--body); background: var(--ink); color: var(--paper); padding: 0 4px; }

/* allowlist application card */
.pass { position: sticky; top: 100px; padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.pass-head { display: flex; align-items: center; gap: 14px; }
.pass-bot { width: 96px; height: 96px; flex: none; box-shadow: 0 0 0 4px var(--ink); }
.pass-bot svg { width: 100%; height: 100%; }
.pass-handle { font-family: var(--display); font-size: 16px; word-break: break-all; }
.pass-sub { font-size: 20px; }
.meter { display: grid; grid-template-columns: repeat(20, 1fr); gap: 3px; padding: 5px; box-shadow: inset 0 0 0 3px var(--ink); }
.meter span { height: 16px; }
.meter span.on { background: var(--ink); }
.meter-label { display: flex; justify-content: space-between; font-size: 19px; margin-top: 6px; }
.pass-row { display: flex; gap: 10px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.pass-kv { font-size: 20px; }
.pass-kv b { font-family: var(--display); font-weight: 700; font-size: 15px; }
.al-badge { font-family: var(--display); font-size: 13px; letter-spacing: 1px; padding: 10px 12px; text-align: center;
  background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; gap: 8px; }
.al-badge .icon { width: 16px; height: 16px; }
.al-badge.pending { background: var(--dither); color: var(--ink); text-shadow: 0 0 0 var(--paper); }
.al-badge.pending span { background: var(--paper); padding: 2px 6px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 19px; }
.field input {
  width: 100%; background: var(--paper); border: 0; padding: 12px; font-family: var(--body); font-size: 20px;
  box-shadow: inset 0 0 0 4px var(--ink); outline: none; min-height: 44px;
}
.field input:focus { box-shadow: inset 0 0 0 4px var(--ink), 0 0 0 4px var(--paper), 0 0 0 8px var(--ink); }
.field input::placeholder { color: var(--ink); opacity: 0.55; }
.pass-split { height: 4px; background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px); }
.pass-locked { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.pass-locked .pass-bot { width: 128px; height: 128px; }
.pass-note { font-size: 18px; margin: 0; }
.btn-apply { font-size: 16px; padding: 16px 18px; min-height: 54px; }
.btn-apply .icon { width: 18px; height: 18px; }
.pass-count { font-size: 19px; text-align: center; }
.pass-count b { font-family: var(--display); font-weight: 700; font-size: 15px; }
.board-empty { padding: 28px 20px; font-size: 22px; margin: 0; }

/* ---------- mint ---------- */
.mint { padding: 36px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: center; }
.mint-count { font-family: var(--display); font-weight: 700; font-size: clamp(32px, 6vw, 64px); letter-spacing: 2px; }
.mint-count small { display: block; font-size: 14px; letter-spacing: 1px; font-weight: 400; margin-top: 10px; }
.mint-left { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; min-width: 0; }
.count-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.count-grid div { box-shadow: inset 0 0 0 4px var(--ink); padding: 14px 6px 10px; text-align: center; }
.count-grid b { display: block; font-size: clamp(26px, 4.4vw, 52px); line-height: 1; }
.count-grid span { display: block; font-size: 12px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }
.mint-facts { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mint-facts div { padding: 12px 14px; box-shadow: inset 0 0 0 4px var(--ink); }
.mint-facts dt { font-family: var(--display); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.mint-facts dd { margin: 4px 0 0; font-size: 26px; }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; gap: 18px; max-width: 900px; }
.faq details { padding: 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 20px; font-family: var(--display); font-size: 15px;
  text-transform: uppercase; letter-spacing: 1px; display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '[+]'; }
.faq details[open] summary::after { content: '[-]'; }
.faq summary:hover { background: var(--ink); color: var(--paper); }
.faq details p { margin: 0; padding: 0 20px 18px; font-size: 22px; }

/* ---------- footer ---------- */
.footer { margin-top: 110px; border-top: 4px solid var(--ink); padding: 28px 24px 90px; text-align: center; }
.footer-bots { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-bots .bot { width: 64px; height: 64px; }
.footer-bots .bot svg { width: 100%; height: 100%; }
.footer a { font-family: var(--display); font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }
.footer p { width: fit-content; margin-left: auto; margin-right: auto; background: var(--paper); }
.footer-small { font-size: 18px; margin-top: 8px; }
.footer-small a { font-family: var(--body); font-size: inherit; text-transform: none; letter-spacing: 0; }

/* ---------- terms / privacy pages ---------- */
.legal { max-width: 860px; }
.legal h2 { font-family: var(--display); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 1px; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 22px; max-width: 780px; }
.legal ul { padding-left: 24px; }
.legal li { margin: 4px 0; }
.legal .updated { font-family: var(--display); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- dialogs & toasts ---------- */
.dialog { color: var(--ink); background: var(--paper); border: 0; padding: 26px; margin: auto; max-width: min(640px, calc(100vw - 32px)); }
/* 1-bit "dim": a black checker over the page */
.dialog::backdrop { background: repeating-conic-gradient(#000 0 25%, transparent 0 50%) 0 0 / 4px 4px; }
.dialog-body { display: grid; grid-template-columns: 192px minmax(0, 1fr); gap: 24px; align-items: start; margin-bottom: 18px; }
.dialog-bot { width: 192px; height: 192px; box-shadow: 0 0 0 4px var(--ink); }
.dialog-bot svg { width: 100%; height: 100%; }
.dialog-title { font-family: var(--display); font-weight: 700; font-size: 22px; margin: 0 0 12px; letter-spacing: 1px; }
.traits { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; font-size: 20px; }
.traits dt { font-family: var(--display); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; padding-top: 5px; }
.traits dd { margin: 0; }
.dialog-actions { display: flex; flex-direction: row-reverse; justify-content: flex-start; gap: 12px; margin-top: 18px; }
.dialog form p { font-size: 21px; }

.toasts { position: fixed; right: 20px; bottom: 64px; z-index: 60; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; pointer-events: none; }
.toast { font-family: var(--display); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 14px 16px;
  background: var(--ink); color: var(--paper); box-shadow: 6px 6px 0 0 var(--paper), 6px 6px 0 4px var(--ink); max-width: 360px; }
.toast.bad { background: var(--paper); color: var(--ink); outline: 4px solid var(--ink); outline-offset: -4px; }

/* ---------- responsive ---------- */
@media (max-width: 1264px) { .title-art { width: 576px; } .hero-bot .bot { width: 192px; height: 192px; } }
@media (max-width: 1100px) { .title-art { width: 528px; } .hero-bot .bot { width: 176px; height: 176px; } }
@media (max-width: 980px)  { .title-art { width: 432px; } .hero-bot .bot { width: 160px; height: 160px; } }
@media (max-width: 900px)  { .title-art { width: 384px; } .hero-bot .bot { width: 144px; height: 144px; } }
@media (max-width: 820px)  { .title-art { width: 528px; } }
@media (max-width: 560px)  { .title-art { width: 432px; } }
@media (max-width: 464px)  { .title-art { width: 384px; } }
@media (max-width: 416px)  { .title-art { width: 336px; } }
@media (max-width: 368px)  { .title-art { width: 288px; } }
@media (max-width: 980px) {
  .quest-layout { grid-template-columns: 1fr; }
  .pass { position: relative; top: auto; order: -1; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mint { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  body { font-size: 20px; }
  .btn-menu { display: inline-flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--paper);
    border-bottom: 4px solid var(--ink); padding: 8px 16px 16px; }
  .nav.open { display: flex; }
  .nav a { font-size: 16px; padding: 14px 12px; }
  .topbar { padding: 8px 16px; }
  .brand-name { font-size: 16px; }
  .chip-name { display: none; }
  .hero { padding-top: 32px; }
  .hero-row { grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .hero-copy { grid-column: 1 / -1; grid-row: 1; }
  .hero-bot .bot { width: 128px; height: 128px; }
  .section { padding: 64px 16px 8px; }
  .stats { padding: 44px 16px 8px; gap: 16px; }
  .quest { grid-template-columns: 52px minmax(0, 1fr); }
  .quest-icon { width: 52px; height: 52px; }
  .quest-actions { grid-column: 1 / -1; justify-content: flex-start; }
  .dialog-body { grid-template-columns: 1fr; }
  .dialog-bot { width: 160px; height: 160px; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 16px; }
  .demo-badge { font-size: 9px; white-space: normal; text-align: center; width: max-content; max-width: calc(100vw - 32px); }
  .toasts { left: 16px; right: 16px; align-items: stretch; }
}
@media (max-width: 440px) {
  .brand-name { display: none; }
  .count-grid { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
}
