/* Herald · Workout — app tweaks. Base in glass-core.css (Meta frosted
   kit). The run screen is built from LIGHT: huge glowing countdown,
   phase-tinted bloom, reads at a glance mid-burpee. */

.wk-foot {
  flex-shrink: 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 0 2px;
}

.wk-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  text-align: center;
  transition: background 220ms ease-out;
}
/* phase bloom — work = accent, rest = calm, done = bright */
.wk-stage.wk-work {
  background: radial-gradient(120% 90% at 50% 45%, var(--aa-bloom2, rgba(255, 94, 58, 0.14)), transparent 70%);
}
.wk-stage.wk-rest {
  background: radial-gradient(120% 90% at 50% 45%, rgba(82, 217, 255, 0.12), transparent 70%);
}
.wk-stage.wk-done {
  background: radial-gradient(120% 90% at 50% 45%, var(--aa-bloom2, rgba(255, 94, 58, 0.16)), transparent 72%);
}

.wk-phase {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-secondary);
}
.wk-stage.wk-work .wk-phase,
.wk-stage.wk-done .wk-phase { color: var(--app-accent, var(--accent)); }
.wk-stage.wk-rest .wk-phase { color: #79dcff; }

.wk-count {
  font-size: 170px;
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -4px;
  color: var(--app-accent, var(--accent));
  text-shadow:
    0 0 36px var(--aa-glow, rgba(255, 94, 58, 0.45)),
    0 0 90px var(--aa-glow-soft, rgba(255, 94, 58, 0.24));
}
.wk-stage.wk-rest .wk-count {
  color: #9ee6ff;
  text-shadow: 0 0 36px rgba(82, 217, 255, 0.4), 0 0 90px rgba(82, 217, 255, 0.22);
}
.wk-round {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
}
.wk-state {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  min-height: 4px;
}
.wk-hint {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
