/* Hartevo — night launch control.
   Committed color strategy: magenta-rose signal on pure near-black. */

:root {
  --bg: oklch(0.07 0 0);
  --surface: oklch(0.13 0.012 330);
  --surface-2: oklch(0.17 0.02 330);
  --line: oklch(0.26 0.015 330);
  --ink: oklch(0.965 0.005 330);
  --muted: oklch(0.76 0.012 330);
  --primary: oklch(0.58 0.21 330);
  --primary-strong: oklch(0.68 0.22 330);
  --accent: oklch(0.86 0.11 75);
  --pass: oklch(0.78 0.16 150);
  --warn: oklch(0.82 0.14 85);
  --fail: oklch(0.66 0.19 25);

  --font-sans: "Bricolage Grotesque", system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Consolas, monospace;

  --radius: 14px;
  --col: 1120px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* z-scale */
  --z-nav: 10;
  --z-skip: 100;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

:lang(zh) body,
body:lang(zh) { letter-spacing: 0.01em; }

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; max-width: 68ch; }

a { color: var(--ink); text-decoration-color: var(--primary); text-underline-offset: 3px; }
a:hover { color: var(--primary-strong); }

.mono { font-family: var(--font-mono); font-size: 0.85em; }

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

.skip-link {
  position: fixed; top: -4rem; left: 1rem;
  background: var(--primary); color: white;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  z-index: var(--z-skip); transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--primary-strong);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s var(--ease-out), border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover { background: var(--primary-strong); color: white; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--ink); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.92rem; }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.15rem; }

.link-btn {
  background: none; border: none; padding: 0;
  font: inherit; color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-underline-offset: 3px;
  cursor: pointer;
}
.link-btn:hover { color: var(--primary-strong); }

/* -------------------------------------------------------------- header */

.site-head {
  position: sticky; top: 0; z-index: var(--z-nav);
  display: flex; align-items: center; gap: 2rem;
  max-width: var(--col); margin: 0 auto;
  padding: 1rem 1.5rem;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  text-decoration: none;
}
.brand-mark { width: 28px; height: 28px; color: var(--primary-strong); }
.brand-name { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; }

.site-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.site-nav a {
  text-decoration: none; color: var(--muted);
  font-weight: 500; font-size: 0.95rem;
}
.site-nav a:hover { color: var(--ink); }

.head-actions { display: flex; align-items: center; gap: 1rem; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  background: none; border: none;
  color: var(--muted);
  font: inherit; font-size: 0.82rem; font-weight: 600;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--surface-2);
  color: var(--ink);
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .site-head { gap: 1rem; }
  .head-actions { margin-left: auto; }
}

/* ---------------------------------------------------------------- hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
  max-width: var(--col);
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) 1.5rem clamp(3rem, 7vh, 5rem);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.3rem);
  font-weight: 800;
  margin-bottom: 0.5em;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin-bottom: 2rem;
}

.scan-form {
  display: flex; gap: 0.6rem;
  max-width: 34rem;
}
.scan-form input {
  flex: 1; min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 1rem;
  padding: 0.75rem 1.3rem;
  transition: border-color 0.18s var(--ease-out);
}
.scan-form input::placeholder { color: var(--muted); }
.scan-form input:focus { outline: none; border-color: var(--primary); }
.scan-form input[aria-invalid="true"] { border-color: var(--fail); }

.scan-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.scan-note .link-btn { margin-left: 0.4rem; }

/* hero visual: signal map */

.hero-visual { min-width: 0; }
.signal-map { width: 100%; height: auto; display: block; }

.signal-map .ring {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 4 7;
}
.signal-map .beam {
  stroke: var(--primary);
  stroke-width: 1.5;
  stroke-dasharray: 6 10;
  opacity: 0.65;
  animation: beam-flow 2.6s linear infinite;
}
.signal-map .b2 { animation-delay: 0.4s; }
.signal-map .b3 { animation-delay: 0.9s; }
.signal-map .b4 { animation-delay: 1.3s; }
.signal-map .b5 { animation-delay: 1.7s; }

@keyframes beam-flow {
  to { stroke-dashoffset: -64; }
}

.signal-map .node circle {
  fill: var(--surface);
  stroke: var(--line);
  stroke-width: 1.5;
}
.signal-map .node.center circle {
  fill: var(--primary);
  stroke: none;
  animation: center-pulse 2.6s var(--ease-out) infinite;
}
.signal-map .node text {
  fill: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
}
.signal-map .node.center text {
  fill: white;
  font-weight: 600;
  font-size: 14px;
}

