/* ============================================================
   Taste Skill — Taste Dials (signature)
   The 1-10 configuration control at the heart of the skill:
   DESIGN_VARIANCE / MOTION_INTENSITY / VISUAL_DENSITY. A segmented
   track of ticks that fill toward the current value, with a mono
   readout and low/high scale captions.
   ============================================================ */
.ts-dial {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-width: 15rem;
}
.ts-dial__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.ts-dial__label {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--text-strong);
}
.ts-dial__value {
  font-family: var(--font-mono);
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--text-strong);
}
.ts-dial__track {
  display: flex;
  align-items: flex-end;
  gap: 0.3125rem;
  height: 2.5rem;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.ts-dial__track:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }
.ts-dial__tick {
  flex: 1;
  height: 45%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-xs);
  background: var(--sand-300);
  cursor: pointer;
  transition: height var(--dur-2) var(--ease-spring), background var(--dur-1) var(--ease-out);
}
.ts-dial__tick:hover { background: var(--sand-400); }
.ts-dial__tick.is-filled { background: var(--ink-700); height: 68%; }
.ts-dial__tick.is-current { background: var(--ink-900); height: 100%; }
.ts-dial__scale {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--text-micro);
  color: var(--text-faint);
}
.ts-dial__desc {
  font-size: var(--text-caption);
  color: var(--text-muted);
  line-height: var(--leading-snug);
}
