/// R6: warn if anchor change happens mid-phase (>= 1 week in). bool phaseAnchorChangeWarning({ required String phaseStartedAt, required DateTime now, }) { final start = DateTime.parse(phaseStartedAt); final daysIn = now.difference(start).inDays; return daysIn >= 7; }