export function getEnvValue(key: string): string | null { const value = process.env[key]?.trim() return value && value.length > 0 ? value : null }