#static-canvas {
  width: 100%;
  height: 180px;
  display: block;
  image-rendering: pixelated;
}

.vu-meter {
  width: 100%;
  height: 8px;
  background: var(--bg-terminal);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  margin-top: 1rem;
  overflow: hidden;
}

.vu-meter__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--deep-violet), var(--phantom-purple), var(--ghost-green));
  border-radius: 3px;
  transition: width 0.15s ease;
}

.dial-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  padding: 0 2px;
}

#freq-slider {
  margin-top: 0.3rem;
}

/* Phase complete state */
#static-canvas.locked {
  image-rendering: auto;
}