@keyframes center-pulse {
  0%, 100% { filter: drop-shadow(0 0 0px oklch(0.58 0.21 330 / 0)); }
  50% { filter: drop-shadow(0 0 14px oklch(0.58 0.21 330 / 0.8)); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { max-width: 26rem; margin: 0 auto; }
}
@media (max-width: 520px) {
  .scan-form { flex-direction: column; }
  .scan-form .btn { width: 100%; }
}

/* -------------------------------------------------------------- report */

.report {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.report-progress {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
}
.pulse-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--primary);
  animation: dot-pulse 1.1s var(--ease-out) infinite;
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.55; }
}
.report-progress p { margin: 0; color: var(--muted); }

.report-error {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
}
.report-error h2 { font-size: 1.4rem; }
.report-error p { color: var(--muted); }

.report-body {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.report-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.report-head h2 { font-size: 1.6rem; margin-bottom: 0.2em; }
.report-meta { color: var(--muted); margin: 0; overflow-wrap: anywhere; }

.report-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.score-ring-wrap { position: relative; width: 150px; height: 150px; }
.score-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring .track { fill: none; stroke: var(--surface-2); stroke-width: 9; }
.score-ring .meter {
  fill: none;
  stroke: var(--primary-strong);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.1s var(--ease-out), stroke 0.3s;
}
.score-value {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
}
.score-value .mono { font-size: 2.4rem; font-weight: 600; line-height: 1; }
.score-grade {
  font-weight: 700; font-size: 0.95rem;
  color: var(--muted);
}

.verdict {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.pillar-bars {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.55rem;
  max-width: 30rem;
}
.pillar-bars li {
  display: grid;
  grid-template-columns: 7.5rem 1fr 2.6rem;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
}
.pillar-bars .bar {
  height: 6px; border-radius: 3px;
  background: var(--surface-2);
  overflow: hidden;
}
.pillar-bars .bar i {
  display: block; height: 100%;
  background: var(--primary-strong);
  border-radius: 3px;
  transition: width 0.9s var(--ease-out);
}
.pillar-bars .pct { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); text-align: right; }

@media (max-width: 640px) {
  .report-summary { grid-template-columns: 1fr; gap: 1.5rem; justify-items: center; }
  .score-side { width: 100%; }
}

.bots-row { margin-bottom: 2rem; }
.bots-row h3 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.bot-chips {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.bot-chips li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.bot-chips li.allowed { border-color: oklch(0.78 0.16 150 / 0.5); color: var(--pass); }
.bot-chips li.blocked { border-color: oklch(0.66 0.19 25 / 0.6); color: var(--fail); }

.check-groups { display: grid; gap: 1.6rem; }
.check-group h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.6rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
}
.check-status { font-weight: 700; line-height: 1.5; }
.check-status.pass { color: var(--pass); }
.check-status.warn { color: var(--warn); }
.check-status.fail { color: var(--fail); }
.check-name { font-weight: 600; }
.check-name .status-word { font-weight: 400; color: var(--muted); font-size: 0.85em; margin-left: 0.5rem; }
.check-detail {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.15rem 0 0;
}
.check-rec {
  color: var(--ink);
  font-size: 0.9rem;
  margin: 0.3rem 0 0;
  max-width: 62ch;
}
.check-rec::before {
  content: "→ ";
  color: var(--primary-strong);
}

.report-cta {
  margin-top: 2.2rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.report-cta p { margin: 0; font-weight: 500; max-width: 36rem; }

.share-row {
  margin-top: 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.share-row h3 { font-size: 1.05rem; margin: 0; }
.share-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* fix pack */

.fixpack {
  margin-top: 2.2rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem 1.8rem;
}
.fixpack-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.fixpack-head h3 { font-size: 1.15rem; margin: 0 0 0.25rem; }
.fixpack-sub { color: var(--muted); font-size: 0.92rem; margin: 0; max-width: 46rem; }
.fixpack-error { color: var(--fail); margin: 0.8rem 0 0; }
.fixpack-thin {
  color: var(--warn);
  font-size: 0.92rem;
  margin: 1rem 0 0;
}
.fixpack-tabs {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  margin: 1.2rem 0 0.8rem;
}
.fixpack-tab {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.fixpack-tab:hover { color: var(--ink); }
.fixpack-tab.active {
  border-color: var(--primary);
  color: var(--ink);
  background: var(--surface);
}
.fixpack-code {
  background: var(--bg);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin: 0 0 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--ink);
  max-height: 22rem;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.fixpack-actions {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.fixpack-note { color: var(--muted); font-size: 0.88rem; margin: 0; }
.fixpack-upsell {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1.2rem 0 0;
}

/* --------------------------------------------------------------- shift */

.shift {
  max-width: var(--col);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) 1.5rem;
}
.shift h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  max-width: 22ch;
  margin-bottom: 2.2rem;
}
.shift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem 3rem;
}
.shift-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4em;
  color: var(--primary-strong);
}
.shift-item p { color: var(--muted); margin: 0; }

/* ----------------------------------------------------------------- how */

.how {
  background: var(--surface);
}
.how > * {
  max-width: var(--col);
  margin-left: auto; margin-right: auto;
}
.how {
  padding: clamp(3.5rem, 9vh, 6rem) 1.5rem;
}
.how h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 2rem;
}
.how-steps {
  list-style: none;
  counter-reset: step;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.how-steps li { counter-increment: step; }
.how-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.how-steps h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
.how-steps p { color: var(--muted); margin: 0; }

/* -------------------------------------------------------------- checks */

.checks {
  max-width: var(--col);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) 1.5rem;
}
.checks h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 0.4em; }
.checks-intro { color: var(--muted); margin-bottom: 2.2rem; }
.checks-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.checks-col h3 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.mono-list {
  list-style: none; margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.mono-list li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
}

