/* ── CSS Custom Properties ── */
:root {
  --bg-primary: #0a0520;
  --bg-secondary: #140e30;
  --bg-tertiary: #1a1045;
  --bg-deep: #0d0825;
  --purple-500: #7c3aed;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --indigo-400: #818cf8;
  --indigo-300: #a5b4fc;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-300: #34d399;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --sky-400: #38bdf8;
  --pink-400: #f472b6;
  --red-400: #f87171;
  --text-primary: #f1f5f9;
  --text-secondary: rgba(255,255,255,0.82);
  --text-tertiary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.38);
  --text-faint: rgba(255,255,255,0.22);
  --border-subtle: rgba(255,255,255,0.09);
  --border-light: rgba(255,255,255,0.07);
  --glass-bg: rgba(255,255,255,0.035);
  --glass-border: rgba(255,255,255,0.09);
  --glass-hover-border: rgba(129,140,248,0.45);
  --glass-hover-shadow: rgba(129,140,248,0.12);
}

/* ── Reset & Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* zoom removed — font sizes adjusted to standard px values */

body {
  background: linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, var(--bg-tertiary) 60%, var(--bg-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding: 0;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--text-primary);
  position: relative;
  overflow-x: hidden;
}

.page-content {
  padding: 24px 28px 36px;
  max-width: 1580px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ── Glow Effects ── */
.glow1 {
  position: fixed; top: -120px; right: -120px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.glow2 {
  position: fixed; bottom: -100px; left: -100px; width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ── Glass Card ── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}
.glass:hover {
  border-color: var(--glass-hover-border);
  box-shadow: 0 8px 32px var(--glass-hover-shadow);
}

/* ── Navigation ── */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: rgba(10,5,32,0.55);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-brand-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--purple-400);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-brand-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-link {
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.nav-link:hover {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
}
.nav-link.active {
  color: var(--purple-300);
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.2);
}

/* ── Layout Utilities ── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; min-width: 0; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-6 { gap: 6px; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }

/* ── Typography ── */
.section-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-label-purple { color: var(--indigo-300); }
.section-label-green { color: var(--green-400); }

/* ── Pills & Badges ── */
.pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}

/* ── Progress Ring ── */
.progress-ring { position: relative; flex-shrink: 0; }
.progress-ring .label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
svg circle.ring-progress { transition: stroke-dashoffset 1.2s ease; }

/* ── Model Bar ── */
.model-bar-track {
  display: flex; height: 5px; border-radius: 3px;
  overflow: hidden; background: var(--border-subtle); width: 120px;
}
.model-bar-done { border-radius: 3px; transition: width 0.8s ease; }
.model-bar-wip { transition: width 0.8s ease 0.2s; }
.model-bar-info {
  display: flex; gap: 6px; margin-top: 3px;
  font-size: 10px; color: var(--text-muted);
}

/* ── Filter Pills ── */
.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.filter-pill {
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
  border-color: rgba(129,140,248,0.35);
}
.filter-pill.active {
  color: #fff;
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 8px rgba(124,58,237,0.15);
}

/* ── Data Table ── */
.data-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
}
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}
.data-table thead th {
  padding: 10px 14px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.data-table thead th:hover {
  color: var(--purple-300);
}
.data-table thead th.sort-asc::after { content: ' ▲'; color: var(--purple-400); }
.data-table thead th.sort-desc::after { content: ' ▼'; color: var(--purple-400); }
.data-table thead th.cat-header {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
  border-bottom: none;
  letter-spacing: 1.2px;
  cursor: default;
}
.data-table thead th.info-header {
  vertical-align: bottom;
}
.data-table .type-cell {
  font-size: 10px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.data-table tbody tr {
  transition: background 0.15s ease;
}
.data-table tbody tr:hover {
  background: rgba(129,140,248,0.08);
}
.data-table tbody td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
  color: var(--text-secondary);
}
.data-table tbody tr:first-child td {
  background: rgba(34,197,94,0.06);
}
.data-table .rank-cell {
  font-weight: 800;
  width: 40px;
  text-align: center;
}
.data-table .rank-1 { color: #22c55e; }
.data-table .rank-2 { color: #eab308; }
.data-table .rank-3 { color: #f97316; }
.data-table .model-cell {
  font-weight: 700;
  color: #fff;
}
.data-table .score-cell {
  font-weight: 800;
}
.data-table .metric-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.data-table th.metric-header {
  text-align: right;
}
.score-bar {
  display: inline-block;
  height: 4px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  transition: width 0.8s ease;
  max-width: 32px;
}
#ranking-table td {
  overflow: hidden;
  text-overflow: ellipsis;
}
#ranking-table th {
  overflow: hidden;
  text-overflow: ellipsis;
}
.metric-best {
  color: var(--green-400);
  font-weight: 700;
}
.metric-worst {
  color: rgba(255,255,255,0.25);
}

/* ── Chart Container ── */
.chart-container {
  position: relative;
  padding: 16px;
}

/* ── Metric Tag ── */
.metric-tag {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin: 2px;
}

/* ── Alert Boxes ── */
.warn-box {
  margin-top: 8px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--red-400);
}
.best-box {
  margin-top: 8px;
  background: rgba(250,204,21,0.06);
  border: 1px solid rgba(250,204,21,0.12);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--amber-400);
}

