/* ==========================================================================
   Components — nav, footer, card, button, chip, badge, table, tabs, accordion
   ========================================================================== */

/* ---------- Top Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  border-bottom: 1px solid var(--color-border);
  transition: border-color var(--dur-base) var(--ease-out);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-header-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background var(--dur-base) var(--ease-out);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  height: var(--nav-height);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-transform: uppercase;
}

.nav__brand:hover { color: var(--color-text); }

.nav__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--gradient-2026);
  color: var(--color-on-accent);
  font-family: var(--font-display);
  font-size: var(--fs-md);
  box-shadow: var(--shadow-sm), var(--glow-tricolor);
}

.nav__brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(252, 211, 77, 0.45));
  flex-shrink: 0;
}

.nav__brand-text { line-height: 1; }
.nav__brand-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  margin-top: 2px;
}

.nav__list {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: var(--sp-2);
}

.nav__item {
  position: relative;
}

.nav__link-row {
  display: inline-flex;
  align-items: center;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: var(--sp-3);
  right: var(--sp-3);
  bottom: -2px;
  height: 3px;
  background: var(--gradient-2026);
  border-radius: var(--radius-sm);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: 1 1 auto;
  min-width: 0;
}

.nav__cta {
  margin-left: var(--sp-2);
}

/* ---------- Theme toggle (light / dark switch) ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

.theme-toggle:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

.theme-toggle:active { transform: translateY(0); }

.theme-toggle__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.theme-toggle__icon--sun  { display: none; }
.theme-toggle__icon--moon { display: block; }

:root[data-theme="light"] .theme-toggle__icon--sun  { display: block; }
:root[data-theme="light"] .theme-toggle__icon--moon { display: none; }

/* Dropdown sub-menu (desktop = hover panel, mobile = inline accordion) */
.nav__sub-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: -4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav__sub-toggle:hover { color: var(--color-text); }

.nav__sub-caret {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  transition: transform var(--dur-base) var(--ease-out);
}

.nav__item--has-menu[data-open-sub="true"] .nav__sub-caret {
  transform: rotate(180deg);
}

.nav__sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: var(--sp-2);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    visibility 0s linear var(--dur-fast);
  z-index: var(--z-nav);
}

.nav__item--has-menu:hover .nav__sub,
.nav__item--has-menu:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    visibility 0s linear 0s;
}

.nav__sub li { margin: 0; }

.nav__sub a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.nav__sub a:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

/* Backdrop behind top sheet (mobile only) */
.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-overlay) - 1);
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}

.nav__backdrop[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast);
}

.nav__toggle-bars { position: relative; }
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav__toggle-bars::before { top: -6px; }
.nav__toggle-bars::after { top: 6px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__brand { margin-right: auto; }

  .nav__toggle { display: inline-flex; }
  .nav__menu {
    flex: none;
    min-width: auto;
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    max-height: calc(100dvh - var(--nav-height));
    z-index: var(--z-overlay);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--color-bg);
    padding: var(--sp-4) var(--sp-5);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform var(--dur-base) var(--ease-out),
                visibility 0s linear var(--dur-base);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
  }
  .nav__menu[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--dur-base) var(--ease-out),
                visibility 0s linear 0s;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    width: auto;
    justify-content: flex-start;
    gap: 0;
  }
  .nav__item { position: static; }
  .nav__link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  .nav__link-row .nav__link { flex: 1 1 auto; border-bottom: 0; }
  .nav__link {
    display: block;
    padding: var(--sp-3) 0;
    font-size: var(--fs-base);
    border-bottom: 1px solid var(--color-border);
  }
  .nav__link--active::after { display: none; }
  .nav__cta { margin: var(--sp-6) 0 0; display: block; text-align: center; }

  .nav__sub-toggle { display: inline-flex; }

  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-base) var(--ease-out);
  }
  .nav__item--has-menu[data-open-sub="true"] .nav__sub {
    max-height: 600px;
  }
  .nav__sub a {
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--fs-sm);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    color: var(--color-text-muted);
  }
  .nav__sub li:last-child a { border-bottom: 0; }
}

@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
  .nav__menu,
  .nav__menu[data-open="true"] {
    transition: visibility 0s linear 0s;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  padding-block: var(--sp-12) var(--sp-6);
  margin-top: var(--sp-16);
}

.footer-grid {
  display: grid;
  gap: var(--sp-10);
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}

.footer-col ul li {
  margin-bottom: var(--sp-3);
}

.footer-col a {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.footer-col a:hover { color: var(--color-green); }

.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-top: var(--sp-3);
  max-width: 38ch;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  margin-top: var(--sp-10);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-dim);
  font-size: var(--fs-xs);
}

