/* ── Calistenia Games PTY II · identidad BM Calistenia ─────────────── */
:root {
  --bg: #09090B;
  --bg-soft: #0C0C10;
  --panel: #121217;
  --panel-2: #17171E;
  --border: #24242B;
  --border-2: #33333C;
  --red: #E5322D;
  --red-hi: #FF4B45;
  --red-soft: rgba(229, 50, 45, .12);
  --red-line: rgba(229, 50, 45, .42);
  --text: #F5F5F7;
  --muted: #9AA0AA;
  --dim: #6A6E78;
  --gold: #FFD166;
  --silver: #C9CCD4;
  --bronze: #C08552;
  --shadow: 0 18px 50px rgba(0, 0, 0, .55);
  --ring: 0 0 0 1px var(--border) inset;
}

* { box-sizing: border-box; margin: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  background: transparent;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-feature-settings: "cv11", "ss01";
  overflow-x: hidden;
}
/* Fondo vivo de puntos rojos (fx.js): detrás del contenido, no intercepta toques */
#fx { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
a { color: inherit; text-decoration: none; }
a, button, .tab, label { touch-action: manipulation; }
img { display: block; }
button { font-family: inherit; }
::selection { background: var(--red); color: #fff; }

/* Grano de película sobre todo el sitio */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 90;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Tipografía ─────────────────────────────────────────────────── */
.display {
  font-family: Anton, "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1;
}
/* Cromado metálico, igual que los gráficos del evento.
   El grano lo aporta la capa global de body::after, así el brillo del texto
   no depende del trozo de ruido que le toque a cada título. */
.chrome {
  background-image: linear-gradient(177deg, #FFFFFF 2%, #DCDFE6 26%, #7D818A 47%, #B3B7BE 54%, #F4F6FA 68%, #969BA4 88%, #D2D6DD 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.red { color: var(--red); }
.red-fill { -webkit-text-fill-color: var(--red); color: var(--red); }
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--red);
}

/* ── Estructura ─────────────────────────────────────────────────── */
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 18px; }
section { position: relative; }
.sec { padding: 56px 0 8px; scroll-margin-top: 72px; }
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px; }
.sec-title { margin-top: 8px; font-size: clamp(29px, 6.4vw, 42px); }
.lede { margin-top: 12px; max-width: 62ch; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.rule { height: 1px; border: 0; background: linear-gradient(90deg, var(--red-line), var(--border) 30%, transparent); margin-top: 14px; }

.panel {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: 18px;
}
.panel-flat { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px; }

/* ── Header ─────────────────────────────────────────────────────── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, .82);
  backdrop-filter: blur(14px) saturate(140%);
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 18px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 34px; height: 34px; flex: none; }
.brand-txt { font-size: 15.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hdr-nav { display: flex; align-items: center; gap: 6px; flex: none; }
.nav-link {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--red-line);
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hide-sm { display: none; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero { overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(74% 52% at 50% -4%, rgba(229, 50, 45, .26), rgba(9, 9, 11, 0) 72%),
    radial-gradient(46% 40% at 50% 108%, rgba(229, 50, 45, .10), rgba(9, 9, 11, 0) 70%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .016) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .016) 0 1px, transparent 1px 58px);
}
.hero-watermark {
  position: absolute;
  top: 44%;
  left: 50%;
  width: min(760px, 150%);
  transform: translate(-50%, -50%);
  opacity: .028;
  pointer-events: none;
  filter: grayscale(1);
}
.hero-top-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.hero-in {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 46px 18px 50px;
}
.hero-logo { width: 112px; height: 112px; filter: drop-shadow(0 0 34px rgba(229, 50, 45, .5)); }
.hero-title { margin-top: 20px; font-size: clamp(48px, 12.4vw, 96px); line-height: .93; }
.hero-title > span { display: block; }
.hero-sub { margin-top: 15px; max-width: 44ch; font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.pills { margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, .022);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  white-space: nowrap;
}
.pill svg { width: 13px; height: 13px; opacity: .75; flex: none; }

/* Cuenta regresiva */
.count { margin-top: 26px; display: flex; gap: 8px; }
.count-cell {
  min-width: 68px;
  padding: 11px 8px 9px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}
.count-n { font-size: 27px; font-weight: 800; line-height: 1; }
.count-l { margin-top: 5px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); }

/* Franja "ahora" */
.now {
  margin-top: 24px;
  width: 100%;
  max-width: 460px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--red-line);
  background: linear-gradient(90deg, rgba(229, 50, 45, .13), rgba(229, 50, 45, .05));
  border-radius: 16px;
  padding: 14px 17px;
  text-align: left;
}
.now-tag { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--red); flex: none; }
.now-txt { font-size: 13.5px; font-weight: 700; min-width: 0; }

