/* ── Breathing view layout ── */
.breath-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-bottom: 16px;
}

/* ── Animated ring ── */
.breath-ring-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.breath-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,127,71,.08) 0%, rgba(107,127,71,.02) 70%);
  transition: transform 1s ease;
}

.breath-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #8FA860, #4A5A2E);
  box-shadow:
    0 0 0 16px rgba(107,127,71,.12),
    0 0 0 32px rgba(107,127,71,.06),
    0 12px 48px rgba(107,127,71,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.breath-ring-inner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}

/* Phase states driven by JS class toggling */
.breath-ring.inhale  { transform: scale(1.28); }
.breath-ring.hold    { transform: scale(1.28); }
.breath-ring.exhale  { transform: scale(1); }
.breath-ring.hold2   { transform: scale(1); }

/* ── Phase text ── */
.breath-phase-text {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  min-height: 36px;
  text-align: center;
}
.breath-phase-count {
  font-size: 44px;
  font-weight: 300;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  min-height: 56px;
  text-align: center;
  line-height: 1;
}
.breath-cycle-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Controls row ── */
.breath-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
