/* ===================================================================
   pitch.html - single-canvas editorial infographic
   Standalone aesthetic: dark monochrome, ONE accent, hairline grid,
   numbers ARE the graphic. No dependencies on rest of the site.
   =================================================================== */

/* Embedded mode (projects.html#numbers).
   Map pitch's palette to the site's theme vars so the panel adapts to
   light/dark without overriding the rest of the page. Fallback values are
   the original dark palette - used as a safety net only. */
.numbersPanel {
  --bg:        var(--card,       #0a0a0c);
  --bg-2:      color-mix(in srgb, var(--card, #0a0a0c) 92%, var(--accent, #6d8aff) 8%);
  --fg:        var(--text-h,     #ededee);
  --fg-mute:   var(--text-p,     #8a8a92);
  --fg-dim:    color-mix(in srgb, var(--text-p, #5a5a62) 55%, transparent);
  --line:      var(--border,     #1d1d22);
  --line-2:    color-mix(in srgb, var(--border, #2a2a30) 65%, var(--text-p, #8a8a92) 35%);
  --accent-dim:var(--accent-soft, rgba(109,138,255,0.18));
  --radius: 4px;
  --maxw: 1440px;

  background: transparent;
  color: var(--fg);
}

/* Standalone pitch.html keeps the editorial dark palette regardless of any
   `data-theme` toggle that may live on <html>. */
body.pitch.numbersPanel {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --fg: #ededee;
  --fg-mute: #8a8a92;
  --fg-dim: #5a5a62;
  --line: #1d1d22;
  --line-2: #2a2a30;
  --accent: #6d8aff;
  --accent-dim: rgba(109, 138, 255, 0.18);
  color-scheme: dark;
}

/* When embedded as a <section> inside projects.html, the parent .container
   already handles max-width + horizontal padding. Drop pitch-spread's own
   centering to avoid double-margins and let the grid hug the section edges. */
section.numbersPanel .pitch-spread {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* In-panel typography + smoothing (kept scoped so projects.html outside the
   panel keeps its own font + theme intact) */
.numbersPanel {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "tnum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.numbersPanel *,
.numbersPanel *::before,
.numbersPanel *::after { box-sizing: border-box; }
.numbersPanel ::selection { background: var(--accent); color: var(--bg); }

/* Standalone pitch.html-only page chrome (radial wash + grid grain) */
body.pitch {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background:
    radial-gradient(1100px 600px at 20% 0%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, color-mix(in srgb, var(--accent) 4%, transparent), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

body.pitch::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 31px, var(--line-2) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, var(--line-2) 31px 32px);
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 100%);
}

/* =========================================================
   SPREAD - asymmetric grid (Bloomberg-style)
   ========================================================= */
/* Outer container - owns horizontal page padding and vertical breathing room.
   Has no background so padding doesn't show as colored stripes. */
.pitch-spread {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(28px, 4vw, 48px);
}

/* Inner grid - the actual tile layout. Its background bleeds only through
   the 1px gaps between cells, producing clean hairline dividers. The grid's
   edges hug the cells, so no outer stripe is visible. */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
}

.cell {
  position: relative;
  padding: clamp(22px, 2.6vw, 36px) clamp(20px, 2.4vw, 32px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  cursor: default;
  transition: background 0.25s ease;
}

.cell:hover {
  background: var(--bg-2);
}

.cell:hover .stat__hint { opacity: 1; transform: none; }

/* Bloomberg-style hairline at bottom of cells that need emphasis */
.cell::after {
  content: "";
  position: absolute;
  left: clamp(20px, 2.4vw, 32px);
  right: clamp(20px, 2.4vw, 32px);
  top: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s ease;
}

.cell:hover::after { background: var(--accent); }

/* Grid placement - desktop (12-col asymmetric, ~6 rows) */
.cell--hero    { grid-column: 1 / span 8; grid-row: 1 / span 2; min-height: 420px; }
.cell--days    { grid-column: 9 / span 4; grid-row: 1; }
.cell--hours   { grid-column: 9 / span 4; grid-row: 2; }

.cell--people  { grid-column: 1 / span 4; grid-row: 3; min-height: 340px; }
.cell--modules { grid-column: 5 / span 4; grid-row: 3; min-height: 340px; }
.cell--types   { grid-column: 9 / span 4; grid-row: 3; min-height: 340px; }

.cell--quality { grid-column: 1 / span 6; grid-row: 4; }
.cell--depth   { grid-column: 7 / span 6; grid-row: 4; }

.cell--records { grid-column: 1 / -1; grid-row: 5; }

@media (max-width: 1100px) {
  .cell--hero    { grid-column: 1 / -1; grid-row: 1; min-height: 320px; }
  .cell--days    { grid-column: 1 / span 6; grid-row: 2; }
  .cell--hours   { grid-column: 7 / span 6; grid-row: 2; }
  .cell--people  { grid-column: 1 / span 6; grid-row: 3; }
  .cell--modules { grid-column: 7 / span 6; grid-row: 3; }
  .cell--types   { grid-column: 1 / span 6; grid-row: 4; }
  .cell--quality { grid-column: 7 / span 6; grid-row: 4; }
  .cell--depth   { grid-column: 1 / -1; grid-row: 5; }
  .cell--records { grid-column: 1 / -1; grid-row: 6; }
}

@media (max-width: 700px) {
  .pitch-grid { grid-template-columns: 1fr; }
  .cell, .cell--hero, .cell--days, .cell--hours, .cell--people,
  .cell--modules, .cell--types, .cell--quality, .cell--depth,
  .cell--records {
    grid-column: 1 / -1; grid-row: auto; min-height: auto;
  }
}

/* =========================================================
   STAT internals
   ========================================================= */
.stat__kicker {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.stat__num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.85;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.stat__num--hero {
  font-size: clamp(4.5rem, 14vw, 12rem);
  letter-spacing: -0.04em;          /* relative - won't crush thousand-separators */
  line-height: 1.1;                  /* generous so glyphs never collide with label */
  padding-bottom: 0.15em;            /* additional safety gap above the label */
  margin-bottom: 4px;
}

/* Gradient text-clip needs to live on the same element that owns the text.
   Once we wrap the digits in .stat__numCore for inline positioning, the
   gradient must move down to .stat__numCore too - otherwise the inline-block
   formatting context breaks clip propagation and the digits render fully
   transparent. */
.stat__num--hero .stat__numCore {
  /* Flat - the number's job is to read clean, not to fade into accent.
     The accent earns its place at .stat__rule below + footmark only. */
  color: var(--fg);
}

/* Hero number core - inline-block wrapper so the sup behaves inline,
   not as a flex item aligning by baseline. */
.stat__numCore {
  display: inline-block;
  line-height: inherit;
  position: relative;
}

/* Asterisk footnote marker - sits above the digit's top edge */
.stat__footmark {
  font-size: 0.32em;
  font-weight: 700;
  color: var(--fg-mute);
  background: none;
  letter-spacing: 0;
  margin-left: 0.08em;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  transform: translateY(-0.4em);
}

.stat__unit {
  font-size: 0.42em;
  font-weight: 800;
  color: var(--fg-mute);
  letter-spacing: -0.4px;
  margin-left: 1px;
}
.stat__num--hero .stat__unit { font-size: 0.3em; color: var(--fg-dim); }

.stat__lbl {
  font-size: clamp(0.85rem, 1.4vw, 0.96rem);
  font-weight: 600;
  color: var(--fg);
  max-width: 28ch;
}

.stat__rule {
  width: 40px;
  height: 2px;
  background: var(--fg);
  opacity: 0.4;
  border-radius: 2px;
  margin-top: 2px;
  transform-origin: left center;
  animation: ruleGrow 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes ruleGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.stat__hint {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--fg-mute);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 42ch;
}

/* For touch devices, always show hints */
@media (hover: none), (pointer: coarse) {
  .stat__hint { opacity: 0.78; transform: none; }
}

/* Sub-stats under the hero number - mini-mirrors of the hero's number+label.
   Two side-by-side on desktop, stacked on narrow screens. */
.stat__subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 600px) {
  .stat__subs { grid-template-columns: 1fr; gap: 16px; }
}

.stat__sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.stat__sub-num {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
  padding-bottom: 0.05em;
}

/* Small rule under each sub-number, mirroring .stat__rule below hero */
.stat__sub::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--fg);
  opacity: 0.4;
  border-radius: 2px;
  order: 2;
  margin-top: -2px;
  margin-bottom: 4px;
}

.stat__sub-lbl {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--fg-mute);
  max-width: 34ch;
  order: 3;
}

/* Footnote at bottom of cell (asterisk legend, "as of" date, etc.) */
.stat__footnote {
  margin: auto 0 0;
  padding-top: 14px;
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.3px;
  color: var(--fg-dim);
  font-family: "JetBrains Mono", "SF Mono", monospace;
}

/* =========================================================
   HEATMAP (weekly activity, GitHub-style)
   ========================================================= */
.heatmap {
  margin-top: 6px;
}

.heatmap__grid {
  display: grid;
  grid-template-columns: repeat(52, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 2px;
  width: 100%;
  aspect-ratio: 52 / 6;
}

.heatmap__cell {
  border-radius: 1.5px;
  background: var(--line);
  transition: background 0.18s ease;
}

.heatmap__cell[data-level="1"] { background: color-mix(in srgb, var(--accent) 22%, var(--line)); }
.heatmap__cell[data-level="2"] { background: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.heatmap__cell[data-level="3"] { background: color-mix(in srgb, var(--accent) 70%, var(--line)); }
.heatmap__cell[data-level="4"] { background: var(--accent); }
.heatmap__cell[data-empty="1"] { background: transparent; }

.heatmap__cell:hover { outline: 1px solid var(--fg-mute); outline-offset: 0; }

.heatmap__legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.66rem;
  color: var(--fg-dim);
  letter-spacing: 0.4px;
  font-family: "JetBrains Mono", "SF Mono", monospace;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 8px;
}

.heatmap__period {
  font-weight: 700;
}

.heatmap__scaleWrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.heatmap__scale {
  display: inline-flex;
  gap: 2px;
}

.heatmap__scale i {
  width: 9px; height: 9px;
  border-radius: 1.5px;
  background: var(--line);
  display: inline-block;
}
.heatmap__scale i[data-lvl="1"] { background: color-mix(in srgb, var(--accent) 22%, var(--line)); }
.heatmap__scale i[data-lvl="2"] { background: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.heatmap__scale i[data-lvl="3"] { background: color-mix(in srgb, var(--accent) 70%, var(--line)); }
.heatmap__scale i[data-lvl="4"] { background: var(--accent); }

/* Daily tempo info BELOW the heatmap - supporting, not headline */
.heatmap__tempo {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.heatmap__tempoNum {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.heatmap__tempoLbl {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--fg-mute);
  max-width: 32ch;
}

/* =========================================================
   COMPARE (hours)
   ========================================================= */
.compare { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }

.compare__bar {
  height: 6px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.compare__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--fg);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 999px;
}
.compare__bar:nth-child(2) span { background: var(--fg-mute); }

.cell.is-revealed .compare__bar span { width: var(--w, 0%); }

.compare__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 0.78rem;
  color: var(--fg-mute);
  margin-top: 4px;
}
.compare__legend span { display: inline-flex; align-items: center; gap: 8px; }

.dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--fg);
}
.dot--accent { background: var(--accent); }
.dot--fg     { background: var(--fg); }
.dot--mt     { background: var(--fg-mute); }

/* =========================================================
   DOT GRID (people)
   ========================================================= */
.dots {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 4px;
  margin-top: 6px;
}

.dots__cell {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--fg-mute);
  opacity: 0;
  animation: dotIn 0.5s ease forwards;
  animation-delay: calc(var(--i, 0) * 12ms);
}

/* All three categories live on the accent spectrum (full / 55% / 25%
   mix with --bg) - keeps the people grid visually coherent instead of
   showing green next to nearly-black dots. */
.dots__cell--dev    { background: var(--accent); }
.dots__cell--qa     { background: color-mix(in srgb, var(--accent) 55%, var(--bg)); }
.dots__cell--stake  { background: color-mix(in srgb, var(--accent) 25%, var(--bg)); }

/* Mirror the same accent tiers in the people legend (scoped - the
   Hours chart legend still uses .dot--fg/--mt with their original
   meaning). */
.dots__legend .dot--fg { background: color-mix(in srgb, var(--accent) 55%, var(--bg)); }
.dots__legend .dot--mt { background: color-mix(in srgb, var(--accent) 25%, var(--bg)); }

@keyframes dotIn {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

.dots__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--fg-mute);
}
.dots__legend span { display: inline-flex; align-items: center; gap: 6px; }
.dots__legend strong { color: var(--fg); font-weight: 800; font-variant-numeric: tabular-nums; }

/* Overlap note - explains why dev+QA+business doesn't sum to total */
.dots__note {
  margin: 12px 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
  color: var(--fg-dim);
  font-style: italic;
  font-family: "JetBrains Mono", "SF Mono", monospace;
}

/* =========================================================
   DONUT (modules) - tech areas
   ========================================================= */
.donut-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.donut-wrap > .donut { flex: 0 0 120px; }
.donut-wrap > .donut__legend { flex: 1 1 170px; min-width: 0; }

@media (max-width: 480px) {
  .donut-wrap { gap: 12px; }
  .donut-wrap > .donut { flex-basis: 100px; }
}

.donut {
  width: 120px;
  height: 120px;
}
.donut__bg {
  fill: none;
  stroke: var(--line-2);
  stroke-width: 14;
}
.donut__seg {
  fill: none;
  stroke-width: 14;
  /* NB: never set stroke-dashoffset here - CSS would override the per-segment
     offsets set inline by JS (CSS wins over presentation attributes), making
     all segments stack on top of each other from position 0. */
  transition: stroke-dasharray 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.donut__legend {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
}
.donut__legend li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
  color: var(--fg-mute);
}
.donut__legend i {
  width: 8px; height: 8px;
  border-radius: 2px;
  display: inline-block;
}
.donut__legend strong {
  color: var(--fg);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.donut__legend strong em {
  color: var(--fg-dim);
  font-style: normal;
  font-weight: 600;
  margin-left: 1px;
}

.donut__legend li.has-detail { align-items: start; }

.donut__legendDetail {
  display: block;
  margin-top: 2px;
  font-size: 0.66rem;
  font-style: normal;
  color: var(--fg-dim);
  letter-spacing: 0.2px;
}

/* =========================================================
   RECORDS - three micro-stats in a single ledger row
   ========================================================= */
.recordsRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 48px);
  margin-top: 8px;
}

.recordsRow__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--line);
}

.recordsRow__item:first-child {
  padding-left: 0;
  border-left: none;
}

.recordsRow__num {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.recordsRow__unit {
  font-size: 0.42em;
  font-weight: 800;
  color: var(--fg-mute);
  letter-spacing: -0.4px;
  margin-left: 2px;
}

.recordsRow__kicker {
  margin-top: 8px;
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.recordsRow__lbl {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--fg);
  margin-top: 2px;
  max-width: 32ch;
  opacity: 0.95;
}

@media (max-width: 700px) {
  .recordsRow { grid-template-columns: 1fr; gap: 0; }
  .recordsRow__item {
    padding-left: 0;
    padding-top: 22px;
    margin-top: 22px;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .recordsRow__item:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }
}

/* =========================================================
   TYPES BAR - horizontal stacked bar for issue-type breakdown
   ========================================================= */
.typesBar {
  display: flex;
  width: 100%;
  height: 22px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--line-2);
  margin: 10px 0 14px;
}

.typesBar__seg {
  height: 100%;
  flex-shrink: 0;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.cell.is-revealed .typesBar__seg {
  width: var(--w, 0%);
}

/* =========================================================
   METER (quality)
   ========================================================= */
.meter {
  height: 8px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
  position: relative;
}
.meter::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 90%;
  width: 1px;
  background: var(--fg-mute);
  opacity: 0.5;
}
.meter__fill {
  display: block;
  height: 100%;
  width: 0;
  /* Solid accent - the meter visualizes magnitude; the bar IS the signal. */
  background: var(--accent);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cell.is-revealed .meter__fill { width: var(--w, 0%); }

/* =========================================================
   DEPTH ROW
   ========================================================= */
.depth-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(12px, 2.5vw, 24px);
  margin-top: 4px;
}

.depth-row__one { display: flex; flex-direction: column; gap: 4px; }

.depth-row__num {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.85;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.depth-row__lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.depth-row__plus {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--fg-mute);
  align-self: center;
  line-height: 0.85;
}

/* =========================================================
   Reveal animations (page-level)
   ========================================================= */
.cell {
  opacity: 0;
  transform: translateY(14px);
  animation: cellIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--seq, 0) * 60ms + 200ms);
}

@keyframes cellIn {
  to { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cell { animation: none; opacity: 1; transform: none; }
  .stat__rule { animation: none; transform: none; }
  .stat__hint { opacity: 0.78; transform: none; transition: none; }
  .dots__cell { animation: none; opacity: 1; transform: none; }
  .compare__bar span,
.meter__fill,
.donut__seg { transition: none; }
}