.cta-row { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  cursor: pointer;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn:hover { background: rgba(255, 255, 255, .07); border-color: #4A4A54; }
.btn:active { transform: scale(.97); }
.btn-red {
  background: linear-gradient(180deg, var(--red-hi), var(--red));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 34px rgba(229, 50, 45, .34);
}
.btn-red:hover { background: linear-gradient(180deg, #FF5B55, #E83833); border-color: transparent; }

/* Cifras del evento */
.stats { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; width: 100%; max-width: 520px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.stat { background: var(--bg); padding: 15px 8px; }
.stat-n { font-size: 26px; }
.stat-l { margin-top: 4px; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); }

/* ── Líderes ────────────────────────────────────────────────────── */
.leaders { margin-top: 20px; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); }
.leader { padding: 16px; position: relative; overflow: hidden; }
.leader::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--gold); }
.leader-cat { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--dim); }
.leader-name { margin-top: 9px; display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; }
.leader-time { margin-top: 8px; font-size: 25px; font-weight: 800; color: var(--gold); }
.leader-meta { margin-top: 3px; font-size: 11.5px; color: var(--dim); }
.crown { width: 15px; height: 15px; flex: none; color: var(--gold); }

/* ── Tabla de resultados ────────────────────────────────────────── */
.tabs { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 6px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, .022);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s ease;
}
.tab:hover { color: var(--text); border-color: #4A4A54; }
.tab.active {
  border-color: transparent;
  background: linear-gradient(180deg, var(--red-hi), var(--red));
  color: #fff;
  box-shadow: 0 6px 22px rgba(229, 50, 45, .32);
}

.live-tag { display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 600; color: var(--muted); padding-bottom: 6px; }
.live-tag.off { color: var(--dim); }
.live-tag.off .dot { background: var(--dim); box-shadow: none; animation: none; }

.tabs-wrap { position: sticky; top: 55px; z-index: 30; background: var(--bg); padding: 16px 0 8px; }

.progress { margin-top: 14px; display: flex; align-items: center; gap: 12px; }
.progress-bar { flex: 1; height: 5px; border-radius: 999px; background: var(--border); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--red), var(--red-hi)); transition: width .5s cubic-bezier(.22, 1, .36, 1); }
.progress-txt { font-size: 11px; font-weight: 700; color: var(--dim); flex: none; }

.board { margin-top: 14px; overflow: hidden; }
.lb-row { display: grid; grid-template-columns: 34px 1fr 72px; gap: 10px; align-items: center; padding: 13px 14px; }
.pcol { display: none; text-align: center; font-size: 13px; }
.lb-head {
  border-bottom: 1px solid var(--border);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--dim);
  padding: 12px 14px;
}
.lb-item { border-bottom: 1px solid var(--border); }
.lb-item:last-child { border-bottom: 0; }
.lb-item > .lb-row { cursor: pointer; transition: background .15s ease; }
.lb-item > .lb-row:active { background: rgba(255, 255, 255, .045); }
.lb-pos { font-size: 19px; text-align: center; }
.lb-name { display: flex; align-items: center; gap: 8px; min-width: 0; font-size: 14px; font-weight: 600; }
.lb-name > span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-total { text-align: right; font-size: 15px; font-weight: 800; }
.tag-nt { background: var(--red-soft); color: var(--red); border-radius: 6px; padding: 2px 6px; font-size: 9.5px; font-weight: 800; flex: none; letter-spacing: .04em; }
.top1 { background: linear-gradient(90deg, rgba(255, 209, 102, .1), transparent 58%); box-shadow: inset 3px 0 0 var(--gold); }
.top2 { background: linear-gradient(90deg, rgba(201, 204, 212, .08), transparent 58%); box-shadow: inset 3px 0 0 var(--silver); }
.top3 { background: linear-gradient(90deg, rgba(192, 133, 82, .09), transparent 58%); box-shadow: inset 3px 0 0 var(--bronze); }
.lb-detail { padding: 0 14px 16px; display: grid; gap: 9px; grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); animation: slide .22s cubic-bezier(.22, 1, .36, 1); }
@keyframes slide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.pcard { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 12px; }
.pcard-l { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--dim); }
.pcard-t { margin-top: 6px; font-size: 22px; font-weight: 700; }
.pcard-n { margin-top: 5px; font-size: 12px; line-height: 1.45; color: var(--muted); }
.empty { padding: 40px 18px; text-align: center; }
.flash { animation: flash 1.6s ease-out; }
@keyframes flash { 0% { background-color: rgba(229, 50, 45, .3); } 100% { background-color: transparent; } }

