/* ============================================================
   华体赛事通 · 共享外壳样式  /assets/site.css
   夜场墨绿底 + 切角面板 + 荧光青锚点 + 橙红数据强调
   ============================================================ */

:root {
  --hs-ink: #0A1A16;
  --hs-panel: #10241E;
  --hs-turf: #05090A;
  --hs-brand: #29F2C4;
  --hs-cool: #7FA79C;
  --hs-data: #FF4A2E;
  --hs-amber: #FF9A1F;
  --hs-text: #F2F6F4;
  --hs-text-2: #8FA69F;
  --hs-line: #1E3A33;

  --hs-shell: 1280px;
  --hs-gutter: clamp(16px, 4vw, 32px);
  --hs-gap: 24px;

  --hs-font-ui: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, -apple-system, sans-serif;
  --hs-font-num: "Archivo Narrow", "Oswald", "DIN Condensed", "Noto Sans SC", "Arial Narrow", sans-serif;
  --hs-font-mono: "JetBrains Mono", "SFMono-Regular", "Menlo", Consolas, "Courier New", monospace;

  --hs-cut: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  --hs-cut-sm: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  --hs-cut-top: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
  --hs-speed: 180ms;
}

@property --hs-gauge {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--hs-ink);
  background-image:
    repeating-linear-gradient(115deg, rgba(41, 242, 196, 0.022) 0 2px, transparent 2px 26px),
    radial-gradient(circle at 1px 1px, rgba(41, 242, 196, 0.07) 1px, transparent 1.6px);
  background-size: auto, 24px 24px;
  background-attachment: fixed;
  color: var(--hs-text);
  font-family: var(--hs-font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd, p, figure { margin: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--hs-text);
  overflow-wrap: break-word;
}
h1 { font-size: clamp(28px, 5vw, 34px); }
h2 { font-size: clamp(21px, 3.4vw, 24px); }
h3 { font-size: 18px; }
a { color: var(--hs-brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #6df8d6; }
hr { border: 0; border-top: 1px solid var(--hs-line); margin: 24px 0; }

:focus-visible {
  outline: 2px solid var(--hs-brand);
  outline-offset: 2px;
  border-radius: 2px;
}

.hs-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hs-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 10px 18px;
  background: var(--hs-brand);
  color: var(--hs-turf);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  clip-path: var(--hs-cut-sm);
}
.hs-skip:focus {
  left: 14px;
  top: 12px;
  color: var(--hs-turf);
}

/* ---------- 容器与网格 ---------- */
.hs-shell {
  width: 100%;
  max-width: var(--hs-shell);
  margin-inline: auto;
  padding-inline: var(--hs-gutter);
}

.hs-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--hs-gap);
}
.hs-col-3, .hs-col-4, .hs-col-6, .hs-col-8, .hs-col-12 { grid-column: 1 / -1; }

@media (min-width: 768px) {
  .hs-col-3 { grid-column: span 6; }
  .hs-col-4 { grid-column: span 6; }
  .hs-col-6 { grid-column: span 6; }
  .hs-col-8 { grid-column: span 8; }
  .hs-col-12 { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .hs-col-3 { grid-column: span 3; }
  .hs-col-4 { grid-column: span 4; }
  .hs-col-6 { grid-column: span 6; }
  .hs-col-8 { grid-column: span 8; }
}

/* ---------- 正文容器 ---------- */
.hs-prose { max-width: 72ch; }
.hs-prose p {
  max-width: 34em;
  margin-bottom: 1em;
  color: var(--hs-text);
  line-height: 1.75;
}
.hs-prose p:last-child { margin-bottom: 0; }
.hs-prose h2 { margin: 32px 0 12px; }
.hs-prose h3 { margin: 24px 0 10px; color: var(--hs-text); }
.hs-prose ul { max-width: 34em; margin: 0 0 1em; padding-left: 0; }
.hs-prose li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--hs-text-2);
}
.hs-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 2px;
  background: var(--hs-brand);
}
.hs-prose strong { color: var(--hs-brand); font-weight: 700; }