/* ------------------------------------------------------------- pricing */

.pricing {
  max-width: var(--col);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6rem) 1.5rem;
}
.pricing h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 2rem; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.price-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
}
.price-featured {
  background: var(--surface-2);
  border: 1px solid var(--primary);
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 0.3em; }
.price { font-size: 2.2rem; font-weight: 700; margin: 0 0 0.8rem; }
.price .mono { font-size: 1em; }
.price-period { font-size: 0.95rem; font-weight: 400; color: var(--muted); }
.price-desc { color: var(--muted); flex: 1; }
.price-card .btn { align-self: flex-start; }

.pricing-note { color: var(--muted); margin-top: 1.6rem; font-size: 0.95rem; }
.price-pay { color: var(--muted); font-size: 0.72rem; margin: 0.8rem 0 0; }

/* ------------------------------------------------- share & thanks pages */

.share-main, .thanks-main {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 4.5rem) 1.5rem 4rem;
}
.share-main h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.share-sub { color: var(--muted); max-width: 60ch; margin-bottom: 2rem; }
.share-card-img {
  display: block;
  width: 100%; height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.share-ctas {
  margin-top: 2rem;
  display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap;
}
.share-foot { border-top: none; }

.thanks-main { text-align: center; max-width: 640px; }
.thanks-main h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.thanks-main p { margin-left: auto; margin-right: auto; }
.thanks-check {
  width: 64px; height: 64px;
  margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--pass);
  color: oklch(0.15 0.02 150);
  font-size: 2rem; font-weight: 700;
}
.thanks-note { color: var(--muted); font-size: 0.92rem; }
.thanks-main .btn { margin-top: 1.4rem; }

/* ----------------------------------------------------------------- faq */

.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5.5rem) 1.5rem;
}
.faq h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1.8rem; }
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 1.1rem 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--primary-strong);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); padding-bottom: 1.2rem; margin: 0; }

/* ----------------------------------------------------------- final cta */

.cta-final {
  text-align: center;
  padding: clamp(4rem, 11vh, 7rem) 1.5rem;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, oklch(0.58 0.21 330 / 0.22), transparent),
    var(--bg);
}
.cta-final h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  margin-bottom: 1.2em;
}

/* -------------------------------------------------------------- footer */

.site-foot {
  max-width: var(--col);
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
}
.foot-brand .brand-mark { width: 24px; height: 24px; }
.foot-brand p { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.95rem; }
.foot-dogfood { font-size: 0.88rem; }
.foot-links {
  display: flex; flex-direction: column; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.85rem;
}
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--ink); }
.foot-copy {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 1rem 0 0;
}

@media (max-width: 640px) {
  .site-foot { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------ reduced motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .signal-map .beam,
  .signal-map .node.center circle,
  .pulse-dot { animation: none; }
  .score-ring .meter,
  .pillar-bars .bar i { transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
