Save a token securely
static Future<void> saveToken(String token) async { final box = Hive.box<String>(_boxName); await box.put(_tokenKey, token); }