.gauge-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}

.gauge {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-track {
  fill: none;
  stroke: #eeede8;
  stroke-width: 13;
}

.gauge-bar {
  fill: none;
  stroke-width: 13;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.gauge-score {
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.gauge-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