.footer-disclaimer {
  background: rgba(252, 211, 77, 0.08);
  border: 1px solid rgba(252, 211, 77, 0.3);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  margin-top: var(--sp-6);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
  min-height: 44px;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-gold);
  color: var(--color-on-accent);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-gold-soft);
  color: var(--color-on-accent);
  box-shadow: var(--shadow-md), var(--glow-tricolor);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--accent {
  background: var(--color-green);
  color: var(--color-on-accent);
}
.btn--accent:hover {
  background: var(--color-green-soft);
  color: var(--color-on-accent);
  box-shadow: var(--shadow-md), var(--glow-green);
}

.btn--danger {
  background: var(--color-red);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--danger:hover {
  background: var(--color-red-soft);
  color: #fff;
  box-shadow: var(--shadow-md), var(--glow-red);
}

.btn--sm {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-xs);
  min-height: 36px;
}

.btn--lg {
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-base);
}

/* ---------- Card ---------- */
.card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition:
    border-color var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.card--interactive:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card--accent::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--gradient-2026);
}

.card__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-3);
}

.card__text {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}

/* ---------- Stat Tile ---------- */
.stat-tile {
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.stat-tile::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(closest-side, rgba(252, 211, 77, 0.12), transparent);
  pointer-events: none;
}

.stat-tile__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}

.stat-tile__value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--color-text);
}

.stat-tile__value--green { color: var(--color-green); }
.stat-tile__value--gold  { color: var(--color-gold); }
.stat-tile__value--red   { color: var(--color-red-soft); }
.stat-tile__value--blue  { color: var(--color-blue); }

.stat-tile__meta {
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
}

/* ---------- Chip / Badge ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  background: var(--color-surface);
}

.chip--green { color: var(--color-green); border-color: rgba(0, 194, 105, 0.4); }
.chip--red   { color: var(--color-red-soft); border-color: rgba(225, 14, 32, 0.4); }
.chip--gold  { color: var(--color-gold); border-color: rgba(252, 211, 77, 0.45); }

.chip--active {
  color: var(--color-on-accent);
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.chip--active:hover { color: var(--color-on-accent); }

.chip--blue { color: var(--color-blue-soft); border-color: rgba(60, 100, 194, 0.45); }

.chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.badge {
  display: inline-block;
  padding: 2px var(--sp-2);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: var(--color-surface-3);
  color: var(--color-text);
}

/* ---------- Flag ---------- */
.flag {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 20px;
  border-radius: 3px;
  background: var(--color-surface-3);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.flag--lg {
  width: 48px;
  height: 34px;
  font-size: var(--fs-sm);
}

/* ---------- Table (data-room) ---------- */
.table-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  background: var(--color-surface);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.table th,
.table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.table th {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-bg-elevated);
  font-weight: var(--fw-semibold);
}

.table tbody tr:hover {
  background: var(--color-surface-2);
}

.table tbody tr:last-child td {
  border-bottom: 0;
}

.table td.num,
.table th.num {
  text-align: right;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.table .rank {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--color-text-dim);
  width: 40px;
}

.table .rank--top { color: var(--color-gold); }

/* ---------- Tabs ---------- */
.tabs {
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: var(--sp-1);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

.tab:hover { color: var(--color-text); }

.tab[aria-selected="true"] {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.tab-panel {
  padding-top: var(--sp-8);
}

.tab-panel[hidden] { display: none; }

/* ---------- Accordion ---------- */
.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--color-border);
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-5);
  background: var(--color-surface);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  transition: background var(--dur-fast);
}

.accordion-item summary::-webkit-details-marker { display: none; }

.accordion-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--color-gold);
  transition: transform var(--dur-base) var(--ease-out);
  line-height: 1;
}

.accordion-item[open] summary { background: var(--color-surface-2); }
.accordion-item[open] summary::after { transform: rotate(45deg); }

.accordion-item__body {
  padding: var(--sp-5);
  background: var(--color-bg-elevated);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
}

.accordion-item__body p + p { margin-top: var(--sp-3); }
.accordion-item__body strong { color: var(--color-text); }
.accordion-item__body ul {
  list-style: disc;
  padding-left: var(--sp-5);
  margin-top: var(--sp-3);
}
.accordion-item__body li + li { margin-top: var(--sp-2); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
  letter-spacing: 0.08em;
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-gold); }

.breadcrumb__sep { color: var(--color-text-dim); }

/* ---------- Marquee strip (live ticker) ---------- */
.ticker {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
  padding-block: var(--sp-3);
  overflow: hidden;
  position: relative;
}

.ticker::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gradient-2026);
  opacity: 0.85;
}

.ticker__track {
  display: inline-flex;
  gap: var(--sp-8);
  animation: ticker-scroll 85s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker__item {
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.ticker__item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-right: var(--sp-2);
  box-shadow: 0 0 6px rgba(252, 211, 77, 0.6);
}

.ticker__item strong { color: var(--color-gold); }

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}
