/* ============================================================
   STYLES — RCI Tabung Haji dashboard
   Design tokens (palet tervalidasi), mobile-first, dark mode.
   ============================================================ */

:root {
  color-scheme: light;
  --page-plane: #f9f9f7;
  --surface-1: #fcfcfb;
  --surface-2: #f3f2ee;
  --surface-3: #eceae4;
  --border: rgba(11, 11, 11, 0.10);
  --border-strong: rgba(11, 11, 11, 0.18);
  --text-primary: #0b0b0b;
  --text-secondary: #52514e;
  --muted-ink: #898781;
  --gridline: #e1e0d9;
  --baseline: #c3c2b7;

  --series-1: #2a78d6;  --series-2: #eb6834;  --series-3: #1baf7a;
  --series-4: #eda100;  --series-5: #e87ba4;  --series-6: #008300;
  --series-7: #4a3aa7;  --series-8: #e34948;

  --st-good: #0ca30c; --st-warn: #b07d00; --st-serious: #d05f38; --st-critical: #d03b3b;

  --div-neg: #d03b3b; --div-pos: #2a78d6;

  --accent: #b5632a;
  --shadow: 0 1px 2px rgba(11, 11, 11, 0.06), 0 4px 16px rgba(11, 11, 11, 0.05);
  --radius: 12px;
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --page-plane: #0d0d0d;
  --surface-1: #1a1a19;
  --surface-2: #232321;
  --surface-3: #2c2c2a;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.20);
  --text-primary: #ffffff;
  --text-secondary: #c3c2b7;
  --muted-ink: #898781;
  --gridline: #2c2c2a;
  --baseline: #383835;

  --series-1: #3987e5;  --series-2: #d95926;  --series-3: #199e70;
  --series-4: #c98500;  --series-5: #d55181;  --series-6: #008300;
  --series-7: #9085e9;  --series-8: #e66767;

  --st-good: #0ca30c; --st-warn: #f0b429; --st-serious: #e0825c; --st-critical: #e66767;

  --div-neg: #e66767; --div-pos: #3987e5;

  --accent: #d9894f;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--page-plane);
  color: var(--text-primary);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--series-1); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.topbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
}
.brand {
  display: flex; align-items: baseline; gap: 8px; min-width: 0;
}
.brand-kicker { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-ink); font-weight: 600; }
.brand-title { font-size: 16px; font-weight: 700; white-space: nowrap; }
.brand-title em { font-style: normal; color: var(--accent); }

.topbar-spacer { flex: 1; }
.theme-toggle {
  border: 1px solid var(--border-strong); background: var(--surface-2); color: var(--text-primary);
  border-radius: 8px; padding: 6px 10px; font-size: 13px; cursor: pointer; font-weight: 600;
}
.theme-toggle:hover { background: var(--surface-3); }

