/** Session captcha flag used after home security check */
export function hasCaptchaPassed(): boolean {
  if (typeof window === 'undefined') return false
  return sessionStorage.getItem('recaptcha_completed') === 'true'
}