/* ---------- 展签式标签 ---------- */
.hs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  font-family: var(--hs-font-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hs-cool);
  background: rgba(41, 242, 196, 0.05);
  border: 1px solid var(--hs-line);
  clip-path: var(--hs-cut-sm);
  white-space: nowrap;
}
.hs-tag--brand {
  color: var(--hs-brand);
  border-color: rgba(41, 242, 196, 0.45);
  background: rgba(41, 242, 196, 0.12);
}
.hs-tag--ghost {
  color: var(--hs-cool);
  background: transparent;
}
.hs-tag--data {
  color: var(--hs-data);
  border-color: rgba(255, 74, 46, 0.45);
  background: rgba(255, 74, 46, 0.1);
}
.hs-tag--amber {
  color: var(--hs-amber);
  border-color: rgba(255, 154, 31, 0.4);
  background: rgba(255, 154, 31, 0.1);
}

/* ---------- 章节画板 ---------- */
.hs-section {
  position: relative;
  padding-block: clamp(32px, 6vw, 64px);
}
.hs-section > .hs-tag { margin-bottom: 14px; }
.hs-section[data-active] > .hs-tag {
  color: var(--hs-brand);
  border-color: rgba(41, 242, 196, 0.5);
  background: rgba(41, 242, 196, 0.14);
  transition: color var(--hs-speed) ease, border-color var(--hs-speed) ease, background var(--hs-speed) ease;
}

/* ---------- 切角面板 ---------- */
.hs-panel {
  position: relative;
  padding: clamp(16px, 2.4vw, 24px);
  background: var(--hs-panel);
  border: 1px solid var(--hs-line);
  clip-path: var(--hs-cut);
}
.hs-panel--flush { padding: 0; }
.hs-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.hs-panel__title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hs-text);
}

/* ---------- 面包屑 ---------- */
.hs-crumb {
  padding-block: 14px;
  font-family: var(--hs-font-mono);
  font-size: 12px;
  color: var(--hs-cool);
}
.hs-crumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hs-crumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hs-cool);
}
.hs-crumb__item::after {
  content: "/";
  color: var(--hs-line);
}
.hs-crumb__item:last-child::after { content: none; }
.hs-crumb__item[aria-current="page"] { color: var(--hs-brand); }
.hs-crumb__link {
  color: var(--hs-text-2);
  text-decoration: none;
}
.hs-crumb__link:hover { color: var(--hs-brand); }

/* ---------- 按钮 ---------- */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-family: var(--hs-font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  clip-path: var(--hs-cut-top);
  transition: background-color var(--hs-speed) ease, color var(--hs-speed) ease, border-color var(--hs-speed) ease, transform var(--hs-speed) ease;
}
.hs-btn:active { transform: translateY(1px); }
.hs-btn--brand {
  background: var(--hs-brand);
  color: var(--hs-turf);
  border-color: var(--hs-brand);
}
.hs-btn--brand:hover { background: #6df8d6; border-color: #6df8d6; color: var(--hs-turf); }
.hs-btn--ghost {
  background: transparent;
  color: var(--hs-text);
  border-color: var(--hs-line);
}
.hs-btn--ghost:hover { color: var(--hs-brand); border-color: var(--hs-brand); }

/* ---------- 头部：双层信息导航 ---------- */
.hs-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 9, 10, 0.94);
  border-bottom: 1px solid var(--hs-line);
  backdrop-filter: blur(10px);
}
.hs-header__meter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(41, 242, 196, 0.14);
}
.hs-header__meter-fill {
  display: block;
  height: 2px;
  width: 0;
  background: var(--hs-brand);
  box-shadow: 0 0 12px rgba(41, 242, 196, 0.6);
  transition: width 120ms linear;
}

.hs-header__top {
  background: linear-gradient(90deg, rgba(16, 36, 30, 0.92) 0%, rgba(5, 9, 10, 0.35) 70%);
  border-bottom: 1px solid var(--hs-line);
}
.hs-header__top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  padding-block: 8px;
  min-height: 54px;
}
.hs-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--hs-text);
  text-decoration: none;
}
.hs-brand__mark {
  flex: none;
  width: 22px;
  height: 22px;
  background: var(--hs-brand);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 58% 100%, 0 100%);
}
.hs-brand__text { display: flex; flex-direction: column; }
.hs-brand__name {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--hs-text);
}
.hs-brand__line {
  font-family: var(--hs-font-mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--hs-text-2);
}
.hs-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-family: var(--hs-font-mono);
  font-size: 12px;
  color: var(--hs-cool);
}
.hs-header__meta-text { letter-spacing: 0.08em; }