/* ── Top Line Accent ── */
.top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
}

/* ── Card Variants ── */
.domain-card { padding: 16px 18px; cursor: pointer; }
.domain-card .metrics-panel {
  margin-top: 10px; padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px; display: none;
}
.domain-card .metrics-panel.visible { display: block; }

/* ── Step Box (Pipeline) ── */
.step-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  flex: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.step-box:hover, .step-box.active {
  background: rgba(129,140,248,0.12);
  border-color: rgba(129,140,248,0.4);
  transform: scale(1.02);
}
.step-box.accent {
  background: rgba(129,140,248,0.1);
  border-color: rgba(129,140,248,0.25);
}

/* ── Step Detail ── */
.step-detail {
  margin-top: 10px; padding: 10px 14px;
  background: rgba(129,140,248,0.06);
  border: 1px solid rgba(129,140,248,0.15);
  border-radius: 10px;
  font-size: 11px; color: rgba(255,255,255,0.55);
  line-height: 1.6; display: none;
}
.step-detail.visible { display: block; }

/* ── Roadmap ── */
.roadmap-item {
  flex: 1; border-radius: 12px; padding: 12px 10px;
  text-align: center; position: relative; cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
}
.roadmap-item:hover, .roadmap-item.active { transform: scale(1.02); }
.roadmap-detail {
  margin-top: 10px; padding: 10px 14px;
  border-radius: 10px; transition: all 0.3s ease;
}
.now-badge {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 2px 10px; border-radius: 6px; letter-spacing: 0.5px;
}

/* ── Issue Card ── */
.issue-card {
  flex: 1; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: 12px; padding: 12px 16px;
}

/* ── Inference Explorer ── */
.explorer-sidebar {
  width: 310px;
  flex-shrink: 0;
  overflow-y: auto;
  max-height: calc(100vh - 80px);
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0px,
    rgba(0,0,0,0.6) 12px,
    black 28px,
    black calc(100% - 32px),
    rgba(0,0,0,0.4) calc(100% - 12px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0px,
    rgba(0,0,0,0.6) 12px,
    black 28px,
    black calc(100% - 32px),
    rgba(0,0,0,0.4) calc(100% - 12px),
    transparent 100%
  );
}
.explorer-sidebar::-webkit-scrollbar {
  width: 3px;
}
.explorer-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.explorer-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}
.explorer-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.25);
}
.explorer-main {
  flex: 1;
  min-width: 0;
}
.tree-item {
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tree-item:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.tree-item.active {
  background: rgba(124,58,237,0.12);
  color: var(--purple-300);
}
.tree-item .icon {
  font-size: 11px;
  width: 14px;
  text-align: center;
  color: var(--text-tertiary);
}
.tree-children {
  padding-left: 16px;
  display: none;
}
.tree-children.expanded { display: block; }

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.image-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}
.image-card:hover {
  border-color: var(--glass-hover-border);
  transform: scale(1.02);
}
.image-card img {
  width: 100%;
  height: auto;
  display: block;
}
.image-card .caption {
  padding: 6px 10px;
  font-size: 10px;
  color: var(--text-tertiary);
}

/* ── Perf Card ── */
.perf-card {
  padding: 20px 18px;
  text-align: center;
}
.perf-value {
  font-size: 25px;
  font-weight: 900;
  color: #fff;
}
.perf-label {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-tertiary);
}
.empty-state .icon { font-size: 36px; margin-bottom: 12px; }
.empty-state .title {
  font-size: 16px; font-weight: 700;
  color: var(--text-secondary); margin-bottom: 6px;
}
.empty-state .desc { font-size: 13px; line-height: 1.6; }

/* ── Footer ── */
.page-footer {
  text-align: center;
  margin-top: 20px;
  padding: 16px 0;
}
.page-footer .divider {
  width: 30px; height: 1px;
  background: rgba(124,58,237,0.3);
  margin: 0 auto 10px;
}
.page-footer .text {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 1px;
}

