:root {
  --bg: #f5f5f7;
  --card: rgba(255, 255, 255, 0.66);
  --card-solid: #ffffff;
  --accent: #0071e3;
  --accent2: #ff9500;
  --accent3: #34c759;
  --accent4: #ff3b30;
  --text: #1d1d1f;
  --text2: #6e6e73;
  --glass-border: rgba(255, 255, 255, 0.7);
  /* 液态玻璃：内高光 + 内侧浅影 + 接触阴影 + 蓝紫中距投影 + 大范围柔光 */
  --shadow-glass:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 0 24px rgba(0, 113, 227, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(31, 38, 135, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.1);
  --shadow-glass-lg:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 0 32px rgba(0, 113, 227, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 18px 44px rgba(31, 38, 135, 0.18),
    0 48px 110px rgba(0, 0, 0, 0.13);
  --radius-lg: 20px;
  --radius-md: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: light; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(1200px 800px at 82% -10%, rgba(90, 200, 250, 0.12), transparent 60%),
    radial-gradient(1000px 700px at 0% 18%, rgba(175, 82, 222, 0.09), transparent 55%),
    radial-gradient(900px 600px at 50% 110%, rgba(0, 113, 227, 0.08), transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== 流动光场（液态玻璃透出的色彩） ===== */
.aurora {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.85;
  will-change: transform;
}
.o1 {
  width: 680px; height: 680px; left: -180px; top: -200px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.34), transparent 65%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.o2 {
  width: 600px; height: 600px; right: -160px; top: 4%;
  background: radial-gradient(circle, rgba(175, 82, 222, 0.3), transparent 65%);
  animation: drift2 28s ease-in-out infinite alternate;
}
.o3 {
  width: 760px; height: 760px; left: 30%; bottom: -340px;
  background: radial-gradient(circle, rgba(90, 200, 250, 0.34), transparent 65%);
  animation: drift1 34s ease-in-out infinite alternate-reverse;
}
.o4 {
  width: 480px; height: 480px; right: 22%; top: 38%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.2), transparent 65%);
  animation: drift2 40s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(110px, 70px) scale(1.22); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-90px, 80px) scale(1.16); }
}

/* 玻璃主体 */
.topbar, main, footer { position: relative; z-index: 1; }