.hs-header__bottom-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding-block: 8px;
}

.hs-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  min-width: 44px;
  padding: 0 14px;
  background: transparent;
  color: var(--hs-text);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--hs-line);
  cursor: pointer;
  clip-path: var(--hs-cut-sm);
}
.hs-nav-toggle:hover { border-color: var(--hs-brand); color: var(--hs-brand); }
.hs-nav-toggle[aria-expanded="true"] {
  color: var(--hs-turf);
  background: var(--hs-brand);
  border-color: var(--hs-brand);
}
.hs-nav-toggle__bars {
  position: relative;
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}
.hs-nav-toggle__bars::before,
.hs-nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
}
.hs-nav-toggle__bars::before { top: -5px; }
.hs-nav-toggle__bars::after { top: 5px; }
.hs-nav-toggle__label { letter-spacing: 0.08em; }

.hs-nav { display: none; width: 100%; }
.hs-nav[data-open] { display: block; }
.hs-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
}
.hs-nav__item { display: block; }
.hs-nav__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--hs-text-2);
  text-decoration: none;
  border-left: 2px solid transparent;
  background: rgba(255, 255, 255, 0);
  transition: color var(--hs-speed) ease, background-color var(--hs-speed) ease, border-color var(--hs-speed) ease;
}
.hs-nav__link:hover { color: var(--hs-text); background: rgba(41, 242, 196, 0.06); }
.hs-nav__link[aria-current="page"] {
  color: var(--hs-brand);
  font-weight: 800;
  border-left-color: var(--hs-brand);
  background: rgba(41, 242, 196, 0.1);
}
.hs-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0 14px;
}

@media (min-width: 960px) {
  .hs-nav-toggle { display: none; }
  .hs-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .hs-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    padding-top: 0;
  }
  .hs-nav__link {
    border-left: 0;
    border-bottom: 2px solid transparent;
    padding: 0 14px;
  }
  .hs-nav__link:hover { background: rgba(41, 242, 196, 0.07); }
  .hs-nav__link[aria-current="page"] {
    border-left: 0;
    border-bottom-color: var(--hs-brand);
    background: linear-gradient(180deg, rgba(41, 242, 196, 0.18), rgba(41, 242, 196, 0.04));
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
  }
  .hs-nav__actions {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
  }
}

/* ---------- 手机底部悬浮赛事专区入口 ---------- */
.hs-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
}
.hs-dock__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  color: var(--hs-text);
  text-decoration: none;
  background: rgba(16, 36, 30, 0.96);
  border: 1px solid rgba(41, 242, 196, 0.5);
  clip-path: var(--hs-cut);
  transition: min-height var(--hs-speed) ease, background-color var(--hs-speed) ease, border-color var(--hs-speed) ease;
}
.hs-dock__link:hover { background: rgba(41, 242, 196, 0.16); border-color: var(--hs-brand); }
.hs-dock__label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--hs-brand);
}
.hs-dock__value {
  font-family: var(--hs-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--hs-text-2);
  transition: color var(--hs-speed) ease;
}
.hs-dock[data-condensed] .hs-dock__link {
  min-height: 44px;
  border-color: var(--hs-line);
}
.hs-dock[data-condensed] .hs-dock__value { color: var(--hs-data); }

@media (min-width: 960px) {
  .hs-dock { display: none; }
}

/* ---------- 数据组件 ---------- */
.hs-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hs-line);
}
.hs-metric:last-child { border-bottom: 0; }
.hs-metric__key {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--hs-text-2);
}
.hs-metric__val {
  font-family: var(--hs-font-num);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  color: var(--hs-text);
}
.hs-metric--data .hs-metric__val { color: var(--hs-data); }
.hs-metric--amber .hs-metric__val { color: var(--hs-amber); }

.hs-score {
  font-family: var(--hs-font-num);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--hs-data);
}