/* ---------- Nav ---------- */
nav.nav {
  max-width: 1160px; margin: 0 auto; padding: 0 16px 10px;
  display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
nav.nav::-webkit-scrollbar { display: none; }
.nav-btn {
  border: none; background: transparent; color: var(--text-secondary);
  padding: 7px 12px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
}
.nav-btn:hover { background: var(--surface-2); color: var(--text-primary); }
.nav-btn.active { background: var(--accent); color: #fff; }

/* ---------- Layout ---------- */
main { max-width: 1160px; margin: 0 auto; padding: 20px 16px 80px; }
.vb-section { display: none; }
.vb-section.active { display: block; animation: fadein 0.25s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.wrap { display: flex; flex-direction: column; gap: 20px; }

.section-head { margin-bottom: 4px; }
.section-title { font-size: clamp(22px, 4vw, 30px); margin: 0 0 6px; line-height: 1.2; }
.section-intro { font-size: 15.5px; color: var(--text-secondary); max-width: 760px; margin: 0; }

.subhead { font-size: 17px; margin: 12px 0 4px; color: var(--text-primary); }

/* ---------- Chart cards ---------- */
.chart-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.chart-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.chart-title-wrap { flex: 1; min-width: 0; }
.chart-title { margin: 0 0 2px; font-size: 16px; font-weight: 700; line-height: 1.3; }
.chart-sub { margin: 0; font-size: 13.5px; color: var(--text-secondary); }
.chart-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.chart-meta .src { font-size: 11px; color: var(--muted-ink); white-space: nowrap; }
.flag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
}
.flag-fakta { background: #e6f2ec; color: #0c6b43; }
.flag-terbitan { background: #e8ecf9; color: #2744b5; }
.flag-unjuran { background: #fdf1dd; color: #8a5b00; }
[data-theme="dark"] .flag-fakta { background: #14382a; color: #7ed6ac; }
[data-theme="dark"] .flag-terbitan { background: #1b2445; color: #a9bdf7; }
[data-theme="dark"] .flag-unjuran { background: #3a2d12; color: #f0c66a; }

.chart-actions { flex-shrink: 0; }
.table-toggle {
  border: 1px solid var(--border-strong); background: var(--surface-2); color: var(--text-secondary);
  border-radius: 8px; padding: 5px 10px; font-size: 12px; cursor: pointer; font-weight: 600;
}
.table-toggle:hover { background: var(--surface-3); color: var(--text-primary); }
.chart-plot { width: 100%; }
.chart-table { margin-top: 8px; overflow-x: auto; }
.chart-table table { width: 100%; border-collapse: collapse; font-size: 13px; }
.chart-table th, .chart-table td { text-align: right; padding: 6px 8px; border-bottom: 1px solid var(--border); font-variant-numeric: tabular-nums; }
.chart-table th { color: var(--muted-ink); font-weight: 600; font-size: 12px; }
.chart-table td.first, .chart-table th:first-child { text-align: left; }
.chart-table tr:last-child td { border-bottom: none; }

/* ---------- SVG ---------- */
.vb-svg { display: block; width: 100%; height: auto; }
.vb-axis { fill: var(--muted-ink); font-size: 11px; font-variant-numeric: tabular-nums; }
.vb-axis2 { fill: var(--muted-ink); font-size: 9.5px; }
.vb-label { fill: var(--text-primary); font-size: 12.5px; font-weight: 600; }
.vb-value { fill: var(--text-primary); font-size: 12.5px; font-weight: 700; font-variant-numeric: tabular-nums; }
.vb-value-sm { font-size: 11px; font-weight: 600; fill: var(--text-secondary); }
.vb-mark { transition: opacity 0.12s; cursor: pointer; }
.vb-line { pointer-events: none; }
.vb-point { cursor: pointer; }

.vb-legend { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 8px; font-size: 12.5px; color: var(--text-secondary); }
.vb-legend-item { display: inline-flex; align-items: center; gap: 6px; }
.vb-swatch { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }

/* ---------- Tooltip ---------- */
.vb-tip {
  position: fixed; z-index: 100; pointer-events: none;
  background: var(--surface-1); color: var(--text-primary);
  border: 1px solid var(--border-strong); border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  padding: 8px 10px; opacity: 0; visibility: hidden; transition: opacity 0.1s;
  max-width: 280px;
}
.vb-tip-inner { display: flex; flex-direction: column; gap: 4px; }
.vb-tip-row { display: flex; align-items: center; gap: 6px; font-size: 12.5px; }
.vb-tip-sw { width: 9px; height: 9px; border-radius: 2px; flex-shrink: 0; }
.vb-tip-lab { color: var(--text-secondary); }
.vb-tip-val { margin-left: auto; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- Insight ---------- */
.insight {
  border-radius: var(--radius);
  border-left: 4px solid var(--series-1);
  background: var(--surface-2);
  padding: 14px 16px;
}
.insight-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted-ink); margin-bottom: 4px;
}
.insight-title { display: block; font-size: 15px; margin-bottom: 4px; }
.insight-body { margin: 0; font-size: 14px; color: var(--text-secondary); }
.insight-temuan { border-left-color: var(--series-3); }
.insight-temuan .insight-tag { color: var(--st-good); }
.insight-persoalan { border-left-color: var(--series-1); }
.insight-peringatan { border-left-color: var(--st-serious); }
.insight-peringatan .insight-tag { color: var(--st-serious); }
.insight-kaedah { border-left-color: var(--series-4); }
.insight-kaedah .insight-tag { color: #8a5b00; }
[data-theme="dark"] .insight-kaedah .insight-tag { color: #f0c66a; }
.insight-kontra { border-left-color: var(--st-critical); }
.insight-kontra .insight-tag { color: var(--st-critical); }

/* ---------- Grids ---------- */
.vb-grid { display: grid; gap: 16px; }
.vb-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.vb-grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- Stat grid ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.stat-tile {
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px; display: flex; flex-direction: column; gap: 2px; box-shadow: var(--shadow);
}
.stat-label { font-size: 12px; color: var(--text-secondary); font-weight: 600; }
.stat-value { font-size: clamp(20px, 3.4vw, 26px); font-weight: 700; letter-spacing: -0.01em; }
.stat-sub { font-size: 12px; color: var(--muted-ink); }

/* ---------- Meter ---------- */
.meter { margin: 10px 0; }
.meter-label { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 4px; }
.meter-row { display: flex; align-items: center; gap: 8px; }
.meter-track {
  flex: 1; height: 10px; border-radius: 999px;
  background: linear-gradient(to right, var(--surface-3), var(--surface-3));
  overflow: hidden;
}
.meter-fill { height: 100%; border-radius: 999px; min-width: 3px; }
.meter-val { font-size: 13px; font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.meter-note { font-size: 12px; color: var(--muted-ink); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 20px; box-shadow: var(--shadow);
}
.hero-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.hero-value { font-size: clamp(40px, 8vw, 60px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; margin: 6px 0; }
.hero-label { font-size: 15px; color: var(--text-secondary); max-width: 640px; }

/* ---------- Flow (aliran cerita) ---------- */
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.flow-box {
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow); position: relative;
}
.flow-n {
  position: absolute; top: 10px; right: 12px; font-size: 34px; font-weight: 800;
  color: var(--surface-3); line-height: 1;
}
.flow-t { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
.flow-b { margin: 0; font-size: 13.5px; color: var(--text-secondary); }

/* ---------- Meta ---------- */
.meta-box { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.meta-t { margin: 0 0 10px; font-size: 15px; }
.meta-row { display: flex; gap: 10px; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.meta-row:last-child { border-bottom: none; }
.meta-k { color: var(--muted-ink); font-weight: 600; min-width: 140px; flex-shrink: 0; }
.meta-v { color: var(--text-primary); }

/* ---------- Filter chips ---------- */
.filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--border-strong); background: var(--surface-1); color: var(--text-secondary);
  border-radius: 999px; padding: 6px 12px; font-size: 12.5px; font-weight: 600; cursor: pointer;
}
.chip:hover { background: var(--surface-2); }
.chip-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Invest cards ---------- */
.invest-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 12px; }
.invest-card {
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px;
}
.invest-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.invest-name { margin: 0; font-size: 15px; font-weight: 700; }
.invest-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 12px; font-size: 12.5px; }
.invest-meta-row { display: flex; gap: 5px; }
.invest-meta-row .k { color: var(--muted-ink); min-width: 52px; }
.invest-meta-row .v { color: var(--text-primary); font-weight: 600; }
.invest-body { display: flex; flex-direction: column; gap: 6px; }
.invest-isu { margin: 0; font-size: 13.5px; }
.invest-angka { margin: 0; padding-left: 16px; font-size: 12.5px; color: var(--text-secondary); }
.invest-tindakan { margin: 0; font-size: 12.5px; color: var(--text-secondary); }
.invest-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 8px; }
.invest-rugi { font-size: 13px; font-weight: 700; }
.invest-src { font-size: 11px; color: var(--muted-ink); }
.invest-none { color: var(--muted-ink); font-size: 14px; }

/* status badge */
.st { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.st-polis { background: #fdecec; color: #b33131; }
.st-mahkamah { background: #e8ecf9; color: #2744b5; }
.st-timbangtara { background: #fdf1dd; color: #8a5b00; }
.st-selesai { background: #e6f2ec; color: #0c6b43; }
.st-hapus { background: #3a3a3a; color: #fff; }
.st-pantau { background: #eaeaf3; color: #4a3aa7; }
[data-theme="dark"] .st-polis { background: #3a1b1b; color: #f0a0a0; }
[data-theme="dark"] .st-mahkamah { background: #1b2445; color: #a9bdf7; }
[data-theme="dark"] .st-timbangtara { background: #3a2d12; color: #f0c66a; }
[data-theme="dark"] .st-selesai { background: #14382a; color: #7ed6ac; }
[data-theme="dark"] .st-hapus { background: #3f3f3f; color: #fff; }
[data-theme="dark"] .st-pantau { background: #241f45; color: #c9c2f2; }

/* ---------- Role timeline ---------- */
.role-timeline { display: flex; flex-direction: column; gap: 10px; background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.role-row { display: flex; align-items: center; gap: 10px; }
.role-label { width: 150px; flex-shrink: 0; font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.role-track { flex: 1; position: relative; height: 26px; }
.role-bar {
  position: absolute; top: 8px; height: 14px; border-radius: 4px;
  background: var(--series-1); opacity: 0.85; cursor: pointer; min-width: 6px;
}
.role-bar:hover { opacity: 1; }
.role-politik { background: var(--series-8); }
.role-khas { background: var(--series-4); }
.role-tamat { background: repeating-linear-gradient(45deg, var(--series-8), var(--series-8) 4px, var(--st-critical) 4px, var(--st-critical) 8px); }

/* ---------- Politik ---------- */
.pol-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.pol-card h4 { margin: 0 0 4px; font-size: 14.5px; }
.pol-role { margin: 0 0 6px; font-size: 12.5px; color: var(--text-secondary); }
.pol-politik { margin: 0; font-size: 13px; }

/* ---------- Amaran ---------- */
.amaran-list { display: flex; flex-direction: column; gap: 6px; }
.amaran-row { display: flex; align-items: baseline; gap: 10px; font-size: 13px; padding: 6px 10px; border-radius: 8px; background: var(--surface-2); }
.amaran-date { font-weight: 700; color: var(--muted-ink); min-width: 46px; font-variant-numeric: tabular-nums; }
.amaran-body { flex: 1; }
.amaran-hasil { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.amaran-good .amaran-hasil { background: #e6f2ec; color: #0c6b43; }
.amaran-warn .amaran-hasil { background: #fdf1dd; color: #8a5b00; }
.amaran-bad .amaran-hasil { background: #fdecec; color: #b33131; }
.amaran-neutral .amaran-hasil { background: var(--surface-3); color: var(--text-secondary); }
[data-theme="dark"] .amaran-good .amaran-hasil { background: #14382a; color: #7ed6ac; }
[data-theme="dark"] .amaran-warn .amaran-hasil { background: #3a2d12; color: #f0c66a; }
[data-theme="dark"] .amaran-bad .amaran-hasil { background: #3a1b1b; color: #f0a0a0; }

/* ---------- Kronologi ---------- */
.chrono { position: relative; display: flex; flex-direction: column; gap: 0; }
.chrono-item { display: grid; grid-template-columns: 86px 20px 1fr; gap: 10px; padding-bottom: 16px; position: relative; }
.chrono-item:not(:last-child)::before {
  content: ''; position: absolute; left: 105px; top: 16px; bottom: 0; width: 2px; background: var(--gridline);
}
.chrono-date { font-weight: 700; color: var(--muted-ink); font-size: 13px; text-align: right; padding-top: 2px; font-variant-numeric: tabular-nums; }
.chrono-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--series-1); margin-top: 5px;
  border: 2px solid var(--surface-1); box-shadow: 0 0 0 1px var(--border-strong);
}
.chrono-asas .chrono-dot { background: var(--muted-ink); }
.chrono-krisis .chrono-dot { background: var(--st-critical); }
.chrono-tadbir .chrono-dot { background: var(--series-7); }
.chrono-amaran .chrono-dot { background: var(--series-4); }
.chrono-hafis .chrono-dot { background: var(--series-3); }
.chrono-ujsb .chrono-dot { background: var(--series-2); }
.chrono-body { padding-bottom: 2px; }
.chrono-t { margin: 0 0 2px; font-size: 14.5px; font-weight: 700; }
.chrono-b { margin: 0 0 2px; font-size: 13.5px; color: var(--text-secondary); }
.chrono-src { font-size: 11px; color: var(--muted-ink); }
.chrono-none { color: var(--muted-ink); }

/* ---------- Syor ---------- */
.syor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }
.syor-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px; }
.syor-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.syor-t { margin: 0; font-size: 14.5px; font-weight: 700; }
.syor-kat { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); white-space: nowrap; }
.syor-items { margin: 0; padding-left: 18px; font-size: 13px; color: var(--text-secondary); display: flex; flex-direction: column; gap: 3px; }
.syor-src { font-size: 11px; color: var(--muted-ink); margin-top: auto; }

/* ---------- Percanggahan ---------- */
.perc-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }
.perc-card { background: var(--surface-1); border: 1px solid var(--border); border-left: 3px solid var(--st-critical); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.perc-t { margin: 0 0 6px; font-size: 14.5px; font-weight: 700; }
.perc-a { margin: 0 0 3px; font-size: 13px; }
.perc-b { margin: 0 0 6px; font-size: 13px; }
.perc-src { font-size: 11px; color: var(--muted-ink); }

/* ---------- Glosari ---------- */
.glo { display: flex; flex-direction: column; gap: 6px; }
.glo-item { background: var(--surface-1); border: 1px solid var(--border); border-radius: 10px; padding: 0; box-shadow: var(--shadow); }
.glo-item summary { padding: 12px 14px; font-weight: 600; font-size: 14px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.glo-item summary::after { content: '+'; font-size: 18px; color: var(--muted-ink); }
.glo-item[open] summary::after { content: '−'; }
.glo-item p { margin: 0; padding: 0 14px 12px; font-size: 13.5px; color: var(--text-secondary); }

/* ---------- Sumber box ---------- */
.src-box { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.src-box p { margin: 0; font-size: 13.5px; color: var(--text-secondary); }

/* ---------- Responsif ---------- */
@media (max-width: 640px) {
  main { padding: 16px 12px 70px; }
  .brand-title { font-size: 14px; }
  .role-label { width: 110px; font-size: 11px; }
  .chart-card { padding: 12px; }
  .chart-meta { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .chrono-item { grid-template-columns: 64px 16px 1fr; }
  .chrono-item:not(:last-child)::before { left: 79px; }
  .invest-list { grid-template-columns: 1fr; }
  .vb-grid-2, .vb-grid-3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}