/* ===== 顶栏（液态玻璃导航 + 发光分割线） ===== */
.topbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 26px;
  position: sticky; top: 0; z-index: 10;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 28px rgba(31, 38, 135, 0.08);
}
.topbar::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.45), rgba(175, 82, 222, 0.3), transparent);
  filter: blur(0.5px);
  opacity: 0.75;
}
.title h1 {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.title p { color: var(--text2); font-size: 0.8rem; margin-top: 4px; font-variant-numeric: tabular-nums; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filters label {
  color: var(--text2); font-size: 0.83rem;
  display: flex; align-items: center; gap: 6px;
}
.filters input, .filters select {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px; padding: 7px 10px; font-size: 0.83rem;
  outline: none; transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.filters input:focus, .filters select:focus {
  border-color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(0, 113, 227, 0.16);
}
.filters option { background: var(--card-solid); color: var(--text); }

.banner {
  margin: 14px 26px 0; padding: 10px 14px; border-radius: 12px;
  background: rgba(255, 59, 48, 0.09);
  border: 1px solid rgba(255, 59, 48, 0.28);
  color: #d70015; font-size: 0.84rem;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hidden { display: none; }

main { padding: 22px 26px 34px; max-width: 1440px; margin: 0 auto; }

/* ===== 领奖台（液态玻璃 + 立柱内发光） ===== */
.podium {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin-left: auto; margin-right: auto;
  align-items: flex-end; gap: clamp(8px, 2.5vw, 24px);
  margin-bottom: 22px; padding: 34px 22px 0;
  /* 镜面高光并入背景层（在内容之下），避免白色覆盖层把文字洗淡 */
  background:
    radial-gradient(120% 70% at 12% 0%, rgba(255, 255, 255, 0.9), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.podium-card, .podium-slot {
  display: flex; flex-direction: column; align-items: center;
  min-width: 0; text-align: center;
  animation: podiumBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
}
.podium-card:nth-child(1), .podium-slot:nth-child(1) { animation-delay: 0.3s; }
.podium-card:nth-child(2), .podium-slot:nth-child(2) { animation-delay: 0.1s; }
.podium-card:nth-child(3), .podium-slot:nth-child(3) { animation-delay: 0.5s; }
@keyframes podiumBounce {
  0% { opacity: 0; transform: translateY(80px) scale(0.6); }
  50% { transform: translateY(-12px) scale(1.04); }
  75% { transform: translateY(4px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.podium-card .medal {
  font-size: 2.2rem; line-height: 1;
  animation: medalFloat 2.5s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}
@keyframes medalFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}
.podium-name {
  margin-top: 8px; font-weight: 600; font-size: 1rem;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.podium-tokens {
  margin-top: 2px; font-size: 1.3rem; font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.podium-sub { color: var(--text2); font-size: 0.76rem; margin-top: 3px; font-variant-numeric: tabular-nums; }
.podium-bar-wrapper {
  width: 100%; max-width: 100px; height: 5px;
  background: rgba(0, 0, 0, 0.07); border-radius: 3px;
  margin-top: 10px; overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}
.podium-bar-fill {
  height: 100%; border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.podium-bar-1 { background: linear-gradient(90deg, #f5a623, #ffd60a); box-shadow: 0 0 10px rgba(245, 166, 35, 0.5); }
.podium-bar-2 { background: linear-gradient(90deg, #aeb0b4, #d1d1d6); box-shadow: 0 0 8px rgba(142, 142, 147, 0.3); }
.podium-bar-3 { background: linear-gradient(90deg, #cd7f32, #e8b87a); box-shadow: 0 0 8px rgba(205, 127, 50, 0.3); }
.podium-stand {
  width: 100%; max-width: 130px;
  border-radius: 12px 12px 0 0;
  margin-top: 10px;
  position: relative;
}
.podium-stand-1 {
  height: 78px;
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.32), rgba(245, 166, 35, 0.07));
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-bottom: none;
  box-shadow: inset 0 12px 24px rgba(245, 166, 35, 0.2), inset 0 -10px 18px rgba(255, 255, 255, 0.4);
}
.podium-stand-2 {
  height: 58px;
  background: linear-gradient(180deg, rgba(142, 142, 147, 0.24), rgba(142, 142, 147, 0.06));
  border: 1px solid rgba(142, 142, 147, 0.18);
  border-bottom: none;
  box-shadow: inset 0 12px 24px rgba(142, 142, 147, 0.16), inset 0 -10px 18px rgba(255, 255, 255, 0.4);
}
.podium-stand-3 {
  height: 42px;
  background: linear-gradient(180deg, rgba(205, 127, 50, 0.24), rgba(205, 127, 50, 0.06));
  border: 1px solid rgba(205, 127, 50, 0.18);
  border-bottom: none;
  box-shadow: inset 0 12px 24px rgba(205, 127, 50, 0.16), inset 0 -10px 18px rgba(255, 255, 255, 0.4);
}
.podium-slot { justify-content: flex-end; }
.podium-slot::after {
  content: '';
  width: 100%; max-width: 130px; height: 42px;
  border-radius: 12px 12px 0 0;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-bottom: none;
  box-shadow: inset 0 10px 18px rgba(0, 0, 0, 0.03);
}
/* 彩带 */
.confetti-piece {
  position: absolute; top: -12px; width: 6px; height: 6px;
  border-radius: 2px; z-index: 3; pointer-events: none;
  opacity: 0;
  animation: confettiFall 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes confettiFall {
  0% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--dx), 420px) rotate(540deg); }
}

/* ===== KPI 液态玻璃卡（常驻镜面高光 + 悬停扫光） ===== */
.kpis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px; margin-bottom: 20px;
}
.kpi {
  position: relative;
  background:
    radial-gradient(120% 70% at 12% 0%, rgba(255, 255, 255, 0.92), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: 20px 16px 16px;
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  backdrop-filter: blur(22px) saturate(200%);
  -webkit-backdrop-filter: blur(22px) saturate(200%);
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.kpi::after {
  content: '';
  position: absolute; top: -60%; left: -80%;
  width: 60%; height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(8deg) translateX(0);
  opacity: 0; /* 平时不可见，避免白色光带压淡卡片内容 */
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.kpi:hover { transform: translateY(-4px); border-color: rgba(0, 113, 227, 0.3); box-shadow: var(--shadow-glass-lg); }
.kpi:hover::after { animation: sheenSweep 1.1s ease forwards; }
@keyframes sheenSweep {
  0% { transform: rotate(8deg) translateX(0); opacity: 0; }
  15% { opacity: 0.5; }
  100% { transform: rotate(8deg) translateX(520%); opacity: 0; }
}
.kpi-v {
  font-size: 1.45rem; font-weight: 700; color: var(--text);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
  animation: countPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes countPop {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}
.kpi-t { color: var(--text2); font-size: 0.72rem; margin-top: 6px; font-weight: 500; letter-spacing: 0.4px; }

/* ===== 图表液态玻璃卡 ===== */
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 20px; }
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
}
.card {
  position: relative;
  background:
    radial-gradient(120% 70% at 12% 0%, rgba(255, 255, 255, 0.92), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:nth-of-type(1) { animation-delay: 0.1s; }
.card:nth-of-type(2) { animation-delay: 0.2s; }
.card:nth-of-type(3) { animation-delay: 0.3s; }
.card:nth-of-type(4) { animation-delay: 0.4s; }
.card:nth-of-type(5) { animation-delay: 0.5s; }
.card::after {
  content: '';
  position: absolute; top: -60%; left: -80%;
  width: 60%; height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(8deg) translateX(0);
  opacity: 0; /* 平时不可见，避免白色光带压淡卡片内容 */
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: rgba(0, 113, 227, 0.24); box-shadow: var(--shadow-glass-lg); }
.card:hover::after { animation: sheenSweep 1.2s ease forwards; }
.card h2 {
  font-size: 0.95rem; color: var(--text); font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  position: relative;
}
.card h2 .badge {
  font-size: 0.62rem; font-weight: 500;
  background: rgba(0, 113, 227, 0.12); color: var(--accent);
  padding: 2px 8px; border-radius: 6px; letter-spacing: 0.4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.chart { height: 300px; width: 100%; }

/* ===== 明细表（浅色玻璃表格） ===== */
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
thead th {
  text-align: left; padding: 11px 14px;
  background: rgba(255, 255, 255, 0.55);
  color: #1d1d1f;
  font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  position: sticky; top: 0; z-index: 1;
  backdrop-filter: blur(12px);
}
th, td { padding: 10px 14px; text-align: right; border-bottom: 1px solid rgba(0, 0, 0, 0.09); }
th:first-child, td:first-child, th:nth-child(2), td:nth-child(2), th:nth-child(3), td:nth-child(3), th:nth-child(4), td:nth-child(4) { text-align: left; }
th { color: #1d1d1f; cursor: pointer; user-select: none; font-weight: 700; }
th:hover { color: var(--accent); }
td { font-variant-numeric: tabular-nums; }
tbody tr { transition: all 0.3s ease; animation: rowFadeIn 0.4s ease backwards; }
tbody tr:hover { background: rgba(0, 113, 227, 0.05); transform: scale(1.002); }
tbody tr:nth-child(even) { background: rgba(0, 0, 0, 0.035); }
tbody tr.model-row { background: transparent !important; animation: none; }
tbody tr.model-row:hover { background: rgba(0, 113, 227, 0.04) !important; transform: none; }
tbody tr.model-row td { padding-top: 6px; padding-bottom: 6px; font-size: 0.88em; color: #1d1d1f; font-weight: 500; border-bottom-color: rgba(0, 0, 0, 0.07); }
.model-cell { display: flex; align-items: center; gap: 8px; padding-left: 30px; font-family: var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace); }
.model-branch { color: var(--accent); opacity: 1; font-weight: 800; }
@keyframes rowFadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.rank { font-weight: 800; color: #1d1d1f; }
.rank-1 { color: #c98a00 !important; text-shadow: 0 1px 12px rgba(201, 138, 0, 0.35); }
.rank-2 { color: #58585d !important; text-shadow: 0 1px 8px rgba(88, 88, 93, 0.3); }
.rank-3 { color: #a05a1c !important; text-shadow: 0 1px 8px rgba(160, 90, 28, 0.3); }
.name-cell {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: #000; font-size: 0.92rem;
  letter-spacing: -0.01em;
}
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: #fff; flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(40px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

footer { color: var(--text2); font-size: 0.78rem; text-align: center; padding: 18px; letter-spacing: 0.5px; }

@media (max-width: 900px) {
  main { padding: 12px; }
  .topbar {
    padding: 10px 12px;
    padding-top: calc(10px + env(safe-area-inset-top));
    gap: 8px;
  }
  .title h1 { font-size: 1.12rem; }
  .title p { font-size: 0.68rem; margin-top: 2px; }
  .banner { margin: 10px 12px 0; }

  /* 筛选条：一行可横向滑动，触控目标 ≥40px */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filters label { flex-shrink: 0; font-size: 0.78rem; }
  .filters input, .filters select {
    min-height: 40px;
    font-size: 0.9rem;
    padding: 6px 10px;
    border-radius: 12px;
  }

  .podium { padding: 22px 6px 0; gap: 6px; border-radius: 20px; }
  .podium-card .medal { font-size: 1.45rem; }
  .podium-name { font-size: 0.8rem; margin-top: 6px; }
  .podium-tokens { font-size: 0.98rem; }
  .podium-sub { font-size: 0.62rem; }
  .podium-bar-wrapper { max-width: 60px; height: 4px; }
  .podium-block { height: 100px; border-radius: 12px 12px 0 0; }
  .rank-1 .podium-block { height: 118px; }
  .podium-stand { max-width: 96px; }
  .podium-stand-1 { height: 62px; }
  .podium-stand-2 { height: 46px; }
  .podium-stand-3 { height: 34px; }
  .podium-slot::after { max-width: 96px; height: 34px; }

  .grid { gap: 12px; }
  .card { padding: 12px; border-radius: 16px; }
  .card h2 { font-size: 0.85rem; margin-bottom: 8px; }
  .chart { height: 240px; }

  table { font-size: 0.72rem; }
  th, td { padding: 8px 6px; }
  .avatar { width: 22px; height: 22px; font-size: 0.58rem; }
  .name-cell { gap: 6px; }

  footer { padding: 12px; font-size: 0.66rem; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
}

@media (max-width: 640px) {
  /* KPI 保持一行 6 卡，但卡片固定最小宽度可横滑，避免数字被压扁 */
  .kpis {
    grid-template-columns: repeat(6, minmax(118px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 8px;
  }
  .kpis::-webkit-scrollbar { display: none; }
  .kpi { padding: 10px 8px; border-radius: 12px; }
  .kpi-v { font-size: 1.02rem; }
  .kpi-t { font-size: 0.6rem; letter-spacing: 0.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

@media (max-width: 420px) {
  .podium-sub { display: none; }
  .podium-tokens { font-size: 0.88rem; }
  .medal { font-size: 1.25rem; }
  .podium-name { font-size: 0.72rem; }
  .chart { height: 220px; }
  .card h2 { font-size: 0.78rem; }
  th, td { padding: 7px 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .o4, .medal, .kpi-v, .card, .kpi, .podium, .podium-card, .podium-slot, tbody tr { animation: none !important; }
  .card::after, .kpi::after { animation: none !important; opacity: 0; }
  * { transition: none !important; }
}