.hs-gauge {
  --hs-gauge: 0%;
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--hs-brand) var(--hs-gauge), rgba(30, 58, 51, 0.9) 0);
  transition: --hs-gauge 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hs-gauge::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--hs-panel);
}
.hs-gauge__value {
  position: relative;
  z-index: 1;
  font-family: var(--hs-font-num);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--hs-data);
}

.hs-field {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 1px;
  border-bottom: 1px dashed var(--hs-line);
  cursor: help;
}
.hs-field__hint {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  z-index: 20;
  min-width: 180px;
  max-width: 260px;
  padding: 8px 10px;
  background: var(--hs-turf);
  border: 1px solid var(--hs-line);
  color: var(--hs-text-2);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--hs-speed) ease;
}
.hs-field:hover .hs-field__hint,
.hs-field:focus-visible .hs-field__hint,
.hs-field:focus-within .hs-field__hint {
  opacity: 1;
  visibility: visible;
}

/* ---------- 图片容器基础规则 ---------- */
.hs-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(16, 36, 30, 0.9), rgba(5, 9, 10, 1)),
    repeating-linear-gradient(45deg, rgba(41, 242, 196, 0.05) 0 1px, transparent 1px 14px);
  border: 1px solid var(--hs-line);
  clip-path: var(--hs-cut);
}
.hs-media--tall { aspect-ratio: 4 / 5; }
.hs-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
}
.hs-media > .hs-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
}
.hs-media__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 12px;
  font-family: var(--hs-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--hs-text-2);
  background: linear-gradient(0deg, rgba(5, 9, 10, 0.94), rgba(5, 9, 10, 0));
}

/* ---------- 页脚 ---------- */
.hs-footer {
  margin-top: clamp(48px, 8vw, 88px);
  padding-bottom: 76px;
  background:
    linear-gradient(180deg, rgba(10, 26, 22, 0.6), rgba(5, 9, 10, 1)),
    repeating-linear-gradient(115deg, rgba(41, 242, 196, 0.02) 0 1px, transparent 1px 22px);
  background-color: var(--hs-turf);
  border-top: 1px solid var(--hs-line);
  color: var(--hs-text-2);
  font-size: 14px;
}
.hs-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-block: clamp(32px, 5vw, 52px);
}
.hs-footer__brand { max-width: 34em; }
.hs-footer__mark {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--hs-text);
}
.hs-footer__line {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-brand);
  letter-spacing: 0.02em;
}
.hs-footer__desc {
  margin-top: 10px;
  color: var(--hs-text-2);
  line-height: 1.7;
}
.hs-footer__service {
  margin-top: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--hs-cool);
  border-left: 2px solid var(--hs-amber);
  background: rgba(255, 154, 31, 0.06);
}
.hs-footer__col { display: flex; flex-direction: column; }
.hs-footer__title {
  margin-bottom: 10px;
  padding-bottom: 8px;
  font-family: var(--hs-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hs-cool);
  border-bottom: 1px solid var(--hs-line);
}
.hs-footer__list { display: flex; flex-direction: column; gap: 2px; }
.hs-footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--hs-text-2);
  text-decoration: none;
  transition: color var(--hs-speed) ease, padding-left var(--hs-speed) ease;
}
.hs-footer__link:hover {
  color: var(--hs-brand);
  padding-left: 6px;
}
.hs-footer__col--contact .hs-footer__contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  font-family: var(--hs-font-mono);
  font-size: 13px;
  line-height: 1.6;
}
.hs-footer__contact dt { color: var(--hs-cool); }
.hs-footer__contact dd { color: var(--hs-text); word-break: break-word; }
.hs-footer__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  padding-block: 16px 4px;
  border-top: 1px solid var(--hs-line);
  font-family: var(--hs-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--hs-cool);
}
.hs-footer__legal { color: var(--hs-cool); }
.hs-footer__copy { color: var(--hs-text-2); }

@media (min-width: 640px) {
  .hs-footer__grid { grid-template-columns: 1.6fr 1fr; }
}
@media (min-width: 1024px) {
  .hs-footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 32px; }
  .hs-footer { padding-bottom: 24px; }
}

/* ---------- 动效退让 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hs-gauge { transition: none; }
  .hs-header__meter-fill { transition: none; }
}