/* ── Agenda ─────────────────────────────────────────────────────── */
.timeline { margin-top: 22px; list-style: none; padding: 0; }
.tl-item { position: relative; display: flex; gap: 16px; padding-bottom: 20px; }
.tl-line { position: absolute; left: 7px; top: 22px; bottom: -2px; width: 1.5px; }
.tl-dot { position: relative; margin-top: 3px; width: 15px; height: 15px; flex: none; border-radius: 999px; border: 2px solid var(--border); }
.tl-dot.st-done { border-color: var(--red); background: var(--red); }
.tl-dot.st-now { border-color: var(--red); background: rgba(229, 50, 45, .45); box-shadow: 0 0 12px rgba(229, 50, 45, .7); animation: pulse 1.5s ease-in-out infinite; }
.tl-body { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.tl-label { font-size: 14px; font-weight: 600; }
.badge {
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.badge-now { background: var(--red-soft); color: var(--red); }
.badge-done { color: var(--dim); padding-left: 0; }

/* ── Categorías ─────────────────────────────────────────────────── */
.cats { margin-top: 20px; display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.cat { padding: 18px; }
.cat-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cat-count { background: var(--red-soft); color: var(--red); border-radius: 999px; padding: 4px 12px; font-size: 10.5px; font-weight: 800; flex: none; }
.cat-list { margin-top: 14px; list-style: none; padding: 0; display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); }
.cat-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; min-width: 0; }
.av {
  width: 25px;
  height: 25px;
  flex: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--muted);
}
.cat-list li > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Orden de salida ────────────────────────────────────────────── */
.cat-live { margin-top: 10px; display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--red); background: var(--red-soft); border-radius: 999px; padding: 6px 12px; }
.heats { margin-top: 14px; display: flex; flex-direction: column; }
.heat {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
  margin-bottom: 8px;
}
.heat:last-child { margin-bottom: 0; }
.heat-n { display: grid; place-items: center; height: 26px; border-radius: 8px; background: rgba(255, 255, 255, .05); border: 1px solid var(--border-2); font-size: 10.5px; font-weight: 800; letter-spacing: .04em; color: var(--muted); }
.heat-names { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.heat-names span { font-size: 13.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.heat.now { border-color: var(--red-line); background: linear-gradient(90deg, rgba(229, 50, 45, .13), rgba(229, 50, 45, .04)); }
.heat.now .heat-n { background: var(--red); border-color: var(--red); color: #fff; }
.heat.done { opacity: .5; }

/* ── Reseña en Google ───────────────────────────────────────────── */
.review-box { margin-top: 8px; padding: 30px 22px; text-align: center; }
.review-box img { margin: 0 auto; opacity: .95; }
.stars { margin-top: 12px; font-size: 17px; letter-spacing: .28em; color: var(--gold); }
.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  animation: rise .3s cubic-bezier(.22, 1, .36, 1);
}
@keyframes rise { from { transform: translateY(110%); } to { transform: none; } }
.sheet-card {
  max-width: 420px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.sheet-x { margin-top: 10px; width: 100%; background: transparent; border: 0; color: var(--dim); font-size: 12px; font-weight: 700; padding: 10px; cursor: pointer; }
.sheet-x:hover { color: var(--muted); }

/* ── Footer ─────────────────────────────────────────────────────── */
.ftr { position: relative; margin-top: 40px; border-top: 1px solid var(--border); padding: 30px 0 calc(34px + env(safe-area-inset-bottom)); text-align: center; }
.ftr img { width: 40px; height: 40px; margin: 0 auto; opacity: .9; }
.ftr-t { margin-top: 12px; font-size: 13px; font-weight: 700; }
.ftr-s { margin-top: 5px; font-size: 11.5px; color: var(--dim); }
.ftr-a { margin-top: 16px; display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); border-bottom: 1px solid var(--border-2); padding-bottom: 2px; }
.ftr-a:hover { color: var(--muted); }

/* ── Utilidades ─────────────────────────────────────────────────── */
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 10px rgba(229, 50, 45, .85);
  animation: pulse 1.5s ease-in-out infinite;
  flex: none;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1); }
.reveal.in { opacity: 1; transform: none; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  z-index: 120;
  background: var(--panel-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── Formularios (panel de jueces) ──────────────────────────────── */
input, select {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  color: var(--text);
  padding: 12px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
input::placeholder { color: var(--dim); }

/* ── Breakpoints ────────────────────────────────────────────────── */
@media (min-width: 480px) {
  .hide-sm { display: inline-flex; }
}
@media (max-width: 379px) {
  .hero-in { padding: 36px 14px 42px; }
  .hero-logo { width: 92px; height: 92px; }
  .count-cell { min-width: 0; flex: 1; padding: 10px 4px 8px; }
  .count { width: 100%; gap: 6px; }
  .count-n { font-size: 23px; }
  .pill { padding: 7px 13px; font-size: 10px; }
}
@media (min-width: 640px) {
  .sec { padding-top: 66px; }
  .heat-names { flex-direction: row; align-items: center; gap: 16px; }
  .heat-names span { flex: 1 1 0; }
  .lb-row { grid-template-columns: 44px 1fr 60px 60px 60px 82px; padding: 14px 18px; }
  .pcol { display: block; }
  .lb-head { padding: 12px 18px; }
  .lb-item > .lb-row:hover { background: rgba(255, 255, 255, .04); }
  .lb-detail { padding: 0 18px 16px; }
  .count-cell { min-width: 80px; }
  .count-n { font-size: 32px; }
  .stat-n { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dot { animation: none; }
  .flash, .lb-detail { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