/* ── Pill Wrap (inline group inside filter-group) ── */
.pill-wrap {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ── Leaderboard Unified Filters ── */
.lb-filters .filter-pill {
  font-size: 13px;
  padding: 3px 13px;
}

/* ── Visual Grid ── */
.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.visual-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
.visual-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}
.visual-card:hover {
  border-color: var(--glass-hover-border);
  transform: scale(1.01);
}
.visual-card img {
  width: 100%;
  height: auto;
  display: block;
}
.visual-card-label {
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: 0.3px;
}
.visual-card-wide {
  min-width: 0;
}

/* ── Model Comparison Row (all models side-by-side) ── */
.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: background 0.2s ease;
}
.compare-row:hover {
  background: rgba(255,255,255,0.04);
}
.compare-row-label {
  width: 110px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  padding-top: 4px;
}
.compare-row-label .sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.compare-row-images {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.compare-row-images img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
}
.compare-row-images .viz-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 300px;
}

/* ── Collapsible Section ── */
.collapsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px 20px;
  user-select: none;
}
.collapsible-header:hover {
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
}
.collapsible-toggle {
  font-size: 11px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.collapsible-body {
  display: none;
  padding: 0 20px 16px;
}
.collapsible-body.expanded {
  display: block;
}

/* ── Score highlight ── */
.score-highlight {
  font-weight: 900;
  font-size: 16px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ── */
.animate-bar { transition: width 1.5s ease 0.3s; }

/* ── 3D Viewer Zoom Active State ── */
.zoom-active {
  border-color: rgba(167,139,250,0.35) !important;
  box-shadow: 0 0 12px rgba(167,139,250,0.15);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.4s ease; }

/* ══════════════════════════════════════════════════════════
   Extracted from inline styles — index.html refactoring
   ══════════════════════════════════════════════════════════ */

/* ── Metric tag color variants ── */
.metric-tag-green { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.1); }
.metric-tag-blue  { background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.1); }

/* ── Purple keyword badge ── */
.purple-badge {
  font-size: 11px; color: #c4b5fd;
  background: rgba(124,58,237,0.1); padding: 4px 14px;
  border-radius: 20px; border: 1px solid rgba(167,139,250,0.15);
}

/* ── Glass card standard padding ── */
.glass-section { padding: 16px 20px; margin-bottom: 16px; }

/* ── Section label spacing ── */
.section-header    { margin-bottom: 12px; }
.section-header-sm { margin-bottom: 8px; }
.section-header-lg { margin-bottom: 14px; }

/* ── Domain card elements ── */
.domain-card-title { font-size: 14px; font-weight: 800; letter-spacing: 0.5px; }
.domain-card-sub   { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.domain-card-count { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── Metrics panel title ── */
.metrics-panel-label { font-size: 10px; font-weight: 700; margin-bottom: 6px; letter-spacing: 1px; }

/* ── Hint text ── */
.hint-text { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 8px; text-align: center; }

/* ── Pipeline step box children ── */
.step-label { font-size: 10px; color: var(--indigo-400); font-weight: 700; letter-spacing: 1px; }
.step-title { font-size: 13px; color: #fff; margin-top: 3px; font-weight: 500; }
.step-desc  { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── Statement / Goal uppercase label ── */
.statement-label {
  font-size: 10px; font-weight: 700; color: #a78bfa;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}

/* ── Footer links ── */
.footer-links { margin-top: 8px; font-size: 11px; display: inline-flex; gap: 12px; }
.footer-link  { color: #a78bfa; text-decoration: none; opacity: 0.6; transition: opacity 0.2s; }
.footer-link:hover { opacity: 1; }
.footer-contacts { margin-top: 0; font-size: 11px; display: inline-flex; gap: 12px; }
.footer-sep { color: rgba(255,255,255,0.15); }
.footer-sep-mid { margin: 0 12px; font-size: 11px; vertical-align: middle; }
.contact-copy {
  cursor: pointer;
  color: #a78bfa;
  opacity: 0.6;
  transition: color 0.2s, opacity 0.2s;
}
.contact-copy:hover { opacity: 1; }
.contact-copy.copied { color: #34d399; opacity: 1; }

/* ── Domain Card CTA ── */
.domain-card .cta-link {
  display: inline-block; font-size: 11px; font-weight: 600; color: #c4b5fd;
  background: rgba(124,58,237,0.08); border: 1px solid rgba(129,140,248,0.2);
  padding: 5px 16px; border-radius: 6px; text-decoration: none;
  transition: all 0.2s ease; letter-spacing: 0.2px;
}
.domain-card .cta-link:hover {
  color: #fff; background: rgba(129,140,248,0.15);
  border-color: rgba(129,140,248,0.5);
}

/* ── Roadmap elements ── */
.roadmap-quarter { font-size: 20px; font-weight: 900; }
.roadmap-desc    { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 6px; line-height: 1.5; }
.roadmap-date    { font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 4px; }

/* ── Accessibility: respect reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
